Merge pull request #1754 from frappe/develop

chore: merge 'develop' into 'main'
This commit is contained in:
Jannat Patel
2025-10-01 13:08:16 +05:30
committed by GitHub
56 changed files with 6531 additions and 2363 deletions
+5 -9
View File
@@ -10,11 +10,11 @@ describe("Batch Creation", () => {
cy.get("span").contains("Settings").click();
// Add a new member
cy.get('[id^="headlessui-dialog-panel-v-"]')
cy.get("[data-dismissable-layer]")
.find("span")
.contains(/^Members$/)
.click();
cy.get('[id^="headlessui-dialog-panel-v-"]')
cy.get("[data-dismissable-layer]")
.find("button")
.contains("New")
.click();
@@ -28,12 +28,12 @@ describe("Batch Creation", () => {
cy.get("button").contains("Add").click();
// Add evaluator
cy.get('[id^="headlessui-dialog-panel-v-"]')
cy.get("[data-dismissable-layer]")
.find("span")
.contains(/^Evaluators$/)
.click();
cy.get('[id^="headlessui-dialog-panel-v-"]')
cy.get("[data-dismissable-layer]")
.find("button")
.contains("New")
.click();
@@ -156,11 +156,7 @@ describe("Batch Creation", () => {
/* Add student to batch */
cy.get("button").contains("Add").click();
cy.get('div[id^="headlessui-dialog-panel-v-"]')
.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("div").contains(randomEmail).click();
cy.get("button").contains("Submit").click();
+2 -2
View File
@@ -76,7 +76,7 @@ describe("Course Creation", () => {
cy.button("Add Chapter").click();
cy.wait(1000);
cy.get("[id^=headlessui-dialog-panel-")
cy.get("[data-dismissable-layer]")
.should("be.visible")
.within(() => {
cy.get("label").contains("Title").type("Test Chapter");
@@ -143,7 +143,7 @@ describe("Course Creation", () => {
cy.get("span").contains("Community").click();
cy.button("New Question").click();
cy.wait(500);
cy.get("[id^=headlessui-dialog-panel-").within(() => {
cy.get("[data-dismissable-layer]").within(() => {
cy.get("label").contains("Title").type("Test Discussion");
cy.get("div[contenteditable=true]").invoke(
"text",
+2
View File
@@ -10,6 +10,7 @@ declare module 'vue' {
export interface GlobalComponents {
Annoucements: typeof import('./src/components/Annoucements.vue')['default']
AnnouncementModal: typeof import('./src/components/Modals/AnnouncementModal.vue')['default']
AppHeader: typeof import('./src/components/AppHeader.vue')['default']
Apps: typeof import('./src/components/Apps.vue')['default']
AppSidebar: typeof import('./src/components/AppSidebar.vue')['default']
AssessmentModal: typeof import('./src/components/Modals/AssessmentModal.vue')['default']
@@ -71,6 +72,7 @@ declare module 'vue' {
InviteIcon: typeof import('./src/components/Icons/InviteIcon.vue')['default']
JobApplicationModal: typeof import('./src/components/Modals/JobApplicationModal.vue')['default']
JobCard: typeof import('./src/components/JobCard.vue')['default']
LayoutHeader: typeof import('./src/components/LayoutHeader.vue')['default']
LessonContent: typeof import('./src/components/LessonContent.vue')['default']
LessonHelp: typeof import('./src/components/LessonHelp.vue')['default']
Link: typeof import('./src/components/Controls/Link.vue')['default']
+1 -1
View File
@@ -213,7 +213,7 @@
<meta name="twitter:image" content="{{ meta.image }}" />
<meta name="twitter:description" content="{{ meta.description }}" />
</head>
<body>
<body class="sm:overscroll-y-none no-scrollbar">
<div id="app">
<div id="seo-content">
<h1>{{ meta.title }}</h1>
+1 -1
View File
@@ -32,7 +32,7 @@
"dayjs": "^1.11.6",
"dompurify": "^3.2.6",
"feather-icons": "^4.28.0",
"frappe-ui": "0.1.173",
"frappe-ui": "^0.1.200",
"highlight.js": "^11.11.1",
"lucide-vue-next": "^0.383.0",
"markdown-it": "^14.0.0",
+2 -4
View File
@@ -1,9 +1,7 @@
<template>
<FrappeUIProvider>
<Layout>
<div class="text-base">
<router-view />
</div>
<Layout class="isolate text-base">
<router-view />
</Layout>
<InstallPrompt v-if="isMobile" />
<Dialogs />
+5
View File
@@ -594,6 +594,11 @@ const articles = ref([
{ name: 'create-a-live-class', title: __('Create a live class') },
],
},
{
title: __('Learning Paths'),
opened: false,
subArticles: [{ name: 'add-a-program', title: __('Add a program') }],
},
{
title: __('Assessments'),
opened: false,
+3
View File
@@ -70,6 +70,9 @@
<FileUploader
v-if="!submissionFile"
:fileTypes="getType()"
:uploadArgs="{
private: true,
}"
:validateFile="validateFile"
@success="(file) => saveSubmission(file)"
>
@@ -37,7 +37,7 @@
</slot>
</template>
<template #body="{ isOpen }">
<div v-show="isOpen">
<div v-show="isOpen" class="">
<div
class="mt-1 rounded-lg bg-surface-white py-1 text-base border-2"
>
+1 -1
View File
@@ -5,7 +5,7 @@
style="min-height: 350px"
>
<div
class="w-[100%] h-[168px] bg-cover bg-center bg-no-repeat"
class="w-[100%] h-[168px] bg-cover bg-center bg-no-repeat border-t border-x rounded-t-md"
:style="
course.image
? { backgroundImage: `url('${encodeURI(course.image)}')` }
@@ -169,6 +169,7 @@
</div>
</div>
<CourseProgressSummary
v-if="user.data?.is_moderator || is_instructor()"
v-model="showProgressModal"
:courseName="course.data.name"
:enrollments="course.data.enrollments"
+6 -12
View File
@@ -1,16 +1,10 @@
<template>
<div class="relative flex h-full flex-col">
<div class="h-full flex-1">
<div class="flex h-screen text-base bg-surface-white">
<div
class="relative block min-h-0 flex-shrink-0 overflow-hidden hover:overflow-auto"
>
<AppSidebar />
</div>
<div class="w-full overflow-auto" id="scrollContainer">
<slot />
</div>
</div>
<div class="flex h-screen w-screen">
<div class="h-full border-r bg-surface-menu-bar">
<AppSidebar />
</div>
<div class="flex-1 flex flex-col h-full overflow-auto bg-surface-white">
<slot />
</div>
</div>
</template>
+3
View File
@@ -33,6 +33,9 @@
<Badge>
{{ job.type }}
</Badge>
<Badge v-if="job.work_mode">
{{ job.work_mode }}
</Badge>
<Badge>
{{ dayjs(job.creation).fromNow() }}
</Badge>
@@ -152,6 +152,7 @@ const show = defineModel<boolean>({ default: false })
const searchFilter = ref<string | null>(null)
type Filters = {
course: string | undefined
member_name?: string[]
}
+49 -47
View File
@@ -1,60 +1,62 @@
<template>
<Dropdown class="p-2" :options="userDropdownOptions">
<template v-slot="{ open }">
<button
class="flex h-12 py-2 items-center rounded-md duration-300 ease-in-out"
:class="
isCollapsed
? 'px-0 w-auto'
: open
? 'bg-surface-white shadow-sm px-2 w-52'
: 'hover:bg-surface-gray-3 px-2 w-52'
"
>
<img
v-if="branding.data?.banner_image"
:src="branding.data?.banner_image.file_url"
class="w-8 h-8 rounded flex-shrink-0"
/>
<LMSLogo v-else class="w-8 h-8 rounded flex-shrink-0" />
<div
class="flex flex-1 flex-col text-left duration-300 ease-in-out"
<div class="p-2">
<Dropdown :options="userDropdownOptions">
<template v-slot="{ open }">
<button
class="flex h-12 py-2 items-center rounded-md duration-300 ease-in-out"
:class="
isCollapsed
? 'opacity-0 ml-0 w-0 overflow-hidden'
: 'opacity-100 ml-2 w-auto'
? 'px-0 w-auto'
: open
? 'bg-surface-white shadow-sm px-2 w-52'
: 'hover:bg-surface-gray-3 px-2 w-52'
"
>
<div class="text-base font-medium text-ink-gray-9 leading-none">
<span
v-if="
branding.data?.app_name && branding.data?.app_name != 'Frappe'
"
<img
v-if="branding.data?.banner_image"
:src="branding.data?.banner_image.file_url"
class="w-8 h-8 rounded flex-shrink-0"
/>
<LMSLogo v-else class="w-8 h-8 rounded flex-shrink-0" />
<div
class="flex flex-1 flex-col text-left duration-300 ease-in-out"
:class="
isCollapsed
? 'opacity-0 ml-0 w-0 overflow-hidden'
: 'opacity-100 ml-2 w-auto'
"
>
<div class="text-base font-medium text-ink-gray-9 leading-none">
<span
v-if="
branding.data?.app_name && branding.data?.app_name != 'Frappe'
"
>
{{ branding.data?.app_name }}
</span>
<span v-else> Learning </span>
</div>
<div
v-if="userResource.data"
class="mt-1 text-sm text-ink-gray-7 leading-none"
>
{{ branding.data?.app_name }}
</span>
<span v-else> Learning </span>
{{ convertToTitleCase(userResource.data?.full_name) }}
</div>
</div>
<div
v-if="userResource.data"
class="mt-1 text-sm text-ink-gray-7 leading-none"
class="duration-300 ease-in-out"
:class="
isCollapsed
? 'opacity-0 ml-0 w-0 overflow-hidden'
: 'opacity-100 ml-2 w-auto'
"
>
{{ convertToTitleCase(userResource.data?.full_name) }}
<ChevronDown class="h-4 w-4 text-ink-gray-7" />
</div>
</div>
<div
class="duration-300 ease-in-out"
:class="
isCollapsed
? 'opacity-0 ml-0 w-0 overflow-hidden'
: 'opacity-100 ml-2 w-auto'
"
>
<ChevronDown class="h-4 w-4 text-ink-gray-7" />
</div>
</button>
</template>
</Dropdown>
</button>
</template>
</Dropdown>
</div>
<SettingsModal
v-if="userResource.data?.is_moderator"
v-model="showSettingsModal"
+22 -1
View File
@@ -103,9 +103,10 @@ import {
Tooltip,
usePageMeta,
} from 'frappe-ui'
import { computed, watch } from 'vue'
import { computed, inject, watch } from 'vue'
import { Users, Star } from 'lucide-vue-next'
import { sessionStore } from '@/stores/session'
import { useRouter } from 'vue-router'
import CourseCardOverlay from '@/components/CourseCardOverlay.vue'
import CourseOutline from '@/components/CourseOutline.vue'
import CourseReviews from '@/components/CourseReviews.vue'
@@ -114,6 +115,8 @@ import CourseInstructors from '@/components/CourseInstructors.vue'
import RelatedCourses from '@/components/RelatedCourses.vue'
const { brand } = sessionStore()
const router = useRouter()
const user = inject('$user')
const props = defineProps({
courseName: {
@@ -140,6 +143,24 @@ watch(
}
)
watch(course, () => {
if (!isInstructor() && !course.data?.published && !course.data?.upcoming) {
router.push({
name: 'Courses',
})
}
})
const isInstructor = () => {
let user_is_instructor = false
course.data?.instructors.forEach((instructor) => {
if (!user_is_instructor && instructor.name == user.data?.name) {
user_is_instructor = true
}
})
return user_is_instructor
}
const breadcrumbs = computed(() => {
let items = [{ label: 'Courses', route: { name: 'Courses' } }]
items.push({
+2 -2
View File
@@ -4,10 +4,10 @@
>
<Breadcrumbs :items="[{ label: __('Home'), route: { name: 'Home' } }]" />
</header> -->
<div class="w-full px-5 pt-10 pb-10">
<div class="w-full px-5 pt-5 pb-10">
<div class="flex items-center justify-between">
<div class="space-y-2">
<div class="text-xl font-bold">
<div class="text-xl font-bold text-ink-gray-9">
{{ __('Hey') }}, {{ user.data?.full_name }} 👋
</div>
<div class="text-lg text-ink-gray-6">
+4 -4
View File
@@ -2,7 +2,7 @@
<div>
<div v-if="myCourses.data?.length" class="mt-10">
<div class="flex items-center justify-between mb-3">
<span class="font-semibold text-lg">
<span class="font-semibold text-lg text-ink-gray-9">
{{
myCourses.data[0].membership
? __('My Courses')
@@ -34,7 +34,7 @@
<div v-if="myBatches.data?.length" class="mt-10">
<div class="flex items-center justify-between mb-3">
<span class="font-semibold text-lg">
<span class="font-semibold text-lg text-ink-gray-9">
{{
myBatches.data?.[0].students.includes(user.data?.name)
? __('My Batches')
@@ -46,7 +46,7 @@
name: 'Batches',
}"
>
<span class="flex items-center space-x- 1 text-ink-gray-5 text-xs">
<span class="flex items-center space-x-1 text-ink-gray-5 text-xs">
<span>
{{ __('See all') }}
</span>
@@ -67,7 +67,7 @@
<div class="grid grid-cols-2 gap-5 mt-10">
<UpcomingEvaluations :forHome="true" />
<div v-if="myLiveClasses.data?.length">
<div class="font-semibold text-lg mb-3">
<div class="font-semibold text-lg mb-3 text-ink-gray-9">
{{ __('Upcoming Live Classes') }}
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-5">
+7
View File
@@ -99,6 +99,12 @@
</template>
{{ job.data.type }}
</Badge>
<Badge v-if="job.data?.work_mode" size="lg">
<template #prefix>
<BriefcaseBusiness class="size-3 stroke-2 text-ink-gray-7" />
</template>
{{ job.data.work_mode }}
</Badge>
<Badge v-if="applicationCount.data" size="lg">
<template #prefix>
<SquareUserRound class="size-3 stroke-2 text-ink-gray-7" />
@@ -152,6 +158,7 @@ import {
SquareArrowOutUpRight,
FileText,
ClipboardType,
BriefcaseBusiness,
} from 'lucide-vue-next'
const user = inject('$user')
+16
View File
@@ -27,6 +27,13 @@
:options="jobTypes"
:required="true"
/>
<FormControl
v-model="job.work_mode"
:label="__('Work Mode')"
type="select"
:options="workModes"
:required="true"
/>
</div>
<div class="space-y-4">
<FormControl
@@ -225,6 +232,7 @@ const job = reactive({
location: '',
country: '',
type: 'Full Time',
work_mode: 'On-site',
status: 'Open',
company_name: '',
company_website: '',
@@ -302,6 +310,14 @@ const jobTypes = computed(() => {
]
})
const workModes = computed(() => {
return [
{ label: 'On site', value: 'On-site' },
{ label: 'Hybrid', value: 'Hybrid' },
{ label: 'Remote', value: 'Remote' },
]
})
const jobStatuses = computed(() => {
return [
{ label: 'Open', value: 'Open' },
+28 -1
View File
@@ -33,7 +33,7 @@
</div>
<div
class="grid grid-cols-1 gap-2"
class="grid grid-cols-1 gap-2 md:grid-cols-4"
:class="user.data ? 'md:grid-cols-3' : 'md:grid-cols-2'"
>
<FormControl
@@ -65,6 +65,14 @@
:placeholder="__('Type')"
@change="updateJobs"
/>
<FormControl
v-model="workMode"
type="select"
:options="workModes"
class="min-w-40 lg:min-w-0 lg:w-32 xl:w-40"
:placeholder="__('Work Mode')"
@change="updateJobs"
/>
</div>
</div>
<div v-if="jobs.data?.length" class="w-full md:w-4/5 mx-auto p-5 pt-0">
@@ -103,6 +111,7 @@ import EmptyState from '@/components/EmptyState.vue'
const user = inject('$user')
const jobType = ref(null)
const workMode = ref(null)
const { brand } = sessionStore()
const searchQuery = ref('')
const country = ref(null)
@@ -116,6 +125,9 @@ onMounted(() => {
if (queries.has('type')) {
jobType.value = queries.get('type')
}
if (queries.has('work_mode')) {
workMode.value = queries.get('work_mode')
}
updateJobs()
})
@@ -145,6 +157,12 @@ const updateFilters = () => {
delete filters.value.type
}
if (workMode.value) {
filters.value.work_mode = workMode.value
} else {
delete filters.value.work_mode
}
if (searchQuery.value) {
orFilters.value = {
job_title: ['like', `%${searchQuery.value}%`],
@@ -180,6 +198,15 @@ const jobTypes = computed(() => {
]
})
const workModes = computed(() => {
return [
'',
{ label: 'On site', value: 'On-site' },
{ label: 'Hybrid', value: 'Hybrid' },
{ label: 'Remote', value: 'Remote' },
]
})
usePageMeta(() => {
return {
title: __('Jobs'),
@@ -4,7 +4,7 @@
<Calendar
v-if="evaluations.data?.length"
:config="{
defaultMode: 'Month',
defaultMode: 'Week',
disableModes: ['Day', 'Week'],
redundantCellHeight: 100,
enableShortcuts: false,
@@ -87,8 +87,10 @@ const evaluations = createListResource({
mappedData.participant = d.member_name
mappedData.id = d.name
mappedData.venue = d.google_meet_link
mappedData.fromDate = `${d.date} ${d.start_time}`
mappedData.toDate = `${d.date} ${d.end_time}`
mappedData.fromDate = `${d.date}`
mappedData.toDate = `${d.date}`
mappedData.fromTime = d.start_time
mappedData.toTime = d.end_time
mappedData.color = 'green'
return mappedData
+3 -2
View File
@@ -45,7 +45,7 @@
<div class="pb-5">
<div class="flex items-center justify-between mt-5 mb-4">
<div class="text-lg font-semibold">
<div class="text-lg font-semibold text-ink-gray-9">
{{ __('Courses') }}
</div>
<Button @click="openForm('course')">
@@ -106,12 +106,13 @@
<div>
<div class="flex items-center justify-between mt-5 mb-4">
<div class="text-lg font-semibold">
<div class="text-lg font-semibold text-ink-gray-9">
{{ __('Members') }}
</div>
<div class="space-x-2">
<Button
v-if="programMembers.data.length > 0"
@click="
() => {
showProgressDialog = true
+405 -345
View File
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -1 +1 @@
__version__ = "2.36.0"
__version__ = "2.37.0"
@@ -12,6 +12,7 @@
"country",
"column_break_5",
"type",
"work_mode",
"status",
"disabled",
"section_break_6",
@@ -119,6 +120,12 @@
"label": "Country",
"options": "Country",
"reqd": 1
},
{
"fieldname": "work_mode",
"fieldtype": "Select",
"label": "Work Mode",
"options": "\nRemote\nHybrid\nOn-site"
}
],
"grid_page_length": 50,
@@ -130,8 +137,8 @@
}
],
"make_attachments_public": 1,
"modified": "2025-04-24 14:34:35.920242",
"modified_by": "sayali@frappe.io",
"modified": "2025-09-24 15:32:49.030004",
"modified_by": "Administrator",
"module": "Job",
"name": "Job Opportunity",
"owner": "Administrator",
+2
View File
@@ -253,6 +253,7 @@ def get_job_details(job):
"location",
"country",
"type",
"work_mode",
"company_name",
"company_logo",
"company_website",
@@ -279,6 +280,7 @@ def get_job_opportunities(filters=None, orFilters=None):
"location",
"country",
"type",
"work_mode",
"company_name",
"company_logo",
"name",
+164 -66
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2025-09-19 16:04+0000\n"
"PO-Revision-Date: 2025-09-24 07:15\n"
"POT-Creation-Date: 2025-09-26 16:04+0000\n"
"PO-Revision-Date: 2025-09-27 08:15\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Arabic\n"
"MIME-Version: 1.0\n"
@@ -145,8 +145,8 @@ msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:93
#: frontend/src/components/Settings/Members.vue:91
#: frontend/src/pages/Programs/ProgramForm.vue:56
#: frontend/src/pages/Programs/ProgramForm.vue:130
#: frontend/src/pages/Programs/ProgramForm.vue:179
#: frontend/src/pages/Programs/ProgramForm.vue:131
#: frontend/src/pages/Programs/ProgramForm.vue:180
msgid "Add"
msgstr "إضافة"
@@ -156,7 +156,7 @@ msgstr "إضافة"
msgid "Add Chapter"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:175
#: frontend/src/pages/Programs/ProgramForm.vue:176
msgid "Add Course to Program"
msgstr ""
@@ -221,6 +221,10 @@ msgstr ""
msgid "Add a new question"
msgstr ""
#: frontend/src/components/AppSidebar.vue:600
msgid "Add a program"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseModal.vue:5
msgid "Add a programming exercise to your lesson"
msgstr ""
@@ -274,6 +278,7 @@ msgid "Add your first lesson"
msgstr ""
#. Label of the address (Link) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:56
#: frontend/src/pages/Billing.vue:64
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Address"
@@ -353,6 +358,8 @@ msgstr ""
#. Label of the amount (Currency) field in DocType 'LMS Batch'
#. Label of the course_price (Currency) field in DocType 'LMS Course'
#. Label of the amount (Currency) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:68
#: frontend/src/components/Settings/Transactions.vue:219
#: frontend/src/pages/BatchForm.vue:278 frontend/src/pages/CourseForm.vue:262
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -460,7 +467,7 @@ msgstr ""
msgid "Are you sure you want to enroll?"
msgstr ""
#: frontend/src/components/UserDropdown.vue:175
#: frontend/src/components/UserDropdown.vue:177
msgid "Are you sure you want to login to your Frappe Cloud dashboard?"
msgstr "هل أنت متأكد أنك تريد تسجيل الدخول إلى لوحة معلومات Frappe Cloud الخاصة بك؟"
@@ -496,7 +503,7 @@ msgid "Assessment {0} has already been added to this batch."
msgstr ""
#. Label of the show_assessments (Check) field in DocType 'LMS Settings'
#: frontend/src/components/AppSidebar.vue:598
#: frontend/src/components/AppSidebar.vue:603
#: frontend/src/components/Assessments.vue:5
#: frontend/src/components/BatchStudents.vue:32
#: lms/lms/doctype/lms_settings/lms_settings.json
@@ -578,7 +585,7 @@ msgstr ""
msgid "Assignment will appear at the bottom of the lesson."
msgstr ""
#: frontend/src/components/AppSidebar.vue:602
#: frontend/src/components/AppSidebar.vue:607
#: frontend/src/components/Settings/Badges.vue:163
#: frontend/src/pages/Assignments.vue:208 lms/www/lms.py:271
msgid "Assignments"
@@ -702,6 +709,7 @@ msgstr ""
#: frontend/src/components/Modals/Event.vue:32
#: frontend/src/components/Settings/BadgeForm.vue:195
#: frontend/src/components/Settings/Badges.vue:200
#: frontend/src/components/Settings/TransactionDetails.vue:92
#: lms/lms/doctype/lms_batch_enrollment/lms_batch_enrollment.json
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
@@ -815,11 +823,11 @@ msgstr ""
msgid "Batch end date cannot be before the batch start date"
msgstr ""
#: lms/lms/api.py:210
#: lms/lms/api.py:211
msgid "Batch has already started."
msgstr ""
#: lms/lms/api.py:205
#: lms/lms/api.py:206
msgid "Batch is sold out."
msgstr ""
@@ -857,6 +865,8 @@ msgid "Billing Details"
msgstr "تفاصيل الفاتورة"
#. Label of the billing_name (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:31
#: frontend/src/components/Settings/Transactions.vue:213
#: frontend/src/pages/Billing.vue:70
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Billing Name"
@@ -1002,7 +1012,7 @@ msgstr ""
#. Enrollment'
#. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace
#: frontend/src/components/AppSidebar.vue:606
#: frontend/src/components/AppSidebar.vue:611
#: frontend/src/components/Modals/Event.vue:381
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58
#: frontend/src/pages/CourseCertification.vue:10
@@ -1145,7 +1155,7 @@ msgstr ""
#. Label of the city (Data) field in DocType 'User'
#. Label of the location (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/Billing.vue:81 frontend/src/pages/JobForm.vue:34
#: frontend/src/pages/Billing.vue:81 frontend/src/pages/JobForm.vue:41
#: lms/fixtures/custom_field.json
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "City"
@@ -1315,25 +1325,25 @@ msgstr "شركة"
#. Label of the section_break_6 (Section Break) field in DocType 'Job
#. Opportunity'
#: frontend/src/pages/JobForm.vue:56
#: frontend/src/pages/JobForm.vue:63
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Details"
msgstr "تفاصيل الشركة"
#. Label of the company_email_address (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:75
#: frontend/src/pages/JobForm.vue:82
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Email Address"
msgstr ""
#. Label of the company_logo (Attach Image) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:80
#: frontend/src/pages/JobForm.vue:87
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Logo"
msgstr "شعار الشركة"
#. Label of the company_name (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:62
#: frontend/src/pages/JobForm.vue:69
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Name"
msgstr "اسم الشركة"
@@ -1344,7 +1354,7 @@ msgid "Company Type"
msgstr ""
#. Label of the company_website (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:68
#: frontend/src/pages/JobForm.vue:75
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Website"
msgstr ""
@@ -1414,7 +1424,7 @@ msgstr ""
msgid "Configurations"
msgstr ""
#: frontend/src/components/UserDropdown.vue:180
#: frontend/src/components/UserDropdown.vue:182
msgid "Confirm"
msgstr "أكد"
@@ -1461,7 +1471,7 @@ msgid "Continue Learning"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:178
#: frontend/src/pages/Jobs.vue:196
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Contract"
msgstr "عقد"
@@ -1491,7 +1501,7 @@ msgstr ""
#. Label of the country (Link) field in DocType 'User'
#. Label of the country (Link) field in DocType 'Job Opportunity'
#. Label of the country (Link) field in DocType 'Payment Country'
#: frontend/src/pages/Billing.vue:92 frontend/src/pages/JobForm.vue:40
#: frontend/src/pages/Billing.vue:92 frontend/src/pages/JobForm.vue:47
#: frontend/src/pages/Jobs.vue:57 lms/fixtures/custom_field.json
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/payment_country/payment_country.json
@@ -1533,7 +1543,8 @@ msgstr "الدولة"
#: frontend/src/components/Modals/Event.vue:24
#: frontend/src/components/Settings/BadgeForm.vue:194
#: frontend/src/components/Settings/Badges.vue:199
#: frontend/src/pages/Programs/ProgramForm.vue:195
#: frontend/src/components/Settings/TransactionDetails.vue:91
#: frontend/src/pages/Programs/ProgramForm.vue:196
#: frontend/src/pages/Programs/Programs.vue:35
#: lms/lms/doctype/batch_course/batch_course.json
#: lms/lms/doctype/cohort/cohort.json
@@ -1684,7 +1695,7 @@ msgstr ""
msgid "Course Title"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:436
#: frontend/src/pages/Programs/ProgramForm.vue:437
msgid "Course added to program successfully"
msgstr ""
@@ -1836,6 +1847,7 @@ msgstr ""
#. Label of the currency (Link) field in DocType 'LMS Batch'
#. Label of the currency (Link) field in DocType 'LMS Course'
#. Label of the currency (Link) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:64
#: frontend/src/pages/BatchForm.vue:285 frontend/src/pages/CourseForm.vue:279
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -1852,7 +1864,7 @@ msgstr ""
msgid "Current Streak"
msgstr ""
#: frontend/src/components/AppSidebar.vue:612
#: frontend/src/components/AppSidebar.vue:617
msgid "Custom Certificate Templates"
msgstr ""
@@ -1954,7 +1966,7 @@ msgstr ""
#: frontend/src/components/Settings/Badges.vue:171
#: frontend/src/pages/BatchForm.vue:565 frontend/src/pages/CourseForm.vue:597
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseForm.vue:67
#: frontend/src/pages/Programs/ProgramForm.vue:230
#: frontend/src/pages/Programs/ProgramForm.vue:231
msgid "Delete"
msgstr "حذف"
@@ -2004,7 +2016,7 @@ msgstr ""
#. Label of the description (Small Text) field in DocType 'Work Experience'
#: frontend/src/components/Modals/LiveClassModal.vue:80
#: frontend/src/components/Settings/BadgeForm.vue:32
#: frontend/src/pages/JobForm.vue:125
#: frontend/src/pages/JobForm.vue:132
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/cohort/cohort.json
@@ -2045,6 +2057,7 @@ msgstr ""
#. Label of the disabled (Check) field in DocType 'Job Opportunity'
#: frontend/src/components/Settings/Badges.vue:56
#: frontend/src/components/Settings/PaymentGateways.vue:55
#: frontend/src/components/Settings/ZoomSettings.vue:66
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Disabled"
@@ -2145,6 +2158,10 @@ msgstr ""
msgid "Edit Email Template"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8
msgid "Edit Payment Gateway"
msgstr ""
#: frontend/src/pages/Profile.vue:72
msgid "Edit Profile"
msgstr "تعديل الملف الشخصي"
@@ -2250,6 +2267,7 @@ msgstr ""
#: frontend/src/components/Modals/ZoomAccountModal.vue:23
#: frontend/src/components/Settings/BadgeForm.vue:14
#: frontend/src/components/Settings/Badges.vue:53
#: frontend/src/components/Settings/PaymentGateways.vue:52
#: frontend/src/components/Settings/ZoomSettings.vue:63
#: lms/lms/doctype/lms_badge/lms_badge.json
#: lms/lms/doctype/lms_zoom_settings/lms_zoom_settings.json
@@ -2301,7 +2319,7 @@ msgstr ""
msgid "Enforce Course Order"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:176
#: frontend/src/pages/Programs/ProgramForm.vue:177
msgid "Enroll Member to Program"
msgstr ""
@@ -2460,15 +2478,15 @@ msgstr ""
msgid "Evaluator Schedule"
msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:163
#: frontend/src/components/Settings/Evaluators.vue:160
msgid "Evaluator added successfully"
msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:196
#: frontend/src/components/Settings/Evaluators.vue:193
msgid "Evaluator deleted successfully"
msgstr ""
#: lms/lms/api.py:1392
#: lms/lms/api.py:1416
msgid "Evaluator does not exist."
msgstr ""
@@ -2640,10 +2658,15 @@ msgstr ""
msgid "File Type"
msgstr "نوع الملف"
#: frontend/src/components/Settings/Transactions.vue:15
msgid "Filter by Billing Name"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:23
msgid "Filter by Exercise"
msgstr ""
#: frontend/src/components/Settings/Transactions.vue:20
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:28
msgid "Filter by Member"
msgstr ""
@@ -2677,7 +2700,7 @@ msgid "Free"
msgstr "مجاني"
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:179
#: frontend/src/pages/Jobs.vue:197
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Freelance"
msgstr ""
@@ -2719,7 +2742,7 @@ msgid "Full Name"
msgstr "الاسم الكامل"
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:176
#: frontend/src/pages/Jobs.vue:194
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Full Time"
msgstr ""
@@ -2741,10 +2764,15 @@ msgid "GST Number"
msgstr ""
#. Label of the gstin (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:76
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "GSTIN"
msgstr ""
#: frontend/src/components/Settings/PaymentGateways.vue:134
msgid "Gateway"
msgstr ""
#. Label of the general_tab (Tab Break) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "General"
@@ -2923,6 +2951,11 @@ msgstr "الصفحة الرئيسية"
msgid "Host"
msgstr ""
#. Option for the 'Work Mode' (Select) field in DocType 'Job Opportunity'
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Hybrid"
msgstr ""
#. Label of the current (Check) field in DocType 'Work Experience'
#: lms/lms/doctype/work_experience/work_experience.json
msgid "I am currently working here"
@@ -3197,7 +3230,7 @@ msgstr ""
msgid "Issue Date"
msgstr "تاريخ القضية"
#: frontend/src/components/AppSidebar.vue:609
#: frontend/src/components/AppSidebar.vue:614
msgid "Issue a Certificate"
msgstr ""
@@ -3273,7 +3306,7 @@ msgstr "المسمى الوظيفي"
#. 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/Jobs.vue:185
#: frontend/src/pages/Jobs.vue:212
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Jobs"
msgstr "وظائف"
@@ -3621,6 +3654,10 @@ msgstr ""
msgid "Learning Consistency"
msgstr ""
#: frontend/src/components/AppSidebar.vue:598
msgid "Learning Paths"
msgstr ""
#. Label of the left_at (Datetime) field in DocType 'LMS Live Class
#. Participant'
#: lms/lms/doctype/lms_live_class_participant/lms_live_class_participant.json
@@ -3753,6 +3790,7 @@ msgstr ""
#: frontend/src/components/Modals/CourseProgressSummary.vue:86
#: frontend/src/components/Settings/Evaluators.vue:81
#: frontend/src/components/Settings/Members.vue:79
#: frontend/src/components/Settings/Transactions.vue:94
#: frontend/src/pages/Assignments.vue:66 frontend/src/pages/Batches.vue:82
#: frontend/src/pages/CertifiedParticipants.vue:98
#: frontend/src/pages/Courses.vue:77
@@ -3786,7 +3824,7 @@ msgstr ""
msgid "Login"
msgstr "دخول"
#: frontend/src/components/UserDropdown.vue:174
#: frontend/src/components/UserDropdown.vue:176
msgid "Login to Frappe Cloud?"
msgstr "تسجيل الدخول إلى Frappe Cloud؟"
@@ -3940,6 +3978,7 @@ msgstr ""
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:26
#: frontend/src/components/Settings/BadgeAssignments.vue:179
#: frontend/src/components/Settings/BadgeForm.vue:215
#: frontend/src/components/Settings/TransactionDetails.vue:26
#: frontend/src/components/Settings/ZoomSettings.vue:187
#: frontend/src/pages/AssignmentSubmissionList.vue:14
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:268
@@ -4073,7 +4112,7 @@ msgstr ""
msgid "Member Username"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:462
#: frontend/src/pages/Programs/ProgramForm.vue:463
msgid "Member added to program successfully"
msgstr ""
@@ -4157,7 +4196,7 @@ msgstr ""
msgid "Meta Tags"
msgstr "العلامات الفوقية"
#: lms/lms/api.py:1432
#: lms/lms/api.py:1456
msgid "Meta tags should be a list."
msgstr ""
@@ -4209,11 +4248,11 @@ msgstr ""
msgid "Modified By"
msgstr "عدل من قبل"
#: lms/lms/api.py:187
#: lms/lms/api.py:188
msgid "Module Name is incorrect or does not exist."
msgstr ""
#: lms/lms/api.py:183
#: lms/lms/api.py:184
msgid "Module is incorrect."
msgstr ""
@@ -4224,7 +4263,7 @@ msgstr ""
msgid "Monday"
msgstr "يوم الاثنين"
#: frontend/src/components/AppSidebar.vue:617
#: frontend/src/components/AppSidebar.vue:622
msgid "Monetization"
msgstr ""
@@ -4268,6 +4307,7 @@ msgstr "اسم"
#: frontend/src/components/Settings/EmailTemplates.vue:17
#: frontend/src/components/Settings/Evaluators.vue:17
#: frontend/src/components/Settings/Members.vue:17
#: frontend/src/components/Settings/PaymentGateways.vue:16
#: frontend/src/components/Settings/ZoomSettings.vue:17
#: frontend/src/pages/Courses.vue:312
#: frontend/src/pages/Programs/Programs.vue:10
@@ -4295,6 +4335,10 @@ msgstr ""
msgid "New Job Applicant"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7
msgid "New Payment Gateway"
msgstr ""
#: frontend/src/pages/QuizForm.vue:137
msgid "New Question"
msgstr ""
@@ -4399,7 +4443,7 @@ msgstr ""
msgid "No live classes scheduled"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:166
#: frontend/src/pages/Programs/ProgramForm.vue:167
msgid "No members added yet."
msgstr ""
@@ -4469,7 +4513,6 @@ msgstr "لا يسمح"
#: frontend/src/components/Assignment.vue:36
#: frontend/src/components/Settings/BrandSettings.vue:10
#: frontend/src/components/Settings/PaymentSettings.vue:9
#: frontend/src/components/Settings/SettingDetails.vue:10
#: frontend/src/pages/Programs/ProgramForm.vue:16
#: frontend/src/pages/QuizForm.vue:8 frontend/src/pages/QuizSubmission.vue:9
@@ -4522,6 +4565,11 @@ msgstr ""
msgid "Offline"
msgstr ""
#. Option for the 'Work Mode' (Select) field in DocType 'Job Opportunity'
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "On-site"
msgstr ""
#: lms/templates/emails/certification.html:16
msgid "Once again, congratulations on this significant accomplishment."
msgstr ""
@@ -4569,6 +4617,10 @@ msgstr ""
msgid "Open Ended"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:88
msgid "Open the "
msgstr ""
#. Label of the option (Data) field in DocType 'LMS Option'
#: frontend/src/components/Modals/Question.vue:70
#: lms/lms/doctype/lms_option/lms_option.json
@@ -4605,6 +4657,7 @@ msgid "Orange"
msgstr ""
#. Label of the order_id (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:70
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Order ID"
msgstr ""
@@ -4642,6 +4695,7 @@ msgid "Owner"
msgstr "مالك"
#. Label of the pan (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:77
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "PAN"
msgstr ""
@@ -4687,7 +4741,7 @@ msgid "Pan Number"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:177
#: frontend/src/pages/Jobs.vue:195
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Part Time"
msgstr ""
@@ -4747,21 +4801,38 @@ msgstr ""
#. Label of the payment_details_section (Section Break) field in DocType 'LMS
#. Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:42
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment Details"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:18
msgid "Payment For Certificate"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:51
msgid "Payment For Document"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:46
msgid "Payment For Document Type"
msgstr ""
#. Label of the payment_gateway (Data) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Payment Gateway"
msgstr "بوابة الدفع"
#. Label of the payment_id (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:79
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment ID"
msgstr ""
#. Label of the payment_received (Check) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:13
#: frontend/src/components/Settings/Transactions.vue:25
#: frontend/src/components/Settings/Transactions.vue:226
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment Received"
msgstr "تم استلام الدفعة"
@@ -4783,6 +4854,8 @@ msgid "Payment for "
msgstr ""
#. Label of the payment_for_certificate (Check) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/Transactions.vue:30
#: frontend/src/components/Settings/Transactions.vue:233
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment for Certificate"
msgstr ""
@@ -4923,7 +4996,7 @@ msgstr ""
msgid "Please login to access this page."
msgstr ""
#: lms/lms/api.py:179
#: lms/lms/api.py:180
msgid "Please login to continue with payment."
msgstr ""
@@ -4940,7 +5013,7 @@ msgstr ""
msgid "Please run the code to execute the test cases."
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:420
#: frontend/src/pages/Programs/ProgramForm.vue:421
msgid "Please select a course"
msgstr ""
@@ -4956,7 +5029,7 @@ msgstr ""
msgid "Please select a future date and time."
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:447
#: frontend/src/pages/Programs/ProgramForm.vue:448
msgid "Please select a member"
msgstr ""
@@ -5146,7 +5219,7 @@ msgstr ""
msgid "Program Courses"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:205
#: frontend/src/pages/Programs/ProgramForm.vue:206
msgid "Program Member"
msgstr ""
@@ -5155,15 +5228,15 @@ msgstr ""
msgid "Program Members"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:380
#: frontend/src/pages/Programs/ProgramForm.vue:381
msgid "Program created successfully"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:551
#: frontend/src/pages/Programs/ProgramForm.vue:552
msgid "Program deleted successfully"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:399
#: frontend/src/pages/Programs/ProgramForm.vue:400
msgid "Program updated successfully"
msgstr ""
@@ -5229,7 +5302,7 @@ msgid "Progress Distribution"
msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:99
#: frontend/src/pages/Programs/ProgramForm.vue:124
#: frontend/src/pages/Programs/ProgramForm.vue:125
msgid "Progress Summary"
msgstr ""
@@ -5407,7 +5480,7 @@ msgstr ""
msgid "Quiz will appear at the bottom of the lesson."
msgstr ""
#: frontend/src/components/AppSidebar.vue:601
#: frontend/src/components/AppSidebar.vue:606
#: frontend/src/pages/QuizForm.vue:396 frontend/src/pages/Quizzes.vue:275
#: frontend/src/pages/Quizzes.vue:285 lms/www/lms.py:249
msgid "Quizzes"
@@ -5497,6 +5570,11 @@ msgstr "مرفوض"
msgid "Related Courses"
msgstr ""
#. Option for the 'Work Mode' (Select) field in DocType 'Job Opportunity'
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Remote"
msgstr ""
#: frontend/src/components/Controls/Uploader.vue:34
#: frontend/src/pages/BatchForm.vue:246 frontend/src/pages/CourseForm.vue:119
msgid "Remove"
@@ -5587,7 +5665,7 @@ msgstr ""
msgid "Role updated successfully"
msgstr ""
#: frontend/src/components/AppSidebar.vue:629
#: frontend/src/components/AppSidebar.vue:634
msgid "Roles"
msgstr "الصلاحيات"
@@ -5671,11 +5749,13 @@ msgstr "السبت"
#: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
#: frontend/src/components/Settings/BadgeForm.vue:78
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:38
#: frontend/src/components/Settings/TransactionDetails.vue:96
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17
#: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseForm.vue:101
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseModal.vue:9
#: frontend/src/pages/Programs/ProgramForm.vue:233
#: frontend/src/pages/Programs/ProgramForm.vue:234
#: frontend/src/pages/QuizForm.vue:43 frontend/src/pages/QuizSubmission.vue:14
#: frontend/src/pages/Quizzes.vue:105
msgid "Save"
@@ -5777,6 +5857,10 @@ msgstr ""
msgid "Select Date"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22
msgid "Select Payment Gateway"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseModal.vue:23
msgid "Select a Programming Exercise"
msgstr ""
@@ -5832,11 +5916,11 @@ msgstr ""
msgid "Setting up"
msgstr ""
#: frontend/src/components/AppSidebar.vue:622
#: frontend/src/components/AppSidebar.vue:627
msgid "Setting up payment gateway"
msgstr ""
#: frontend/src/components/AppSidebar.vue:627
#: frontend/src/components/AppSidebar.vue:632
#: frontend/src/components/Settings/Settings.vue:7
#: frontend/src/pages/BatchForm.vue:53 frontend/src/pages/CourseForm.vue:142
#: frontend/src/pages/ProfileRoles.vue:4
@@ -5994,6 +6078,7 @@ msgstr ""
#. Label of the source (Link) field in DocType 'LMS Payment'
#. Label of the source (Data) field in DocType 'LMS Source'
#. Label of the source (Data) field in DocType 'LMS Video Watch Duration'
#: frontend/src/components/Settings/TransactionDetails.vue:35
#: lms/lms/doctype/lms_batch_enrollment/lms_batch_enrollment.json
#: lms/lms/doctype/lms_payment/lms_payment.json
#: lms/lms/doctype/lms_source/lms_source.json
@@ -6106,7 +6191,7 @@ msgstr ""
#: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19
#: frontend/src/pages/JobForm.vue:46
#: frontend/src/pages/JobForm.vue:53
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:280
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/cohort/cohort.json
@@ -6243,7 +6328,7 @@ msgstr "ملخص"
msgid "Sunday"
msgstr "الأحد"
#: lms/lms/api.py:1057
#: lms/lms/api.py:1081
msgid "Suspicious pattern found in {0}: {1}"
msgstr ""
@@ -6706,6 +6791,10 @@ msgstr ""
msgid "Training Feedback"
msgstr "ردود الفعل على التدريب"
#: frontend/src/components/Settings/TransactionDetails.vue:5
msgid "Transaction Details"
msgstr "تفاصيل الصفقه"
#. Option for the 'Location Preference' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Travel"
@@ -6838,7 +6927,6 @@ msgid "Upcoming Live Classes"
msgstr ""
#: frontend/src/components/Settings/BrandSettings.vue:24
#: frontend/src/components/Settings/PaymentSettings.vue:27
#: frontend/src/components/Settings/SettingDetails.vue:23
msgid "Update"
msgstr "تحديث"
@@ -7073,6 +7161,12 @@ msgstr ""
msgid "Work Experience Details"
msgstr ""
#. Label of the work_mode (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:32 frontend/src/pages/Jobs.vue:73
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Work Mode"
msgstr ""
#: frontend/src/components/CourseReviews.vue:8
#: frontend/src/components/Modals/ReviewModal.vue:5
#: lms/templates/reviews.html:117
@@ -7103,11 +7197,11 @@ msgstr ""
msgid "You are already certified for this course. Click on the card below to open your certificate."
msgstr ""
#: lms/lms/api.py:199
#: lms/lms/api.py:200
msgid "You are already enrolled for this batch."
msgstr ""
#: lms/lms/api.py:193
#: lms/lms/api.py:194
msgid "You are already enrolled for this course."
msgstr ""
@@ -7181,7 +7275,7 @@ msgstr ""
msgid "You have already exceeded the maximum number of attempts allowed for this quiz."
msgstr ""
#: lms/lms/api.py:223
#: lms/lms/api.py:224
msgid "You have already purchased the certificate for this course."
msgstr ""
@@ -7352,11 +7446,11 @@ msgstr "و"
msgid "and then 'Add to Home Screen'"
msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:108
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114
msgid "applicant"
msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:108
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114
msgid "applicants"
msgstr ""
@@ -7405,11 +7499,11 @@ msgstr ""
#: frontend/src/pages/Home/Streak.vue:37 frontend/src/pages/Home/Streak.vue:45
msgid "days"
msgstr ""
msgstr "أيام"
#: frontend/src/pages/Home/Home.vue:100 frontend/src/pages/Home/Home.vue:123
msgid "evaluation"
msgstr ""
msgstr "تقييم"
#: frontend/src/pages/Home/Home.vue:100 frontend/src/pages/Home/Home.vue:123
msgid "evaluations"
@@ -7509,7 +7603,7 @@ msgstr ""
msgid "{0} Quizzes"
msgstr ""
#: lms/lms/api.py:836 lms/lms/api.py:844
#: lms/lms/api.py:838 lms/lms/api.py:846
msgid "{0} Settings not found"
msgstr ""
@@ -7565,6 +7659,10 @@ msgstr ""
msgid "{0} mentioned you in a comment in {1}"
msgstr "{0} ذكرتك في تعليق في {1}"
#: lms/lms/api.py:887
msgid "{0} not found"
msgstr "لم يتم العثور على {0}"
#: lms/lms/utils.py:450
msgid "{0}k"
msgstr ""
+196 -98
View File
File diff suppressed because it is too large Load Diff
+163 -65
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2025-09-19 16:04+0000\n"
"PO-Revision-Date: 2025-09-24 07:15\n"
"POT-Creation-Date: 2025-09-26 16:04+0000\n"
"PO-Revision-Date: 2025-09-27 08:15\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Czech\n"
"MIME-Version: 1.0\n"
@@ -145,8 +145,8 @@ msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:93
#: frontend/src/components/Settings/Members.vue:91
#: frontend/src/pages/Programs/ProgramForm.vue:56
#: frontend/src/pages/Programs/ProgramForm.vue:130
#: frontend/src/pages/Programs/ProgramForm.vue:179
#: frontend/src/pages/Programs/ProgramForm.vue:131
#: frontend/src/pages/Programs/ProgramForm.vue:180
msgid "Add"
msgstr ""
@@ -156,7 +156,7 @@ msgstr ""
msgid "Add Chapter"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:175
#: frontend/src/pages/Programs/ProgramForm.vue:176
msgid "Add Course to Program"
msgstr ""
@@ -221,6 +221,10 @@ msgstr ""
msgid "Add a new question"
msgstr ""
#: frontend/src/components/AppSidebar.vue:600
msgid "Add a program"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseModal.vue:5
msgid "Add a programming exercise to your lesson"
msgstr ""
@@ -274,6 +278,7 @@ msgid "Add your first lesson"
msgstr ""
#. Label of the address (Link) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:56
#: frontend/src/pages/Billing.vue:64
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Address"
@@ -353,6 +358,8 @@ msgstr ""
#. Label of the amount (Currency) field in DocType 'LMS Batch'
#. Label of the course_price (Currency) field in DocType 'LMS Course'
#. Label of the amount (Currency) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:68
#: frontend/src/components/Settings/Transactions.vue:219
#: frontend/src/pages/BatchForm.vue:278 frontend/src/pages/CourseForm.vue:262
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -460,7 +467,7 @@ msgstr ""
msgid "Are you sure you want to enroll?"
msgstr ""
#: frontend/src/components/UserDropdown.vue:175
#: frontend/src/components/UserDropdown.vue:177
msgid "Are you sure you want to login to your Frappe Cloud dashboard?"
msgstr ""
@@ -496,7 +503,7 @@ msgid "Assessment {0} has already been added to this batch."
msgstr ""
#. Label of the show_assessments (Check) field in DocType 'LMS Settings'
#: frontend/src/components/AppSidebar.vue:598
#: frontend/src/components/AppSidebar.vue:603
#: frontend/src/components/Assessments.vue:5
#: frontend/src/components/BatchStudents.vue:32
#: lms/lms/doctype/lms_settings/lms_settings.json
@@ -578,7 +585,7 @@ msgstr ""
msgid "Assignment will appear at the bottom of the lesson."
msgstr ""
#: frontend/src/components/AppSidebar.vue:602
#: frontend/src/components/AppSidebar.vue:607
#: frontend/src/components/Settings/Badges.vue:163
#: frontend/src/pages/Assignments.vue:208 lms/www/lms.py:271
msgid "Assignments"
@@ -702,6 +709,7 @@ msgstr ""
#: frontend/src/components/Modals/Event.vue:32
#: frontend/src/components/Settings/BadgeForm.vue:195
#: frontend/src/components/Settings/Badges.vue:200
#: frontend/src/components/Settings/TransactionDetails.vue:92
#: lms/lms/doctype/lms_batch_enrollment/lms_batch_enrollment.json
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
@@ -815,11 +823,11 @@ msgstr ""
msgid "Batch end date cannot be before the batch start date"
msgstr ""
#: lms/lms/api.py:210
#: lms/lms/api.py:211
msgid "Batch has already started."
msgstr ""
#: lms/lms/api.py:205
#: lms/lms/api.py:206
msgid "Batch is sold out."
msgstr ""
@@ -857,6 +865,8 @@ msgid "Billing Details"
msgstr ""
#. Label of the billing_name (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:31
#: frontend/src/components/Settings/Transactions.vue:213
#: frontend/src/pages/Billing.vue:70
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Billing Name"
@@ -1002,7 +1012,7 @@ msgstr ""
#. Enrollment'
#. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace
#: frontend/src/components/AppSidebar.vue:606
#: frontend/src/components/AppSidebar.vue:611
#: frontend/src/components/Modals/Event.vue:381
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58
#: frontend/src/pages/CourseCertification.vue:10
@@ -1145,7 +1155,7 @@ msgstr ""
#. Label of the city (Data) field in DocType 'User'
#. Label of the location (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/Billing.vue:81 frontend/src/pages/JobForm.vue:34
#: frontend/src/pages/Billing.vue:81 frontend/src/pages/JobForm.vue:41
#: lms/fixtures/custom_field.json
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "City"
@@ -1315,25 +1325,25 @@ msgstr ""
#. Label of the section_break_6 (Section Break) field in DocType 'Job
#. Opportunity'
#: frontend/src/pages/JobForm.vue:56
#: frontend/src/pages/JobForm.vue:63
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Details"
msgstr ""
#. Label of the company_email_address (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:75
#: frontend/src/pages/JobForm.vue:82
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Email Address"
msgstr ""
#. Label of the company_logo (Attach Image) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:80
#: frontend/src/pages/JobForm.vue:87
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Logo"
msgstr ""
#. Label of the company_name (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:62
#: frontend/src/pages/JobForm.vue:69
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Name"
msgstr ""
@@ -1344,7 +1354,7 @@ msgid "Company Type"
msgstr ""
#. Label of the company_website (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:68
#: frontend/src/pages/JobForm.vue:75
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Website"
msgstr ""
@@ -1414,7 +1424,7 @@ msgstr ""
msgid "Configurations"
msgstr ""
#: frontend/src/components/UserDropdown.vue:180
#: frontend/src/components/UserDropdown.vue:182
msgid "Confirm"
msgstr ""
@@ -1461,7 +1471,7 @@ msgid "Continue Learning"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:178
#: frontend/src/pages/Jobs.vue:196
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Contract"
msgstr ""
@@ -1491,7 +1501,7 @@ msgstr ""
#. Label of the country (Link) field in DocType 'User'
#. Label of the country (Link) field in DocType 'Job Opportunity'
#. Label of the country (Link) field in DocType 'Payment Country'
#: frontend/src/pages/Billing.vue:92 frontend/src/pages/JobForm.vue:40
#: frontend/src/pages/Billing.vue:92 frontend/src/pages/JobForm.vue:47
#: frontend/src/pages/Jobs.vue:57 lms/fixtures/custom_field.json
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/payment_country/payment_country.json
@@ -1533,7 +1543,8 @@ msgstr ""
#: frontend/src/components/Modals/Event.vue:24
#: frontend/src/components/Settings/BadgeForm.vue:194
#: frontend/src/components/Settings/Badges.vue:199
#: frontend/src/pages/Programs/ProgramForm.vue:195
#: frontend/src/components/Settings/TransactionDetails.vue:91
#: frontend/src/pages/Programs/ProgramForm.vue:196
#: frontend/src/pages/Programs/Programs.vue:35
#: lms/lms/doctype/batch_course/batch_course.json
#: lms/lms/doctype/cohort/cohort.json
@@ -1684,7 +1695,7 @@ msgstr ""
msgid "Course Title"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:436
#: frontend/src/pages/Programs/ProgramForm.vue:437
msgid "Course added to program successfully"
msgstr ""
@@ -1836,6 +1847,7 @@ msgstr ""
#. Label of the currency (Link) field in DocType 'LMS Batch'
#. Label of the currency (Link) field in DocType 'LMS Course'
#. Label of the currency (Link) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:64
#: frontend/src/pages/BatchForm.vue:285 frontend/src/pages/CourseForm.vue:279
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -1852,7 +1864,7 @@ msgstr ""
msgid "Current Streak"
msgstr ""
#: frontend/src/components/AppSidebar.vue:612
#: frontend/src/components/AppSidebar.vue:617
msgid "Custom Certificate Templates"
msgstr ""
@@ -1954,7 +1966,7 @@ msgstr ""
#: frontend/src/components/Settings/Badges.vue:171
#: frontend/src/pages/BatchForm.vue:565 frontend/src/pages/CourseForm.vue:597
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseForm.vue:67
#: frontend/src/pages/Programs/ProgramForm.vue:230
#: frontend/src/pages/Programs/ProgramForm.vue:231
msgid "Delete"
msgstr ""
@@ -2004,7 +2016,7 @@ msgstr ""
#. Label of the description (Small Text) field in DocType 'Work Experience'
#: frontend/src/components/Modals/LiveClassModal.vue:80
#: frontend/src/components/Settings/BadgeForm.vue:32
#: frontend/src/pages/JobForm.vue:125
#: frontend/src/pages/JobForm.vue:132
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/cohort/cohort.json
@@ -2045,6 +2057,7 @@ msgstr ""
#. Label of the disabled (Check) field in DocType 'Job Opportunity'
#: frontend/src/components/Settings/Badges.vue:56
#: frontend/src/components/Settings/PaymentGateways.vue:55
#: frontend/src/components/Settings/ZoomSettings.vue:66
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Disabled"
@@ -2145,6 +2158,10 @@ msgstr ""
msgid "Edit Email Template"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8
msgid "Edit Payment Gateway"
msgstr ""
#: frontend/src/pages/Profile.vue:72
msgid "Edit Profile"
msgstr ""
@@ -2250,6 +2267,7 @@ msgstr ""
#: frontend/src/components/Modals/ZoomAccountModal.vue:23
#: frontend/src/components/Settings/BadgeForm.vue:14
#: frontend/src/components/Settings/Badges.vue:53
#: frontend/src/components/Settings/PaymentGateways.vue:52
#: frontend/src/components/Settings/ZoomSettings.vue:63
#: lms/lms/doctype/lms_badge/lms_badge.json
#: lms/lms/doctype/lms_zoom_settings/lms_zoom_settings.json
@@ -2301,7 +2319,7 @@ msgstr ""
msgid "Enforce Course Order"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:176
#: frontend/src/pages/Programs/ProgramForm.vue:177
msgid "Enroll Member to Program"
msgstr ""
@@ -2460,15 +2478,15 @@ msgstr ""
msgid "Evaluator Schedule"
msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:163
#: frontend/src/components/Settings/Evaluators.vue:160
msgid "Evaluator added successfully"
msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:196
#: frontend/src/components/Settings/Evaluators.vue:193
msgid "Evaluator deleted successfully"
msgstr ""
#: lms/lms/api.py:1392
#: lms/lms/api.py:1416
msgid "Evaluator does not exist."
msgstr ""
@@ -2640,10 +2658,15 @@ msgstr ""
msgid "File Type"
msgstr ""
#: frontend/src/components/Settings/Transactions.vue:15
msgid "Filter by Billing Name"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:23
msgid "Filter by Exercise"
msgstr ""
#: frontend/src/components/Settings/Transactions.vue:20
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:28
msgid "Filter by Member"
msgstr ""
@@ -2677,7 +2700,7 @@ msgid "Free"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:179
#: frontend/src/pages/Jobs.vue:197
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Freelance"
msgstr ""
@@ -2719,7 +2742,7 @@ msgid "Full Name"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:176
#: frontend/src/pages/Jobs.vue:194
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Full Time"
msgstr ""
@@ -2741,10 +2764,15 @@ msgid "GST Number"
msgstr ""
#. Label of the gstin (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:76
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "GSTIN"
msgstr ""
#: frontend/src/components/Settings/PaymentGateways.vue:134
msgid "Gateway"
msgstr ""
#. Label of the general_tab (Tab Break) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "General"
@@ -2923,6 +2951,11 @@ msgstr ""
msgid "Host"
msgstr ""
#. Option for the 'Work Mode' (Select) field in DocType 'Job Opportunity'
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Hybrid"
msgstr ""
#. Label of the current (Check) field in DocType 'Work Experience'
#: lms/lms/doctype/work_experience/work_experience.json
msgid "I am currently working here"
@@ -3197,7 +3230,7 @@ msgstr ""
msgid "Issue Date"
msgstr ""
#: frontend/src/components/AppSidebar.vue:609
#: frontend/src/components/AppSidebar.vue:614
msgid "Issue a Certificate"
msgstr ""
@@ -3273,7 +3306,7 @@ msgstr ""
#. 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/Jobs.vue:185
#: frontend/src/pages/Jobs.vue:212
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Jobs"
msgstr ""
@@ -3621,6 +3654,10 @@ msgstr ""
msgid "Learning Consistency"
msgstr ""
#: frontend/src/components/AppSidebar.vue:598
msgid "Learning Paths"
msgstr ""
#. Label of the left_at (Datetime) field in DocType 'LMS Live Class
#. Participant'
#: lms/lms/doctype/lms_live_class_participant/lms_live_class_participant.json
@@ -3753,6 +3790,7 @@ msgstr ""
#: frontend/src/components/Modals/CourseProgressSummary.vue:86
#: frontend/src/components/Settings/Evaluators.vue:81
#: frontend/src/components/Settings/Members.vue:79
#: frontend/src/components/Settings/Transactions.vue:94
#: frontend/src/pages/Assignments.vue:66 frontend/src/pages/Batches.vue:82
#: frontend/src/pages/CertifiedParticipants.vue:98
#: frontend/src/pages/Courses.vue:77
@@ -3786,7 +3824,7 @@ msgstr ""
msgid "Login"
msgstr ""
#: frontend/src/components/UserDropdown.vue:174
#: frontend/src/components/UserDropdown.vue:176
msgid "Login to Frappe Cloud?"
msgstr ""
@@ -3940,6 +3978,7 @@ msgstr ""
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:26
#: frontend/src/components/Settings/BadgeAssignments.vue:179
#: frontend/src/components/Settings/BadgeForm.vue:215
#: frontend/src/components/Settings/TransactionDetails.vue:26
#: frontend/src/components/Settings/ZoomSettings.vue:187
#: frontend/src/pages/AssignmentSubmissionList.vue:14
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:268
@@ -4073,7 +4112,7 @@ msgstr ""
msgid "Member Username"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:462
#: frontend/src/pages/Programs/ProgramForm.vue:463
msgid "Member added to program successfully"
msgstr ""
@@ -4157,7 +4196,7 @@ msgstr ""
msgid "Meta Tags"
msgstr ""
#: lms/lms/api.py:1432
#: lms/lms/api.py:1456
msgid "Meta tags should be a list."
msgstr ""
@@ -4209,11 +4248,11 @@ msgstr ""
msgid "Modified By"
msgstr ""
#: lms/lms/api.py:187
#: lms/lms/api.py:188
msgid "Module Name is incorrect or does not exist."
msgstr ""
#: lms/lms/api.py:183
#: lms/lms/api.py:184
msgid "Module is incorrect."
msgstr ""
@@ -4224,7 +4263,7 @@ msgstr ""
msgid "Monday"
msgstr ""
#: frontend/src/components/AppSidebar.vue:617
#: frontend/src/components/AppSidebar.vue:622
msgid "Monetization"
msgstr ""
@@ -4268,6 +4307,7 @@ msgstr ""
#: frontend/src/components/Settings/EmailTemplates.vue:17
#: frontend/src/components/Settings/Evaluators.vue:17
#: frontend/src/components/Settings/Members.vue:17
#: frontend/src/components/Settings/PaymentGateways.vue:16
#: frontend/src/components/Settings/ZoomSettings.vue:17
#: frontend/src/pages/Courses.vue:312
#: frontend/src/pages/Programs/Programs.vue:10
@@ -4295,6 +4335,10 @@ msgstr ""
msgid "New Job Applicant"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7
msgid "New Payment Gateway"
msgstr ""
#: frontend/src/pages/QuizForm.vue:137
msgid "New Question"
msgstr ""
@@ -4399,7 +4443,7 @@ msgstr ""
msgid "No live classes scheduled"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:166
#: frontend/src/pages/Programs/ProgramForm.vue:167
msgid "No members added yet."
msgstr ""
@@ -4469,7 +4513,6 @@ msgstr ""
#: frontend/src/components/Assignment.vue:36
#: frontend/src/components/Settings/BrandSettings.vue:10
#: frontend/src/components/Settings/PaymentSettings.vue:9
#: frontend/src/components/Settings/SettingDetails.vue:10
#: frontend/src/pages/Programs/ProgramForm.vue:16
#: frontend/src/pages/QuizForm.vue:8 frontend/src/pages/QuizSubmission.vue:9
@@ -4522,6 +4565,11 @@ msgstr ""
msgid "Offline"
msgstr ""
#. Option for the 'Work Mode' (Select) field in DocType 'Job Opportunity'
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "On-site"
msgstr ""
#: lms/templates/emails/certification.html:16
msgid "Once again, congratulations on this significant accomplishment."
msgstr ""
@@ -4569,6 +4617,10 @@ msgstr ""
msgid "Open Ended"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:88
msgid "Open the "
msgstr ""
#. Label of the option (Data) field in DocType 'LMS Option'
#: frontend/src/components/Modals/Question.vue:70
#: lms/lms/doctype/lms_option/lms_option.json
@@ -4605,6 +4657,7 @@ msgid "Orange"
msgstr ""
#. Label of the order_id (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:70
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Order ID"
msgstr ""
@@ -4642,6 +4695,7 @@ msgid "Owner"
msgstr ""
#. Label of the pan (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:77
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "PAN"
msgstr ""
@@ -4687,7 +4741,7 @@ msgid "Pan Number"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:177
#: frontend/src/pages/Jobs.vue:195
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Part Time"
msgstr ""
@@ -4747,21 +4801,38 @@ msgstr ""
#. Label of the payment_details_section (Section Break) field in DocType 'LMS
#. Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:42
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment Details"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:18
msgid "Payment For Certificate"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:51
msgid "Payment For Document"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:46
msgid "Payment For Document Type"
msgstr ""
#. Label of the payment_gateway (Data) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Payment Gateway"
msgstr ""
#. Label of the payment_id (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:79
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment ID"
msgstr ""
#. Label of the payment_received (Check) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:13
#: frontend/src/components/Settings/Transactions.vue:25
#: frontend/src/components/Settings/Transactions.vue:226
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment Received"
msgstr ""
@@ -4783,6 +4854,8 @@ msgid "Payment for "
msgstr ""
#. Label of the payment_for_certificate (Check) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/Transactions.vue:30
#: frontend/src/components/Settings/Transactions.vue:233
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment for Certificate"
msgstr ""
@@ -4923,7 +4996,7 @@ msgstr ""
msgid "Please login to access this page."
msgstr ""
#: lms/lms/api.py:179
#: lms/lms/api.py:180
msgid "Please login to continue with payment."
msgstr ""
@@ -4940,7 +5013,7 @@ msgstr ""
msgid "Please run the code to execute the test cases."
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:420
#: frontend/src/pages/Programs/ProgramForm.vue:421
msgid "Please select a course"
msgstr ""
@@ -4956,7 +5029,7 @@ msgstr ""
msgid "Please select a future date and time."
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:447
#: frontend/src/pages/Programs/ProgramForm.vue:448
msgid "Please select a member"
msgstr ""
@@ -5146,7 +5219,7 @@ msgstr ""
msgid "Program Courses"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:205
#: frontend/src/pages/Programs/ProgramForm.vue:206
msgid "Program Member"
msgstr ""
@@ -5155,15 +5228,15 @@ msgstr ""
msgid "Program Members"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:380
#: frontend/src/pages/Programs/ProgramForm.vue:381
msgid "Program created successfully"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:551
#: frontend/src/pages/Programs/ProgramForm.vue:552
msgid "Program deleted successfully"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:399
#: frontend/src/pages/Programs/ProgramForm.vue:400
msgid "Program updated successfully"
msgstr ""
@@ -5229,7 +5302,7 @@ msgid "Progress Distribution"
msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:99
#: frontend/src/pages/Programs/ProgramForm.vue:124
#: frontend/src/pages/Programs/ProgramForm.vue:125
msgid "Progress Summary"
msgstr ""
@@ -5407,7 +5480,7 @@ msgstr ""
msgid "Quiz will appear at the bottom of the lesson."
msgstr ""
#: frontend/src/components/AppSidebar.vue:601
#: frontend/src/components/AppSidebar.vue:606
#: frontend/src/pages/QuizForm.vue:396 frontend/src/pages/Quizzes.vue:275
#: frontend/src/pages/Quizzes.vue:285 lms/www/lms.py:249
msgid "Quizzes"
@@ -5497,6 +5570,11 @@ msgstr ""
msgid "Related Courses"
msgstr ""
#. Option for the 'Work Mode' (Select) field in DocType 'Job Opportunity'
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Remote"
msgstr ""
#: frontend/src/components/Controls/Uploader.vue:34
#: frontend/src/pages/BatchForm.vue:246 frontend/src/pages/CourseForm.vue:119
msgid "Remove"
@@ -5587,7 +5665,7 @@ msgstr ""
msgid "Role updated successfully"
msgstr ""
#: frontend/src/components/AppSidebar.vue:629
#: frontend/src/components/AppSidebar.vue:634
msgid "Roles"
msgstr ""
@@ -5671,11 +5749,13 @@ msgstr ""
#: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
#: frontend/src/components/Settings/BadgeForm.vue:78
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:38
#: frontend/src/components/Settings/TransactionDetails.vue:96
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17
#: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseForm.vue:101
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseModal.vue:9
#: frontend/src/pages/Programs/ProgramForm.vue:233
#: frontend/src/pages/Programs/ProgramForm.vue:234
#: frontend/src/pages/QuizForm.vue:43 frontend/src/pages/QuizSubmission.vue:14
#: frontend/src/pages/Quizzes.vue:105
msgid "Save"
@@ -5777,6 +5857,10 @@ msgstr ""
msgid "Select Date"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22
msgid "Select Payment Gateway"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseModal.vue:23
msgid "Select a Programming Exercise"
msgstr ""
@@ -5832,11 +5916,11 @@ msgstr ""
msgid "Setting up"
msgstr ""
#: frontend/src/components/AppSidebar.vue:622
#: frontend/src/components/AppSidebar.vue:627
msgid "Setting up payment gateway"
msgstr ""
#: frontend/src/components/AppSidebar.vue:627
#: frontend/src/components/AppSidebar.vue:632
#: frontend/src/components/Settings/Settings.vue:7
#: frontend/src/pages/BatchForm.vue:53 frontend/src/pages/CourseForm.vue:142
#: frontend/src/pages/ProfileRoles.vue:4
@@ -5994,6 +6078,7 @@ msgstr ""
#. Label of the source (Link) field in DocType 'LMS Payment'
#. Label of the source (Data) field in DocType 'LMS Source'
#. Label of the source (Data) field in DocType 'LMS Video Watch Duration'
#: frontend/src/components/Settings/TransactionDetails.vue:35
#: lms/lms/doctype/lms_batch_enrollment/lms_batch_enrollment.json
#: lms/lms/doctype/lms_payment/lms_payment.json
#: lms/lms/doctype/lms_source/lms_source.json
@@ -6106,7 +6191,7 @@ msgstr ""
#: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19
#: frontend/src/pages/JobForm.vue:46
#: frontend/src/pages/JobForm.vue:53
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:280
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/cohort/cohort.json
@@ -6243,7 +6328,7 @@ msgstr ""
msgid "Sunday"
msgstr ""
#: lms/lms/api.py:1057
#: lms/lms/api.py:1081
msgid "Suspicious pattern found in {0}: {1}"
msgstr ""
@@ -6706,6 +6791,10 @@ msgstr ""
msgid "Training Feedback"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:5
msgid "Transaction Details"
msgstr ""
#. Option for the 'Location Preference' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Travel"
@@ -6838,7 +6927,6 @@ msgid "Upcoming Live Classes"
msgstr ""
#: frontend/src/components/Settings/BrandSettings.vue:24
#: frontend/src/components/Settings/PaymentSettings.vue:27
#: frontend/src/components/Settings/SettingDetails.vue:23
msgid "Update"
msgstr ""
@@ -7073,6 +7161,12 @@ msgstr ""
msgid "Work Experience Details"
msgstr ""
#. Label of the work_mode (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:32 frontend/src/pages/Jobs.vue:73
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Work Mode"
msgstr ""
#: frontend/src/components/CourseReviews.vue:8
#: frontend/src/components/Modals/ReviewModal.vue:5
#: lms/templates/reviews.html:117
@@ -7103,11 +7197,11 @@ msgstr ""
msgid "You are already certified for this course. Click on the card below to open your certificate."
msgstr ""
#: lms/lms/api.py:199
#: lms/lms/api.py:200
msgid "You are already enrolled for this batch."
msgstr ""
#: lms/lms/api.py:193
#: lms/lms/api.py:194
msgid "You are already enrolled for this course."
msgstr ""
@@ -7181,7 +7275,7 @@ msgstr ""
msgid "You have already exceeded the maximum number of attempts allowed for this quiz."
msgstr ""
#: lms/lms/api.py:223
#: lms/lms/api.py:224
msgid "You have already purchased the certificate for this course."
msgstr ""
@@ -7352,11 +7446,11 @@ msgstr "a"
msgid "and then 'Add to Home Screen'"
msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:108
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114
msgid "applicant"
msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:108
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114
msgid "applicants"
msgstr ""
@@ -7409,7 +7503,7 @@ msgstr ""
#: frontend/src/pages/Home/Home.vue:100 frontend/src/pages/Home/Home.vue:123
msgid "evaluation"
msgstr ""
msgstr "hodnocení"
#: frontend/src/pages/Home/Home.vue:100 frontend/src/pages/Home/Home.vue:123
msgid "evaluations"
@@ -7509,7 +7603,7 @@ msgstr ""
msgid "{0} Quizzes"
msgstr ""
#: lms/lms/api.py:836 lms/lms/api.py:844
#: lms/lms/api.py:838 lms/lms/api.py:846
msgid "{0} Settings not found"
msgstr ""
@@ -7565,6 +7659,10 @@ msgstr ""
msgid "{0} mentioned you in a comment in {1}"
msgstr ""
#: lms/lms/api.py:887
msgid "{0} not found"
msgstr ""
#: lms/lms/utils.py:450
msgid "{0}k"
msgstr ""
+163 -65
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2025-09-19 16:04+0000\n"
"PO-Revision-Date: 2025-09-24 07:15\n"
"POT-Creation-Date: 2025-09-26 16:04+0000\n"
"PO-Revision-Date: 2025-09-27 08:15\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Danish\n"
"MIME-Version: 1.0\n"
@@ -145,8 +145,8 @@ msgstr "Aktive Medlemmer"
#: frontend/src/components/Settings/Evaluators.vue:93
#: frontend/src/components/Settings/Members.vue:91
#: frontend/src/pages/Programs/ProgramForm.vue:56
#: frontend/src/pages/Programs/ProgramForm.vue:130
#: frontend/src/pages/Programs/ProgramForm.vue:179
#: frontend/src/pages/Programs/ProgramForm.vue:131
#: frontend/src/pages/Programs/ProgramForm.vue:180
msgid "Add"
msgstr "Tilføj"
@@ -156,7 +156,7 @@ msgstr "Tilføj"
msgid "Add Chapter"
msgstr "Tilføj Kapitel"
#: frontend/src/pages/Programs/ProgramForm.vue:175
#: frontend/src/pages/Programs/ProgramForm.vue:176
msgid "Add Course to Program"
msgstr ""
@@ -221,6 +221,10 @@ msgstr ""
msgid "Add a new question"
msgstr ""
#: frontend/src/components/AppSidebar.vue:600
msgid "Add a program"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseModal.vue:5
msgid "Add a programming exercise to your lesson"
msgstr ""
@@ -274,6 +278,7 @@ msgid "Add your first lesson"
msgstr ""
#. Label of the address (Link) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:56
#: frontend/src/pages/Billing.vue:64
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Address"
@@ -353,6 +358,8 @@ msgstr ""
#. Label of the amount (Currency) field in DocType 'LMS Batch'
#. Label of the course_price (Currency) field in DocType 'LMS Course'
#. Label of the amount (Currency) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:68
#: frontend/src/components/Settings/Transactions.vue:219
#: frontend/src/pages/BatchForm.vue:278 frontend/src/pages/CourseForm.vue:262
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -460,7 +467,7 @@ msgstr ""
msgid "Are you sure you want to enroll?"
msgstr ""
#: frontend/src/components/UserDropdown.vue:175
#: frontend/src/components/UserDropdown.vue:177
msgid "Are you sure you want to login to your Frappe Cloud dashboard?"
msgstr ""
@@ -496,7 +503,7 @@ msgid "Assessment {0} has already been added to this batch."
msgstr ""
#. Label of the show_assessments (Check) field in DocType 'LMS Settings'
#: frontend/src/components/AppSidebar.vue:598
#: frontend/src/components/AppSidebar.vue:603
#: frontend/src/components/Assessments.vue:5
#: frontend/src/components/BatchStudents.vue:32
#: lms/lms/doctype/lms_settings/lms_settings.json
@@ -578,7 +585,7 @@ msgstr ""
msgid "Assignment will appear at the bottom of the lesson."
msgstr ""
#: frontend/src/components/AppSidebar.vue:602
#: frontend/src/components/AppSidebar.vue:607
#: frontend/src/components/Settings/Badges.vue:163
#: frontend/src/pages/Assignments.vue:208 lms/www/lms.py:271
msgid "Assignments"
@@ -702,6 +709,7 @@ msgstr ""
#: frontend/src/components/Modals/Event.vue:32
#: frontend/src/components/Settings/BadgeForm.vue:195
#: frontend/src/components/Settings/Badges.vue:200
#: frontend/src/components/Settings/TransactionDetails.vue:92
#: lms/lms/doctype/lms_batch_enrollment/lms_batch_enrollment.json
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
@@ -815,11 +823,11 @@ msgstr ""
msgid "Batch end date cannot be before the batch start date"
msgstr ""
#: lms/lms/api.py:210
#: lms/lms/api.py:211
msgid "Batch has already started."
msgstr ""
#: lms/lms/api.py:205
#: lms/lms/api.py:206
msgid "Batch is sold out."
msgstr ""
@@ -857,6 +865,8 @@ msgid "Billing Details"
msgstr ""
#. Label of the billing_name (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:31
#: frontend/src/components/Settings/Transactions.vue:213
#: frontend/src/pages/Billing.vue:70
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Billing Name"
@@ -1002,7 +1012,7 @@ msgstr ""
#. Enrollment'
#. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace
#: frontend/src/components/AppSidebar.vue:606
#: frontend/src/components/AppSidebar.vue:611
#: frontend/src/components/Modals/Event.vue:381
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58
#: frontend/src/pages/CourseCertification.vue:10
@@ -1145,7 +1155,7 @@ msgstr ""
#. Label of the city (Data) field in DocType 'User'
#. Label of the location (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/Billing.vue:81 frontend/src/pages/JobForm.vue:34
#: frontend/src/pages/Billing.vue:81 frontend/src/pages/JobForm.vue:41
#: lms/fixtures/custom_field.json
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "City"
@@ -1315,25 +1325,25 @@ msgstr "Selskab"
#. Label of the section_break_6 (Section Break) field in DocType 'Job
#. Opportunity'
#: frontend/src/pages/JobForm.vue:56
#: frontend/src/pages/JobForm.vue:63
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Details"
msgstr ""
#. Label of the company_email_address (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:75
#: frontend/src/pages/JobForm.vue:82
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Email Address"
msgstr ""
#. Label of the company_logo (Attach Image) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:80
#: frontend/src/pages/JobForm.vue:87
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Logo"
msgstr ""
#. Label of the company_name (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:62
#: frontend/src/pages/JobForm.vue:69
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Name"
msgstr ""
@@ -1344,7 +1354,7 @@ msgid "Company Type"
msgstr ""
#. Label of the company_website (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:68
#: frontend/src/pages/JobForm.vue:75
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Website"
msgstr ""
@@ -1414,7 +1424,7 @@ msgstr ""
msgid "Configurations"
msgstr ""
#: frontend/src/components/UserDropdown.vue:180
#: frontend/src/components/UserDropdown.vue:182
msgid "Confirm"
msgstr ""
@@ -1461,7 +1471,7 @@ msgid "Continue Learning"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:178
#: frontend/src/pages/Jobs.vue:196
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Contract"
msgstr "Aftale"
@@ -1491,7 +1501,7 @@ msgstr ""
#. Label of the country (Link) field in DocType 'User'
#. Label of the country (Link) field in DocType 'Job Opportunity'
#. Label of the country (Link) field in DocType 'Payment Country'
#: frontend/src/pages/Billing.vue:92 frontend/src/pages/JobForm.vue:40
#: frontend/src/pages/Billing.vue:92 frontend/src/pages/JobForm.vue:47
#: frontend/src/pages/Jobs.vue:57 lms/fixtures/custom_field.json
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/payment_country/payment_country.json
@@ -1533,7 +1543,8 @@ msgstr ""
#: frontend/src/components/Modals/Event.vue:24
#: frontend/src/components/Settings/BadgeForm.vue:194
#: frontend/src/components/Settings/Badges.vue:199
#: frontend/src/pages/Programs/ProgramForm.vue:195
#: frontend/src/components/Settings/TransactionDetails.vue:91
#: frontend/src/pages/Programs/ProgramForm.vue:196
#: frontend/src/pages/Programs/Programs.vue:35
#: lms/lms/doctype/batch_course/batch_course.json
#: lms/lms/doctype/cohort/cohort.json
@@ -1684,7 +1695,7 @@ msgstr ""
msgid "Course Title"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:436
#: frontend/src/pages/Programs/ProgramForm.vue:437
msgid "Course added to program successfully"
msgstr ""
@@ -1836,6 +1847,7 @@ msgstr ""
#. Label of the currency (Link) field in DocType 'LMS Batch'
#. Label of the currency (Link) field in DocType 'LMS Course'
#. Label of the currency (Link) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:64
#: frontend/src/pages/BatchForm.vue:285 frontend/src/pages/CourseForm.vue:279
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -1852,7 +1864,7 @@ msgstr ""
msgid "Current Streak"
msgstr ""
#: frontend/src/components/AppSidebar.vue:612
#: frontend/src/components/AppSidebar.vue:617
msgid "Custom Certificate Templates"
msgstr ""
@@ -1954,7 +1966,7 @@ msgstr ""
#: frontend/src/components/Settings/Badges.vue:171
#: frontend/src/pages/BatchForm.vue:565 frontend/src/pages/CourseForm.vue:597
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseForm.vue:67
#: frontend/src/pages/Programs/ProgramForm.vue:230
#: frontend/src/pages/Programs/ProgramForm.vue:231
msgid "Delete"
msgstr ""
@@ -2004,7 +2016,7 @@ msgstr ""
#. Label of the description (Small Text) field in DocType 'Work Experience'
#: frontend/src/components/Modals/LiveClassModal.vue:80
#: frontend/src/components/Settings/BadgeForm.vue:32
#: frontend/src/pages/JobForm.vue:125
#: frontend/src/pages/JobForm.vue:132
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/cohort/cohort.json
@@ -2045,6 +2057,7 @@ msgstr ""
#. Label of the disabled (Check) field in DocType 'Job Opportunity'
#: frontend/src/components/Settings/Badges.vue:56
#: frontend/src/components/Settings/PaymentGateways.vue:55
#: frontend/src/components/Settings/ZoomSettings.vue:66
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Disabled"
@@ -2145,6 +2158,10 @@ msgstr ""
msgid "Edit Email Template"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8
msgid "Edit Payment Gateway"
msgstr ""
#: frontend/src/pages/Profile.vue:72
msgid "Edit Profile"
msgstr ""
@@ -2250,6 +2267,7 @@ msgstr ""
#: frontend/src/components/Modals/ZoomAccountModal.vue:23
#: frontend/src/components/Settings/BadgeForm.vue:14
#: frontend/src/components/Settings/Badges.vue:53
#: frontend/src/components/Settings/PaymentGateways.vue:52
#: frontend/src/components/Settings/ZoomSettings.vue:63
#: lms/lms/doctype/lms_badge/lms_badge.json
#: lms/lms/doctype/lms_zoom_settings/lms_zoom_settings.json
@@ -2301,7 +2319,7 @@ msgstr ""
msgid "Enforce Course Order"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:176
#: frontend/src/pages/Programs/ProgramForm.vue:177
msgid "Enroll Member to Program"
msgstr ""
@@ -2460,15 +2478,15 @@ msgstr ""
msgid "Evaluator Schedule"
msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:163
#: frontend/src/components/Settings/Evaluators.vue:160
msgid "Evaluator added successfully"
msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:196
#: frontend/src/components/Settings/Evaluators.vue:193
msgid "Evaluator deleted successfully"
msgstr ""
#: lms/lms/api.py:1392
#: lms/lms/api.py:1416
msgid "Evaluator does not exist."
msgstr ""
@@ -2640,10 +2658,15 @@ msgstr ""
msgid "File Type"
msgstr ""
#: frontend/src/components/Settings/Transactions.vue:15
msgid "Filter by Billing Name"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:23
msgid "Filter by Exercise"
msgstr ""
#: frontend/src/components/Settings/Transactions.vue:20
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:28
msgid "Filter by Member"
msgstr ""
@@ -2677,7 +2700,7 @@ msgid "Free"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:179
#: frontend/src/pages/Jobs.vue:197
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Freelance"
msgstr ""
@@ -2719,7 +2742,7 @@ msgid "Full Name"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:176
#: frontend/src/pages/Jobs.vue:194
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Full Time"
msgstr ""
@@ -2741,10 +2764,15 @@ msgid "GST Number"
msgstr ""
#. Label of the gstin (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:76
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "GSTIN"
msgstr ""
#: frontend/src/components/Settings/PaymentGateways.vue:134
msgid "Gateway"
msgstr ""
#. Label of the general_tab (Tab Break) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "General"
@@ -2916,13 +2944,18 @@ msgstr ""
#: frontend/src/pages/Home/Home.vue:5 frontend/src/pages/Home/Home.vue:153
msgid "Home"
msgstr ""
msgstr "Hjem"
#. Label of the host (Link) field in DocType 'LMS Live Class'
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Host"
msgstr ""
#. Option for the 'Work Mode' (Select) field in DocType 'Job Opportunity'
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Hybrid"
msgstr ""
#. Label of the current (Check) field in DocType 'Work Experience'
#: lms/lms/doctype/work_experience/work_experience.json
msgid "I am currently working here"
@@ -3197,7 +3230,7 @@ msgstr ""
msgid "Issue Date"
msgstr ""
#: frontend/src/components/AppSidebar.vue:609
#: frontend/src/components/AppSidebar.vue:614
msgid "Issue a Certificate"
msgstr ""
@@ -3273,7 +3306,7 @@ msgstr ""
#. 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/Jobs.vue:185
#: frontend/src/pages/Jobs.vue:212
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Jobs"
msgstr ""
@@ -3621,6 +3654,10 @@ msgstr ""
msgid "Learning Consistency"
msgstr ""
#: frontend/src/components/AppSidebar.vue:598
msgid "Learning Paths"
msgstr ""
#. Label of the left_at (Datetime) field in DocType 'LMS Live Class
#. Participant'
#: lms/lms/doctype/lms_live_class_participant/lms_live_class_participant.json
@@ -3753,6 +3790,7 @@ msgstr ""
#: frontend/src/components/Modals/CourseProgressSummary.vue:86
#: frontend/src/components/Settings/Evaluators.vue:81
#: frontend/src/components/Settings/Members.vue:79
#: frontend/src/components/Settings/Transactions.vue:94
#: frontend/src/pages/Assignments.vue:66 frontend/src/pages/Batches.vue:82
#: frontend/src/pages/CertifiedParticipants.vue:98
#: frontend/src/pages/Courses.vue:77
@@ -3786,7 +3824,7 @@ msgstr ""
msgid "Login"
msgstr ""
#: frontend/src/components/UserDropdown.vue:174
#: frontend/src/components/UserDropdown.vue:176
msgid "Login to Frappe Cloud?"
msgstr ""
@@ -3940,6 +3978,7 @@ msgstr ""
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:26
#: frontend/src/components/Settings/BadgeAssignments.vue:179
#: frontend/src/components/Settings/BadgeForm.vue:215
#: frontend/src/components/Settings/TransactionDetails.vue:26
#: frontend/src/components/Settings/ZoomSettings.vue:187
#: frontend/src/pages/AssignmentSubmissionList.vue:14
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:268
@@ -4073,7 +4112,7 @@ msgstr ""
msgid "Member Username"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:462
#: frontend/src/pages/Programs/ProgramForm.vue:463
msgid "Member added to program successfully"
msgstr ""
@@ -4157,7 +4196,7 @@ msgstr ""
msgid "Meta Tags"
msgstr ""
#: lms/lms/api.py:1432
#: lms/lms/api.py:1456
msgid "Meta tags should be a list."
msgstr ""
@@ -4209,11 +4248,11 @@ msgstr ""
msgid "Modified By"
msgstr ""
#: lms/lms/api.py:187
#: lms/lms/api.py:188
msgid "Module Name is incorrect or does not exist."
msgstr ""
#: lms/lms/api.py:183
#: lms/lms/api.py:184
msgid "Module is incorrect."
msgstr ""
@@ -4224,7 +4263,7 @@ msgstr ""
msgid "Monday"
msgstr ""
#: frontend/src/components/AppSidebar.vue:617
#: frontend/src/components/AppSidebar.vue:622
msgid "Monetization"
msgstr ""
@@ -4268,6 +4307,7 @@ msgstr ""
#: frontend/src/components/Settings/EmailTemplates.vue:17
#: frontend/src/components/Settings/Evaluators.vue:17
#: frontend/src/components/Settings/Members.vue:17
#: frontend/src/components/Settings/PaymentGateways.vue:16
#: frontend/src/components/Settings/ZoomSettings.vue:17
#: frontend/src/pages/Courses.vue:312
#: frontend/src/pages/Programs/Programs.vue:10
@@ -4295,6 +4335,10 @@ msgstr ""
msgid "New Job Applicant"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7
msgid "New Payment Gateway"
msgstr ""
#: frontend/src/pages/QuizForm.vue:137
msgid "New Question"
msgstr ""
@@ -4399,7 +4443,7 @@ msgstr ""
msgid "No live classes scheduled"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:166
#: frontend/src/pages/Programs/ProgramForm.vue:167
msgid "No members added yet."
msgstr ""
@@ -4469,7 +4513,6 @@ msgstr ""
#: frontend/src/components/Assignment.vue:36
#: frontend/src/components/Settings/BrandSettings.vue:10
#: frontend/src/components/Settings/PaymentSettings.vue:9
#: frontend/src/components/Settings/SettingDetails.vue:10
#: frontend/src/pages/Programs/ProgramForm.vue:16
#: frontend/src/pages/QuizForm.vue:8 frontend/src/pages/QuizSubmission.vue:9
@@ -4522,6 +4565,11 @@ msgstr ""
msgid "Offline"
msgstr ""
#. Option for the 'Work Mode' (Select) field in DocType 'Job Opportunity'
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "On-site"
msgstr ""
#: lms/templates/emails/certification.html:16
msgid "Once again, congratulations on this significant accomplishment."
msgstr ""
@@ -4569,6 +4617,10 @@ msgstr ""
msgid "Open Ended"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:88
msgid "Open the "
msgstr ""
#. Label of the option (Data) field in DocType 'LMS Option'
#: frontend/src/components/Modals/Question.vue:70
#: lms/lms/doctype/lms_option/lms_option.json
@@ -4605,6 +4657,7 @@ msgid "Orange"
msgstr ""
#. Label of the order_id (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:70
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Order ID"
msgstr ""
@@ -4642,6 +4695,7 @@ msgid "Owner"
msgstr ""
#. Label of the pan (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:77
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "PAN"
msgstr ""
@@ -4687,7 +4741,7 @@ msgid "Pan Number"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:177
#: frontend/src/pages/Jobs.vue:195
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Part Time"
msgstr ""
@@ -4747,21 +4801,38 @@ msgstr ""
#. Label of the payment_details_section (Section Break) field in DocType 'LMS
#. Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:42
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment Details"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:18
msgid "Payment For Certificate"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:51
msgid "Payment For Document"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:46
msgid "Payment For Document Type"
msgstr ""
#. Label of the payment_gateway (Data) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Payment Gateway"
msgstr ""
#. Label of the payment_id (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:79
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment ID"
msgstr ""
#. Label of the payment_received (Check) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:13
#: frontend/src/components/Settings/Transactions.vue:25
#: frontend/src/components/Settings/Transactions.vue:226
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment Received"
msgstr ""
@@ -4783,6 +4854,8 @@ msgid "Payment for "
msgstr ""
#. Label of the payment_for_certificate (Check) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/Transactions.vue:30
#: frontend/src/components/Settings/Transactions.vue:233
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment for Certificate"
msgstr ""
@@ -4923,7 +4996,7 @@ msgstr ""
msgid "Please login to access this page."
msgstr ""
#: lms/lms/api.py:179
#: lms/lms/api.py:180
msgid "Please login to continue with payment."
msgstr ""
@@ -4940,7 +5013,7 @@ msgstr ""
msgid "Please run the code to execute the test cases."
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:420
#: frontend/src/pages/Programs/ProgramForm.vue:421
msgid "Please select a course"
msgstr ""
@@ -4956,7 +5029,7 @@ msgstr ""
msgid "Please select a future date and time."
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:447
#: frontend/src/pages/Programs/ProgramForm.vue:448
msgid "Please select a member"
msgstr ""
@@ -5146,7 +5219,7 @@ msgstr ""
msgid "Program Courses"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:205
#: frontend/src/pages/Programs/ProgramForm.vue:206
msgid "Program Member"
msgstr ""
@@ -5155,15 +5228,15 @@ msgstr ""
msgid "Program Members"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:380
#: frontend/src/pages/Programs/ProgramForm.vue:381
msgid "Program created successfully"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:551
#: frontend/src/pages/Programs/ProgramForm.vue:552
msgid "Program deleted successfully"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:399
#: frontend/src/pages/Programs/ProgramForm.vue:400
msgid "Program updated successfully"
msgstr ""
@@ -5229,7 +5302,7 @@ msgid "Progress Distribution"
msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:99
#: frontend/src/pages/Programs/ProgramForm.vue:124
#: frontend/src/pages/Programs/ProgramForm.vue:125
msgid "Progress Summary"
msgstr ""
@@ -5407,7 +5480,7 @@ msgstr ""
msgid "Quiz will appear at the bottom of the lesson."
msgstr ""
#: frontend/src/components/AppSidebar.vue:601
#: frontend/src/components/AppSidebar.vue:606
#: frontend/src/pages/QuizForm.vue:396 frontend/src/pages/Quizzes.vue:275
#: frontend/src/pages/Quizzes.vue:285 lms/www/lms.py:249
msgid "Quizzes"
@@ -5497,6 +5570,11 @@ msgstr ""
msgid "Related Courses"
msgstr ""
#. Option for the 'Work Mode' (Select) field in DocType 'Job Opportunity'
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Remote"
msgstr ""
#: frontend/src/components/Controls/Uploader.vue:34
#: frontend/src/pages/BatchForm.vue:246 frontend/src/pages/CourseForm.vue:119
msgid "Remove"
@@ -5587,7 +5665,7 @@ msgstr ""
msgid "Role updated successfully"
msgstr ""
#: frontend/src/components/AppSidebar.vue:629
#: frontend/src/components/AppSidebar.vue:634
msgid "Roles"
msgstr ""
@@ -5671,11 +5749,13 @@ msgstr ""
#: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
#: frontend/src/components/Settings/BadgeForm.vue:78
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:38
#: frontend/src/components/Settings/TransactionDetails.vue:96
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17
#: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseForm.vue:101
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseModal.vue:9
#: frontend/src/pages/Programs/ProgramForm.vue:233
#: frontend/src/pages/Programs/ProgramForm.vue:234
#: frontend/src/pages/QuizForm.vue:43 frontend/src/pages/QuizSubmission.vue:14
#: frontend/src/pages/Quizzes.vue:105
msgid "Save"
@@ -5777,6 +5857,10 @@ msgstr ""
msgid "Select Date"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22
msgid "Select Payment Gateway"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseModal.vue:23
msgid "Select a Programming Exercise"
msgstr ""
@@ -5832,11 +5916,11 @@ msgstr ""
msgid "Setting up"
msgstr ""
#: frontend/src/components/AppSidebar.vue:622
#: frontend/src/components/AppSidebar.vue:627
msgid "Setting up payment gateway"
msgstr ""
#: frontend/src/components/AppSidebar.vue:627
#: frontend/src/components/AppSidebar.vue:632
#: frontend/src/components/Settings/Settings.vue:7
#: frontend/src/pages/BatchForm.vue:53 frontend/src/pages/CourseForm.vue:142
#: frontend/src/pages/ProfileRoles.vue:4
@@ -5994,6 +6078,7 @@ msgstr ""
#. Label of the source (Link) field in DocType 'LMS Payment'
#. Label of the source (Data) field in DocType 'LMS Source'
#. Label of the source (Data) field in DocType 'LMS Video Watch Duration'
#: frontend/src/components/Settings/TransactionDetails.vue:35
#: lms/lms/doctype/lms_batch_enrollment/lms_batch_enrollment.json
#: lms/lms/doctype/lms_payment/lms_payment.json
#: lms/lms/doctype/lms_source/lms_source.json
@@ -6106,7 +6191,7 @@ msgstr ""
#: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19
#: frontend/src/pages/JobForm.vue:46
#: frontend/src/pages/JobForm.vue:53
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:280
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/cohort/cohort.json
@@ -6243,7 +6328,7 @@ msgstr ""
msgid "Sunday"
msgstr ""
#: lms/lms/api.py:1057
#: lms/lms/api.py:1081
msgid "Suspicious pattern found in {0}: {1}"
msgstr ""
@@ -6706,6 +6791,10 @@ msgstr ""
msgid "Training Feedback"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:5
msgid "Transaction Details"
msgstr ""
#. Option for the 'Location Preference' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Travel"
@@ -6838,7 +6927,6 @@ msgid "Upcoming Live Classes"
msgstr ""
#: frontend/src/components/Settings/BrandSettings.vue:24
#: frontend/src/components/Settings/PaymentSettings.vue:27
#: frontend/src/components/Settings/SettingDetails.vue:23
msgid "Update"
msgstr ""
@@ -7073,6 +7161,12 @@ msgstr ""
msgid "Work Experience Details"
msgstr ""
#. Label of the work_mode (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:32 frontend/src/pages/Jobs.vue:73
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Work Mode"
msgstr ""
#: frontend/src/components/CourseReviews.vue:8
#: frontend/src/components/Modals/ReviewModal.vue:5
#: lms/templates/reviews.html:117
@@ -7103,11 +7197,11 @@ msgstr ""
msgid "You are already certified for this course. Click on the card below to open your certificate."
msgstr ""
#: lms/lms/api.py:199
#: lms/lms/api.py:200
msgid "You are already enrolled for this batch."
msgstr ""
#: lms/lms/api.py:193
#: lms/lms/api.py:194
msgid "You are already enrolled for this course."
msgstr ""
@@ -7181,7 +7275,7 @@ msgstr ""
msgid "You have already exceeded the maximum number of attempts allowed for this quiz."
msgstr ""
#: lms/lms/api.py:223
#: lms/lms/api.py:224
msgid "You have already purchased the certificate for this course."
msgstr ""
@@ -7352,11 +7446,11 @@ msgstr ""
msgid "and then 'Add to Home Screen'"
msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:108
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114
msgid "applicant"
msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:108
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114
msgid "applicants"
msgstr ""
@@ -7509,7 +7603,7 @@ msgstr ""
msgid "{0} Quizzes"
msgstr ""
#: lms/lms/api.py:836 lms/lms/api.py:844
#: lms/lms/api.py:838 lms/lms/api.py:846
msgid "{0} Settings not found"
msgstr ""
@@ -7565,6 +7659,10 @@ msgstr ""
msgid "{0} mentioned you in a comment in {1}"
msgstr ""
#: lms/lms/api.py:887
msgid "{0} not found"
msgstr ""
#: lms/lms/utils.py:450
msgid "{0}k"
msgstr ""
+164 -66
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2025-09-19 16:04+0000\n"
"PO-Revision-Date: 2025-09-24 07:15\n"
"POT-Creation-Date: 2025-09-26 16:04+0000\n"
"PO-Revision-Date: 2025-09-27 08:15\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: German\n"
"MIME-Version: 1.0\n"
@@ -145,8 +145,8 @@ msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:93
#: frontend/src/components/Settings/Members.vue:91
#: frontend/src/pages/Programs/ProgramForm.vue:56
#: frontend/src/pages/Programs/ProgramForm.vue:130
#: frontend/src/pages/Programs/ProgramForm.vue:179
#: frontend/src/pages/Programs/ProgramForm.vue:131
#: frontend/src/pages/Programs/ProgramForm.vue:180
msgid "Add"
msgstr "Hinzufügen"
@@ -156,7 +156,7 @@ msgstr "Hinzufügen"
msgid "Add Chapter"
msgstr "Kapitel hinzufügen"
#: frontend/src/pages/Programs/ProgramForm.vue:175
#: frontend/src/pages/Programs/ProgramForm.vue:176
msgid "Add Course to Program"
msgstr ""
@@ -221,6 +221,10 @@ msgstr ""
msgid "Add a new question"
msgstr ""
#: frontend/src/components/AppSidebar.vue:600
msgid "Add a program"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseModal.vue:5
msgid "Add a programming exercise to your lesson"
msgstr ""
@@ -274,6 +278,7 @@ msgid "Add your first lesson"
msgstr ""
#. Label of the address (Link) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:56
#: frontend/src/pages/Billing.vue:64
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Address"
@@ -353,6 +358,8 @@ msgstr ""
#. Label of the amount (Currency) field in DocType 'LMS Batch'
#. Label of the course_price (Currency) field in DocType 'LMS Course'
#. Label of the amount (Currency) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:68
#: frontend/src/components/Settings/Transactions.vue:219
#: frontend/src/pages/BatchForm.vue:278 frontend/src/pages/CourseForm.vue:262
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -460,7 +467,7 @@ msgstr ""
msgid "Are you sure you want to enroll?"
msgstr ""
#: frontend/src/components/UserDropdown.vue:175
#: frontend/src/components/UserDropdown.vue:177
msgid "Are you sure you want to login to your Frappe Cloud dashboard?"
msgstr "Möchten Sie sich wirklich bei Ihrem Frappe Cloud-Dashboard anmelden?"
@@ -496,7 +503,7 @@ msgid "Assessment {0} has already been added to this batch."
msgstr ""
#. Label of the show_assessments (Check) field in DocType 'LMS Settings'
#: frontend/src/components/AppSidebar.vue:598
#: frontend/src/components/AppSidebar.vue:603
#: frontend/src/components/Assessments.vue:5
#: frontend/src/components/BatchStudents.vue:32
#: lms/lms/doctype/lms_settings/lms_settings.json
@@ -578,7 +585,7 @@ msgstr ""
msgid "Assignment will appear at the bottom of the lesson."
msgstr "Die Aufgabe wird unten in der Lektion angezeigt."
#: frontend/src/components/AppSidebar.vue:602
#: frontend/src/components/AppSidebar.vue:607
#: frontend/src/components/Settings/Badges.vue:163
#: frontend/src/pages/Assignments.vue:208 lms/www/lms.py:271
msgid "Assignments"
@@ -702,6 +709,7 @@ msgstr ""
#: frontend/src/components/Modals/Event.vue:32
#: frontend/src/components/Settings/BadgeForm.vue:195
#: frontend/src/components/Settings/Badges.vue:200
#: frontend/src/components/Settings/TransactionDetails.vue:92
#: lms/lms/doctype/lms_batch_enrollment/lms_batch_enrollment.json
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
@@ -815,11 +823,11 @@ msgstr ""
msgid "Batch end date cannot be before the batch start date"
msgstr ""
#: lms/lms/api.py:210
#: lms/lms/api.py:211
msgid "Batch has already started."
msgstr ""
#: lms/lms/api.py:205
#: lms/lms/api.py:206
msgid "Batch is sold out."
msgstr ""
@@ -857,6 +865,8 @@ msgid "Billing Details"
msgstr "Rechnungsdetails"
#. Label of the billing_name (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:31
#: frontend/src/components/Settings/Transactions.vue:213
#: frontend/src/pages/Billing.vue:70
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Billing Name"
@@ -1002,7 +1012,7 @@ msgstr ""
#. Enrollment'
#. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace
#: frontend/src/components/AppSidebar.vue:606
#: frontend/src/components/AppSidebar.vue:611
#: frontend/src/components/Modals/Event.vue:381
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58
#: frontend/src/pages/CourseCertification.vue:10
@@ -1145,7 +1155,7 @@ msgstr "Wählen Sie eine Antwort"
#. Label of the city (Data) field in DocType 'User'
#. Label of the location (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/Billing.vue:81 frontend/src/pages/JobForm.vue:34
#: frontend/src/pages/Billing.vue:81 frontend/src/pages/JobForm.vue:41
#: lms/fixtures/custom_field.json
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "City"
@@ -1315,25 +1325,25 @@ msgstr "Unternehmen"
#. Label of the section_break_6 (Section Break) field in DocType 'Job
#. Opportunity'
#: frontend/src/pages/JobForm.vue:56
#: frontend/src/pages/JobForm.vue:63
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Details"
msgstr "Details zum Unternehmen"
#. Label of the company_email_address (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:75
#: frontend/src/pages/JobForm.vue:82
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Email Address"
msgstr "Unternehmens-E-Mail-Adresse"
#. Label of the company_logo (Attach Image) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:80
#: frontend/src/pages/JobForm.vue:87
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Logo"
msgstr "Logo des Unternehmens"
#. Label of the company_name (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:62
#: frontend/src/pages/JobForm.vue:69
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Name"
msgstr "Firma"
@@ -1344,7 +1354,7 @@ msgid "Company Type"
msgstr ""
#. Label of the company_website (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:68
#: frontend/src/pages/JobForm.vue:75
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Website"
msgstr "Unternehmenswebseite"
@@ -1414,7 +1424,7 @@ msgstr ""
msgid "Configurations"
msgstr ""
#: frontend/src/components/UserDropdown.vue:180
#: frontend/src/components/UserDropdown.vue:182
msgid "Confirm"
msgstr "Bestätigen"
@@ -1461,7 +1471,7 @@ msgid "Continue Learning"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:178
#: frontend/src/pages/Jobs.vue:196
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Contract"
msgstr "Vertrag"
@@ -1491,7 +1501,7 @@ msgstr ""
#. Label of the country (Link) field in DocType 'User'
#. Label of the country (Link) field in DocType 'Job Opportunity'
#. Label of the country (Link) field in DocType 'Payment Country'
#: frontend/src/pages/Billing.vue:92 frontend/src/pages/JobForm.vue:40
#: frontend/src/pages/Billing.vue:92 frontend/src/pages/JobForm.vue:47
#: frontend/src/pages/Jobs.vue:57 lms/fixtures/custom_field.json
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/payment_country/payment_country.json
@@ -1533,7 +1543,8 @@ msgstr "Land"
#: frontend/src/components/Modals/Event.vue:24
#: frontend/src/components/Settings/BadgeForm.vue:194
#: frontend/src/components/Settings/Badges.vue:199
#: frontend/src/pages/Programs/ProgramForm.vue:195
#: frontend/src/components/Settings/TransactionDetails.vue:91
#: frontend/src/pages/Programs/ProgramForm.vue:196
#: frontend/src/pages/Programs/Programs.vue:35
#: lms/lms/doctype/batch_course/batch_course.json
#: lms/lms/doctype/cohort/cohort.json
@@ -1684,7 +1695,7 @@ msgstr "Kurs-Statistiken"
msgid "Course Title"
msgstr "Kurstitel"
#: frontend/src/pages/Programs/ProgramForm.vue:436
#: frontend/src/pages/Programs/ProgramForm.vue:437
msgid "Course added to program successfully"
msgstr ""
@@ -1836,6 +1847,7 @@ msgstr ""
#. Label of the currency (Link) field in DocType 'LMS Batch'
#. Label of the currency (Link) field in DocType 'LMS Course'
#. Label of the currency (Link) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:64
#: frontend/src/pages/BatchForm.vue:285 frontend/src/pages/CourseForm.vue:279
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -1852,7 +1864,7 @@ msgstr "Aktuelle Lektion"
msgid "Current Streak"
msgstr ""
#: frontend/src/components/AppSidebar.vue:612
#: frontend/src/components/AppSidebar.vue:617
msgid "Custom Certificate Templates"
msgstr ""
@@ -1954,7 +1966,7 @@ msgstr "Abschlussart"
#: frontend/src/components/Settings/Badges.vue:171
#: frontend/src/pages/BatchForm.vue:565 frontend/src/pages/CourseForm.vue:597
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseForm.vue:67
#: frontend/src/pages/Programs/ProgramForm.vue:230
#: frontend/src/pages/Programs/ProgramForm.vue:231
msgid "Delete"
msgstr "Löschen"
@@ -2004,7 +2016,7 @@ msgstr ""
#. Label of the description (Small Text) field in DocType 'Work Experience'
#: frontend/src/components/Modals/LiveClassModal.vue:80
#: frontend/src/components/Settings/BadgeForm.vue:32
#: frontend/src/pages/JobForm.vue:125
#: frontend/src/pages/JobForm.vue:132
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/cohort/cohort.json
@@ -2045,6 +2057,7 @@ msgstr ""
#. Label of the disabled (Check) field in DocType 'Job Opportunity'
#: frontend/src/components/Settings/Badges.vue:56
#: frontend/src/components/Settings/PaymentGateways.vue:55
#: frontend/src/components/Settings/ZoomSettings.vue:66
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Disabled"
@@ -2145,6 +2158,10 @@ msgstr "Kapitel bearbeiten"
msgid "Edit Email Template"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8
msgid "Edit Payment Gateway"
msgstr ""
#: frontend/src/pages/Profile.vue:72
msgid "Edit Profile"
msgstr "Profil bearbeiten"
@@ -2250,6 +2267,7 @@ msgstr ""
#: frontend/src/components/Modals/ZoomAccountModal.vue:23
#: frontend/src/components/Settings/BadgeForm.vue:14
#: frontend/src/components/Settings/Badges.vue:53
#: frontend/src/components/Settings/PaymentGateways.vue:52
#: frontend/src/components/Settings/ZoomSettings.vue:63
#: lms/lms/doctype/lms_badge/lms_badge.json
#: lms/lms/doctype/lms_zoom_settings/lms_zoom_settings.json
@@ -2301,7 +2319,7 @@ msgstr ""
msgid "Enforce Course Order"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:176
#: frontend/src/pages/Programs/ProgramForm.vue:177
msgid "Enroll Member to Program"
msgstr ""
@@ -2460,15 +2478,15 @@ msgstr ""
msgid "Evaluator Schedule"
msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:163
#: frontend/src/components/Settings/Evaluators.vue:160
msgid "Evaluator added successfully"
msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:196
#: frontend/src/components/Settings/Evaluators.vue:193
msgid "Evaluator deleted successfully"
msgstr ""
#: lms/lms/api.py:1392
#: lms/lms/api.py:1416
msgid "Evaluator does not exist."
msgstr ""
@@ -2640,10 +2658,15 @@ msgstr ""
msgid "File Type"
msgstr "Dateityp"
#: frontend/src/components/Settings/Transactions.vue:15
msgid "Filter by Billing Name"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:23
msgid "Filter by Exercise"
msgstr ""
#: frontend/src/components/Settings/Transactions.vue:20
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:28
msgid "Filter by Member"
msgstr ""
@@ -2677,7 +2700,7 @@ msgid "Free"
msgstr "Frei"
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:179
#: frontend/src/pages/Jobs.vue:197
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Freelance"
msgstr ""
@@ -2719,7 +2742,7 @@ msgid "Full Name"
msgstr "Vollständiger Name"
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:176
#: frontend/src/pages/Jobs.vue:194
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Full Time"
msgstr "Vollzeit"
@@ -2741,10 +2764,15 @@ msgid "GST Number"
msgstr ""
#. Label of the gstin (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:76
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "GSTIN"
msgstr "GSTIN"
#: frontend/src/components/Settings/PaymentGateways.vue:134
msgid "Gateway"
msgstr ""
#. Label of the general_tab (Tab Break) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "General"
@@ -2923,6 +2951,11 @@ msgstr "Startseite"
msgid "Host"
msgstr "Gastgeber"
#. Option for the 'Work Mode' (Select) field in DocType 'Job Opportunity'
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Hybrid"
msgstr ""
#. Label of the current (Check) field in DocType 'Work Experience'
#: lms/lms/doctype/work_experience/work_experience.json
msgid "I am currently working here"
@@ -3197,7 +3230,7 @@ msgstr ""
msgid "Issue Date"
msgstr "Anfragedatum"
#: frontend/src/components/AppSidebar.vue:609
#: frontend/src/components/AppSidebar.vue:614
msgid "Issue a Certificate"
msgstr ""
@@ -3273,7 +3306,7 @@ msgstr "Stellenbezeichnung"
#. 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/Jobs.vue:185
#: frontend/src/pages/Jobs.vue:212
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Jobs"
msgstr "freie Stellen"
@@ -3621,6 +3654,10 @@ msgstr ""
msgid "Learning Consistency"
msgstr ""
#: frontend/src/components/AppSidebar.vue:598
msgid "Learning Paths"
msgstr ""
#. Label of the left_at (Datetime) field in DocType 'LMS Live Class
#. Participant'
#: lms/lms/doctype/lms_live_class_participant/lms_live_class_participant.json
@@ -3753,6 +3790,7 @@ msgstr ""
#: frontend/src/components/Modals/CourseProgressSummary.vue:86
#: frontend/src/components/Settings/Evaluators.vue:81
#: frontend/src/components/Settings/Members.vue:79
#: frontend/src/components/Settings/Transactions.vue:94
#: frontend/src/pages/Assignments.vue:66 frontend/src/pages/Batches.vue:82
#: frontend/src/pages/CertifiedParticipants.vue:98
#: frontend/src/pages/Courses.vue:77
@@ -3786,7 +3824,7 @@ msgstr ""
msgid "Login"
msgstr "Anmelden"
#: frontend/src/components/UserDropdown.vue:174
#: frontend/src/components/UserDropdown.vue:176
msgid "Login to Frappe Cloud?"
msgstr "Melden Sie sich bei Frappe Cloud an?"
@@ -3940,6 +3978,7 @@ msgstr ""
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:26
#: frontend/src/components/Settings/BadgeAssignments.vue:179
#: frontend/src/components/Settings/BadgeForm.vue:215
#: frontend/src/components/Settings/TransactionDetails.vue:26
#: frontend/src/components/Settings/ZoomSettings.vue:187
#: frontend/src/pages/AssignmentSubmissionList.vue:14
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:268
@@ -4073,7 +4112,7 @@ msgstr ""
msgid "Member Username"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:462
#: frontend/src/pages/Programs/ProgramForm.vue:463
msgid "Member added to program successfully"
msgstr ""
@@ -4157,7 +4196,7 @@ msgstr ""
msgid "Meta Tags"
msgstr "Meta-Tags"
#: lms/lms/api.py:1432
#: lms/lms/api.py:1456
msgid "Meta tags should be a list."
msgstr ""
@@ -4209,11 +4248,11 @@ msgstr ""
msgid "Modified By"
msgstr "Geändert von"
#: lms/lms/api.py:187
#: lms/lms/api.py:188
msgid "Module Name is incorrect or does not exist."
msgstr ""
#: lms/lms/api.py:183
#: lms/lms/api.py:184
msgid "Module is incorrect."
msgstr ""
@@ -4224,7 +4263,7 @@ msgstr ""
msgid "Monday"
msgstr "Montag"
#: frontend/src/components/AppSidebar.vue:617
#: frontend/src/components/AppSidebar.vue:622
msgid "Monetization"
msgstr ""
@@ -4268,6 +4307,7 @@ msgstr "Name"
#: frontend/src/components/Settings/EmailTemplates.vue:17
#: frontend/src/components/Settings/Evaluators.vue:17
#: frontend/src/components/Settings/Members.vue:17
#: frontend/src/components/Settings/PaymentGateways.vue:16
#: frontend/src/components/Settings/ZoomSettings.vue:17
#: frontend/src/pages/Courses.vue:312
#: frontend/src/pages/Programs/Programs.vue:10
@@ -4295,6 +4335,10 @@ msgstr ""
msgid "New Job Applicant"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7
msgid "New Payment Gateway"
msgstr ""
#: frontend/src/pages/QuizForm.vue:137
msgid "New Question"
msgstr ""
@@ -4399,7 +4443,7 @@ msgstr "Keine Einführung"
msgid "No live classes scheduled"
msgstr "Keine Live-Kurse geplant"
#: frontend/src/pages/Programs/ProgramForm.vue:166
#: frontend/src/pages/Programs/ProgramForm.vue:167
msgid "No members added yet."
msgstr ""
@@ -4469,7 +4513,6 @@ msgstr "Nicht zulässig"
#: frontend/src/components/Assignment.vue:36
#: frontend/src/components/Settings/BrandSettings.vue:10
#: frontend/src/components/Settings/PaymentSettings.vue:9
#: frontend/src/components/Settings/SettingDetails.vue:10
#: frontend/src/pages/Programs/ProgramForm.vue:16
#: frontend/src/pages/QuizForm.vue:8 frontend/src/pages/QuizSubmission.vue:9
@@ -4522,6 +4565,11 @@ msgstr ""
msgid "Offline"
msgstr "Offline"
#. Option for the 'Work Mode' (Select) field in DocType 'Job Opportunity'
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "On-site"
msgstr ""
#: lms/templates/emails/certification.html:16
msgid "Once again, congratulations on this significant accomplishment."
msgstr "Nochmals herzlichen Glückwunsch zu dieser bedeutenden Leistung."
@@ -4569,6 +4617,10 @@ msgstr "Kurs öffnen"
msgid "Open Ended"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:88
msgid "Open the "
msgstr ""
#. Label of the option (Data) field in DocType 'LMS Option'
#: frontend/src/components/Modals/Question.vue:70
#: lms/lms/doctype/lms_option/lms_option.json
@@ -4605,6 +4657,7 @@ msgid "Orange"
msgstr "Orange"
#. Label of the order_id (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:70
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Order ID"
msgstr "Bestell-Nr."
@@ -4642,6 +4695,7 @@ msgid "Owner"
msgstr "Besitzer"
#. Label of the pan (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:77
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "PAN"
msgstr ""
@@ -4687,7 +4741,7 @@ msgid "Pan Number"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:177
#: frontend/src/pages/Jobs.vue:195
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Part Time"
msgstr "Teilzeit"
@@ -4747,21 +4801,38 @@ msgstr "Zahlungsland"
#. Label of the payment_details_section (Section Break) field in DocType 'LMS
#. Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:42
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment Details"
msgstr "Zahlungsdaten"
#: frontend/src/components/Settings/TransactionDetails.vue:18
msgid "Payment For Certificate"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:51
msgid "Payment For Document"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:46
msgid "Payment For Document Type"
msgstr ""
#. Label of the payment_gateway (Data) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Payment Gateway"
msgstr "Zahlungs-Gateways"
#. Label of the payment_id (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:79
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment ID"
msgstr "Zahlungs-ID"
#. Label of the payment_received (Check) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:13
#: frontend/src/components/Settings/Transactions.vue:25
#: frontend/src/components/Settings/Transactions.vue:226
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment Received"
msgstr "Zahlung erhalten"
@@ -4783,6 +4854,8 @@ msgid "Payment for "
msgstr ""
#. Label of the payment_for_certificate (Check) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/Transactions.vue:30
#: frontend/src/components/Settings/Transactions.vue:233
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment for Certificate"
msgstr ""
@@ -4923,7 +4996,7 @@ msgstr "Bitte melden Sie sich an, um auf das Quiz zuzugreifen."
msgid "Please login to access this page."
msgstr "Bitte melden Sie sich an, um auf diese Seite zuzugreifen."
#: lms/lms/api.py:179
#: lms/lms/api.py:180
msgid "Please login to continue with payment."
msgstr "Bitte loggen Sie sich ein, um mit der Zahlung fortzufahren."
@@ -4940,7 +5013,7 @@ msgstr "Bitte bereiten Sie sich gut vor und erscheinen Sie pünktlich zu den Pr
msgid "Please run the code to execute the test cases."
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:420
#: frontend/src/pages/Programs/ProgramForm.vue:421
msgid "Please select a course"
msgstr ""
@@ -4956,7 +5029,7 @@ msgstr ""
msgid "Please select a future date and time."
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:447
#: frontend/src/pages/Programs/ProgramForm.vue:448
msgid "Please select a member"
msgstr ""
@@ -5146,7 +5219,7 @@ msgstr ""
msgid "Program Courses"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:205
#: frontend/src/pages/Programs/ProgramForm.vue:206
msgid "Program Member"
msgstr ""
@@ -5155,15 +5228,15 @@ msgstr ""
msgid "Program Members"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:380
#: frontend/src/pages/Programs/ProgramForm.vue:381
msgid "Program created successfully"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:551
#: frontend/src/pages/Programs/ProgramForm.vue:552
msgid "Program deleted successfully"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:399
#: frontend/src/pages/Programs/ProgramForm.vue:400
msgid "Program updated successfully"
msgstr ""
@@ -5229,7 +5302,7 @@ msgid "Progress Distribution"
msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:99
#: frontend/src/pages/Programs/ProgramForm.vue:124
#: frontend/src/pages/Programs/ProgramForm.vue:125
msgid "Progress Summary"
msgstr ""
@@ -5407,7 +5480,7 @@ msgstr ""
msgid "Quiz will appear at the bottom of the lesson."
msgstr "Das Quiz wird am Ende der Lektion angezeigt."
#: frontend/src/components/AppSidebar.vue:601
#: frontend/src/components/AppSidebar.vue:606
#: frontend/src/pages/QuizForm.vue:396 frontend/src/pages/Quizzes.vue:275
#: frontend/src/pages/Quizzes.vue:285 lms/www/lms.py:249
msgid "Quizzes"
@@ -5497,6 +5570,11 @@ msgstr "Abgelehnt"
msgid "Related Courses"
msgstr "Ähnliche Kurse"
#. Option for the 'Work Mode' (Select) field in DocType 'Job Opportunity'
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Remote"
msgstr ""
#: frontend/src/components/Controls/Uploader.vue:34
#: frontend/src/pages/BatchForm.vue:246 frontend/src/pages/CourseForm.vue:119
msgid "Remove"
@@ -5587,7 +5665,7 @@ msgstr ""
msgid "Role updated successfully"
msgstr ""
#: frontend/src/components/AppSidebar.vue:629
#: frontend/src/components/AppSidebar.vue:634
msgid "Roles"
msgstr "Rollen"
@@ -5671,11 +5749,13 @@ msgstr "Samstag"
#: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
#: frontend/src/components/Settings/BadgeForm.vue:78
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:38
#: frontend/src/components/Settings/TransactionDetails.vue:96
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17
#: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseForm.vue:101
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseModal.vue:9
#: frontend/src/pages/Programs/ProgramForm.vue:233
#: frontend/src/pages/Programs/ProgramForm.vue:234
#: frontend/src/pages/QuizForm.vue:43 frontend/src/pages/QuizSubmission.vue:14
#: frontend/src/pages/Quizzes.vue:105
msgid "Save"
@@ -5777,6 +5857,10 @@ msgstr ""
msgid "Select Date"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22
msgid "Select Payment Gateway"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseModal.vue:23
msgid "Select a Programming Exercise"
msgstr ""
@@ -5832,11 +5916,11 @@ msgstr ""
msgid "Setting up"
msgstr ""
#: frontend/src/components/AppSidebar.vue:622
#: frontend/src/components/AppSidebar.vue:627
msgid "Setting up payment gateway"
msgstr ""
#: frontend/src/components/AppSidebar.vue:627
#: frontend/src/components/AppSidebar.vue:632
#: frontend/src/components/Settings/Settings.vue:7
#: frontend/src/pages/BatchForm.vue:53 frontend/src/pages/CourseForm.vue:142
#: frontend/src/pages/ProfileRoles.vue:4
@@ -5994,6 +6078,7 @@ msgstr "Lösung"
#. Label of the source (Link) field in DocType 'LMS Payment'
#. Label of the source (Data) field in DocType 'LMS Source'
#. Label of the source (Data) field in DocType 'LMS Video Watch Duration'
#: frontend/src/components/Settings/TransactionDetails.vue:35
#: lms/lms/doctype/lms_batch_enrollment/lms_batch_enrollment.json
#: lms/lms/doctype/lms_payment/lms_payment.json
#: lms/lms/doctype/lms_source/lms_source.json
@@ -6106,7 +6191,7 @@ msgstr "Statistiken"
#: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19
#: frontend/src/pages/JobForm.vue:46
#: frontend/src/pages/JobForm.vue:53
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:280
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/cohort/cohort.json
@@ -6243,7 +6328,7 @@ msgstr "Zusammenfassung"
msgid "Sunday"
msgstr "Sonntag"
#: lms/lms/api.py:1057
#: lms/lms/api.py:1081
msgid "Suspicious pattern found in {0}: {1}"
msgstr ""
@@ -6706,6 +6791,10 @@ msgstr "Gesamte Registrierungen"
msgid "Training Feedback"
msgstr "Feedback zur Weiterbildung"
#: frontend/src/components/Settings/TransactionDetails.vue:5
msgid "Transaction Details"
msgstr "Transaktionsdetails"
#. Option for the 'Location Preference' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Travel"
@@ -6838,7 +6927,6 @@ msgid "Upcoming Live Classes"
msgstr ""
#: frontend/src/components/Settings/BrandSettings.vue:24
#: frontend/src/components/Settings/PaymentSettings.vue:27
#: frontend/src/components/Settings/SettingDetails.vue:23
msgid "Update"
msgstr "Aktualisieren"
@@ -7073,6 +7161,12 @@ msgstr "Berufserfahrung"
msgid "Work Experience Details"
msgstr ""
#. Label of the work_mode (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:32 frontend/src/pages/Jobs.vue:73
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Work Mode"
msgstr ""
#: frontend/src/components/CourseReviews.vue:8
#: frontend/src/components/Modals/ReviewModal.vue:5
#: lms/templates/reviews.html:117
@@ -7103,11 +7197,11 @@ msgstr ""
msgid "You are already certified for this course. Click on the card below to open your certificate."
msgstr ""
#: lms/lms/api.py:199
#: lms/lms/api.py:200
msgid "You are already enrolled for this batch."
msgstr ""
#: lms/lms/api.py:193
#: lms/lms/api.py:194
msgid "You are already enrolled for this course."
msgstr "Sie sind bereits in diesem Kurs eingeschrieben."
@@ -7181,7 +7275,7 @@ msgstr "Sie haben sich bereits auf diese Stelle beworben."
msgid "You have already exceeded the maximum number of attempts allowed for this quiz."
msgstr "Sie haben die maximal zulässige Anzahl von Versuchen für dieses Quiz bereits überschritten."
#: lms/lms/api.py:223
#: lms/lms/api.py:224
msgid "You have already purchased the certificate for this course."
msgstr ""
@@ -7352,11 +7446,11 @@ msgstr "und"
msgid "and then 'Add to Home Screen'"
msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:108
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114
msgid "applicant"
msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:108
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114
msgid "applicants"
msgstr ""
@@ -7405,11 +7499,11 @@ msgstr ""
#: frontend/src/pages/Home/Streak.vue:37 frontend/src/pages/Home/Streak.vue:45
msgid "days"
msgstr ""
msgstr "tage"
#: frontend/src/pages/Home/Home.vue:100 frontend/src/pages/Home/Home.vue:123
msgid "evaluation"
msgstr ""
msgstr "beurteilung"
#: frontend/src/pages/Home/Home.vue:100 frontend/src/pages/Home/Home.vue:123
msgid "evaluations"
@@ -7509,7 +7603,7 @@ msgstr ""
msgid "{0} Quizzes"
msgstr ""
#: lms/lms/api.py:836 lms/lms/api.py:844
#: lms/lms/api.py:838 lms/lms/api.py:846
msgid "{0} Settings not found"
msgstr ""
@@ -7565,6 +7659,10 @@ msgstr ""
msgid "{0} mentioned you in a comment in {1}"
msgstr "{0} erwähnte Sie in einem Kommentar in {1}"
#: lms/lms/api.py:887
msgid "{0} not found"
msgstr "{0} nicht gefunden"
#: lms/lms/utils.py:450
msgid "{0}k"
msgstr ""
+162 -64
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2025-09-19 16:04+0000\n"
"PO-Revision-Date: 2025-09-24 07:16\n"
"POT-Creation-Date: 2025-09-26 16:04+0000\n"
"PO-Revision-Date: 2025-09-27 08:15\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Esperanto\n"
"MIME-Version: 1.0\n"
@@ -145,8 +145,8 @@ msgstr "crwdns154794:0crwdne154794:0"
#: frontend/src/components/Settings/Evaluators.vue:93
#: frontend/src/components/Settings/Members.vue:91
#: frontend/src/pages/Programs/ProgramForm.vue:56
#: frontend/src/pages/Programs/ProgramForm.vue:130
#: frontend/src/pages/Programs/ProgramForm.vue:179
#: frontend/src/pages/Programs/ProgramForm.vue:131
#: frontend/src/pages/Programs/ProgramForm.vue:180
msgid "Add"
msgstr "crwdns149212:0crwdne149212:0"
@@ -156,7 +156,7 @@ msgstr "crwdns149212:0crwdne149212:0"
msgid "Add Chapter"
msgstr "crwdns149214:0crwdne149214:0"
#: frontend/src/pages/Programs/ProgramForm.vue:175
#: frontend/src/pages/Programs/ProgramForm.vue:176
msgid "Add Course to Program"
msgstr "crwdns158486:0crwdne158486:0"
@@ -221,6 +221,10 @@ msgstr "crwdns155798:0crwdne155798:0"
msgid "Add a new question"
msgstr "crwdns149228:0crwdne149228:0"
#: frontend/src/components/AppSidebar.vue:600
msgid "Add a program"
msgstr "crwdns159750:0crwdne159750:0"
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseModal.vue:5
msgid "Add a programming exercise to your lesson"
msgstr "crwdns155690:0crwdne155690:0"
@@ -274,6 +278,7 @@ msgid "Add your first lesson"
msgstr "crwdns154443:0crwdne154443:0"
#. Label of the address (Link) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:56
#: frontend/src/pages/Billing.vue:64
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Address"
@@ -353,6 +358,8 @@ msgstr "crwdns157156:0crwdne157156:0"
#. Label of the amount (Currency) field in DocType 'LMS Batch'
#. Label of the course_price (Currency) field in DocType 'LMS Course'
#. Label of the amount (Currency) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:68
#: frontend/src/components/Settings/Transactions.vue:219
#: frontend/src/pages/BatchForm.vue:278 frontend/src/pages/CourseForm.vue:262
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -460,7 +467,7 @@ msgstr "crwdns152463:0crwdne152463:0"
msgid "Are you sure you want to enroll?"
msgstr "crwdns158490:0crwdne158490:0"
#: frontend/src/components/UserDropdown.vue:175
#: frontend/src/components/UserDropdown.vue:177
msgid "Are you sure you want to login to your Frappe Cloud dashboard?"
msgstr "crwdns152465:0crwdne152465:0"
@@ -496,7 +503,7 @@ msgid "Assessment {0} has already been added to this batch."
msgstr "crwdns149308:0{0}crwdne149308:0"
#. Label of the show_assessments (Check) field in DocType 'LMS Settings'
#: frontend/src/components/AppSidebar.vue:598
#: frontend/src/components/AppSidebar.vue:603
#: frontend/src/components/Assessments.vue:5
#: frontend/src/components/BatchStudents.vue:32
#: lms/lms/doctype/lms_settings/lms_settings.json
@@ -578,7 +585,7 @@ msgstr "crwdns154598:0crwdne154598:0"
msgid "Assignment will appear at the bottom of the lesson."
msgstr "crwdns149324:0crwdne149324:0"
#: frontend/src/components/AppSidebar.vue:602
#: frontend/src/components/AppSidebar.vue:607
#: frontend/src/components/Settings/Badges.vue:163
#: frontend/src/pages/Assignments.vue:208 lms/www/lms.py:271
msgid "Assignments"
@@ -702,6 +709,7 @@ msgstr "crwdns155870:0crwdne155870:0"
#: frontend/src/components/Modals/Event.vue:32
#: frontend/src/components/Settings/BadgeForm.vue:195
#: frontend/src/components/Settings/Badges.vue:200
#: frontend/src/components/Settings/TransactionDetails.vue:92
#: lms/lms/doctype/lms_batch_enrollment/lms_batch_enrollment.json
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
@@ -815,11 +823,11 @@ msgstr "crwdns155874:0crwdne155874:0"
msgid "Batch end date cannot be before the batch start date"
msgstr "crwdns149376:0crwdne149376:0"
#: lms/lms/api.py:210
#: lms/lms/api.py:211
msgid "Batch has already started."
msgstr "crwdns154786:0crwdne154786:0"
#: lms/lms/api.py:205
#: lms/lms/api.py:206
msgid "Batch is sold out."
msgstr "crwdns154325:0crwdne154325:0"
@@ -857,6 +865,8 @@ msgid "Billing Details"
msgstr "crwdns149386:0crwdne149386:0"
#. Label of the billing_name (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:31
#: frontend/src/components/Settings/Transactions.vue:213
#: frontend/src/pages/Billing.vue:70
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Billing Name"
@@ -1002,7 +1012,7 @@ msgstr "crwdns151924:0crwdne151924:0"
#. Enrollment'
#. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace
#: frontend/src/components/AppSidebar.vue:606
#: frontend/src/components/AppSidebar.vue:611
#: frontend/src/components/Modals/Event.vue:381
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58
#: frontend/src/pages/CourseCertification.vue:10
@@ -1145,7 +1155,7 @@ msgstr "crwdns149462:0crwdne149462:0"
#. Label of the city (Data) field in DocType 'User'
#. Label of the location (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/Billing.vue:81 frontend/src/pages/JobForm.vue:34
#: frontend/src/pages/Billing.vue:81 frontend/src/pages/JobForm.vue:41
#: lms/fixtures/custom_field.json
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "City"
@@ -1315,25 +1325,25 @@ msgstr "crwdns149502:0crwdne149502:0"
#. Label of the section_break_6 (Section Break) field in DocType 'Job
#. Opportunity'
#: frontend/src/pages/JobForm.vue:56
#: frontend/src/pages/JobForm.vue:63
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Details"
msgstr "crwdns149504:0crwdne149504:0"
#. Label of the company_email_address (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:75
#: frontend/src/pages/JobForm.vue:82
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Email Address"
msgstr "crwdns149506:0crwdne149506:0"
#. Label of the company_logo (Attach Image) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:80
#: frontend/src/pages/JobForm.vue:87
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Logo"
msgstr "crwdns149508:0crwdne149508:0"
#. Label of the company_name (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:62
#: frontend/src/pages/JobForm.vue:69
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Name"
msgstr "crwdns149510:0crwdne149510:0"
@@ -1344,7 +1354,7 @@ msgid "Company Type"
msgstr "crwdns149512:0crwdne149512:0"
#. Label of the company_website (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:68
#: frontend/src/pages/JobForm.vue:75
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Website"
msgstr "crwdns149514:0crwdne149514:0"
@@ -1414,7 +1424,7 @@ msgstr "crwdns154203:0crwdne154203:0"
msgid "Configurations"
msgstr "crwdns155082:0crwdne155082:0"
#: frontend/src/components/UserDropdown.vue:180
#: frontend/src/components/UserDropdown.vue:182
msgid "Confirm"
msgstr "crwdns152479:0crwdne152479:0"
@@ -1461,7 +1471,7 @@ msgid "Continue Learning"
msgstr "crwdns149540:0crwdne149540:0"
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:178
#: frontend/src/pages/Jobs.vue:196
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Contract"
msgstr "crwdns149542:0crwdne149542:0"
@@ -1491,7 +1501,7 @@ msgstr "crwdns149552:0crwdne149552:0"
#. Label of the country (Link) field in DocType 'User'
#. Label of the country (Link) field in DocType 'Job Opportunity'
#. Label of the country (Link) field in DocType 'Payment Country'
#: frontend/src/pages/Billing.vue:92 frontend/src/pages/JobForm.vue:40
#: frontend/src/pages/Billing.vue:92 frontend/src/pages/JobForm.vue:47
#: frontend/src/pages/Jobs.vue:57 lms/fixtures/custom_field.json
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/payment_country/payment_country.json
@@ -1533,7 +1543,8 @@ msgstr "crwdns149554:0crwdne149554:0"
#: frontend/src/components/Modals/Event.vue:24
#: frontend/src/components/Settings/BadgeForm.vue:194
#: frontend/src/components/Settings/Badges.vue:199
#: frontend/src/pages/Programs/ProgramForm.vue:195
#: frontend/src/components/Settings/TransactionDetails.vue:91
#: frontend/src/pages/Programs/ProgramForm.vue:196
#: frontend/src/pages/Programs/Programs.vue:35
#: lms/lms/doctype/batch_course/batch_course.json
#: lms/lms/doctype/cohort/cohort.json
@@ -1684,7 +1695,7 @@ msgstr "crwdns149588:0crwdne149588:0"
msgid "Course Title"
msgstr "crwdns149590:0crwdne149590:0"
#: frontend/src/pages/Programs/ProgramForm.vue:436
#: frontend/src/pages/Programs/ProgramForm.vue:437
msgid "Course added to program successfully"
msgstr "crwdns158496:0crwdne158496:0"
@@ -1836,6 +1847,7 @@ msgstr "crwdns154457:0crwdne154457:0"
#. Label of the currency (Link) field in DocType 'LMS Batch'
#. Label of the currency (Link) field in DocType 'LMS Course'
#. Label of the currency (Link) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:64
#: frontend/src/pages/BatchForm.vue:285 frontend/src/pages/CourseForm.vue:279
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -1852,7 +1864,7 @@ msgstr "crwdns149620:0crwdne149620:0"
msgid "Current Streak"
msgstr "crwdns159340:0crwdne159340:0"
#: frontend/src/components/AppSidebar.vue:612
#: frontend/src/components/AppSidebar.vue:617
msgid "Custom Certificate Templates"
msgstr "crwdns154459:0crwdne154459:0"
@@ -1954,7 +1966,7 @@ msgstr "crwdns149644:0crwdne149644:0"
#: frontend/src/components/Settings/Badges.vue:171
#: frontend/src/pages/BatchForm.vue:565 frontend/src/pages/CourseForm.vue:597
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseForm.vue:67
#: frontend/src/pages/Programs/ProgramForm.vue:230
#: frontend/src/pages/Programs/ProgramForm.vue:231
msgid "Delete"
msgstr "crwdns149646:0crwdne149646:0"
@@ -2004,7 +2016,7 @@ msgstr "crwdns151634:0crwdne151634:0"
#. Label of the description (Small Text) field in DocType 'Work Experience'
#: frontend/src/components/Modals/LiveClassModal.vue:80
#: frontend/src/components/Settings/BadgeForm.vue:32
#: frontend/src/pages/JobForm.vue:125
#: frontend/src/pages/JobForm.vue:132
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/cohort/cohort.json
@@ -2045,6 +2057,7 @@ msgstr "crwdns154520:0crwdne154520:0"
#. Label of the disabled (Check) field in DocType 'Job Opportunity'
#: frontend/src/components/Settings/Badges.vue:56
#: frontend/src/components/Settings/PaymentGateways.vue:55
#: frontend/src/components/Settings/ZoomSettings.vue:66
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Disabled"
@@ -2145,6 +2158,10 @@ msgstr "crwdns149684:0crwdne149684:0"
msgid "Edit Email Template"
msgstr "crwdns155182:0crwdne155182:0"
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8
msgid "Edit Payment Gateway"
msgstr "crwdns159752:0crwdne159752:0"
#: frontend/src/pages/Profile.vue:72
msgid "Edit Profile"
msgstr "crwdns149686:0crwdne149686:0"
@@ -2250,6 +2267,7 @@ msgstr "crwdns151742:0crwdne151742:0"
#: frontend/src/components/Modals/ZoomAccountModal.vue:23
#: frontend/src/components/Settings/BadgeForm.vue:14
#: frontend/src/components/Settings/Badges.vue:53
#: frontend/src/components/Settings/PaymentGateways.vue:52
#: frontend/src/components/Settings/ZoomSettings.vue:63
#: lms/lms/doctype/lms_badge/lms_badge.json
#: lms/lms/doctype/lms_zoom_settings/lms_zoom_settings.json
@@ -2301,7 +2319,7 @@ msgstr "crwdns155236:0crwdne155236:0"
msgid "Enforce Course Order"
msgstr "crwdns158506:0crwdne158506:0"
#: frontend/src/pages/Programs/ProgramForm.vue:176
#: frontend/src/pages/Programs/ProgramForm.vue:177
msgid "Enroll Member to Program"
msgstr "crwdns158508:0crwdne158508:0"
@@ -2460,15 +2478,15 @@ msgstr "crwdns149760:0crwdne149760:0"
msgid "Evaluator Schedule"
msgstr "crwdns149762:0crwdne149762:0"
#: frontend/src/components/Settings/Evaluators.vue:163
#: frontend/src/components/Settings/Evaluators.vue:160
msgid "Evaluator added successfully"
msgstr "crwdns155810:0crwdne155810:0"
#: frontend/src/components/Settings/Evaluators.vue:196
#: frontend/src/components/Settings/Evaluators.vue:193
msgid "Evaluator deleted successfully"
msgstr "crwdns155812:0crwdne155812:0"
#: lms/lms/api.py:1392
#: lms/lms/api.py:1416
msgid "Evaluator does not exist."
msgstr "crwdns155814:0crwdne155814:0"
@@ -2640,10 +2658,15 @@ msgstr "crwdns149796:0crwdne149796:0"
msgid "File Type"
msgstr "crwdns149798:0crwdne149798:0"
#: frontend/src/components/Settings/Transactions.vue:15
msgid "Filter by Billing Name"
msgstr "crwdns159754:0crwdne159754:0"
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:23
msgid "Filter by Exercise"
msgstr "crwdns155710:0crwdne155710:0"
#: frontend/src/components/Settings/Transactions.vue:20
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:28
msgid "Filter by Member"
msgstr "crwdns155712:0crwdne155712:0"
@@ -2677,7 +2700,7 @@ msgid "Free"
msgstr "crwdns149810:0crwdne149810:0"
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:179
#: frontend/src/pages/Jobs.vue:197
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Freelance"
msgstr "crwdns149812:0crwdne149812:0"
@@ -2719,7 +2742,7 @@ msgid "Full Name"
msgstr "crwdns149824:0crwdne149824:0"
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:176
#: frontend/src/pages/Jobs.vue:194
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Full Time"
msgstr "crwdns149826:0crwdne149826:0"
@@ -2741,10 +2764,15 @@ msgid "GST Number"
msgstr "crwdns149832:0crwdne149832:0"
#. Label of the gstin (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:76
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "GSTIN"
msgstr "crwdns149834:0crwdne149834:0"
#: frontend/src/components/Settings/PaymentGateways.vue:134
msgid "Gateway"
msgstr "crwdns159756:0crwdne159756:0"
#. Label of the general_tab (Tab Break) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "General"
@@ -2923,6 +2951,11 @@ msgstr "crwdns159344:0crwdne159344:0"
msgid "Host"
msgstr "crwdns149880:0crwdne149880:0"
#. Option for the 'Work Mode' (Select) field in DocType 'Job Opportunity'
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Hybrid"
msgstr "crwdns159758:0crwdne159758:0"
#. Label of the current (Check) field in DocType 'Work Experience'
#: lms/lms/doctype/work_experience/work_experience.json
msgid "I am currently working here"
@@ -3197,7 +3230,7 @@ msgstr "crwdns151636:0crwdne151636:0"
msgid "Issue Date"
msgstr "crwdns149968:0crwdne149968:0"
#: frontend/src/components/AppSidebar.vue:609
#: frontend/src/components/AppSidebar.vue:614
msgid "Issue a Certificate"
msgstr "crwdns154467:0crwdne154467:0"
@@ -3273,7 +3306,7 @@ msgstr "crwdns149992:0crwdne149992:0"
#. 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/Jobs.vue:185
#: frontend/src/pages/Jobs.vue:212
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Jobs"
msgstr "crwdns149994:0crwdne149994:0"
@@ -3621,6 +3654,10 @@ msgstr "crwdns151638:0crwdne151638:0"
msgid "Learning Consistency"
msgstr "crwdns159350:0crwdne159350:0"
#: frontend/src/components/AppSidebar.vue:598
msgid "Learning Paths"
msgstr "crwdns159760:0crwdne159760:0"
#. Label of the left_at (Datetime) field in DocType 'LMS Live Class
#. Participant'
#: lms/lms/doctype/lms_live_class_participant/lms_live_class_participant.json
@@ -3753,6 +3790,7 @@ msgstr "crwdns150110:0crwdne150110:0"
#: frontend/src/components/Modals/CourseProgressSummary.vue:86
#: frontend/src/components/Settings/Evaluators.vue:81
#: frontend/src/components/Settings/Members.vue:79
#: frontend/src/components/Settings/Transactions.vue:94
#: frontend/src/pages/Assignments.vue:66 frontend/src/pages/Batches.vue:82
#: frontend/src/pages/CertifiedParticipants.vue:98
#: frontend/src/pages/Courses.vue:77
@@ -3786,7 +3824,7 @@ msgstr "crwdns150120:0crwdne150120:0"
msgid "Login"
msgstr "crwdns150122:0crwdne150122:0"
#: frontend/src/components/UserDropdown.vue:174
#: frontend/src/components/UserDropdown.vue:176
msgid "Login to Frappe Cloud?"
msgstr "crwdns152505:0crwdne152505:0"
@@ -3940,6 +3978,7 @@ msgstr "crwdns155254:0crwdne155254:0"
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:26
#: frontend/src/components/Settings/BadgeAssignments.vue:179
#: frontend/src/components/Settings/BadgeForm.vue:215
#: frontend/src/components/Settings/TransactionDetails.vue:26
#: frontend/src/components/Settings/ZoomSettings.vue:187
#: frontend/src/pages/AssignmentSubmissionList.vue:14
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:268
@@ -4073,7 +4112,7 @@ msgstr "crwdns150170:0crwdne150170:0"
msgid "Member Username"
msgstr "crwdns152442:0crwdne152442:0"
#: frontend/src/pages/Programs/ProgramForm.vue:462
#: frontend/src/pages/Programs/ProgramForm.vue:463
msgid "Member added to program successfully"
msgstr "crwdns158516:0crwdne158516:0"
@@ -4157,7 +4196,7 @@ msgstr "crwdns154704:0crwdne154704:0"
msgid "Meta Tags"
msgstr "crwdns155256:0crwdne155256:0"
#: lms/lms/api.py:1432
#: lms/lms/api.py:1456
msgid "Meta tags should be a list."
msgstr "crwdns155258:0crwdne155258:0"
@@ -4209,11 +4248,11 @@ msgstr "crwdns155730:0crwdne155730:0"
msgid "Modified By"
msgstr "crwdns150198:0crwdne150198:0"
#: lms/lms/api.py:187
#: lms/lms/api.py:188
msgid "Module Name is incorrect or does not exist."
msgstr "crwdns150200:0crwdne150200:0"
#: lms/lms/api.py:183
#: lms/lms/api.py:184
msgid "Module is incorrect."
msgstr "crwdns150202:0crwdne150202:0"
@@ -4224,7 +4263,7 @@ msgstr "crwdns150202:0crwdne150202:0"
msgid "Monday"
msgstr "crwdns150204:0crwdne150204:0"
#: frontend/src/components/AppSidebar.vue:617
#: frontend/src/components/AppSidebar.vue:622
msgid "Monetization"
msgstr "crwdns154469:0crwdne154469:0"
@@ -4268,6 +4307,7 @@ msgstr "crwdns155198:0crwdne155198:0"
#: frontend/src/components/Settings/EmailTemplates.vue:17
#: frontend/src/components/Settings/Evaluators.vue:17
#: frontend/src/components/Settings/Members.vue:17
#: frontend/src/components/Settings/PaymentGateways.vue:16
#: frontend/src/components/Settings/ZoomSettings.vue:17
#: frontend/src/pages/Courses.vue:312
#: frontend/src/pages/Programs/Programs.vue:10
@@ -4295,6 +4335,10 @@ msgstr "crwdns150222:0crwdne150222:0"
msgid "New Job Applicant"
msgstr "crwdns150224:0crwdne150224:0"
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7
msgid "New Payment Gateway"
msgstr "crwdns159762:0crwdne159762:0"
#: frontend/src/pages/QuizForm.vue:137
msgid "New Question"
msgstr "crwdns150226:0crwdne150226:0"
@@ -4399,7 +4443,7 @@ msgstr "crwdns150258:0crwdne150258:0"
msgid "No live classes scheduled"
msgstr "crwdns150262:0crwdne150262:0"
#: frontend/src/pages/Programs/ProgramForm.vue:166
#: frontend/src/pages/Programs/ProgramForm.vue:167
msgid "No members added yet."
msgstr "crwdns158520:0crwdne158520:0"
@@ -4469,7 +4513,6 @@ msgstr "crwdns150286:0crwdne150286:0"
#: frontend/src/components/Assignment.vue:36
#: frontend/src/components/Settings/BrandSettings.vue:10
#: frontend/src/components/Settings/PaymentSettings.vue:9
#: frontend/src/components/Settings/SettingDetails.vue:10
#: frontend/src/pages/Programs/ProgramForm.vue:16
#: frontend/src/pages/QuizForm.vue:8 frontend/src/pages/QuizSubmission.vue:9
@@ -4522,6 +4565,11 @@ msgstr "crwdns150298:0crwdne150298:0"
msgid "Offline"
msgstr "crwdns150300:0crwdne150300:0"
#. Option for the 'Work Mode' (Select) field in DocType 'Job Opportunity'
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "On-site"
msgstr "crwdns159764:0crwdne159764:0"
#: lms/templates/emails/certification.html:16
msgid "Once again, congratulations on this significant accomplishment."
msgstr "crwdns150302:0crwdne150302:0"
@@ -4569,6 +4617,10 @@ msgstr "crwdns150316:0crwdne150316:0"
msgid "Open Ended"
msgstr "crwdns150318:0crwdne150318:0"
#: frontend/src/components/Settings/TransactionDetails.vue:88
msgid "Open the "
msgstr "crwdns159766:0crwdne159766:0"
#. Label of the option (Data) field in DocType 'LMS Option'
#: frontend/src/components/Modals/Question.vue:70
#: lms/lms/doctype/lms_option/lms_option.json
@@ -4605,6 +4657,7 @@ msgid "Orange"
msgstr "crwdns157168:0crwdne157168:0"
#. Label of the order_id (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:70
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Order ID"
msgstr "crwdns150332:0crwdne150332:0"
@@ -4642,6 +4695,7 @@ msgid "Owner"
msgstr "crwdns150344:0crwdne150344:0"
#. Label of the pan (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:77
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "PAN"
msgstr "crwdns150346:0crwdne150346:0"
@@ -4687,7 +4741,7 @@ msgid "Pan Number"
msgstr "crwdns150356:0crwdne150356:0"
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:177
#: frontend/src/pages/Jobs.vue:195
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Part Time"
msgstr "crwdns150358:0crwdne150358:0"
@@ -4747,21 +4801,38 @@ msgstr "crwdns150370:0crwdne150370:0"
#. Label of the payment_details_section (Section Break) field in DocType 'LMS
#. Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:42
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment Details"
msgstr "crwdns150372:0crwdne150372:0"
#: frontend/src/components/Settings/TransactionDetails.vue:18
msgid "Payment For Certificate"
msgstr "crwdns159768:0crwdne159768:0"
#: frontend/src/components/Settings/TransactionDetails.vue:51
msgid "Payment For Document"
msgstr "crwdns159770:0crwdne159770:0"
#: frontend/src/components/Settings/TransactionDetails.vue:46
msgid "Payment For Document Type"
msgstr "crwdns159772:0crwdne159772:0"
#. Label of the payment_gateway (Data) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Payment Gateway"
msgstr "crwdns150374:0crwdne150374:0"
#. Label of the payment_id (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:79
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment ID"
msgstr "crwdns150376:0crwdne150376:0"
#. Label of the payment_received (Check) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:13
#: frontend/src/components/Settings/Transactions.vue:25
#: frontend/src/components/Settings/Transactions.vue:226
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment Received"
msgstr "crwdns150378:0crwdne150378:0"
@@ -4783,6 +4854,8 @@ msgid "Payment for "
msgstr "crwdns152611:0crwdne152611:0"
#. Label of the payment_for_certificate (Check) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/Transactions.vue:30
#: frontend/src/components/Settings/Transactions.vue:233
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment for Certificate"
msgstr "crwdns152613:0crwdne152613:0"
@@ -4923,7 +4996,7 @@ msgstr "crwdns150424:0crwdne150424:0"
msgid "Please login to access this page."
msgstr "crwdns150426:0crwdne150426:0"
#: lms/lms/api.py:179
#: lms/lms/api.py:180
msgid "Please login to continue with payment."
msgstr "crwdns150428:0crwdne150428:0"
@@ -4940,7 +5013,7 @@ msgstr "crwdns150430:0crwdne150430:0"
msgid "Please run the code to execute the test cases."
msgstr "crwdns155738:0crwdne155738:0"
#: frontend/src/pages/Programs/ProgramForm.vue:420
#: frontend/src/pages/Programs/ProgramForm.vue:421
msgid "Please select a course"
msgstr "crwdns158530:0crwdne158530:0"
@@ -4956,7 +5029,7 @@ msgstr "crwdns151780:0crwdne151780:0"
msgid "Please select a future date and time."
msgstr "crwdns151782:0crwdne151782:0"
#: frontend/src/pages/Programs/ProgramForm.vue:447
#: frontend/src/pages/Programs/ProgramForm.vue:448
msgid "Please select a member"
msgstr "crwdns158532:0crwdne158532:0"
@@ -5146,7 +5219,7 @@ msgstr "crwdns159366:0crwdne159366:0"
msgid "Program Courses"
msgstr "crwdns151790:0crwdne151790:0"
#: frontend/src/pages/Programs/ProgramForm.vue:205
#: frontend/src/pages/Programs/ProgramForm.vue:206
msgid "Program Member"
msgstr "crwdns151792:0crwdne151792:0"
@@ -5155,15 +5228,15 @@ msgstr "crwdns151792:0crwdne151792:0"
msgid "Program Members"
msgstr "crwdns151794:0crwdne151794:0"
#: frontend/src/pages/Programs/ProgramForm.vue:380
#: frontend/src/pages/Programs/ProgramForm.vue:381
msgid "Program created successfully"
msgstr "crwdns158534:0crwdne158534:0"
#: frontend/src/pages/Programs/ProgramForm.vue:551
#: frontend/src/pages/Programs/ProgramForm.vue:552
msgid "Program deleted successfully"
msgstr "crwdns158536:0crwdne158536:0"
#: frontend/src/pages/Programs/ProgramForm.vue:399
#: frontend/src/pages/Programs/ProgramForm.vue:400
msgid "Program updated successfully"
msgstr "crwdns158538:0crwdne158538:0"
@@ -5229,7 +5302,7 @@ msgid "Progress Distribution"
msgstr "crwdns155830:0crwdne155830:0"
#: frontend/src/components/CourseCardOverlay.vue:99
#: frontend/src/pages/Programs/ProgramForm.vue:124
#: frontend/src/pages/Programs/ProgramForm.vue:125
msgid "Progress Summary"
msgstr "crwdns155832:0crwdne155832:0"
@@ -5407,7 +5480,7 @@ msgstr "crwdns150538:0crwdne150538:0"
msgid "Quiz will appear at the bottom of the lesson."
msgstr "crwdns150540:0crwdne150540:0"
#: frontend/src/components/AppSidebar.vue:601
#: frontend/src/components/AppSidebar.vue:606
#: frontend/src/pages/QuizForm.vue:396 frontend/src/pages/Quizzes.vue:275
#: frontend/src/pages/Quizzes.vue:285 lms/www/lms.py:249
msgid "Quizzes"
@@ -5497,6 +5570,11 @@ msgstr "crwdns150566:0crwdne150566:0"
msgid "Related Courses"
msgstr "crwdns150568:0crwdne150568:0"
#. Option for the 'Work Mode' (Select) field in DocType 'Job Opportunity'
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Remote"
msgstr "crwdns159774:0crwdne159774:0"
#: frontend/src/components/Controls/Uploader.vue:34
#: frontend/src/pages/BatchForm.vue:246 frontend/src/pages/CourseForm.vue:119
msgid "Remove"
@@ -5587,7 +5665,7 @@ msgstr "crwdns150594:0crwdne150594:0"
msgid "Role updated successfully"
msgstr "crwdns155104:0crwdne155104:0"
#: frontend/src/components/AppSidebar.vue:629
#: frontend/src/components/AppSidebar.vue:634
msgid "Roles"
msgstr "crwdns154473:0crwdne154473:0"
@@ -5671,11 +5749,13 @@ msgstr "crwdns150610:0crwdne150610:0"
#: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
#: frontend/src/components/Settings/BadgeForm.vue:78
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:38
#: frontend/src/components/Settings/TransactionDetails.vue:96
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17
#: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseForm.vue:101
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseModal.vue:9
#: frontend/src/pages/Programs/ProgramForm.vue:233
#: frontend/src/pages/Programs/ProgramForm.vue:234
#: frontend/src/pages/QuizForm.vue:43 frontend/src/pages/QuizSubmission.vue:14
#: frontend/src/pages/Quizzes.vue:105
msgid "Save"
@@ -5777,6 +5857,10 @@ msgstr "crwdns159374:0crwdne159374:0"
msgid "Select Date"
msgstr "crwdns155902:0crwdne155902:0"
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22
msgid "Select Payment Gateway"
msgstr "crwdns159776:0crwdne159776:0"
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseModal.vue:23
msgid "Select a Programming Exercise"
msgstr "crwdns155758:0crwdne155758:0"
@@ -5832,11 +5916,11 @@ msgstr "crwdns150646:0crwdne150646:0"
msgid "Setting up"
msgstr "crwdns154475:0crwdne154475:0"
#: frontend/src/components/AppSidebar.vue:622
#: frontend/src/components/AppSidebar.vue:627
msgid "Setting up payment gateway"
msgstr "crwdns154477:0crwdne154477:0"
#: frontend/src/components/AppSidebar.vue:627
#: frontend/src/components/AppSidebar.vue:632
#: frontend/src/components/Settings/Settings.vue:7
#: frontend/src/pages/BatchForm.vue:53 frontend/src/pages/CourseForm.vue:142
#: frontend/src/pages/ProfileRoles.vue:4
@@ -5994,6 +6078,7 @@ msgstr "crwdns150704:0crwdne150704:0"
#. Label of the source (Link) field in DocType 'LMS Payment'
#. Label of the source (Data) field in DocType 'LMS Source'
#. Label of the source (Data) field in DocType 'LMS Video Watch Duration'
#: frontend/src/components/Settings/TransactionDetails.vue:35
#: lms/lms/doctype/lms_batch_enrollment/lms_batch_enrollment.json
#: lms/lms/doctype/lms_payment/lms_payment.json
#: lms/lms/doctype/lms_source/lms_source.json
@@ -6106,7 +6191,7 @@ msgstr "crwdns150732:0crwdne150732:0"
#: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19
#: frontend/src/pages/JobForm.vue:46
#: frontend/src/pages/JobForm.vue:53
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:280
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/cohort/cohort.json
@@ -6243,7 +6328,7 @@ msgstr "crwdns150770:0crwdne150770:0"
msgid "Sunday"
msgstr "crwdns150772:0crwdne150772:0"
#: lms/lms/api.py:1057
#: lms/lms/api.py:1081
msgid "Suspicious pattern found in {0}: {1}"
msgstr "crwdns151930:0{0}crwdnd151930:0{1}crwdne151930:0"
@@ -6706,6 +6791,10 @@ msgstr "crwdns150868:0crwdne150868:0"
msgid "Training Feedback"
msgstr "crwdns155206:0crwdne155206:0"
#: frontend/src/components/Settings/TransactionDetails.vue:5
msgid "Transaction Details"
msgstr "crwdns159778:0crwdne159778:0"
#. Option for the 'Location Preference' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Travel"
@@ -6838,7 +6927,6 @@ msgid "Upcoming Live Classes"
msgstr "crwdns159382:0crwdne159382:0"
#: frontend/src/components/Settings/BrandSettings.vue:24
#: frontend/src/components/Settings/PaymentSettings.vue:27
#: frontend/src/components/Settings/SettingDetails.vue:23
msgid "Update"
msgstr "crwdns150906:0crwdne150906:0"
@@ -7073,6 +7161,12 @@ msgstr "crwdns150968:0crwdne150968:0"
msgid "Work Experience Details"
msgstr "crwdns150970:0crwdne150970:0"
#. Label of the work_mode (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:32 frontend/src/pages/Jobs.vue:73
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Work Mode"
msgstr "crwdns159780:0crwdne159780:0"
#: frontend/src/components/CourseReviews.vue:8
#: frontend/src/components/Modals/ReviewModal.vue:5
#: lms/templates/reviews.html:117
@@ -7103,11 +7197,11 @@ msgstr "crwdns150978:0{0}crwdnd150978:0{1}crwdnd150978:0{2}crwdne150978:0"
msgid "You are already certified for this course. Click on the card below to open your certificate."
msgstr "crwdns152621:0crwdne152621:0"
#: lms/lms/api.py:199
#: lms/lms/api.py:200
msgid "You are already enrolled for this batch."
msgstr "crwdns150980:0crwdne150980:0"
#: lms/lms/api.py:193
#: lms/lms/api.py:194
msgid "You are already enrolled for this course."
msgstr "crwdns150982:0crwdne150982:0"
@@ -7181,7 +7275,7 @@ msgstr "crwdns151008:0crwdne151008:0"
msgid "You have already exceeded the maximum number of attempts allowed for this quiz."
msgstr "crwdns151010:0crwdne151010:0"
#: lms/lms/api.py:223
#: lms/lms/api.py:224
msgid "You have already purchased the certificate for this course."
msgstr "crwdns152623:0crwdne152623:0"
@@ -7352,11 +7446,11 @@ msgstr "crwdns157186:0crwdne157186:0"
msgid "and then 'Add to Home Screen'"
msgstr "crwdns158326:0crwdne158326:0"
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:108
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114
msgid "applicant"
msgstr "crwdns154722:0crwdne154722:0"
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:108
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114
msgid "applicants"
msgstr "crwdns154724:0crwdne154724:0"
@@ -7509,7 +7603,7 @@ msgstr "crwdns154726:0{0}crwdne154726:0"
msgid "{0} Quizzes"
msgstr "crwdns155126:0{0}crwdne155126:0"
#: lms/lms/api.py:836 lms/lms/api.py:844
#: lms/lms/api.py:838 lms/lms/api.py:846
msgid "{0} Settings not found"
msgstr "crwdns151078:0{0}crwdne151078:0"
@@ -7565,6 +7659,10 @@ msgstr "crwdns151098:0{0}crwdne151098:0"
msgid "{0} mentioned you in a comment in {1}"
msgstr "crwdns151100:0{0}crwdnd151100:0{1}crwdne151100:0"
#: lms/lms/api.py:887
msgid "{0} not found"
msgstr "crwdns159782:0{0}crwdne159782:0"
#: lms/lms/utils.py:450
msgid "{0}k"
msgstr "crwdns151102:0{0}crwdne151102:0"
+166 -68
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2025-09-19 16:04+0000\n"
"PO-Revision-Date: 2025-09-24 07:15\n"
"POT-Creation-Date: 2025-09-26 16:04+0000\n"
"PO-Revision-Date: 2025-09-27 08:15\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Spanish\n"
"MIME-Version: 1.0\n"
@@ -145,8 +145,8 @@ msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:93
#: frontend/src/components/Settings/Members.vue:91
#: frontend/src/pages/Programs/ProgramForm.vue:56
#: frontend/src/pages/Programs/ProgramForm.vue:130
#: frontend/src/pages/Programs/ProgramForm.vue:179
#: frontend/src/pages/Programs/ProgramForm.vue:131
#: frontend/src/pages/Programs/ProgramForm.vue:180
msgid "Add"
msgstr "Agregar"
@@ -156,7 +156,7 @@ msgstr "Agregar"
msgid "Add Chapter"
msgstr "Añadir Capítulo"
#: frontend/src/pages/Programs/ProgramForm.vue:175
#: frontend/src/pages/Programs/ProgramForm.vue:176
msgid "Add Course to Program"
msgstr ""
@@ -221,6 +221,10 @@ msgstr ""
msgid "Add a new question"
msgstr "Añadir una nueva pregunta"
#: frontend/src/components/AppSidebar.vue:600
msgid "Add a program"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseModal.vue:5
msgid "Add a programming exercise to your lesson"
msgstr ""
@@ -274,6 +278,7 @@ msgid "Add your first lesson"
msgstr ""
#. Label of the address (Link) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:56
#: frontend/src/pages/Billing.vue:64
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Address"
@@ -353,6 +358,8 @@ msgstr ""
#. Label of the amount (Currency) field in DocType 'LMS Batch'
#. Label of the course_price (Currency) field in DocType 'LMS Course'
#. Label of the amount (Currency) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:68
#: frontend/src/components/Settings/Transactions.vue:219
#: frontend/src/pages/BatchForm.vue:278 frontend/src/pages/CourseForm.vue:262
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -460,7 +467,7 @@ msgstr ""
msgid "Are you sure you want to enroll?"
msgstr ""
#: frontend/src/components/UserDropdown.vue:175
#: frontend/src/components/UserDropdown.vue:177
msgid "Are you sure you want to login to your Frappe Cloud dashboard?"
msgstr "¿Estás seguro de que deseas iniciar sesión en el panel de Frappe Cloud?"
@@ -496,7 +503,7 @@ msgid "Assessment {0} has already been added to this batch."
msgstr "La evaluación {0} ya se ha agregado a este lote."
#. Label of the show_assessments (Check) field in DocType 'LMS Settings'
#: frontend/src/components/AppSidebar.vue:598
#: frontend/src/components/AppSidebar.vue:603
#: frontend/src/components/Assessments.vue:5
#: frontend/src/components/BatchStudents.vue:32
#: lms/lms/doctype/lms_settings/lms_settings.json
@@ -578,7 +585,7 @@ msgstr ""
msgid "Assignment will appear at the bottom of the lesson."
msgstr "La tarea aparecerá al final de la lección."
#: frontend/src/components/AppSidebar.vue:602
#: frontend/src/components/AppSidebar.vue:607
#: frontend/src/components/Settings/Badges.vue:163
#: frontend/src/pages/Assignments.vue:208 lms/www/lms.py:271
msgid "Assignments"
@@ -702,6 +709,7 @@ msgstr ""
#: frontend/src/components/Modals/Event.vue:32
#: frontend/src/components/Settings/BadgeForm.vue:195
#: frontend/src/components/Settings/Badges.vue:200
#: frontend/src/components/Settings/TransactionDetails.vue:92
#: lms/lms/doctype/lms_batch_enrollment/lms_batch_enrollment.json
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
@@ -790,7 +798,7 @@ msgstr "Configuración de lotes"
#: frontend/src/pages/BatchForm.vue:82
msgid "Batch Start Date"
msgstr ""
msgstr "Fecha de inicio del lote"
#: lms/templates/emails/batch_confirmation.html:11
msgid "Batch Start Date:"
@@ -815,11 +823,11 @@ msgstr ""
msgid "Batch end date cannot be before the batch start date"
msgstr "La fecha de finalización del grupo no puede ser anterior a la fecha de inicio del lote"
#: lms/lms/api.py:210
#: lms/lms/api.py:211
msgid "Batch has already started."
msgstr ""
#: lms/lms/api.py:205
#: lms/lms/api.py:206
msgid "Batch is sold out."
msgstr ""
@@ -857,6 +865,8 @@ msgid "Billing Details"
msgstr "Detalles de facturación"
#. Label of the billing_name (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:31
#: frontend/src/components/Settings/Transactions.vue:213
#: frontend/src/pages/Billing.vue:70
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Billing Name"
@@ -1002,7 +1012,7 @@ msgstr ""
#. Enrollment'
#. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace
#: frontend/src/components/AppSidebar.vue:606
#: frontend/src/components/AppSidebar.vue:611
#: frontend/src/components/Modals/Event.vue:381
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58
#: frontend/src/pages/CourseCertification.vue:10
@@ -1145,7 +1155,7 @@ msgstr "Elige una respuesta"
#. Label of the city (Data) field in DocType 'User'
#. Label of the location (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/Billing.vue:81 frontend/src/pages/JobForm.vue:34
#: frontend/src/pages/Billing.vue:81 frontend/src/pages/JobForm.vue:41
#: lms/fixtures/custom_field.json
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "City"
@@ -1315,25 +1325,25 @@ msgstr "Compañía"
#. Label of the section_break_6 (Section Break) field in DocType 'Job
#. Opportunity'
#: frontend/src/pages/JobForm.vue:56
#: frontend/src/pages/JobForm.vue:63
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Details"
msgstr "Detalles de la Compañía"
#. Label of the company_email_address (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:75
#: frontend/src/pages/JobForm.vue:82
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Email Address"
msgstr "Dirección de correo de la Empresa"
#. Label of the company_logo (Attach Image) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:80
#: frontend/src/pages/JobForm.vue:87
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Logo"
msgstr "Logo de la Compañía"
#. Label of the company_name (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:62
#: frontend/src/pages/JobForm.vue:69
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Name"
msgstr "Nombre de compañía"
@@ -1344,7 +1354,7 @@ msgid "Company Type"
msgstr "Tipo de empresa"
#. Label of the company_website (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:68
#: frontend/src/pages/JobForm.vue:75
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Website"
msgstr "Página Web de la empresa"
@@ -1414,7 +1424,7 @@ msgstr ""
msgid "Configurations"
msgstr ""
#: frontend/src/components/UserDropdown.vue:180
#: frontend/src/components/UserDropdown.vue:182
msgid "Confirm"
msgstr "Confirmar"
@@ -1461,7 +1471,7 @@ msgid "Continue Learning"
msgstr "Continuar aprendiendo"
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:178
#: frontend/src/pages/Jobs.vue:196
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Contract"
msgstr "Contrato"
@@ -1491,7 +1501,7 @@ msgstr "Respuesta correcta"
#. Label of the country (Link) field in DocType 'User'
#. Label of the country (Link) field in DocType 'Job Opportunity'
#. Label of the country (Link) field in DocType 'Payment Country'
#: frontend/src/pages/Billing.vue:92 frontend/src/pages/JobForm.vue:40
#: frontend/src/pages/Billing.vue:92 frontend/src/pages/JobForm.vue:47
#: frontend/src/pages/Jobs.vue:57 lms/fixtures/custom_field.json
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/payment_country/payment_country.json
@@ -1533,7 +1543,8 @@ msgstr "País"
#: frontend/src/components/Modals/Event.vue:24
#: frontend/src/components/Settings/BadgeForm.vue:194
#: frontend/src/components/Settings/Badges.vue:199
#: frontend/src/pages/Programs/ProgramForm.vue:195
#: frontend/src/components/Settings/TransactionDetails.vue:91
#: frontend/src/pages/Programs/ProgramForm.vue:196
#: frontend/src/pages/Programs/Programs.vue:35
#: lms/lms/doctype/batch_course/batch_course.json
#: lms/lms/doctype/cohort/cohort.json
@@ -1684,7 +1695,7 @@ msgstr "Estadísticas del curso"
msgid "Course Title"
msgstr "Título del curso"
#: frontend/src/pages/Programs/ProgramForm.vue:436
#: frontend/src/pages/Programs/ProgramForm.vue:437
msgid "Course added to program successfully"
msgstr ""
@@ -1836,6 +1847,7 @@ msgstr ""
#. Label of the currency (Link) field in DocType 'LMS Batch'
#. Label of the currency (Link) field in DocType 'LMS Course'
#. Label of the currency (Link) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:64
#: frontend/src/pages/BatchForm.vue:285 frontend/src/pages/CourseForm.vue:279
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -1852,7 +1864,7 @@ msgstr "Lección actual"
msgid "Current Streak"
msgstr ""
#: frontend/src/components/AppSidebar.vue:612
#: frontend/src/components/AppSidebar.vue:617
msgid "Custom Certificate Templates"
msgstr ""
@@ -1954,7 +1966,7 @@ msgstr "Tipo de Grado"
#: frontend/src/components/Settings/Badges.vue:171
#: frontend/src/pages/BatchForm.vue:565 frontend/src/pages/CourseForm.vue:597
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseForm.vue:67
#: frontend/src/pages/Programs/ProgramForm.vue:230
#: frontend/src/pages/Programs/ProgramForm.vue:231
msgid "Delete"
msgstr "Eliminar"
@@ -2004,7 +2016,7 @@ msgstr ""
#. Label of the description (Small Text) field in DocType 'Work Experience'
#: frontend/src/components/Modals/LiveClassModal.vue:80
#: frontend/src/components/Settings/BadgeForm.vue:32
#: frontend/src/pages/JobForm.vue:125
#: frontend/src/pages/JobForm.vue:132
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/cohort/cohort.json
@@ -2045,6 +2057,7 @@ msgstr ""
#. Label of the disabled (Check) field in DocType 'Job Opportunity'
#: frontend/src/components/Settings/Badges.vue:56
#: frontend/src/components/Settings/PaymentGateways.vue:55
#: frontend/src/components/Settings/ZoomSettings.vue:66
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Disabled"
@@ -2145,6 +2158,10 @@ msgstr "Editar capítulo"
msgid "Edit Email Template"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8
msgid "Edit Payment Gateway"
msgstr ""
#: frontend/src/pages/Profile.vue:72
msgid "Edit Profile"
msgstr "Editar perfil"
@@ -2250,6 +2267,7 @@ msgstr ""
#: frontend/src/components/Modals/ZoomAccountModal.vue:23
#: frontend/src/components/Settings/BadgeForm.vue:14
#: frontend/src/components/Settings/Badges.vue:53
#: frontend/src/components/Settings/PaymentGateways.vue:52
#: frontend/src/components/Settings/ZoomSettings.vue:63
#: lms/lms/doctype/lms_badge/lms_badge.json
#: lms/lms/doctype/lms_zoom_settings/lms_zoom_settings.json
@@ -2301,7 +2319,7 @@ msgstr ""
msgid "Enforce Course Order"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:176
#: frontend/src/pages/Programs/ProgramForm.vue:177
msgid "Enroll Member to Program"
msgstr ""
@@ -2460,15 +2478,15 @@ msgstr "Nombre del evaluador"
msgid "Evaluator Schedule"
msgstr "Horario del evaluador"
#: frontend/src/components/Settings/Evaluators.vue:163
#: frontend/src/components/Settings/Evaluators.vue:160
msgid "Evaluator added successfully"
msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:196
#: frontend/src/components/Settings/Evaluators.vue:193
msgid "Evaluator deleted successfully"
msgstr ""
#: lms/lms/api.py:1392
#: lms/lms/api.py:1416
msgid "Evaluator does not exist."
msgstr ""
@@ -2640,10 +2658,15 @@ msgstr "Campo de especialización/estudio"
msgid "File Type"
msgstr "Tipo de Archivo"
#: frontend/src/components/Settings/Transactions.vue:15
msgid "Filter by Billing Name"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:23
msgid "Filter by Exercise"
msgstr ""
#: frontend/src/components/Settings/Transactions.vue:20
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:28
msgid "Filter by Member"
msgstr ""
@@ -2677,7 +2700,7 @@ msgid "Free"
msgstr "Gratis"
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:179
#: frontend/src/pages/Jobs.vue:197
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Freelance"
msgstr "Freelance"
@@ -2719,7 +2742,7 @@ msgid "Full Name"
msgstr "Nombre completo"
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:176
#: frontend/src/pages/Jobs.vue:194
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Full Time"
msgstr "Tiempo completo"
@@ -2741,10 +2764,15 @@ msgid "GST Number"
msgstr "Número de GST"
#. Label of the gstin (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:76
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "GSTIN"
msgstr "GSTIN"
#: frontend/src/components/Settings/PaymentGateways.vue:134
msgid "Gateway"
msgstr ""
#. Label of the general_tab (Tab Break) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "General"
@@ -2871,7 +2899,7 @@ msgstr ""
#: frontend/src/pages/Home/Home.vue:11
msgid "Hey"
msgstr ""
msgstr "Hola"
#: lms/lms/notification/certificate_request_reminder/certificate_request_reminder.html:1
#: lms/templates/emails/certificate_request_notification.html:1
@@ -2923,6 +2951,11 @@ msgstr "Inicio"
msgid "Host"
msgstr "Anfitrión"
#. Option for the 'Work Mode' (Select) field in DocType 'Job Opportunity'
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Hybrid"
msgstr ""
#. Label of the current (Check) field in DocType 'Work Experience'
#: lms/lms/doctype/work_experience/work_experience.json
msgid "I am currently working here"
@@ -3197,7 +3230,7 @@ msgstr ""
msgid "Issue Date"
msgstr "Fecha de emisión"
#: frontend/src/components/AppSidebar.vue:609
#: frontend/src/components/AppSidebar.vue:614
msgid "Issue a Certificate"
msgstr ""
@@ -3273,7 +3306,7 @@ msgstr "Título del trabajo"
#. 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/Jobs.vue:185
#: frontend/src/pages/Jobs.vue:212
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Jobs"
msgstr "Trabajos"
@@ -3621,6 +3654,10 @@ msgstr ""
msgid "Learning Consistency"
msgstr ""
#: frontend/src/components/AppSidebar.vue:598
msgid "Learning Paths"
msgstr ""
#. Label of the left_at (Datetime) field in DocType 'LMS Live Class
#. Participant'
#: lms/lms/doctype/lms_live_class_participant/lms_live_class_participant.json
@@ -3753,6 +3790,7 @@ msgstr "URL LiveCode"
#: frontend/src/components/Modals/CourseProgressSummary.vue:86
#: frontend/src/components/Settings/Evaluators.vue:81
#: frontend/src/components/Settings/Members.vue:79
#: frontend/src/components/Settings/Transactions.vue:94
#: frontend/src/pages/Assignments.vue:66 frontend/src/pages/Batches.vue:82
#: frontend/src/pages/CertifiedParticipants.vue:98
#: frontend/src/pages/Courses.vue:77
@@ -3786,7 +3824,7 @@ msgstr "Preferencia de ubicación"
msgid "Login"
msgstr "Iniciar sesión"
#: frontend/src/components/UserDropdown.vue:174
#: frontend/src/components/UserDropdown.vue:176
msgid "Login to Frappe Cloud?"
msgstr "¿Iniciar sesión en Frappe Cloud?"
@@ -3940,6 +3978,7 @@ msgstr ""
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:26
#: frontend/src/components/Settings/BadgeAssignments.vue:179
#: frontend/src/components/Settings/BadgeForm.vue:215
#: frontend/src/components/Settings/TransactionDetails.vue:26
#: frontend/src/components/Settings/ZoomSettings.vue:187
#: frontend/src/pages/AssignmentSubmissionList.vue:14
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:268
@@ -4073,7 +4112,7 @@ msgstr "Tipo de miembro"
msgid "Member Username"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:462
#: frontend/src/pages/Programs/ProgramForm.vue:463
msgid "Member added to program successfully"
msgstr ""
@@ -4157,7 +4196,7 @@ msgstr ""
msgid "Meta Tags"
msgstr "Metaetiquetas"
#: lms/lms/api.py:1432
#: lms/lms/api.py:1456
msgid "Meta tags should be a list."
msgstr ""
@@ -4209,11 +4248,11 @@ msgstr ""
msgid "Modified By"
msgstr "Modificado por"
#: lms/lms/api.py:187
#: lms/lms/api.py:188
msgid "Module Name is incorrect or does not exist."
msgstr "El nombre del módulo es incorrecto o no existe."
#: lms/lms/api.py:183
#: lms/lms/api.py:184
msgid "Module is incorrect."
msgstr "Módulo incorrecto."
@@ -4224,7 +4263,7 @@ msgstr "Módulo incorrecto."
msgid "Monday"
msgstr "Lunes"
#: frontend/src/components/AppSidebar.vue:617
#: frontend/src/components/AppSidebar.vue:622
msgid "Monetization"
msgstr ""
@@ -4268,6 +4307,7 @@ msgstr "Nombre"
#: frontend/src/components/Settings/EmailTemplates.vue:17
#: frontend/src/components/Settings/Evaluators.vue:17
#: frontend/src/components/Settings/Members.vue:17
#: frontend/src/components/Settings/PaymentGateways.vue:16
#: frontend/src/components/Settings/ZoomSettings.vue:17
#: frontend/src/pages/Courses.vue:312
#: frontend/src/pages/Programs/Programs.vue:10
@@ -4295,6 +4335,10 @@ msgstr "Nuevo trabajo"
msgid "New Job Applicant"
msgstr "Nuevo solicitante de trabajo"
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7
msgid "New Payment Gateway"
msgstr ""
#: frontend/src/pages/QuizForm.vue:137
msgid "New Question"
msgstr "Nueva pregunta"
@@ -4399,7 +4443,7 @@ msgstr "No hay introducción"
msgid "No live classes scheduled"
msgstr "No hay clases en vivo programadas"
#: frontend/src/pages/Programs/ProgramForm.vue:166
#: frontend/src/pages/Programs/ProgramForm.vue:167
msgid "No members added yet."
msgstr ""
@@ -4469,7 +4513,6 @@ msgstr "No permitido"
#: frontend/src/components/Assignment.vue:36
#: frontend/src/components/Settings/BrandSettings.vue:10
#: frontend/src/components/Settings/PaymentSettings.vue:9
#: frontend/src/components/Settings/SettingDetails.vue:10
#: frontend/src/pages/Programs/ProgramForm.vue:16
#: frontend/src/pages/QuizForm.vue:8 frontend/src/pages/QuizSubmission.vue:9
@@ -4522,6 +4565,11 @@ msgstr "Oficina cerca de casa"
msgid "Offline"
msgstr "Desconectado"
#. Option for the 'Work Mode' (Select) field in DocType 'Job Opportunity'
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "On-site"
msgstr ""
#: lms/templates/emails/certification.html:16
msgid "Once again, congratulations on this significant accomplishment."
msgstr "Una vez más, felicidades por este importante logro."
@@ -4569,6 +4617,10 @@ msgstr "Curso abierto"
msgid "Open Ended"
msgstr "Apertura finalizada"
#: frontend/src/components/Settings/TransactionDetails.vue:88
msgid "Open the "
msgstr ""
#. Label of the option (Data) field in DocType 'LMS Option'
#: frontend/src/components/Modals/Question.vue:70
#: lms/lms/doctype/lms_option/lms_option.json
@@ -4605,6 +4657,7 @@ msgid "Orange"
msgstr "Naranja"
#. Label of the order_id (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:70
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Order ID"
msgstr "ID de pedido"
@@ -4642,6 +4695,7 @@ msgid "Owner"
msgstr "Propietario"
#. Label of the pan (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:77
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "PAN"
msgstr "PAN"
@@ -4687,7 +4741,7 @@ msgid "Pan Number"
msgstr "Número NIF"
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:177
#: frontend/src/pages/Jobs.vue:195
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Part Time"
msgstr "Tiempo parcial"
@@ -4747,21 +4801,38 @@ msgstr "País de pago"
#. Label of the payment_details_section (Section Break) field in DocType 'LMS
#. Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:42
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment Details"
msgstr "Detalles de pago"
#: frontend/src/components/Settings/TransactionDetails.vue:18
msgid "Payment For Certificate"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:51
msgid "Payment For Document"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:46
msgid "Payment For Document Type"
msgstr ""
#. Label of the payment_gateway (Data) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Payment Gateway"
msgstr "Pasarela de Pago"
#. Label of the payment_id (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:79
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment ID"
msgstr "ID del pago"
#. Label of the payment_received (Check) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:13
#: frontend/src/components/Settings/Transactions.vue:25
#: frontend/src/components/Settings/Transactions.vue:226
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment Received"
msgstr "Pago recibido"
@@ -4783,6 +4854,8 @@ msgid "Payment for "
msgstr ""
#. Label of the payment_for_certificate (Check) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/Transactions.vue:30
#: frontend/src/components/Settings/Transactions.vue:233
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment for Certificate"
msgstr ""
@@ -4923,7 +4996,7 @@ msgstr "Inicie sesión para acceder al cuestionario."
msgid "Please login to access this page."
msgstr "Por favor inicie sesión para acceder a esta página."
#: lms/lms/api.py:179
#: lms/lms/api.py:180
msgid "Please login to continue with payment."
msgstr "Por favor inicie sesión para continuar con el pago."
@@ -4940,7 +5013,7 @@ msgstr "Por favor, prepárese bien y llegue a tiempo a las evaluaciones."
msgid "Please run the code to execute the test cases."
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:420
#: frontend/src/pages/Programs/ProgramForm.vue:421
msgid "Please select a course"
msgstr ""
@@ -4956,7 +5029,7 @@ msgstr ""
msgid "Please select a future date and time."
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:447
#: frontend/src/pages/Programs/ProgramForm.vue:448
msgid "Please select a member"
msgstr ""
@@ -5146,7 +5219,7 @@ msgstr ""
msgid "Program Courses"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:205
#: frontend/src/pages/Programs/ProgramForm.vue:206
msgid "Program Member"
msgstr ""
@@ -5155,15 +5228,15 @@ msgstr ""
msgid "Program Members"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:380
#: frontend/src/pages/Programs/ProgramForm.vue:381
msgid "Program created successfully"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:551
#: frontend/src/pages/Programs/ProgramForm.vue:552
msgid "Program deleted successfully"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:399
#: frontend/src/pages/Programs/ProgramForm.vue:400
msgid "Program updated successfully"
msgstr ""
@@ -5229,7 +5302,7 @@ msgid "Progress Distribution"
msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:99
#: frontend/src/pages/Programs/ProgramForm.vue:124
#: frontend/src/pages/Programs/ProgramForm.vue:125
msgid "Progress Summary"
msgstr ""
@@ -5407,7 +5480,7 @@ msgstr "Cuestionario actualizado correctamente"
msgid "Quiz will appear at the bottom of the lesson."
msgstr "El cuestionario aparecerá al final de la lección."
#: frontend/src/components/AppSidebar.vue:601
#: frontend/src/components/AppSidebar.vue:606
#: frontend/src/pages/QuizForm.vue:396 frontend/src/pages/Quizzes.vue:275
#: frontend/src/pages/Quizzes.vue:285 lms/www/lms.py:249
msgid "Quizzes"
@@ -5497,6 +5570,11 @@ msgstr "Rechazado"
msgid "Related Courses"
msgstr "Cursos relacionados"
#. Option for the 'Work Mode' (Select) field in DocType 'Job Opportunity'
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Remote"
msgstr ""
#: frontend/src/components/Controls/Uploader.vue:34
#: frontend/src/pages/BatchForm.vue:246 frontend/src/pages/CourseForm.vue:119
msgid "Remove"
@@ -5587,7 +5665,7 @@ msgstr "Preferencia de rol"
msgid "Role updated successfully"
msgstr ""
#: frontend/src/components/AppSidebar.vue:629
#: frontend/src/components/AppSidebar.vue:634
msgid "Roles"
msgstr "Roles"
@@ -5671,11 +5749,13 @@ msgstr "Sábado"
#: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
#: frontend/src/components/Settings/BadgeForm.vue:78
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:38
#: frontend/src/components/Settings/TransactionDetails.vue:96
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17
#: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseForm.vue:101
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseModal.vue:9
#: frontend/src/pages/Programs/ProgramForm.vue:233
#: frontend/src/pages/Programs/ProgramForm.vue:234
#: frontend/src/pages/QuizForm.vue:43 frontend/src/pages/QuizSubmission.vue:14
#: frontend/src/pages/Quizzes.vue:105
msgid "Save"
@@ -5777,6 +5857,10 @@ msgstr ""
msgid "Select Date"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22
msgid "Select Payment Gateway"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseModal.vue:23
msgid "Select a Programming Exercise"
msgstr ""
@@ -5832,11 +5916,11 @@ msgstr "Establecer Contraseña"
msgid "Setting up"
msgstr "Puesta en marcha"
#: frontend/src/components/AppSidebar.vue:622
#: frontend/src/components/AppSidebar.vue:627
msgid "Setting up payment gateway"
msgstr ""
#: frontend/src/components/AppSidebar.vue:627
#: frontend/src/components/AppSidebar.vue:632
#: frontend/src/components/Settings/Settings.vue:7
#: frontend/src/pages/BatchForm.vue:53 frontend/src/pages/CourseForm.vue:142
#: frontend/src/pages/ProfileRoles.vue:4
@@ -5994,6 +6078,7 @@ msgstr "Solución"
#. Label of the source (Link) field in DocType 'LMS Payment'
#. Label of the source (Data) field in DocType 'LMS Source'
#. Label of the source (Data) field in DocType 'LMS Video Watch Duration'
#: frontend/src/components/Settings/TransactionDetails.vue:35
#: lms/lms/doctype/lms_batch_enrollment/lms_batch_enrollment.json
#: lms/lms/doctype/lms_payment/lms_payment.json
#: lms/lms/doctype/lms_source/lms_source.json
@@ -6106,7 +6191,7 @@ msgstr "Estadísticas"
#: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19
#: frontend/src/pages/JobForm.vue:46
#: frontend/src/pages/JobForm.vue:53
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:280
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/cohort/cohort.json
@@ -6243,7 +6328,7 @@ msgstr "Resumen"
msgid "Sunday"
msgstr "Domingo"
#: lms/lms/api.py:1057
#: lms/lms/api.py:1081
msgid "Suspicious pattern found in {0}: {1}"
msgstr ""
@@ -6706,6 +6791,10 @@ msgstr "Registros totales"
msgid "Training Feedback"
msgstr "Comentarios del entrenamiento"
#: frontend/src/components/Settings/TransactionDetails.vue:5
msgid "Transaction Details"
msgstr "Detalles de la Transacción"
#. Option for the 'Location Preference' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Travel"
@@ -6838,7 +6927,6 @@ msgid "Upcoming Live Classes"
msgstr ""
#: frontend/src/components/Settings/BrandSettings.vue:24
#: frontend/src/components/Settings/PaymentSettings.vue:27
#: frontend/src/components/Settings/SettingDetails.vue:23
msgid "Update"
msgstr "Actualizar"
@@ -7073,6 +7161,12 @@ msgstr "Experiencia laboral"
msgid "Work Experience Details"
msgstr "Detalles de la experiencia de trabajo"
#. Label of the work_mode (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:32 frontend/src/pages/Jobs.vue:73
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Work Mode"
msgstr ""
#: frontend/src/components/CourseReviews.vue:8
#: frontend/src/components/Modals/ReviewModal.vue:5
#: lms/templates/reviews.html:117
@@ -7103,11 +7197,11 @@ msgstr "Ya tiene una evaluación en {0} en {1} para el curso {2}."
msgid "You are already certified for this course. Click on the card below to open your certificate."
msgstr ""
#: lms/lms/api.py:199
#: lms/lms/api.py:200
msgid "You are already enrolled for this batch."
msgstr "Ya estás inscrito en este lote."
#: lms/lms/api.py:193
#: lms/lms/api.py:194
msgid "You are already enrolled for this course."
msgstr "Ya estás inscrito en este curso."
@@ -7181,7 +7275,7 @@ msgstr "Ya has solicitado este trabajo."
msgid "You have already exceeded the maximum number of attempts allowed for this quiz."
msgstr "Ya superaste el número máximo de intentos permitidos para esta prueba."
#: lms/lms/api.py:223
#: lms/lms/api.py:224
msgid "You have already purchased the certificate for this course."
msgstr ""
@@ -7352,11 +7446,11 @@ msgstr "y"
msgid "and then 'Add to Home Screen'"
msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:108
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114
msgid "applicant"
msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:108
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114
msgid "applicants"
msgstr ""
@@ -7405,11 +7499,11 @@ msgstr ""
#: frontend/src/pages/Home/Streak.vue:37 frontend/src/pages/Home/Streak.vue:45
msgid "days"
msgstr ""
msgstr "dias"
#: frontend/src/pages/Home/Home.vue:100 frontend/src/pages/Home/Home.vue:123
msgid "evaluation"
msgstr ""
msgstr "evaluación"
#: frontend/src/pages/Home/Home.vue:100 frontend/src/pages/Home/Home.vue:123
msgid "evaluations"
@@ -7509,7 +7603,7 @@ msgstr ""
msgid "{0} Quizzes"
msgstr ""
#: lms/lms/api.py:836 lms/lms/api.py:844
#: lms/lms/api.py:838 lms/lms/api.py:846
msgid "{0} Settings not found"
msgstr "Configuraciones {0} no encontradas"
@@ -7565,6 +7659,10 @@ msgstr "{0} te mencionó en un comentario en tu lote."
msgid "{0} mentioned you in a comment in {1}"
msgstr "{0} te mencionó en un comentario en {1}"
#: lms/lms/api.py:887
msgid "{0} not found"
msgstr "{0} no encontrado"
#: lms/lms/utils.py:450
msgid "{0}k"
msgstr "{0}k"
+164 -66
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2025-09-19 16:04+0000\n"
"PO-Revision-Date: 2025-09-24 07:16\n"
"POT-Creation-Date: 2025-09-26 16:04+0000\n"
"PO-Revision-Date: 2025-09-30 08:35\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Persian\n"
"MIME-Version: 1.0\n"
@@ -145,8 +145,8 @@ msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:93
#: frontend/src/components/Settings/Members.vue:91
#: frontend/src/pages/Programs/ProgramForm.vue:56
#: frontend/src/pages/Programs/ProgramForm.vue:130
#: frontend/src/pages/Programs/ProgramForm.vue:179
#: frontend/src/pages/Programs/ProgramForm.vue:131
#: frontend/src/pages/Programs/ProgramForm.vue:180
msgid "Add"
msgstr "افزودن"
@@ -156,7 +156,7 @@ msgstr "افزودن"
msgid "Add Chapter"
msgstr "افزودن فصل"
#: frontend/src/pages/Programs/ProgramForm.vue:175
#: frontend/src/pages/Programs/ProgramForm.vue:176
msgid "Add Course to Program"
msgstr ""
@@ -221,6 +221,10 @@ msgstr ""
msgid "Add a new question"
msgstr ""
#: frontend/src/components/AppSidebar.vue:600
msgid "Add a program"
msgstr "افزودن یک برنامه"
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseModal.vue:5
msgid "Add a programming exercise to your lesson"
msgstr ""
@@ -274,6 +278,7 @@ msgid "Add your first lesson"
msgstr ""
#. Label of the address (Link) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:56
#: frontend/src/pages/Billing.vue:64
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Address"
@@ -353,6 +358,8 @@ msgstr "کهربایی"
#. Label of the amount (Currency) field in DocType 'LMS Batch'
#. Label of the course_price (Currency) field in DocType 'LMS Course'
#. Label of the amount (Currency) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:68
#: frontend/src/components/Settings/Transactions.vue:219
#: frontend/src/pages/BatchForm.vue:278 frontend/src/pages/CourseForm.vue:262
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -460,7 +467,7 @@ msgstr ""
msgid "Are you sure you want to enroll?"
msgstr ""
#: frontend/src/components/UserDropdown.vue:175
#: frontend/src/components/UserDropdown.vue:177
msgid "Are you sure you want to login to your Frappe Cloud dashboard?"
msgstr ""
@@ -496,7 +503,7 @@ msgid "Assessment {0} has already been added to this batch."
msgstr "ارزیابی {0} قبلاً به این دسته اضافه شده است."
#. Label of the show_assessments (Check) field in DocType 'LMS Settings'
#: frontend/src/components/AppSidebar.vue:598
#: frontend/src/components/AppSidebar.vue:603
#: frontend/src/components/Assessments.vue:5
#: frontend/src/components/BatchStudents.vue:32
#: lms/lms/doctype/lms_settings/lms_settings.json
@@ -578,7 +585,7 @@ msgstr ""
msgid "Assignment will appear at the bottom of the lesson."
msgstr "تکلیف زیر درس نشان داده می‌شود."
#: frontend/src/components/AppSidebar.vue:602
#: frontend/src/components/AppSidebar.vue:607
#: frontend/src/components/Settings/Badges.vue:163
#: frontend/src/pages/Assignments.vue:208 lms/www/lms.py:271
msgid "Assignments"
@@ -702,6 +709,7 @@ msgstr ""
#: frontend/src/components/Modals/Event.vue:32
#: frontend/src/components/Settings/BadgeForm.vue:195
#: frontend/src/components/Settings/Badges.vue:200
#: frontend/src/components/Settings/TransactionDetails.vue:92
#: lms/lms/doctype/lms_batch_enrollment/lms_batch_enrollment.json
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
@@ -815,11 +823,11 @@ msgstr ""
msgid "Batch end date cannot be before the batch start date"
msgstr ""
#: lms/lms/api.py:210
#: lms/lms/api.py:211
msgid "Batch has already started."
msgstr ""
#: lms/lms/api.py:205
#: lms/lms/api.py:206
msgid "Batch is sold out."
msgstr ""
@@ -857,6 +865,8 @@ msgid "Billing Details"
msgstr "جزئیات صورتحساب"
#. Label of the billing_name (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:31
#: frontend/src/components/Settings/Transactions.vue:213
#: frontend/src/pages/Billing.vue:70
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Billing Name"
@@ -1002,7 +1012,7 @@ msgstr ""
#. Enrollment'
#. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace
#: frontend/src/components/AppSidebar.vue:606
#: frontend/src/components/AppSidebar.vue:611
#: frontend/src/components/Modals/Event.vue:381
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58
#: frontend/src/pages/CourseCertification.vue:10
@@ -1145,7 +1155,7 @@ msgstr "یک پاسخ را انتخاب کنید"
#. Label of the city (Data) field in DocType 'User'
#. Label of the location (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/Billing.vue:81 frontend/src/pages/JobForm.vue:34
#: frontend/src/pages/Billing.vue:81 frontend/src/pages/JobForm.vue:41
#: lms/fixtures/custom_field.json
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "City"
@@ -1276,7 +1286,7 @@ msgstr "رنگ"
#: frontend/src/pages/BatchForm.vue:306 frontend/src/pages/CourseForm.vue:300
msgid "Comma separated keywords for SEO"
msgstr ""
msgstr "کلمات کلیدی جدا شده با کاما برای سئو"
#. Label of the comments (Small Text) field in DocType 'Exercise Latest
#. Submission'
@@ -1315,25 +1325,25 @@ msgstr "شرکت"
#. Label of the section_break_6 (Section Break) field in DocType 'Job
#. Opportunity'
#: frontend/src/pages/JobForm.vue:56
#: frontend/src/pages/JobForm.vue:63
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Details"
msgstr "جزئیات شرکت"
#. Label of the company_email_address (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:75
#: frontend/src/pages/JobForm.vue:82
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Email Address"
msgstr ""
#. Label of the company_logo (Attach Image) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:80
#: frontend/src/pages/JobForm.vue:87
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Logo"
msgstr "آرم شرکت"
#. Label of the company_name (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:62
#: frontend/src/pages/JobForm.vue:69
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Name"
msgstr "نام شرکت"
@@ -1344,7 +1354,7 @@ msgid "Company Type"
msgstr ""
#. Label of the company_website (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:68
#: frontend/src/pages/JobForm.vue:75
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Website"
msgstr "وب سایت شرکت"
@@ -1414,7 +1424,7 @@ msgstr ""
msgid "Configurations"
msgstr "پیکربندی‌ها"
#: frontend/src/components/UserDropdown.vue:180
#: frontend/src/components/UserDropdown.vue:182
msgid "Confirm"
msgstr "تایید"
@@ -1461,7 +1471,7 @@ msgid "Continue Learning"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:178
#: frontend/src/pages/Jobs.vue:196
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Contract"
msgstr "قرارداد"
@@ -1491,7 +1501,7 @@ msgstr ""
#. Label of the country (Link) field in DocType 'User'
#. Label of the country (Link) field in DocType 'Job Opportunity'
#. Label of the country (Link) field in DocType 'Payment Country'
#: frontend/src/pages/Billing.vue:92 frontend/src/pages/JobForm.vue:40
#: frontend/src/pages/Billing.vue:92 frontend/src/pages/JobForm.vue:47
#: frontend/src/pages/Jobs.vue:57 lms/fixtures/custom_field.json
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/payment_country/payment_country.json
@@ -1533,7 +1543,8 @@ msgstr "کشور"
#: frontend/src/components/Modals/Event.vue:24
#: frontend/src/components/Settings/BadgeForm.vue:194
#: frontend/src/components/Settings/Badges.vue:199
#: frontend/src/pages/Programs/ProgramForm.vue:195
#: frontend/src/components/Settings/TransactionDetails.vue:91
#: frontend/src/pages/Programs/ProgramForm.vue:196
#: frontend/src/pages/Programs/Programs.vue:35
#: lms/lms/doctype/batch_course/batch_course.json
#: lms/lms/doctype/cohort/cohort.json
@@ -1684,7 +1695,7 @@ msgstr ""
msgid "Course Title"
msgstr "عنوان دوره"
#: frontend/src/pages/Programs/ProgramForm.vue:436
#: frontend/src/pages/Programs/ProgramForm.vue:437
msgid "Course added to program successfully"
msgstr ""
@@ -1836,6 +1847,7 @@ msgstr "ایجاد دوره"
#. Label of the currency (Link) field in DocType 'LMS Batch'
#. Label of the currency (Link) field in DocType 'LMS Course'
#. Label of the currency (Link) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:64
#: frontend/src/pages/BatchForm.vue:285 frontend/src/pages/CourseForm.vue:279
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -1852,7 +1864,7 @@ msgstr "درس فعلی"
msgid "Current Streak"
msgstr ""
#: frontend/src/components/AppSidebar.vue:612
#: frontend/src/components/AppSidebar.vue:617
msgid "Custom Certificate Templates"
msgstr ""
@@ -1954,7 +1966,7 @@ msgstr "نوع مدرک"
#: frontend/src/components/Settings/Badges.vue:171
#: frontend/src/pages/BatchForm.vue:565 frontend/src/pages/CourseForm.vue:597
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseForm.vue:67
#: frontend/src/pages/Programs/ProgramForm.vue:230
#: frontend/src/pages/Programs/ProgramForm.vue:231
msgid "Delete"
msgstr "حذف"
@@ -2004,7 +2016,7 @@ msgstr "حذف این درس آن را برای همیشه از دوره حذف
#. Label of the description (Small Text) field in DocType 'Work Experience'
#: frontend/src/components/Modals/LiveClassModal.vue:80
#: frontend/src/components/Settings/BadgeForm.vue:32
#: frontend/src/pages/JobForm.vue:125
#: frontend/src/pages/JobForm.vue:132
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/cohort/cohort.json
@@ -2045,6 +2057,7 @@ msgstr "غیرفعال کردن ثبت نام"
#. Label of the disabled (Check) field in DocType 'Job Opportunity'
#: frontend/src/components/Settings/Badges.vue:56
#: frontend/src/components/Settings/PaymentGateways.vue:55
#: frontend/src/components/Settings/ZoomSettings.vue:66
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Disabled"
@@ -2145,6 +2158,10 @@ msgstr "ویرایش فصل"
msgid "Edit Email Template"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8
msgid "Edit Payment Gateway"
msgstr "ویرایش درگاه پرداخت"
#: frontend/src/pages/Profile.vue:72
msgid "Edit Profile"
msgstr "ویرایش نمایه"
@@ -2250,6 +2267,7 @@ msgstr ""
#: frontend/src/components/Modals/ZoomAccountModal.vue:23
#: frontend/src/components/Settings/BadgeForm.vue:14
#: frontend/src/components/Settings/Badges.vue:53
#: frontend/src/components/Settings/PaymentGateways.vue:52
#: frontend/src/components/Settings/ZoomSettings.vue:63
#: lms/lms/doctype/lms_badge/lms_badge.json
#: lms/lms/doctype/lms_zoom_settings/lms_zoom_settings.json
@@ -2301,7 +2319,7 @@ msgstr ""
msgid "Enforce Course Order"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:176
#: frontend/src/pages/Programs/ProgramForm.vue:177
msgid "Enroll Member to Program"
msgstr ""
@@ -2460,15 +2478,15 @@ msgstr ""
msgid "Evaluator Schedule"
msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:163
#: frontend/src/components/Settings/Evaluators.vue:160
msgid "Evaluator added successfully"
msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:196
#: frontend/src/components/Settings/Evaluators.vue:193
msgid "Evaluator deleted successfully"
msgstr ""
#: lms/lms/api.py:1392
#: lms/lms/api.py:1416
msgid "Evaluator does not exist."
msgstr ""
@@ -2640,10 +2658,15 @@ msgstr ""
msgid "File Type"
msgstr "نوع فایل"
#: frontend/src/components/Settings/Transactions.vue:15
msgid "Filter by Billing Name"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:23
msgid "Filter by Exercise"
msgstr ""
#: frontend/src/components/Settings/Transactions.vue:20
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:28
msgid "Filter by Member"
msgstr ""
@@ -2677,7 +2700,7 @@ msgid "Free"
msgstr "آزاد"
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:179
#: frontend/src/pages/Jobs.vue:197
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Freelance"
msgstr ""
@@ -2719,7 +2742,7 @@ msgid "Full Name"
msgstr "نام و نام خانوادگی"
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:176
#: frontend/src/pages/Jobs.vue:194
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Full Time"
msgstr "تمام وقت"
@@ -2741,10 +2764,15 @@ msgid "GST Number"
msgstr ""
#. Label of the gstin (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:76
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "GSTIN"
msgstr ""
#: frontend/src/components/Settings/PaymentGateways.vue:134
msgid "Gateway"
msgstr "درگاه"
#. Label of the general_tab (Tab Break) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "General"
@@ -2923,6 +2951,11 @@ msgstr "صفحه اصلی"
msgid "Host"
msgstr "میزبان"
#. Option for the 'Work Mode' (Select) field in DocType 'Job Opportunity'
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Hybrid"
msgstr "ترکیبی"
#. Label of the current (Check) field in DocType 'Work Experience'
#: lms/lms/doctype/work_experience/work_experience.json
msgid "I am currently working here"
@@ -3197,7 +3230,7 @@ msgstr ""
msgid "Issue Date"
msgstr "تاریخ صدور"
#: frontend/src/components/AppSidebar.vue:609
#: frontend/src/components/AppSidebar.vue:614
msgid "Issue a Certificate"
msgstr ""
@@ -3273,7 +3306,7 @@ msgstr "عنوان شغلی"
#. 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/Jobs.vue:185
#: frontend/src/pages/Jobs.vue:212
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Jobs"
msgstr "شغل ها"
@@ -3621,6 +3654,10 @@ msgstr ""
msgid "Learning Consistency"
msgstr ""
#: frontend/src/components/AppSidebar.vue:598
msgid "Learning Paths"
msgstr "مسیرهای یادگیری"
#. Label of the left_at (Datetime) field in DocType 'LMS Live Class
#. Participant'
#: lms/lms/doctype/lms_live_class_participant/lms_live_class_participant.json
@@ -3753,6 +3790,7 @@ msgstr ""
#: frontend/src/components/Modals/CourseProgressSummary.vue:86
#: frontend/src/components/Settings/Evaluators.vue:81
#: frontend/src/components/Settings/Members.vue:79
#: frontend/src/components/Settings/Transactions.vue:94
#: frontend/src/pages/Assignments.vue:66 frontend/src/pages/Batches.vue:82
#: frontend/src/pages/CertifiedParticipants.vue:98
#: frontend/src/pages/Courses.vue:77
@@ -3786,7 +3824,7 @@ msgstr ""
msgid "Login"
msgstr "وارد شدن"
#: frontend/src/components/UserDropdown.vue:174
#: frontend/src/components/UserDropdown.vue:176
msgid "Login to Frappe Cloud?"
msgstr "ورود به Frappe Cloud?"
@@ -3940,6 +3978,7 @@ msgstr ""
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:26
#: frontend/src/components/Settings/BadgeAssignments.vue:179
#: frontend/src/components/Settings/BadgeForm.vue:215
#: frontend/src/components/Settings/TransactionDetails.vue:26
#: frontend/src/components/Settings/ZoomSettings.vue:187
#: frontend/src/pages/AssignmentSubmissionList.vue:14
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:268
@@ -4073,7 +4112,7 @@ msgstr "نوع عضو"
msgid "Member Username"
msgstr "نام کاربری عضو"
#: frontend/src/pages/Programs/ProgramForm.vue:462
#: frontend/src/pages/Programs/ProgramForm.vue:463
msgid "Member added to program successfully"
msgstr ""
@@ -4157,7 +4196,7 @@ msgstr ""
msgid "Meta Tags"
msgstr "تگ‌های متا"
#: lms/lms/api.py:1432
#: lms/lms/api.py:1456
msgid "Meta tags should be a list."
msgstr ""
@@ -4209,11 +4248,11 @@ msgstr ""
msgid "Modified By"
msgstr "تغییر داده شده توسط"
#: lms/lms/api.py:187
#: lms/lms/api.py:188
msgid "Module Name is incorrect or does not exist."
msgstr ""
#: lms/lms/api.py:183
#: lms/lms/api.py:184
msgid "Module is incorrect."
msgstr ""
@@ -4224,7 +4263,7 @@ msgstr ""
msgid "Monday"
msgstr "دوشنبه"
#: frontend/src/components/AppSidebar.vue:617
#: frontend/src/components/AppSidebar.vue:622
msgid "Monetization"
msgstr ""
@@ -4268,6 +4307,7 @@ msgstr "نام"
#: frontend/src/components/Settings/EmailTemplates.vue:17
#: frontend/src/components/Settings/Evaluators.vue:17
#: frontend/src/components/Settings/Members.vue:17
#: frontend/src/components/Settings/PaymentGateways.vue:16
#: frontend/src/components/Settings/ZoomSettings.vue:17
#: frontend/src/pages/Courses.vue:312
#: frontend/src/pages/Programs/Programs.vue:10
@@ -4295,6 +4335,10 @@ msgstr "شغل جدید"
msgid "New Job Applicant"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7
msgid "New Payment Gateway"
msgstr "درگاه پرداخت جدید"
#: frontend/src/pages/QuizForm.vue:137
msgid "New Question"
msgstr ""
@@ -4399,7 +4443,7 @@ msgstr ""
msgid "No live classes scheduled"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:166
#: frontend/src/pages/Programs/ProgramForm.vue:167
msgid "No members added yet."
msgstr ""
@@ -4469,7 +4513,6 @@ msgstr "غیر مجاز"
#: frontend/src/components/Assignment.vue:36
#: frontend/src/components/Settings/BrandSettings.vue:10
#: frontend/src/components/Settings/PaymentSettings.vue:9
#: frontend/src/components/Settings/SettingDetails.vue:10
#: frontend/src/pages/Programs/ProgramForm.vue:16
#: frontend/src/pages/QuizForm.vue:8 frontend/src/pages/QuizSubmission.vue:9
@@ -4522,6 +4565,11 @@ msgstr ""
msgid "Offline"
msgstr "آفلاین"
#. Option for the 'Work Mode' (Select) field in DocType 'Job Opportunity'
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "On-site"
msgstr "در محل"
#: lms/templates/emails/certification.html:16
msgid "Once again, congratulations on this significant accomplishment."
msgstr ""
@@ -4569,6 +4617,10 @@ msgstr ""
msgid "Open Ended"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:88
msgid "Open the "
msgstr ""
#. Label of the option (Data) field in DocType 'LMS Option'
#: frontend/src/components/Modals/Question.vue:70
#: lms/lms/doctype/lms_option/lms_option.json
@@ -4605,6 +4657,7 @@ msgid "Orange"
msgstr "نارنجی"
#. Label of the order_id (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:70
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Order ID"
msgstr ""
@@ -4642,6 +4695,7 @@ msgid "Owner"
msgstr "مالک"
#. Label of the pan (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:77
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "PAN"
msgstr ""
@@ -4687,7 +4741,7 @@ msgid "Pan Number"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:177
#: frontend/src/pages/Jobs.vue:195
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Part Time"
msgstr "پاره وقت"
@@ -4747,21 +4801,38 @@ msgstr ""
#. Label of the payment_details_section (Section Break) field in DocType 'LMS
#. Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:42
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment Details"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:18
msgid "Payment For Certificate"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:51
msgid "Payment For Document"
msgstr "پرداخت برای سند"
#: frontend/src/components/Settings/TransactionDetails.vue:46
msgid "Payment For Document Type"
msgstr ""
#. Label of the payment_gateway (Data) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Payment Gateway"
msgstr "درگاه پرداخت"
#. Label of the payment_id (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:79
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment ID"
msgstr "شناسه پرداخت"
#. Label of the payment_received (Check) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:13
#: frontend/src/components/Settings/Transactions.vue:25
#: frontend/src/components/Settings/Transactions.vue:226
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment Received"
msgstr "پرداخت دریافت شد"
@@ -4783,6 +4854,8 @@ msgid "Payment for "
msgstr "پرداخت برای "
#. Label of the payment_for_certificate (Check) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/Transactions.vue:30
#: frontend/src/components/Settings/Transactions.vue:233
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment for Certificate"
msgstr ""
@@ -4923,7 +4996,7 @@ msgstr ""
msgid "Please login to access this page."
msgstr ""
#: lms/lms/api.py:179
#: lms/lms/api.py:180
msgid "Please login to continue with payment."
msgstr ""
@@ -4940,7 +5013,7 @@ msgstr ""
msgid "Please run the code to execute the test cases."
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:420
#: frontend/src/pages/Programs/ProgramForm.vue:421
msgid "Please select a course"
msgstr ""
@@ -4956,7 +5029,7 @@ msgstr ""
msgid "Please select a future date and time."
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:447
#: frontend/src/pages/Programs/ProgramForm.vue:448
msgid "Please select a member"
msgstr ""
@@ -5146,7 +5219,7 @@ msgstr ""
msgid "Program Courses"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:205
#: frontend/src/pages/Programs/ProgramForm.vue:206
msgid "Program Member"
msgstr ""
@@ -5155,15 +5228,15 @@ msgstr ""
msgid "Program Members"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:380
#: frontend/src/pages/Programs/ProgramForm.vue:381
msgid "Program created successfully"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:551
#: frontend/src/pages/Programs/ProgramForm.vue:552
msgid "Program deleted successfully"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:399
#: frontend/src/pages/Programs/ProgramForm.vue:400
msgid "Program updated successfully"
msgstr ""
@@ -5229,7 +5302,7 @@ msgid "Progress Distribution"
msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:99
#: frontend/src/pages/Programs/ProgramForm.vue:124
#: frontend/src/pages/Programs/ProgramForm.vue:125
msgid "Progress Summary"
msgstr ""
@@ -5407,7 +5480,7 @@ msgstr ""
msgid "Quiz will appear at the bottom of the lesson."
msgstr "تکلیف زیر درس نشان داده می‌شود."
#: frontend/src/components/AppSidebar.vue:601
#: frontend/src/components/AppSidebar.vue:606
#: frontend/src/pages/QuizForm.vue:396 frontend/src/pages/Quizzes.vue:275
#: frontend/src/pages/Quizzes.vue:285 lms/www/lms.py:249
msgid "Quizzes"
@@ -5497,6 +5570,11 @@ msgstr "رد شده"
msgid "Related Courses"
msgstr ""
#. Option for the 'Work Mode' (Select) field in DocType 'Job Opportunity'
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Remote"
msgstr "از راه دور"
#: frontend/src/components/Controls/Uploader.vue:34
#: frontend/src/pages/BatchForm.vue:246 frontend/src/pages/CourseForm.vue:119
msgid "Remove"
@@ -5587,7 +5665,7 @@ msgstr ""
msgid "Role updated successfully"
msgstr "نقش با موفقیت به‌روزرسانی شد"
#: frontend/src/components/AppSidebar.vue:629
#: frontend/src/components/AppSidebar.vue:634
msgid "Roles"
msgstr "نقش ها"
@@ -5671,11 +5749,13 @@ msgstr "شنبه"
#: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
#: frontend/src/components/Settings/BadgeForm.vue:78
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:38
#: frontend/src/components/Settings/TransactionDetails.vue:96
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17
#: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseForm.vue:101
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseModal.vue:9
#: frontend/src/pages/Programs/ProgramForm.vue:233
#: frontend/src/pages/Programs/ProgramForm.vue:234
#: frontend/src/pages/QuizForm.vue:43 frontend/src/pages/QuizSubmission.vue:14
#: frontend/src/pages/Quizzes.vue:105
msgid "Save"
@@ -5777,6 +5857,10 @@ msgstr ""
msgid "Select Date"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22
msgid "Select Payment Gateway"
msgstr "انتخاب درگاه پرداخت"
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseModal.vue:23
msgid "Select a Programming Exercise"
msgstr ""
@@ -5832,11 +5916,11 @@ msgstr ""
msgid "Setting up"
msgstr ""
#: frontend/src/components/AppSidebar.vue:622
#: frontend/src/components/AppSidebar.vue:627
msgid "Setting up payment gateway"
msgstr "راه‌اندازی درگاه پرداخت"
#: frontend/src/components/AppSidebar.vue:627
#: frontend/src/components/AppSidebar.vue:632
#: frontend/src/components/Settings/Settings.vue:7
#: frontend/src/pages/BatchForm.vue:53 frontend/src/pages/CourseForm.vue:142
#: frontend/src/pages/ProfileRoles.vue:4
@@ -5994,6 +6078,7 @@ msgstr ""
#. Label of the source (Link) field in DocType 'LMS Payment'
#. Label of the source (Data) field in DocType 'LMS Source'
#. Label of the source (Data) field in DocType 'LMS Video Watch Duration'
#: frontend/src/components/Settings/TransactionDetails.vue:35
#: lms/lms/doctype/lms_batch_enrollment/lms_batch_enrollment.json
#: lms/lms/doctype/lms_payment/lms_payment.json
#: lms/lms/doctype/lms_source/lms_source.json
@@ -6106,7 +6191,7 @@ msgstr "آمار"
#: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19
#: frontend/src/pages/JobForm.vue:46
#: frontend/src/pages/JobForm.vue:53
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:280
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/cohort/cohort.json
@@ -6243,7 +6328,7 @@ msgstr "خلاصه"
msgid "Sunday"
msgstr "یک‌شنبه"
#: lms/lms/api.py:1057
#: lms/lms/api.py:1081
msgid "Suspicious pattern found in {0}: {1}"
msgstr ""
@@ -6706,6 +6791,10 @@ msgstr ""
msgid "Training Feedback"
msgstr "بازخورد آموزشی"
#: frontend/src/components/Settings/TransactionDetails.vue:5
msgid "Transaction Details"
msgstr "جزئیات تراکنش"
#. Option for the 'Location Preference' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Travel"
@@ -6838,7 +6927,6 @@ msgid "Upcoming Live Classes"
msgstr ""
#: frontend/src/components/Settings/BrandSettings.vue:24
#: frontend/src/components/Settings/PaymentSettings.vue:27
#: frontend/src/components/Settings/SettingDetails.vue:23
msgid "Update"
msgstr "به‌روزرسانی"
@@ -7073,6 +7161,12 @@ msgstr ""
msgid "Work Experience Details"
msgstr ""
#. Label of the work_mode (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:32 frontend/src/pages/Jobs.vue:73
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Work Mode"
msgstr ""
#: frontend/src/components/CourseReviews.vue:8
#: frontend/src/components/Modals/ReviewModal.vue:5
#: lms/templates/reviews.html:117
@@ -7103,11 +7197,11 @@ msgstr ""
msgid "You are already certified for this course. Click on the card below to open your certificate."
msgstr ""
#: lms/lms/api.py:199
#: lms/lms/api.py:200
msgid "You are already enrolled for this batch."
msgstr ""
#: lms/lms/api.py:193
#: lms/lms/api.py:194
msgid "You are already enrolled for this course."
msgstr ""
@@ -7181,7 +7275,7 @@ msgstr ""
msgid "You have already exceeded the maximum number of attempts allowed for this quiz."
msgstr ""
#: lms/lms/api.py:223
#: lms/lms/api.py:224
msgid "You have already purchased the certificate for this course."
msgstr ""
@@ -7191,7 +7285,7 @@ msgstr ""
#: frontend/src/pages/JobDetail.vue:57
msgid "You have applied"
msgstr ""
msgstr "شما درخواست داده‌اید"
#: frontend/src/components/BatchOverlay.vue:181
msgid "You have been enrolled in this batch"
@@ -7352,11 +7446,11 @@ msgstr "و"
msgid "and then 'Add to Home Screen'"
msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:108
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114
msgid "applicant"
msgstr "متقاضی"
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:108
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114
msgid "applicants"
msgstr "متقاضیان"
@@ -7509,7 +7603,7 @@ msgstr ""
msgid "{0} Quizzes"
msgstr ""
#: lms/lms/api.py:836 lms/lms/api.py:844
#: lms/lms/api.py:838 lms/lms/api.py:846
msgid "{0} Settings not found"
msgstr ""
@@ -7565,6 +7659,10 @@ msgstr ""
msgid "{0} mentioned you in a comment in {1}"
msgstr ""
#: lms/lms/api.py:887
msgid "{0} not found"
msgstr "{0} یافت نشد"
#: lms/lms/utils.py:450
msgid "{0}k"
msgstr ""
+165 -67
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2025-09-19 16:04+0000\n"
"PO-Revision-Date: 2025-09-24 07:15\n"
"POT-Creation-Date: 2025-09-26 16:04+0000\n"
"PO-Revision-Date: 2025-09-27 08:15\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: French\n"
"MIME-Version: 1.0\n"
@@ -145,8 +145,8 @@ msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:93
#: frontend/src/components/Settings/Members.vue:91
#: frontend/src/pages/Programs/ProgramForm.vue:56
#: frontend/src/pages/Programs/ProgramForm.vue:130
#: frontend/src/pages/Programs/ProgramForm.vue:179
#: frontend/src/pages/Programs/ProgramForm.vue:131
#: frontend/src/pages/Programs/ProgramForm.vue:180
msgid "Add"
msgstr "Ajouter"
@@ -156,7 +156,7 @@ msgstr "Ajouter"
msgid "Add Chapter"
msgstr "Ajouter un chapitre"
#: frontend/src/pages/Programs/ProgramForm.vue:175
#: frontend/src/pages/Programs/ProgramForm.vue:176
msgid "Add Course to Program"
msgstr ""
@@ -221,6 +221,10 @@ msgstr ""
msgid "Add a new question"
msgstr ""
#: frontend/src/components/AppSidebar.vue:600
msgid "Add a program"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseModal.vue:5
msgid "Add a programming exercise to your lesson"
msgstr ""
@@ -274,6 +278,7 @@ msgid "Add your first lesson"
msgstr ""
#. Label of the address (Link) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:56
#: frontend/src/pages/Billing.vue:64
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Address"
@@ -353,6 +358,8 @@ msgstr ""
#. Label of the amount (Currency) field in DocType 'LMS Batch'
#. Label of the course_price (Currency) field in DocType 'LMS Course'
#. Label of the amount (Currency) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:68
#: frontend/src/components/Settings/Transactions.vue:219
#: frontend/src/pages/BatchForm.vue:278 frontend/src/pages/CourseForm.vue:262
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -460,7 +467,7 @@ msgstr ""
msgid "Are you sure you want to enroll?"
msgstr ""
#: frontend/src/components/UserDropdown.vue:175
#: frontend/src/components/UserDropdown.vue:177
msgid "Are you sure you want to login to your Frappe Cloud dashboard?"
msgstr "Êtes-vous sûr de vouloir vous connecter à votre tableau de bord Frappe Cloud ?"
@@ -496,7 +503,7 @@ msgid "Assessment {0} has already been added to this batch."
msgstr "L'évaluation {0} a déjà été ajoutée à ce lot."
#. Label of the show_assessments (Check) field in DocType 'LMS Settings'
#: frontend/src/components/AppSidebar.vue:598
#: frontend/src/components/AppSidebar.vue:603
#: frontend/src/components/Assessments.vue:5
#: frontend/src/components/BatchStudents.vue:32
#: lms/lms/doctype/lms_settings/lms_settings.json
@@ -578,7 +585,7 @@ msgstr ""
msgid "Assignment will appear at the bottom of the lesson."
msgstr "Le devoir apparaîtra au bas de la leçon."
#: frontend/src/components/AppSidebar.vue:602
#: frontend/src/components/AppSidebar.vue:607
#: frontend/src/components/Settings/Badges.vue:163
#: frontend/src/pages/Assignments.vue:208 lms/www/lms.py:271
msgid "Assignments"
@@ -702,6 +709,7 @@ msgstr ""
#: frontend/src/components/Modals/Event.vue:32
#: frontend/src/components/Settings/BadgeForm.vue:195
#: frontend/src/components/Settings/Badges.vue:200
#: frontend/src/components/Settings/TransactionDetails.vue:92
#: lms/lms/doctype/lms_batch_enrollment/lms_batch_enrollment.json
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
@@ -790,7 +798,7 @@ msgstr "Paramètres de lot"
#: frontend/src/pages/BatchForm.vue:82
msgid "Batch Start Date"
msgstr ""
msgstr "Date de début du lot "
#: lms/templates/emails/batch_confirmation.html:11
msgid "Batch Start Date:"
@@ -815,11 +823,11 @@ msgstr ""
msgid "Batch end date cannot be before the batch start date"
msgstr ""
#: lms/lms/api.py:210
#: lms/lms/api.py:211
msgid "Batch has already started."
msgstr ""
#: lms/lms/api.py:205
#: lms/lms/api.py:206
msgid "Batch is sold out."
msgstr ""
@@ -857,6 +865,8 @@ msgid "Billing Details"
msgstr "Détails de la Facturation"
#. Label of the billing_name (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:31
#: frontend/src/components/Settings/Transactions.vue:213
#: frontend/src/pages/Billing.vue:70
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Billing Name"
@@ -1002,7 +1012,7 @@ msgstr ""
#. Enrollment'
#. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace
#: frontend/src/components/AppSidebar.vue:606
#: frontend/src/components/AppSidebar.vue:611
#: frontend/src/components/Modals/Event.vue:381
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58
#: frontend/src/pages/CourseCertification.vue:10
@@ -1145,7 +1155,7 @@ msgstr "Choisissez une réponse"
#. Label of the city (Data) field in DocType 'User'
#. Label of the location (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/Billing.vue:81 frontend/src/pages/JobForm.vue:34
#: frontend/src/pages/Billing.vue:81 frontend/src/pages/JobForm.vue:41
#: lms/fixtures/custom_field.json
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "City"
@@ -1315,25 +1325,25 @@ msgstr "Société"
#. Label of the section_break_6 (Section Break) field in DocType 'Job
#. Opportunity'
#: frontend/src/pages/JobForm.vue:56
#: frontend/src/pages/JobForm.vue:63
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Details"
msgstr "Détail de la société"
#. Label of the company_email_address (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:75
#: frontend/src/pages/JobForm.vue:82
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Email Address"
msgstr "Courriel de l'entreprise"
#. Label of the company_logo (Attach Image) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:80
#: frontend/src/pages/JobForm.vue:87
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Logo"
msgstr "Logo de la société"
#. Label of the company_name (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:62
#: frontend/src/pages/JobForm.vue:69
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Name"
msgstr "Nom de la Société"
@@ -1344,7 +1354,7 @@ msgid "Company Type"
msgstr ""
#. Label of the company_website (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:68
#: frontend/src/pages/JobForm.vue:75
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Website"
msgstr "Site Web de l'entreprise"
@@ -1414,7 +1424,7 @@ msgstr ""
msgid "Configurations"
msgstr ""
#: frontend/src/components/UserDropdown.vue:180
#: frontend/src/components/UserDropdown.vue:182
msgid "Confirm"
msgstr "Confirmer"
@@ -1461,7 +1471,7 @@ msgid "Continue Learning"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:178
#: frontend/src/pages/Jobs.vue:196
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Contract"
msgstr "Contrat"
@@ -1491,7 +1501,7 @@ msgstr ""
#. Label of the country (Link) field in DocType 'User'
#. Label of the country (Link) field in DocType 'Job Opportunity'
#. Label of the country (Link) field in DocType 'Payment Country'
#: frontend/src/pages/Billing.vue:92 frontend/src/pages/JobForm.vue:40
#: frontend/src/pages/Billing.vue:92 frontend/src/pages/JobForm.vue:47
#: frontend/src/pages/Jobs.vue:57 lms/fixtures/custom_field.json
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/payment_country/payment_country.json
@@ -1533,7 +1543,8 @@ msgstr "Pays"
#: frontend/src/components/Modals/Event.vue:24
#: frontend/src/components/Settings/BadgeForm.vue:194
#: frontend/src/components/Settings/Badges.vue:199
#: frontend/src/pages/Programs/ProgramForm.vue:195
#: frontend/src/components/Settings/TransactionDetails.vue:91
#: frontend/src/pages/Programs/ProgramForm.vue:196
#: frontend/src/pages/Programs/Programs.vue:35
#: lms/lms/doctype/batch_course/batch_course.json
#: lms/lms/doctype/cohort/cohort.json
@@ -1684,7 +1695,7 @@ msgstr "Statistiques du cours"
msgid "Course Title"
msgstr "Titre du cours"
#: frontend/src/pages/Programs/ProgramForm.vue:436
#: frontend/src/pages/Programs/ProgramForm.vue:437
msgid "Course added to program successfully"
msgstr ""
@@ -1836,6 +1847,7 @@ msgstr ""
#. Label of the currency (Link) field in DocType 'LMS Batch'
#. Label of the currency (Link) field in DocType 'LMS Course'
#. Label of the currency (Link) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:64
#: frontend/src/pages/BatchForm.vue:285 frontend/src/pages/CourseForm.vue:279
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -1852,7 +1864,7 @@ msgstr "Leçon actuelle"
msgid "Current Streak"
msgstr ""
#: frontend/src/components/AppSidebar.vue:612
#: frontend/src/components/AppSidebar.vue:617
msgid "Custom Certificate Templates"
msgstr ""
@@ -1954,7 +1966,7 @@ msgstr "Type de diplôme"
#: frontend/src/components/Settings/Badges.vue:171
#: frontend/src/pages/BatchForm.vue:565 frontend/src/pages/CourseForm.vue:597
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseForm.vue:67
#: frontend/src/pages/Programs/ProgramForm.vue:230
#: frontend/src/pages/Programs/ProgramForm.vue:231
msgid "Delete"
msgstr "Supprimer"
@@ -2004,7 +2016,7 @@ msgstr ""
#. Label of the description (Small Text) field in DocType 'Work Experience'
#: frontend/src/components/Modals/LiveClassModal.vue:80
#: frontend/src/components/Settings/BadgeForm.vue:32
#: frontend/src/pages/JobForm.vue:125
#: frontend/src/pages/JobForm.vue:132
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/cohort/cohort.json
@@ -2045,6 +2057,7 @@ msgstr ""
#. Label of the disabled (Check) field in DocType 'Job Opportunity'
#: frontend/src/components/Settings/Badges.vue:56
#: frontend/src/components/Settings/PaymentGateways.vue:55
#: frontend/src/components/Settings/ZoomSettings.vue:66
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Disabled"
@@ -2145,6 +2158,10 @@ msgstr ""
msgid "Edit Email Template"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8
msgid "Edit Payment Gateway"
msgstr ""
#: frontend/src/pages/Profile.vue:72
msgid "Edit Profile"
msgstr "Modifier le Profil"
@@ -2250,6 +2267,7 @@ msgstr ""
#: frontend/src/components/Modals/ZoomAccountModal.vue:23
#: frontend/src/components/Settings/BadgeForm.vue:14
#: frontend/src/components/Settings/Badges.vue:53
#: frontend/src/components/Settings/PaymentGateways.vue:52
#: frontend/src/components/Settings/ZoomSettings.vue:63
#: lms/lms/doctype/lms_badge/lms_badge.json
#: lms/lms/doctype/lms_zoom_settings/lms_zoom_settings.json
@@ -2301,7 +2319,7 @@ msgstr ""
msgid "Enforce Course Order"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:176
#: frontend/src/pages/Programs/ProgramForm.vue:177
msgid "Enroll Member to Program"
msgstr ""
@@ -2460,15 +2478,15 @@ msgstr ""
msgid "Evaluator Schedule"
msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:163
#: frontend/src/components/Settings/Evaluators.vue:160
msgid "Evaluator added successfully"
msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:196
#: frontend/src/components/Settings/Evaluators.vue:193
msgid "Evaluator deleted successfully"
msgstr ""
#: lms/lms/api.py:1392
#: lms/lms/api.py:1416
msgid "Evaluator does not exist."
msgstr ""
@@ -2640,10 +2658,15 @@ msgstr ""
msgid "File Type"
msgstr "Type de fichier"
#: frontend/src/components/Settings/Transactions.vue:15
msgid "Filter by Billing Name"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:23
msgid "Filter by Exercise"
msgstr ""
#: frontend/src/components/Settings/Transactions.vue:20
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:28
msgid "Filter by Member"
msgstr ""
@@ -2677,7 +2700,7 @@ msgid "Free"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:179
#: frontend/src/pages/Jobs.vue:197
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Freelance"
msgstr ""
@@ -2719,7 +2742,7 @@ msgid "Full Name"
msgstr "Nom Complet"
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:176
#: frontend/src/pages/Jobs.vue:194
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Full Time"
msgstr ""
@@ -2741,10 +2764,15 @@ msgid "GST Number"
msgstr ""
#. Label of the gstin (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:76
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "GSTIN"
msgstr ""
#: frontend/src/components/Settings/PaymentGateways.vue:134
msgid "Gateway"
msgstr ""
#. Label of the general_tab (Tab Break) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "General"
@@ -2923,6 +2951,11 @@ msgstr "Accueil"
msgid "Host"
msgstr ""
#. Option for the 'Work Mode' (Select) field in DocType 'Job Opportunity'
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Hybrid"
msgstr ""
#. Label of the current (Check) field in DocType 'Work Experience'
#: lms/lms/doctype/work_experience/work_experience.json
msgid "I am currently working here"
@@ -3197,7 +3230,7 @@ msgstr ""
msgid "Issue Date"
msgstr "Date d'Émission"
#: frontend/src/components/AppSidebar.vue:609
#: frontend/src/components/AppSidebar.vue:614
msgid "Issue a Certificate"
msgstr ""
@@ -3273,7 +3306,7 @@ msgstr "Titre de l'Emploi"
#. 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/Jobs.vue:185
#: frontend/src/pages/Jobs.vue:212
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Jobs"
msgstr "Emplois"
@@ -3621,6 +3654,10 @@ msgstr ""
msgid "Learning Consistency"
msgstr ""
#: frontend/src/components/AppSidebar.vue:598
msgid "Learning Paths"
msgstr ""
#. Label of the left_at (Datetime) field in DocType 'LMS Live Class
#. Participant'
#: lms/lms/doctype/lms_live_class_participant/lms_live_class_participant.json
@@ -3753,6 +3790,7 @@ msgstr ""
#: frontend/src/components/Modals/CourseProgressSummary.vue:86
#: frontend/src/components/Settings/Evaluators.vue:81
#: frontend/src/components/Settings/Members.vue:79
#: frontend/src/components/Settings/Transactions.vue:94
#: frontend/src/pages/Assignments.vue:66 frontend/src/pages/Batches.vue:82
#: frontend/src/pages/CertifiedParticipants.vue:98
#: frontend/src/pages/Courses.vue:77
@@ -3786,7 +3824,7 @@ msgstr ""
msgid "Login"
msgstr "Connexion"
#: frontend/src/components/UserDropdown.vue:174
#: frontend/src/components/UserDropdown.vue:176
msgid "Login to Frappe Cloud?"
msgstr "Se connecter à Frappe Cloud ?"
@@ -3940,6 +3978,7 @@ msgstr ""
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:26
#: frontend/src/components/Settings/BadgeAssignments.vue:179
#: frontend/src/components/Settings/BadgeForm.vue:215
#: frontend/src/components/Settings/TransactionDetails.vue:26
#: frontend/src/components/Settings/ZoomSettings.vue:187
#: frontend/src/pages/AssignmentSubmissionList.vue:14
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:268
@@ -4073,7 +4112,7 @@ msgstr ""
msgid "Member Username"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:462
#: frontend/src/pages/Programs/ProgramForm.vue:463
msgid "Member added to program successfully"
msgstr ""
@@ -4157,7 +4196,7 @@ msgstr ""
msgid "Meta Tags"
msgstr ""
#: lms/lms/api.py:1432
#: lms/lms/api.py:1456
msgid "Meta tags should be a list."
msgstr ""
@@ -4209,11 +4248,11 @@ msgstr ""
msgid "Modified By"
msgstr "Modifié Par"
#: lms/lms/api.py:187
#: lms/lms/api.py:188
msgid "Module Name is incorrect or does not exist."
msgstr ""
#: lms/lms/api.py:183
#: lms/lms/api.py:184
msgid "Module is incorrect."
msgstr ""
@@ -4224,7 +4263,7 @@ msgstr ""
msgid "Monday"
msgstr "Lundi"
#: frontend/src/components/AppSidebar.vue:617
#: frontend/src/components/AppSidebar.vue:622
msgid "Monetization"
msgstr ""
@@ -4268,6 +4307,7 @@ msgstr "Nom"
#: frontend/src/components/Settings/EmailTemplates.vue:17
#: frontend/src/components/Settings/Evaluators.vue:17
#: frontend/src/components/Settings/Members.vue:17
#: frontend/src/components/Settings/PaymentGateways.vue:16
#: frontend/src/components/Settings/ZoomSettings.vue:17
#: frontend/src/pages/Courses.vue:312
#: frontend/src/pages/Programs/Programs.vue:10
@@ -4295,6 +4335,10 @@ msgstr ""
msgid "New Job Applicant"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7
msgid "New Payment Gateway"
msgstr ""
#: frontend/src/pages/QuizForm.vue:137
msgid "New Question"
msgstr ""
@@ -4399,7 +4443,7 @@ msgstr ""
msgid "No live classes scheduled"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:166
#: frontend/src/pages/Programs/ProgramForm.vue:167
msgid "No members added yet."
msgstr ""
@@ -4469,7 +4513,6 @@ msgstr "Non Autorisé"
#: frontend/src/components/Assignment.vue:36
#: frontend/src/components/Settings/BrandSettings.vue:10
#: frontend/src/components/Settings/PaymentSettings.vue:9
#: frontend/src/components/Settings/SettingDetails.vue:10
#: frontend/src/pages/Programs/ProgramForm.vue:16
#: frontend/src/pages/QuizForm.vue:8 frontend/src/pages/QuizSubmission.vue:9
@@ -4522,6 +4565,11 @@ msgstr ""
msgid "Offline"
msgstr ""
#. Option for the 'Work Mode' (Select) field in DocType 'Job Opportunity'
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "On-site"
msgstr ""
#: lms/templates/emails/certification.html:16
msgid "Once again, congratulations on this significant accomplishment."
msgstr ""
@@ -4569,6 +4617,10 @@ msgstr ""
msgid "Open Ended"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:88
msgid "Open the "
msgstr ""
#. Label of the option (Data) field in DocType 'LMS Option'
#: frontend/src/components/Modals/Question.vue:70
#: lms/lms/doctype/lms_option/lms_option.json
@@ -4605,6 +4657,7 @@ msgid "Orange"
msgstr "Orange"
#. Label of the order_id (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:70
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Order ID"
msgstr ""
@@ -4642,6 +4695,7 @@ msgid "Owner"
msgstr "Responsable"
#. Label of the pan (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:77
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "PAN"
msgstr ""
@@ -4687,7 +4741,7 @@ msgid "Pan Number"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:177
#: frontend/src/pages/Jobs.vue:195
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Part Time"
msgstr ""
@@ -4747,21 +4801,38 @@ msgstr ""
#. Label of the payment_details_section (Section Break) field in DocType 'LMS
#. Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:42
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment Details"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:18
msgid "Payment For Certificate"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:51
msgid "Payment For Document"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:46
msgid "Payment For Document Type"
msgstr ""
#. Label of the payment_gateway (Data) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Payment Gateway"
msgstr "Passerelle de Paiement"
#. Label of the payment_id (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:79
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment ID"
msgstr ""
#. Label of the payment_received (Check) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:13
#: frontend/src/components/Settings/Transactions.vue:25
#: frontend/src/components/Settings/Transactions.vue:226
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment Received"
msgstr "Paiement reçu"
@@ -4783,6 +4854,8 @@ msgid "Payment for "
msgstr ""
#. Label of the payment_for_certificate (Check) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/Transactions.vue:30
#: frontend/src/components/Settings/Transactions.vue:233
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment for Certificate"
msgstr ""
@@ -4923,7 +4996,7 @@ msgstr ""
msgid "Please login to access this page."
msgstr ""
#: lms/lms/api.py:179
#: lms/lms/api.py:180
msgid "Please login to continue with payment."
msgstr ""
@@ -4940,7 +5013,7 @@ msgstr "Veuillez bien vous préparer et être à temps pour les évaluations."
msgid "Please run the code to execute the test cases."
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:420
#: frontend/src/pages/Programs/ProgramForm.vue:421
msgid "Please select a course"
msgstr ""
@@ -4956,7 +5029,7 @@ msgstr ""
msgid "Please select a future date and time."
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:447
#: frontend/src/pages/Programs/ProgramForm.vue:448
msgid "Please select a member"
msgstr ""
@@ -5146,7 +5219,7 @@ msgstr ""
msgid "Program Courses"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:205
#: frontend/src/pages/Programs/ProgramForm.vue:206
msgid "Program Member"
msgstr ""
@@ -5155,15 +5228,15 @@ msgstr ""
msgid "Program Members"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:380
#: frontend/src/pages/Programs/ProgramForm.vue:381
msgid "Program created successfully"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:551
#: frontend/src/pages/Programs/ProgramForm.vue:552
msgid "Program deleted successfully"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:399
#: frontend/src/pages/Programs/ProgramForm.vue:400
msgid "Program updated successfully"
msgstr ""
@@ -5229,7 +5302,7 @@ msgid "Progress Distribution"
msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:99
#: frontend/src/pages/Programs/ProgramForm.vue:124
#: frontend/src/pages/Programs/ProgramForm.vue:125
msgid "Progress Summary"
msgstr ""
@@ -5407,7 +5480,7 @@ msgstr ""
msgid "Quiz will appear at the bottom of the lesson."
msgstr ""
#: frontend/src/components/AppSidebar.vue:601
#: frontend/src/components/AppSidebar.vue:606
#: frontend/src/pages/QuizForm.vue:396 frontend/src/pages/Quizzes.vue:275
#: frontend/src/pages/Quizzes.vue:285 lms/www/lms.py:249
msgid "Quizzes"
@@ -5497,6 +5570,11 @@ msgstr "Rejeté"
msgid "Related Courses"
msgstr ""
#. Option for the 'Work Mode' (Select) field in DocType 'Job Opportunity'
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Remote"
msgstr ""
#: frontend/src/components/Controls/Uploader.vue:34
#: frontend/src/pages/BatchForm.vue:246 frontend/src/pages/CourseForm.vue:119
msgid "Remove"
@@ -5587,7 +5665,7 @@ msgstr ""
msgid "Role updated successfully"
msgstr ""
#: frontend/src/components/AppSidebar.vue:629
#: frontend/src/components/AppSidebar.vue:634
msgid "Roles"
msgstr "Rôles"
@@ -5671,11 +5749,13 @@ msgstr "Samedi"
#: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
#: frontend/src/components/Settings/BadgeForm.vue:78
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:38
#: frontend/src/components/Settings/TransactionDetails.vue:96
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17
#: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseForm.vue:101
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseModal.vue:9
#: frontend/src/pages/Programs/ProgramForm.vue:233
#: frontend/src/pages/Programs/ProgramForm.vue:234
#: frontend/src/pages/QuizForm.vue:43 frontend/src/pages/QuizSubmission.vue:14
#: frontend/src/pages/Quizzes.vue:105
msgid "Save"
@@ -5777,6 +5857,10 @@ msgstr ""
msgid "Select Date"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22
msgid "Select Payment Gateway"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseModal.vue:23
msgid "Select a Programming Exercise"
msgstr ""
@@ -5832,11 +5916,11 @@ msgstr ""
msgid "Setting up"
msgstr ""
#: frontend/src/components/AppSidebar.vue:622
#: frontend/src/components/AppSidebar.vue:627
msgid "Setting up payment gateway"
msgstr ""
#: frontend/src/components/AppSidebar.vue:627
#: frontend/src/components/AppSidebar.vue:632
#: frontend/src/components/Settings/Settings.vue:7
#: frontend/src/pages/BatchForm.vue:53 frontend/src/pages/CourseForm.vue:142
#: frontend/src/pages/ProfileRoles.vue:4
@@ -5994,6 +6078,7 @@ msgstr ""
#. Label of the source (Link) field in DocType 'LMS Payment'
#. Label of the source (Data) field in DocType 'LMS Source'
#. Label of the source (Data) field in DocType 'LMS Video Watch Duration'
#: frontend/src/components/Settings/TransactionDetails.vue:35
#: lms/lms/doctype/lms_batch_enrollment/lms_batch_enrollment.json
#: lms/lms/doctype/lms_payment/lms_payment.json
#: lms/lms/doctype/lms_source/lms_source.json
@@ -6106,7 +6191,7 @@ msgstr ""
#: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19
#: frontend/src/pages/JobForm.vue:46
#: frontend/src/pages/JobForm.vue:53
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:280
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/cohort/cohort.json
@@ -6243,7 +6328,7 @@ msgstr "Résumé"
msgid "Sunday"
msgstr "Dimanche"
#: lms/lms/api.py:1057
#: lms/lms/api.py:1081
msgid "Suspicious pattern found in {0}: {1}"
msgstr ""
@@ -6706,6 +6791,10 @@ msgstr ""
msgid "Training Feedback"
msgstr "Retour d'Expérience sur la Formation"
#: frontend/src/components/Settings/TransactionDetails.vue:5
msgid "Transaction Details"
msgstr "détails de la transaction"
#. Option for the 'Location Preference' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Travel"
@@ -6838,7 +6927,6 @@ msgid "Upcoming Live Classes"
msgstr ""
#: frontend/src/components/Settings/BrandSettings.vue:24
#: frontend/src/components/Settings/PaymentSettings.vue:27
#: frontend/src/components/Settings/SettingDetails.vue:23
msgid "Update"
msgstr "Mettre à Jour"
@@ -7073,6 +7161,12 @@ msgstr ""
msgid "Work Experience Details"
msgstr ""
#. Label of the work_mode (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:32 frontend/src/pages/Jobs.vue:73
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Work Mode"
msgstr ""
#: frontend/src/components/CourseReviews.vue:8
#: frontend/src/components/Modals/ReviewModal.vue:5
#: lms/templates/reviews.html:117
@@ -7103,11 +7197,11 @@ msgstr ""
msgid "You are already certified for this course. Click on the card below to open your certificate."
msgstr ""
#: lms/lms/api.py:199
#: lms/lms/api.py:200
msgid "You are already enrolled for this batch."
msgstr ""
#: lms/lms/api.py:193
#: lms/lms/api.py:194
msgid "You are already enrolled for this course."
msgstr ""
@@ -7181,7 +7275,7 @@ msgstr ""
msgid "You have already exceeded the maximum number of attempts allowed for this quiz."
msgstr ""
#: lms/lms/api.py:223
#: lms/lms/api.py:224
msgid "You have already purchased the certificate for this course."
msgstr ""
@@ -7352,11 +7446,11 @@ msgstr "et"
msgid "and then 'Add to Home Screen'"
msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:108
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114
msgid "applicant"
msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:108
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114
msgid "applicants"
msgstr ""
@@ -7405,11 +7499,11 @@ msgstr ""
#: frontend/src/pages/Home/Streak.vue:37 frontend/src/pages/Home/Streak.vue:45
msgid "days"
msgstr ""
msgstr "jours"
#: frontend/src/pages/Home/Home.vue:100 frontend/src/pages/Home/Home.vue:123
msgid "evaluation"
msgstr ""
msgstr "évaluation"
#: frontend/src/pages/Home/Home.vue:100 frontend/src/pages/Home/Home.vue:123
msgid "evaluations"
@@ -7509,7 +7603,7 @@ msgstr ""
msgid "{0} Quizzes"
msgstr ""
#: lms/lms/api.py:836 lms/lms/api.py:844
#: lms/lms/api.py:838 lms/lms/api.py:846
msgid "{0} Settings not found"
msgstr ""
@@ -7565,6 +7659,10 @@ msgstr ""
msgid "{0} mentioned you in a comment in {1}"
msgstr "{0} vous a mentionné dans un commentaire dans {1}"
#: lms/lms/api.py:887
msgid "{0} not found"
msgstr "{0} introuvable"
#: lms/lms/utils.py:450
msgid "{0}k"
msgstr ""
+196 -98
View File
File diff suppressed because it is too large Load Diff
+163 -65
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2025-09-19 16:04+0000\n"
"PO-Revision-Date: 2025-09-24 07:15\n"
"POT-Creation-Date: 2025-09-26 16:04+0000\n"
"PO-Revision-Date: 2025-09-27 08:15\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Hungarian\n"
"MIME-Version: 1.0\n"
@@ -145,8 +145,8 @@ msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:93
#: frontend/src/components/Settings/Members.vue:91
#: frontend/src/pages/Programs/ProgramForm.vue:56
#: frontend/src/pages/Programs/ProgramForm.vue:130
#: frontend/src/pages/Programs/ProgramForm.vue:179
#: frontend/src/pages/Programs/ProgramForm.vue:131
#: frontend/src/pages/Programs/ProgramForm.vue:180
msgid "Add"
msgstr ""
@@ -156,7 +156,7 @@ msgstr ""
msgid "Add Chapter"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:175
#: frontend/src/pages/Programs/ProgramForm.vue:176
msgid "Add Course to Program"
msgstr ""
@@ -221,6 +221,10 @@ msgstr ""
msgid "Add a new question"
msgstr ""
#: frontend/src/components/AppSidebar.vue:600
msgid "Add a program"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseModal.vue:5
msgid "Add a programming exercise to your lesson"
msgstr ""
@@ -274,6 +278,7 @@ msgid "Add your first lesson"
msgstr ""
#. Label of the address (Link) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:56
#: frontend/src/pages/Billing.vue:64
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Address"
@@ -353,6 +358,8 @@ msgstr ""
#. Label of the amount (Currency) field in DocType 'LMS Batch'
#. Label of the course_price (Currency) field in DocType 'LMS Course'
#. Label of the amount (Currency) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:68
#: frontend/src/components/Settings/Transactions.vue:219
#: frontend/src/pages/BatchForm.vue:278 frontend/src/pages/CourseForm.vue:262
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -460,7 +467,7 @@ msgstr ""
msgid "Are you sure you want to enroll?"
msgstr ""
#: frontend/src/components/UserDropdown.vue:175
#: frontend/src/components/UserDropdown.vue:177
msgid "Are you sure you want to login to your Frappe Cloud dashboard?"
msgstr ""
@@ -496,7 +503,7 @@ msgid "Assessment {0} has already been added to this batch."
msgstr ""
#. Label of the show_assessments (Check) field in DocType 'LMS Settings'
#: frontend/src/components/AppSidebar.vue:598
#: frontend/src/components/AppSidebar.vue:603
#: frontend/src/components/Assessments.vue:5
#: frontend/src/components/BatchStudents.vue:32
#: lms/lms/doctype/lms_settings/lms_settings.json
@@ -578,7 +585,7 @@ msgstr ""
msgid "Assignment will appear at the bottom of the lesson."
msgstr ""
#: frontend/src/components/AppSidebar.vue:602
#: frontend/src/components/AppSidebar.vue:607
#: frontend/src/components/Settings/Badges.vue:163
#: frontend/src/pages/Assignments.vue:208 lms/www/lms.py:271
msgid "Assignments"
@@ -702,6 +709,7 @@ msgstr ""
#: frontend/src/components/Modals/Event.vue:32
#: frontend/src/components/Settings/BadgeForm.vue:195
#: frontend/src/components/Settings/Badges.vue:200
#: frontend/src/components/Settings/TransactionDetails.vue:92
#: lms/lms/doctype/lms_batch_enrollment/lms_batch_enrollment.json
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
@@ -815,11 +823,11 @@ msgstr ""
msgid "Batch end date cannot be before the batch start date"
msgstr ""
#: lms/lms/api.py:210
#: lms/lms/api.py:211
msgid "Batch has already started."
msgstr ""
#: lms/lms/api.py:205
#: lms/lms/api.py:206
msgid "Batch is sold out."
msgstr ""
@@ -857,6 +865,8 @@ msgid "Billing Details"
msgstr ""
#. Label of the billing_name (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:31
#: frontend/src/components/Settings/Transactions.vue:213
#: frontend/src/pages/Billing.vue:70
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Billing Name"
@@ -1002,7 +1012,7 @@ msgstr ""
#. Enrollment'
#. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace
#: frontend/src/components/AppSidebar.vue:606
#: frontend/src/components/AppSidebar.vue:611
#: frontend/src/components/Modals/Event.vue:381
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58
#: frontend/src/pages/CourseCertification.vue:10
@@ -1145,7 +1155,7 @@ msgstr ""
#. Label of the city (Data) field in DocType 'User'
#. Label of the location (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/Billing.vue:81 frontend/src/pages/JobForm.vue:34
#: frontend/src/pages/Billing.vue:81 frontend/src/pages/JobForm.vue:41
#: lms/fixtures/custom_field.json
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "City"
@@ -1315,25 +1325,25 @@ msgstr ""
#. Label of the section_break_6 (Section Break) field in DocType 'Job
#. Opportunity'
#: frontend/src/pages/JobForm.vue:56
#: frontend/src/pages/JobForm.vue:63
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Details"
msgstr "Cégadatok"
#. Label of the company_email_address (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:75
#: frontend/src/pages/JobForm.vue:82
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Email Address"
msgstr "Cég e-mail címe"
#. Label of the company_logo (Attach Image) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:80
#: frontend/src/pages/JobForm.vue:87
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Logo"
msgstr ""
#. Label of the company_name (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:62
#: frontend/src/pages/JobForm.vue:69
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Name"
msgstr ""
@@ -1344,7 +1354,7 @@ msgid "Company Type"
msgstr ""
#. Label of the company_website (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:68
#: frontend/src/pages/JobForm.vue:75
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Website"
msgstr "Cég honlapja"
@@ -1414,7 +1424,7 @@ msgstr ""
msgid "Configurations"
msgstr ""
#: frontend/src/components/UserDropdown.vue:180
#: frontend/src/components/UserDropdown.vue:182
msgid "Confirm"
msgstr "Megerősítés"
@@ -1461,7 +1471,7 @@ msgid "Continue Learning"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:178
#: frontend/src/pages/Jobs.vue:196
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Contract"
msgstr ""
@@ -1491,7 +1501,7 @@ msgstr ""
#. Label of the country (Link) field in DocType 'User'
#. Label of the country (Link) field in DocType 'Job Opportunity'
#. Label of the country (Link) field in DocType 'Payment Country'
#: frontend/src/pages/Billing.vue:92 frontend/src/pages/JobForm.vue:40
#: frontend/src/pages/Billing.vue:92 frontend/src/pages/JobForm.vue:47
#: frontend/src/pages/Jobs.vue:57 lms/fixtures/custom_field.json
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/payment_country/payment_country.json
@@ -1533,7 +1543,8 @@ msgstr ""
#: frontend/src/components/Modals/Event.vue:24
#: frontend/src/components/Settings/BadgeForm.vue:194
#: frontend/src/components/Settings/Badges.vue:199
#: frontend/src/pages/Programs/ProgramForm.vue:195
#: frontend/src/components/Settings/TransactionDetails.vue:91
#: frontend/src/pages/Programs/ProgramForm.vue:196
#: frontend/src/pages/Programs/Programs.vue:35
#: lms/lms/doctype/batch_course/batch_course.json
#: lms/lms/doctype/cohort/cohort.json
@@ -1684,7 +1695,7 @@ msgstr ""
msgid "Course Title"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:436
#: frontend/src/pages/Programs/ProgramForm.vue:437
msgid "Course added to program successfully"
msgstr ""
@@ -1836,6 +1847,7 @@ msgstr ""
#. Label of the currency (Link) field in DocType 'LMS Batch'
#. Label of the currency (Link) field in DocType 'LMS Course'
#. Label of the currency (Link) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:64
#: frontend/src/pages/BatchForm.vue:285 frontend/src/pages/CourseForm.vue:279
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -1852,7 +1864,7 @@ msgstr ""
msgid "Current Streak"
msgstr ""
#: frontend/src/components/AppSidebar.vue:612
#: frontend/src/components/AppSidebar.vue:617
msgid "Custom Certificate Templates"
msgstr ""
@@ -1954,7 +1966,7 @@ msgstr ""
#: frontend/src/components/Settings/Badges.vue:171
#: frontend/src/pages/BatchForm.vue:565 frontend/src/pages/CourseForm.vue:597
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseForm.vue:67
#: frontend/src/pages/Programs/ProgramForm.vue:230
#: frontend/src/pages/Programs/ProgramForm.vue:231
msgid "Delete"
msgstr ""
@@ -2004,7 +2016,7 @@ msgstr ""
#. Label of the description (Small Text) field in DocType 'Work Experience'
#: frontend/src/components/Modals/LiveClassModal.vue:80
#: frontend/src/components/Settings/BadgeForm.vue:32
#: frontend/src/pages/JobForm.vue:125
#: frontend/src/pages/JobForm.vue:132
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/cohort/cohort.json
@@ -2045,6 +2057,7 @@ msgstr ""
#. Label of the disabled (Check) field in DocType 'Job Opportunity'
#: frontend/src/components/Settings/Badges.vue:56
#: frontend/src/components/Settings/PaymentGateways.vue:55
#: frontend/src/components/Settings/ZoomSettings.vue:66
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Disabled"
@@ -2145,6 +2158,10 @@ msgstr ""
msgid "Edit Email Template"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8
msgid "Edit Payment Gateway"
msgstr ""
#: frontend/src/pages/Profile.vue:72
msgid "Edit Profile"
msgstr "Profil szerkesztése"
@@ -2250,6 +2267,7 @@ msgstr ""
#: frontend/src/components/Modals/ZoomAccountModal.vue:23
#: frontend/src/components/Settings/BadgeForm.vue:14
#: frontend/src/components/Settings/Badges.vue:53
#: frontend/src/components/Settings/PaymentGateways.vue:52
#: frontend/src/components/Settings/ZoomSettings.vue:63
#: lms/lms/doctype/lms_badge/lms_badge.json
#: lms/lms/doctype/lms_zoom_settings/lms_zoom_settings.json
@@ -2301,7 +2319,7 @@ msgstr ""
msgid "Enforce Course Order"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:176
#: frontend/src/pages/Programs/ProgramForm.vue:177
msgid "Enroll Member to Program"
msgstr ""
@@ -2460,15 +2478,15 @@ msgstr ""
msgid "Evaluator Schedule"
msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:163
#: frontend/src/components/Settings/Evaluators.vue:160
msgid "Evaluator added successfully"
msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:196
#: frontend/src/components/Settings/Evaluators.vue:193
msgid "Evaluator deleted successfully"
msgstr ""
#: lms/lms/api.py:1392
#: lms/lms/api.py:1416
msgid "Evaluator does not exist."
msgstr ""
@@ -2640,10 +2658,15 @@ msgstr ""
msgid "File Type"
msgstr "Fájl típusa"
#: frontend/src/components/Settings/Transactions.vue:15
msgid "Filter by Billing Name"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:23
msgid "Filter by Exercise"
msgstr ""
#: frontend/src/components/Settings/Transactions.vue:20
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:28
msgid "Filter by Member"
msgstr ""
@@ -2677,7 +2700,7 @@ msgid "Free"
msgstr "Szabadkézi"
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:179
#: frontend/src/pages/Jobs.vue:197
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Freelance"
msgstr "Szabadúszó"
@@ -2719,7 +2742,7 @@ msgid "Full Name"
msgstr "Teljes név"
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:176
#: frontend/src/pages/Jobs.vue:194
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Full Time"
msgstr "Teljes munkaidőben"
@@ -2741,10 +2764,15 @@ msgid "GST Number"
msgstr ""
#. Label of the gstin (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:76
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "GSTIN"
msgstr ""
#: frontend/src/components/Settings/PaymentGateways.vue:134
msgid "Gateway"
msgstr ""
#. Label of the general_tab (Tab Break) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "General"
@@ -2923,6 +2951,11 @@ msgstr ""
msgid "Host"
msgstr ""
#. Option for the 'Work Mode' (Select) field in DocType 'Job Opportunity'
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Hybrid"
msgstr ""
#. Label of the current (Check) field in DocType 'Work Experience'
#: lms/lms/doctype/work_experience/work_experience.json
msgid "I am currently working here"
@@ -3197,7 +3230,7 @@ msgstr ""
msgid "Issue Date"
msgstr ""
#: frontend/src/components/AppSidebar.vue:609
#: frontend/src/components/AppSidebar.vue:614
msgid "Issue a Certificate"
msgstr ""
@@ -3273,7 +3306,7 @@ msgstr "Beosztás"
#. 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/Jobs.vue:185
#: frontend/src/pages/Jobs.vue:212
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Jobs"
msgstr ""
@@ -3621,6 +3654,10 @@ msgstr ""
msgid "Learning Consistency"
msgstr ""
#: frontend/src/components/AppSidebar.vue:598
msgid "Learning Paths"
msgstr ""
#. Label of the left_at (Datetime) field in DocType 'LMS Live Class
#. Participant'
#: lms/lms/doctype/lms_live_class_participant/lms_live_class_participant.json
@@ -3753,6 +3790,7 @@ msgstr ""
#: frontend/src/components/Modals/CourseProgressSummary.vue:86
#: frontend/src/components/Settings/Evaluators.vue:81
#: frontend/src/components/Settings/Members.vue:79
#: frontend/src/components/Settings/Transactions.vue:94
#: frontend/src/pages/Assignments.vue:66 frontend/src/pages/Batches.vue:82
#: frontend/src/pages/CertifiedParticipants.vue:98
#: frontend/src/pages/Courses.vue:77
@@ -3786,7 +3824,7 @@ msgstr ""
msgid "Login"
msgstr "Bejelentkezés"
#: frontend/src/components/UserDropdown.vue:174
#: frontend/src/components/UserDropdown.vue:176
msgid "Login to Frappe Cloud?"
msgstr "Bejelentkezés a Frappe Cloudba?"
@@ -3940,6 +3978,7 @@ msgstr ""
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:26
#: frontend/src/components/Settings/BadgeAssignments.vue:179
#: frontend/src/components/Settings/BadgeForm.vue:215
#: frontend/src/components/Settings/TransactionDetails.vue:26
#: frontend/src/components/Settings/ZoomSettings.vue:187
#: frontend/src/pages/AssignmentSubmissionList.vue:14
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:268
@@ -4073,7 +4112,7 @@ msgstr ""
msgid "Member Username"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:462
#: frontend/src/pages/Programs/ProgramForm.vue:463
msgid "Member added to program successfully"
msgstr ""
@@ -4157,7 +4196,7 @@ msgstr ""
msgid "Meta Tags"
msgstr ""
#: lms/lms/api.py:1432
#: lms/lms/api.py:1456
msgid "Meta tags should be a list."
msgstr ""
@@ -4209,11 +4248,11 @@ msgstr ""
msgid "Modified By"
msgstr "Módosította"
#: lms/lms/api.py:187
#: lms/lms/api.py:188
msgid "Module Name is incorrect or does not exist."
msgstr ""
#: lms/lms/api.py:183
#: lms/lms/api.py:184
msgid "Module is incorrect."
msgstr ""
@@ -4224,7 +4263,7 @@ msgstr ""
msgid "Monday"
msgstr "Hétfő"
#: frontend/src/components/AppSidebar.vue:617
#: frontend/src/components/AppSidebar.vue:622
msgid "Monetization"
msgstr ""
@@ -4268,6 +4307,7 @@ msgstr ""
#: frontend/src/components/Settings/EmailTemplates.vue:17
#: frontend/src/components/Settings/Evaluators.vue:17
#: frontend/src/components/Settings/Members.vue:17
#: frontend/src/components/Settings/PaymentGateways.vue:16
#: frontend/src/components/Settings/ZoomSettings.vue:17
#: frontend/src/pages/Courses.vue:312
#: frontend/src/pages/Programs/Programs.vue:10
@@ -4295,6 +4335,10 @@ msgstr ""
msgid "New Job Applicant"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7
msgid "New Payment Gateway"
msgstr ""
#: frontend/src/pages/QuizForm.vue:137
msgid "New Question"
msgstr ""
@@ -4399,7 +4443,7 @@ msgstr ""
msgid "No live classes scheduled"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:166
#: frontend/src/pages/Programs/ProgramForm.vue:167
msgid "No members added yet."
msgstr ""
@@ -4469,7 +4513,6 @@ msgstr ""
#: frontend/src/components/Assignment.vue:36
#: frontend/src/components/Settings/BrandSettings.vue:10
#: frontend/src/components/Settings/PaymentSettings.vue:9
#: frontend/src/components/Settings/SettingDetails.vue:10
#: frontend/src/pages/Programs/ProgramForm.vue:16
#: frontend/src/pages/QuizForm.vue:8 frontend/src/pages/QuizSubmission.vue:9
@@ -4522,6 +4565,11 @@ msgstr ""
msgid "Offline"
msgstr ""
#. Option for the 'Work Mode' (Select) field in DocType 'Job Opportunity'
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "On-site"
msgstr ""
#: lms/templates/emails/certification.html:16
msgid "Once again, congratulations on this significant accomplishment."
msgstr ""
@@ -4569,6 +4617,10 @@ msgstr ""
msgid "Open Ended"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:88
msgid "Open the "
msgstr ""
#. Label of the option (Data) field in DocType 'LMS Option'
#: frontend/src/components/Modals/Question.vue:70
#: lms/lms/doctype/lms_option/lms_option.json
@@ -4605,6 +4657,7 @@ msgid "Orange"
msgstr "narancssárga"
#. Label of the order_id (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:70
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Order ID"
msgstr ""
@@ -4642,6 +4695,7 @@ msgid "Owner"
msgstr ""
#. Label of the pan (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:77
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "PAN"
msgstr ""
@@ -4687,7 +4741,7 @@ msgid "Pan Number"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:177
#: frontend/src/pages/Jobs.vue:195
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Part Time"
msgstr "Részmunkaidő"
@@ -4747,21 +4801,38 @@ msgstr ""
#. Label of the payment_details_section (Section Break) field in DocType 'LMS
#. Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:42
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment Details"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:18
msgid "Payment For Certificate"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:51
msgid "Payment For Document"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:46
msgid "Payment For Document Type"
msgstr ""
#. Label of the payment_gateway (Data) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Payment Gateway"
msgstr ""
#. Label of the payment_id (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:79
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment ID"
msgstr ""
#. Label of the payment_received (Check) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:13
#: frontend/src/components/Settings/Transactions.vue:25
#: frontend/src/components/Settings/Transactions.vue:226
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment Received"
msgstr ""
@@ -4783,6 +4854,8 @@ msgid "Payment for "
msgstr ""
#. Label of the payment_for_certificate (Check) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/Transactions.vue:30
#: frontend/src/components/Settings/Transactions.vue:233
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment for Certificate"
msgstr ""
@@ -4923,7 +4996,7 @@ msgstr ""
msgid "Please login to access this page."
msgstr ""
#: lms/lms/api.py:179
#: lms/lms/api.py:180
msgid "Please login to continue with payment."
msgstr ""
@@ -4940,7 +5013,7 @@ msgstr ""
msgid "Please run the code to execute the test cases."
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:420
#: frontend/src/pages/Programs/ProgramForm.vue:421
msgid "Please select a course"
msgstr ""
@@ -4956,7 +5029,7 @@ msgstr ""
msgid "Please select a future date and time."
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:447
#: frontend/src/pages/Programs/ProgramForm.vue:448
msgid "Please select a member"
msgstr ""
@@ -5146,7 +5219,7 @@ msgstr ""
msgid "Program Courses"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:205
#: frontend/src/pages/Programs/ProgramForm.vue:206
msgid "Program Member"
msgstr ""
@@ -5155,15 +5228,15 @@ msgstr ""
msgid "Program Members"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:380
#: frontend/src/pages/Programs/ProgramForm.vue:381
msgid "Program created successfully"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:551
#: frontend/src/pages/Programs/ProgramForm.vue:552
msgid "Program deleted successfully"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:399
#: frontend/src/pages/Programs/ProgramForm.vue:400
msgid "Program updated successfully"
msgstr ""
@@ -5229,7 +5302,7 @@ msgid "Progress Distribution"
msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:99
#: frontend/src/pages/Programs/ProgramForm.vue:124
#: frontend/src/pages/Programs/ProgramForm.vue:125
msgid "Progress Summary"
msgstr ""
@@ -5407,7 +5480,7 @@ msgstr ""
msgid "Quiz will appear at the bottom of the lesson."
msgstr ""
#: frontend/src/components/AppSidebar.vue:601
#: frontend/src/components/AppSidebar.vue:606
#: frontend/src/pages/QuizForm.vue:396 frontend/src/pages/Quizzes.vue:275
#: frontend/src/pages/Quizzes.vue:285 lms/www/lms.py:249
msgid "Quizzes"
@@ -5497,6 +5570,11 @@ msgstr "Elutasítva"
msgid "Related Courses"
msgstr ""
#. Option for the 'Work Mode' (Select) field in DocType 'Job Opportunity'
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Remote"
msgstr ""
#: frontend/src/components/Controls/Uploader.vue:34
#: frontend/src/pages/BatchForm.vue:246 frontend/src/pages/CourseForm.vue:119
msgid "Remove"
@@ -5587,7 +5665,7 @@ msgstr ""
msgid "Role updated successfully"
msgstr ""
#: frontend/src/components/AppSidebar.vue:629
#: frontend/src/components/AppSidebar.vue:634
msgid "Roles"
msgstr "Beosztások"
@@ -5671,11 +5749,13 @@ msgstr "Szombat"
#: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
#: frontend/src/components/Settings/BadgeForm.vue:78
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:38
#: frontend/src/components/Settings/TransactionDetails.vue:96
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17
#: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseForm.vue:101
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseModal.vue:9
#: frontend/src/pages/Programs/ProgramForm.vue:233
#: frontend/src/pages/Programs/ProgramForm.vue:234
#: frontend/src/pages/QuizForm.vue:43 frontend/src/pages/QuizSubmission.vue:14
#: frontend/src/pages/Quizzes.vue:105
msgid "Save"
@@ -5777,6 +5857,10 @@ msgstr ""
msgid "Select Date"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22
msgid "Select Payment Gateway"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseModal.vue:23
msgid "Select a Programming Exercise"
msgstr ""
@@ -5832,11 +5916,11 @@ msgstr ""
msgid "Setting up"
msgstr ""
#: frontend/src/components/AppSidebar.vue:622
#: frontend/src/components/AppSidebar.vue:627
msgid "Setting up payment gateway"
msgstr ""
#: frontend/src/components/AppSidebar.vue:627
#: frontend/src/components/AppSidebar.vue:632
#: frontend/src/components/Settings/Settings.vue:7
#: frontend/src/pages/BatchForm.vue:53 frontend/src/pages/CourseForm.vue:142
#: frontend/src/pages/ProfileRoles.vue:4
@@ -5994,6 +6078,7 @@ msgstr ""
#. Label of the source (Link) field in DocType 'LMS Payment'
#. Label of the source (Data) field in DocType 'LMS Source'
#. Label of the source (Data) field in DocType 'LMS Video Watch Duration'
#: frontend/src/components/Settings/TransactionDetails.vue:35
#: lms/lms/doctype/lms_batch_enrollment/lms_batch_enrollment.json
#: lms/lms/doctype/lms_payment/lms_payment.json
#: lms/lms/doctype/lms_source/lms_source.json
@@ -6106,7 +6191,7 @@ msgstr "Statisztikák"
#: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19
#: frontend/src/pages/JobForm.vue:46
#: frontend/src/pages/JobForm.vue:53
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:280
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/cohort/cohort.json
@@ -6243,7 +6328,7 @@ msgstr "Összefoglalás"
msgid "Sunday"
msgstr "Vasárnap"
#: lms/lms/api.py:1057
#: lms/lms/api.py:1081
msgid "Suspicious pattern found in {0}: {1}"
msgstr ""
@@ -6706,6 +6791,10 @@ msgstr ""
msgid "Training Feedback"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:5
msgid "Transaction Details"
msgstr ""
#. Option for the 'Location Preference' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Travel"
@@ -6838,7 +6927,6 @@ msgid "Upcoming Live Classes"
msgstr ""
#: frontend/src/components/Settings/BrandSettings.vue:24
#: frontend/src/components/Settings/PaymentSettings.vue:27
#: frontend/src/components/Settings/SettingDetails.vue:23
msgid "Update"
msgstr ""
@@ -7073,6 +7161,12 @@ msgstr ""
msgid "Work Experience Details"
msgstr ""
#. Label of the work_mode (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:32 frontend/src/pages/Jobs.vue:73
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Work Mode"
msgstr ""
#: frontend/src/components/CourseReviews.vue:8
#: frontend/src/components/Modals/ReviewModal.vue:5
#: lms/templates/reviews.html:117
@@ -7103,11 +7197,11 @@ msgstr ""
msgid "You are already certified for this course. Click on the card below to open your certificate."
msgstr ""
#: lms/lms/api.py:199
#: lms/lms/api.py:200
msgid "You are already enrolled for this batch."
msgstr ""
#: lms/lms/api.py:193
#: lms/lms/api.py:194
msgid "You are already enrolled for this course."
msgstr ""
@@ -7181,7 +7275,7 @@ msgstr ""
msgid "You have already exceeded the maximum number of attempts allowed for this quiz."
msgstr ""
#: lms/lms/api.py:223
#: lms/lms/api.py:224
msgid "You have already purchased the certificate for this course."
msgstr ""
@@ -7352,11 +7446,11 @@ msgstr ""
msgid "and then 'Add to Home Screen'"
msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:108
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114
msgid "applicant"
msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:108
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114
msgid "applicants"
msgstr ""
@@ -7405,7 +7499,7 @@ msgstr ""
#: frontend/src/pages/Home/Streak.vue:37 frontend/src/pages/Home/Streak.vue:45
msgid "days"
msgstr ""
msgstr "napok"
#: frontend/src/pages/Home/Home.vue:100 frontend/src/pages/Home/Home.vue:123
msgid "evaluation"
@@ -7509,7 +7603,7 @@ msgstr ""
msgid "{0} Quizzes"
msgstr ""
#: lms/lms/api.py:836 lms/lms/api.py:844
#: lms/lms/api.py:838 lms/lms/api.py:846
msgid "{0} Settings not found"
msgstr ""
@@ -7565,6 +7659,10 @@ msgstr ""
msgid "{0} mentioned you in a comment in {1}"
msgstr ""
#: lms/lms/api.py:887
msgid "{0} not found"
msgstr "{0} nem található"
#: lms/lms/utils.py:450
msgid "{0}k"
msgstr ""
+162 -64
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2025-09-19 16:04+0000\n"
"PO-Revision-Date: 2025-09-24 07:16\n"
"POT-Creation-Date: 2025-09-26 16:04+0000\n"
"PO-Revision-Date: 2025-09-27 08:15\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Indonesian\n"
"MIME-Version: 1.0\n"
@@ -145,8 +145,8 @@ msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:93
#: frontend/src/components/Settings/Members.vue:91
#: frontend/src/pages/Programs/ProgramForm.vue:56
#: frontend/src/pages/Programs/ProgramForm.vue:130
#: frontend/src/pages/Programs/ProgramForm.vue:179
#: frontend/src/pages/Programs/ProgramForm.vue:131
#: frontend/src/pages/Programs/ProgramForm.vue:180
msgid "Add"
msgstr "Tambah"
@@ -156,7 +156,7 @@ msgstr "Tambah"
msgid "Add Chapter"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:175
#: frontend/src/pages/Programs/ProgramForm.vue:176
msgid "Add Course to Program"
msgstr ""
@@ -221,6 +221,10 @@ msgstr ""
msgid "Add a new question"
msgstr ""
#: frontend/src/components/AppSidebar.vue:600
msgid "Add a program"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseModal.vue:5
msgid "Add a programming exercise to your lesson"
msgstr ""
@@ -274,6 +278,7 @@ msgid "Add your first lesson"
msgstr ""
#. Label of the address (Link) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:56
#: frontend/src/pages/Billing.vue:64
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Address"
@@ -353,6 +358,8 @@ msgstr ""
#. Label of the amount (Currency) field in DocType 'LMS Batch'
#. Label of the course_price (Currency) field in DocType 'LMS Course'
#. Label of the amount (Currency) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:68
#: frontend/src/components/Settings/Transactions.vue:219
#: frontend/src/pages/BatchForm.vue:278 frontend/src/pages/CourseForm.vue:262
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -460,7 +467,7 @@ msgstr ""
msgid "Are you sure you want to enroll?"
msgstr ""
#: frontend/src/components/UserDropdown.vue:175
#: frontend/src/components/UserDropdown.vue:177
msgid "Are you sure you want to login to your Frappe Cloud dashboard?"
msgstr ""
@@ -496,7 +503,7 @@ msgid "Assessment {0} has already been added to this batch."
msgstr ""
#. Label of the show_assessments (Check) field in DocType 'LMS Settings'
#: frontend/src/components/AppSidebar.vue:598
#: frontend/src/components/AppSidebar.vue:603
#: frontend/src/components/Assessments.vue:5
#: frontend/src/components/BatchStudents.vue:32
#: lms/lms/doctype/lms_settings/lms_settings.json
@@ -578,7 +585,7 @@ msgstr ""
msgid "Assignment will appear at the bottom of the lesson."
msgstr ""
#: frontend/src/components/AppSidebar.vue:602
#: frontend/src/components/AppSidebar.vue:607
#: frontend/src/components/Settings/Badges.vue:163
#: frontend/src/pages/Assignments.vue:208 lms/www/lms.py:271
msgid "Assignments"
@@ -702,6 +709,7 @@ msgstr ""
#: frontend/src/components/Modals/Event.vue:32
#: frontend/src/components/Settings/BadgeForm.vue:195
#: frontend/src/components/Settings/Badges.vue:200
#: frontend/src/components/Settings/TransactionDetails.vue:92
#: lms/lms/doctype/lms_batch_enrollment/lms_batch_enrollment.json
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
@@ -815,11 +823,11 @@ msgstr ""
msgid "Batch end date cannot be before the batch start date"
msgstr ""
#: lms/lms/api.py:210
#: lms/lms/api.py:211
msgid "Batch has already started."
msgstr ""
#: lms/lms/api.py:205
#: lms/lms/api.py:206
msgid "Batch is sold out."
msgstr ""
@@ -857,6 +865,8 @@ msgid "Billing Details"
msgstr ""
#. Label of the billing_name (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:31
#: frontend/src/components/Settings/Transactions.vue:213
#: frontend/src/pages/Billing.vue:70
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Billing Name"
@@ -1002,7 +1012,7 @@ msgstr ""
#. Enrollment'
#. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace
#: frontend/src/components/AppSidebar.vue:606
#: frontend/src/components/AppSidebar.vue:611
#: frontend/src/components/Modals/Event.vue:381
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58
#: frontend/src/pages/CourseCertification.vue:10
@@ -1145,7 +1155,7 @@ msgstr ""
#. Label of the city (Data) field in DocType 'User'
#. Label of the location (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/Billing.vue:81 frontend/src/pages/JobForm.vue:34
#: frontend/src/pages/Billing.vue:81 frontend/src/pages/JobForm.vue:41
#: lms/fixtures/custom_field.json
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "City"
@@ -1315,25 +1325,25 @@ msgstr "Perusahaan"
#. Label of the section_break_6 (Section Break) field in DocType 'Job
#. Opportunity'
#: frontend/src/pages/JobForm.vue:56
#: frontend/src/pages/JobForm.vue:63
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Details"
msgstr ""
#. Label of the company_email_address (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:75
#: frontend/src/pages/JobForm.vue:82
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Email Address"
msgstr ""
#. Label of the company_logo (Attach Image) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:80
#: frontend/src/pages/JobForm.vue:87
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Logo"
msgstr ""
#. Label of the company_name (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:62
#: frontend/src/pages/JobForm.vue:69
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Name"
msgstr "Nama Perusahaan"
@@ -1344,7 +1354,7 @@ msgid "Company Type"
msgstr ""
#. Label of the company_website (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:68
#: frontend/src/pages/JobForm.vue:75
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Website"
msgstr ""
@@ -1414,7 +1424,7 @@ msgstr ""
msgid "Configurations"
msgstr ""
#: frontend/src/components/UserDropdown.vue:180
#: frontend/src/components/UserDropdown.vue:182
msgid "Confirm"
msgstr "Menegaskan"
@@ -1461,7 +1471,7 @@ msgid "Continue Learning"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:178
#: frontend/src/pages/Jobs.vue:196
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Contract"
msgstr "Kontrak"
@@ -1491,7 +1501,7 @@ msgstr ""
#. Label of the country (Link) field in DocType 'User'
#. Label of the country (Link) field in DocType 'Job Opportunity'
#. Label of the country (Link) field in DocType 'Payment Country'
#: frontend/src/pages/Billing.vue:92 frontend/src/pages/JobForm.vue:40
#: frontend/src/pages/Billing.vue:92 frontend/src/pages/JobForm.vue:47
#: frontend/src/pages/Jobs.vue:57 lms/fixtures/custom_field.json
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/payment_country/payment_country.json
@@ -1533,7 +1543,8 @@ msgstr "Negara"
#: frontend/src/components/Modals/Event.vue:24
#: frontend/src/components/Settings/BadgeForm.vue:194
#: frontend/src/components/Settings/Badges.vue:199
#: frontend/src/pages/Programs/ProgramForm.vue:195
#: frontend/src/components/Settings/TransactionDetails.vue:91
#: frontend/src/pages/Programs/ProgramForm.vue:196
#: frontend/src/pages/Programs/Programs.vue:35
#: lms/lms/doctype/batch_course/batch_course.json
#: lms/lms/doctype/cohort/cohort.json
@@ -1684,7 +1695,7 @@ msgstr ""
msgid "Course Title"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:436
#: frontend/src/pages/Programs/ProgramForm.vue:437
msgid "Course added to program successfully"
msgstr ""
@@ -1836,6 +1847,7 @@ msgstr ""
#. Label of the currency (Link) field in DocType 'LMS Batch'
#. Label of the currency (Link) field in DocType 'LMS Course'
#. Label of the currency (Link) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:64
#: frontend/src/pages/BatchForm.vue:285 frontend/src/pages/CourseForm.vue:279
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -1852,7 +1864,7 @@ msgstr ""
msgid "Current Streak"
msgstr ""
#: frontend/src/components/AppSidebar.vue:612
#: frontend/src/components/AppSidebar.vue:617
msgid "Custom Certificate Templates"
msgstr ""
@@ -1954,7 +1966,7 @@ msgstr ""
#: frontend/src/components/Settings/Badges.vue:171
#: frontend/src/pages/BatchForm.vue:565 frontend/src/pages/CourseForm.vue:597
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseForm.vue:67
#: frontend/src/pages/Programs/ProgramForm.vue:230
#: frontend/src/pages/Programs/ProgramForm.vue:231
msgid "Delete"
msgstr "Hapus"
@@ -2004,7 +2016,7 @@ msgstr ""
#. Label of the description (Small Text) field in DocType 'Work Experience'
#: frontend/src/components/Modals/LiveClassModal.vue:80
#: frontend/src/components/Settings/BadgeForm.vue:32
#: frontend/src/pages/JobForm.vue:125
#: frontend/src/pages/JobForm.vue:132
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/cohort/cohort.json
@@ -2045,6 +2057,7 @@ msgstr ""
#. Label of the disabled (Check) field in DocType 'Job Opportunity'
#: frontend/src/components/Settings/Badges.vue:56
#: frontend/src/components/Settings/PaymentGateways.vue:55
#: frontend/src/components/Settings/ZoomSettings.vue:66
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Disabled"
@@ -2145,6 +2158,10 @@ msgstr ""
msgid "Edit Email Template"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8
msgid "Edit Payment Gateway"
msgstr ""
#: frontend/src/pages/Profile.vue:72
msgid "Edit Profile"
msgstr ""
@@ -2250,6 +2267,7 @@ msgstr ""
#: frontend/src/components/Modals/ZoomAccountModal.vue:23
#: frontend/src/components/Settings/BadgeForm.vue:14
#: frontend/src/components/Settings/Badges.vue:53
#: frontend/src/components/Settings/PaymentGateways.vue:52
#: frontend/src/components/Settings/ZoomSettings.vue:63
#: lms/lms/doctype/lms_badge/lms_badge.json
#: lms/lms/doctype/lms_zoom_settings/lms_zoom_settings.json
@@ -2301,7 +2319,7 @@ msgstr ""
msgid "Enforce Course Order"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:176
#: frontend/src/pages/Programs/ProgramForm.vue:177
msgid "Enroll Member to Program"
msgstr ""
@@ -2460,15 +2478,15 @@ msgstr ""
msgid "Evaluator Schedule"
msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:163
#: frontend/src/components/Settings/Evaluators.vue:160
msgid "Evaluator added successfully"
msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:196
#: frontend/src/components/Settings/Evaluators.vue:193
msgid "Evaluator deleted successfully"
msgstr ""
#: lms/lms/api.py:1392
#: lms/lms/api.py:1416
msgid "Evaluator does not exist."
msgstr ""
@@ -2640,10 +2658,15 @@ msgstr ""
msgid "File Type"
msgstr "Tipe file"
#: frontend/src/components/Settings/Transactions.vue:15
msgid "Filter by Billing Name"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:23
msgid "Filter by Exercise"
msgstr ""
#: frontend/src/components/Settings/Transactions.vue:20
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:28
msgid "Filter by Member"
msgstr ""
@@ -2677,7 +2700,7 @@ msgid "Free"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:179
#: frontend/src/pages/Jobs.vue:197
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Freelance"
msgstr ""
@@ -2719,7 +2742,7 @@ msgid "Full Name"
msgstr "Nama Lengkap"
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:176
#: frontend/src/pages/Jobs.vue:194
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Full Time"
msgstr ""
@@ -2741,10 +2764,15 @@ msgid "GST Number"
msgstr ""
#. Label of the gstin (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:76
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "GSTIN"
msgstr ""
#: frontend/src/components/Settings/PaymentGateways.vue:134
msgid "Gateway"
msgstr ""
#. Label of the general_tab (Tab Break) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "General"
@@ -2923,6 +2951,11 @@ msgstr "Rumah"
msgid "Host"
msgstr ""
#. Option for the 'Work Mode' (Select) field in DocType 'Job Opportunity'
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Hybrid"
msgstr ""
#. Label of the current (Check) field in DocType 'Work Experience'
#: lms/lms/doctype/work_experience/work_experience.json
msgid "I am currently working here"
@@ -3197,7 +3230,7 @@ msgstr ""
msgid "Issue Date"
msgstr ""
#: frontend/src/components/AppSidebar.vue:609
#: frontend/src/components/AppSidebar.vue:614
msgid "Issue a Certificate"
msgstr ""
@@ -3273,7 +3306,7 @@ msgstr ""
#. 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/Jobs.vue:185
#: frontend/src/pages/Jobs.vue:212
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Jobs"
msgstr "Pekerjaan"
@@ -3621,6 +3654,10 @@ msgstr ""
msgid "Learning Consistency"
msgstr ""
#: frontend/src/components/AppSidebar.vue:598
msgid "Learning Paths"
msgstr ""
#. Label of the left_at (Datetime) field in DocType 'LMS Live Class
#. Participant'
#: lms/lms/doctype/lms_live_class_participant/lms_live_class_participant.json
@@ -3753,6 +3790,7 @@ msgstr ""
#: frontend/src/components/Modals/CourseProgressSummary.vue:86
#: frontend/src/components/Settings/Evaluators.vue:81
#: frontend/src/components/Settings/Members.vue:79
#: frontend/src/components/Settings/Transactions.vue:94
#: frontend/src/pages/Assignments.vue:66 frontend/src/pages/Batches.vue:82
#: frontend/src/pages/CertifiedParticipants.vue:98
#: frontend/src/pages/Courses.vue:77
@@ -3786,7 +3824,7 @@ msgstr ""
msgid "Login"
msgstr "Masuk"
#: frontend/src/components/UserDropdown.vue:174
#: frontend/src/components/UserDropdown.vue:176
msgid "Login to Frappe Cloud?"
msgstr ""
@@ -3940,6 +3978,7 @@ msgstr ""
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:26
#: frontend/src/components/Settings/BadgeAssignments.vue:179
#: frontend/src/components/Settings/BadgeForm.vue:215
#: frontend/src/components/Settings/TransactionDetails.vue:26
#: frontend/src/components/Settings/ZoomSettings.vue:187
#: frontend/src/pages/AssignmentSubmissionList.vue:14
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:268
@@ -4073,7 +4112,7 @@ msgstr ""
msgid "Member Username"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:462
#: frontend/src/pages/Programs/ProgramForm.vue:463
msgid "Member added to program successfully"
msgstr ""
@@ -4157,7 +4196,7 @@ msgstr ""
msgid "Meta Tags"
msgstr ""
#: lms/lms/api.py:1432
#: lms/lms/api.py:1456
msgid "Meta tags should be a list."
msgstr ""
@@ -4209,11 +4248,11 @@ msgstr ""
msgid "Modified By"
msgstr ""
#: lms/lms/api.py:187
#: lms/lms/api.py:188
msgid "Module Name is incorrect or does not exist."
msgstr ""
#: lms/lms/api.py:183
#: lms/lms/api.py:184
msgid "Module is incorrect."
msgstr ""
@@ -4224,7 +4263,7 @@ msgstr ""
msgid "Monday"
msgstr ""
#: frontend/src/components/AppSidebar.vue:617
#: frontend/src/components/AppSidebar.vue:622
msgid "Monetization"
msgstr ""
@@ -4268,6 +4307,7 @@ msgstr "Nama"
#: frontend/src/components/Settings/EmailTemplates.vue:17
#: frontend/src/components/Settings/Evaluators.vue:17
#: frontend/src/components/Settings/Members.vue:17
#: frontend/src/components/Settings/PaymentGateways.vue:16
#: frontend/src/components/Settings/ZoomSettings.vue:17
#: frontend/src/pages/Courses.vue:312
#: frontend/src/pages/Programs/Programs.vue:10
@@ -4295,6 +4335,10 @@ msgstr ""
msgid "New Job Applicant"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7
msgid "New Payment Gateway"
msgstr ""
#: frontend/src/pages/QuizForm.vue:137
msgid "New Question"
msgstr ""
@@ -4399,7 +4443,7 @@ msgstr ""
msgid "No live classes scheduled"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:166
#: frontend/src/pages/Programs/ProgramForm.vue:167
msgid "No members added yet."
msgstr ""
@@ -4469,7 +4513,6 @@ msgstr "Tidak Diijinkan"
#: frontend/src/components/Assignment.vue:36
#: frontend/src/components/Settings/BrandSettings.vue:10
#: frontend/src/components/Settings/PaymentSettings.vue:9
#: frontend/src/components/Settings/SettingDetails.vue:10
#: frontend/src/pages/Programs/ProgramForm.vue:16
#: frontend/src/pages/QuizForm.vue:8 frontend/src/pages/QuizSubmission.vue:9
@@ -4522,6 +4565,11 @@ msgstr ""
msgid "Offline"
msgstr ""
#. Option for the 'Work Mode' (Select) field in DocType 'Job Opportunity'
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "On-site"
msgstr ""
#: lms/templates/emails/certification.html:16
msgid "Once again, congratulations on this significant accomplishment."
msgstr ""
@@ -4569,6 +4617,10 @@ msgstr ""
msgid "Open Ended"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:88
msgid "Open the "
msgstr ""
#. Label of the option (Data) field in DocType 'LMS Option'
#: frontend/src/components/Modals/Question.vue:70
#: lms/lms/doctype/lms_option/lms_option.json
@@ -4605,6 +4657,7 @@ msgid "Orange"
msgstr "Oranye"
#. Label of the order_id (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:70
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Order ID"
msgstr ""
@@ -4642,6 +4695,7 @@ msgid "Owner"
msgstr "Pemilik"
#. Label of the pan (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:77
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "PAN"
msgstr ""
@@ -4687,7 +4741,7 @@ msgid "Pan Number"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:177
#: frontend/src/pages/Jobs.vue:195
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Part Time"
msgstr ""
@@ -4747,21 +4801,38 @@ msgstr ""
#. Label of the payment_details_section (Section Break) field in DocType 'LMS
#. Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:42
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment Details"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:18
msgid "Payment For Certificate"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:51
msgid "Payment For Document"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:46
msgid "Payment For Document Type"
msgstr ""
#. Label of the payment_gateway (Data) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Payment Gateway"
msgstr ""
#. Label of the payment_id (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:79
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment ID"
msgstr ""
#. Label of the payment_received (Check) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:13
#: frontend/src/components/Settings/Transactions.vue:25
#: frontend/src/components/Settings/Transactions.vue:226
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment Received"
msgstr "Pembayaran diterima"
@@ -4783,6 +4854,8 @@ msgid "Payment for "
msgstr ""
#. Label of the payment_for_certificate (Check) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/Transactions.vue:30
#: frontend/src/components/Settings/Transactions.vue:233
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment for Certificate"
msgstr ""
@@ -4923,7 +4996,7 @@ msgstr ""
msgid "Please login to access this page."
msgstr ""
#: lms/lms/api.py:179
#: lms/lms/api.py:180
msgid "Please login to continue with payment."
msgstr ""
@@ -4940,7 +5013,7 @@ msgstr ""
msgid "Please run the code to execute the test cases."
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:420
#: frontend/src/pages/Programs/ProgramForm.vue:421
msgid "Please select a course"
msgstr ""
@@ -4956,7 +5029,7 @@ msgstr ""
msgid "Please select a future date and time."
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:447
#: frontend/src/pages/Programs/ProgramForm.vue:448
msgid "Please select a member"
msgstr ""
@@ -5146,7 +5219,7 @@ msgstr ""
msgid "Program Courses"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:205
#: frontend/src/pages/Programs/ProgramForm.vue:206
msgid "Program Member"
msgstr ""
@@ -5155,15 +5228,15 @@ msgstr ""
msgid "Program Members"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:380
#: frontend/src/pages/Programs/ProgramForm.vue:381
msgid "Program created successfully"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:551
#: frontend/src/pages/Programs/ProgramForm.vue:552
msgid "Program deleted successfully"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:399
#: frontend/src/pages/Programs/ProgramForm.vue:400
msgid "Program updated successfully"
msgstr ""
@@ -5229,7 +5302,7 @@ msgid "Progress Distribution"
msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:99
#: frontend/src/pages/Programs/ProgramForm.vue:124
#: frontend/src/pages/Programs/ProgramForm.vue:125
msgid "Progress Summary"
msgstr ""
@@ -5407,7 +5480,7 @@ msgstr ""
msgid "Quiz will appear at the bottom of the lesson."
msgstr ""
#: frontend/src/components/AppSidebar.vue:601
#: frontend/src/components/AppSidebar.vue:606
#: frontend/src/pages/QuizForm.vue:396 frontend/src/pages/Quizzes.vue:275
#: frontend/src/pages/Quizzes.vue:285 lms/www/lms.py:249
msgid "Quizzes"
@@ -5497,6 +5570,11 @@ msgstr ""
msgid "Related Courses"
msgstr ""
#. Option for the 'Work Mode' (Select) field in DocType 'Job Opportunity'
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Remote"
msgstr ""
#: frontend/src/components/Controls/Uploader.vue:34
#: frontend/src/pages/BatchForm.vue:246 frontend/src/pages/CourseForm.vue:119
msgid "Remove"
@@ -5587,7 +5665,7 @@ msgstr ""
msgid "Role updated successfully"
msgstr ""
#: frontend/src/components/AppSidebar.vue:629
#: frontend/src/components/AppSidebar.vue:634
msgid "Roles"
msgstr "4.1.2 Roles(Peran)"
@@ -5671,11 +5749,13 @@ msgstr ""
#: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
#: frontend/src/components/Settings/BadgeForm.vue:78
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:38
#: frontend/src/components/Settings/TransactionDetails.vue:96
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17
#: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseForm.vue:101
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseModal.vue:9
#: frontend/src/pages/Programs/ProgramForm.vue:233
#: frontend/src/pages/Programs/ProgramForm.vue:234
#: frontend/src/pages/QuizForm.vue:43 frontend/src/pages/QuizSubmission.vue:14
#: frontend/src/pages/Quizzes.vue:105
msgid "Save"
@@ -5777,6 +5857,10 @@ msgstr ""
msgid "Select Date"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22
msgid "Select Payment Gateway"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseModal.vue:23
msgid "Select a Programming Exercise"
msgstr ""
@@ -5832,11 +5916,11 @@ msgstr ""
msgid "Setting up"
msgstr ""
#: frontend/src/components/AppSidebar.vue:622
#: frontend/src/components/AppSidebar.vue:627
msgid "Setting up payment gateway"
msgstr ""
#: frontend/src/components/AppSidebar.vue:627
#: frontend/src/components/AppSidebar.vue:632
#: frontend/src/components/Settings/Settings.vue:7
#: frontend/src/pages/BatchForm.vue:53 frontend/src/pages/CourseForm.vue:142
#: frontend/src/pages/ProfileRoles.vue:4
@@ -5994,6 +6078,7 @@ msgstr ""
#. Label of the source (Link) field in DocType 'LMS Payment'
#. Label of the source (Data) field in DocType 'LMS Source'
#. Label of the source (Data) field in DocType 'LMS Video Watch Duration'
#: frontend/src/components/Settings/TransactionDetails.vue:35
#: lms/lms/doctype/lms_batch_enrollment/lms_batch_enrollment.json
#: lms/lms/doctype/lms_payment/lms_payment.json
#: lms/lms/doctype/lms_source/lms_source.json
@@ -6106,7 +6191,7 @@ msgstr ""
#: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19
#: frontend/src/pages/JobForm.vue:46
#: frontend/src/pages/JobForm.vue:53
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:280
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/cohort/cohort.json
@@ -6243,7 +6328,7 @@ msgstr "Ringkasan"
msgid "Sunday"
msgstr ""
#: lms/lms/api.py:1057
#: lms/lms/api.py:1081
msgid "Suspicious pattern found in {0}: {1}"
msgstr ""
@@ -6706,6 +6791,10 @@ msgstr ""
msgid "Training Feedback"
msgstr "pelatihan Masukan"
#: frontend/src/components/Settings/TransactionDetails.vue:5
msgid "Transaction Details"
msgstr ""
#. Option for the 'Location Preference' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Travel"
@@ -6838,7 +6927,6 @@ msgid "Upcoming Live Classes"
msgstr ""
#: frontend/src/components/Settings/BrandSettings.vue:24
#: frontend/src/components/Settings/PaymentSettings.vue:27
#: frontend/src/components/Settings/SettingDetails.vue:23
msgid "Update"
msgstr "Perbaruan"
@@ -7073,6 +7161,12 @@ msgstr ""
msgid "Work Experience Details"
msgstr ""
#. Label of the work_mode (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:32 frontend/src/pages/Jobs.vue:73
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Work Mode"
msgstr ""
#: frontend/src/components/CourseReviews.vue:8
#: frontend/src/components/Modals/ReviewModal.vue:5
#: lms/templates/reviews.html:117
@@ -7103,11 +7197,11 @@ msgstr ""
msgid "You are already certified for this course. Click on the card below to open your certificate."
msgstr ""
#: lms/lms/api.py:199
#: lms/lms/api.py:200
msgid "You are already enrolled for this batch."
msgstr ""
#: lms/lms/api.py:193
#: lms/lms/api.py:194
msgid "You are already enrolled for this course."
msgstr ""
@@ -7181,7 +7275,7 @@ msgstr ""
msgid "You have already exceeded the maximum number of attempts allowed for this quiz."
msgstr ""
#: lms/lms/api.py:223
#: lms/lms/api.py:224
msgid "You have already purchased the certificate for this course."
msgstr ""
@@ -7352,11 +7446,11 @@ msgstr "dan"
msgid "and then 'Add to Home Screen'"
msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:108
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114
msgid "applicant"
msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:108
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114
msgid "applicants"
msgstr ""
@@ -7509,7 +7603,7 @@ msgstr ""
msgid "{0} Quizzes"
msgstr ""
#: lms/lms/api.py:836 lms/lms/api.py:844
#: lms/lms/api.py:838 lms/lms/api.py:846
msgid "{0} Settings not found"
msgstr ""
@@ -7565,6 +7659,10 @@ msgstr ""
msgid "{0} mentioned you in a comment in {1}"
msgstr ""
#: lms/lms/api.py:887
msgid "{0} not found"
msgstr "{0} tidak ditemukan"
#: lms/lms/utils.py:450
msgid "{0}k"
msgstr ""
+162 -64
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2025-09-19 16:04+0000\n"
"PO-Revision-Date: 2025-09-24 07:15\n"
"POT-Creation-Date: 2025-09-26 16:04+0000\n"
"PO-Revision-Date: 2025-09-27 08:15\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Italian\n"
"MIME-Version: 1.0\n"
@@ -145,8 +145,8 @@ msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:93
#: frontend/src/components/Settings/Members.vue:91
#: frontend/src/pages/Programs/ProgramForm.vue:56
#: frontend/src/pages/Programs/ProgramForm.vue:130
#: frontend/src/pages/Programs/ProgramForm.vue:179
#: frontend/src/pages/Programs/ProgramForm.vue:131
#: frontend/src/pages/Programs/ProgramForm.vue:180
msgid "Add"
msgstr ""
@@ -156,7 +156,7 @@ msgstr ""
msgid "Add Chapter"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:175
#: frontend/src/pages/Programs/ProgramForm.vue:176
msgid "Add Course to Program"
msgstr ""
@@ -221,6 +221,10 @@ msgstr ""
msgid "Add a new question"
msgstr ""
#: frontend/src/components/AppSidebar.vue:600
msgid "Add a program"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseModal.vue:5
msgid "Add a programming exercise to your lesson"
msgstr ""
@@ -274,6 +278,7 @@ msgid "Add your first lesson"
msgstr ""
#. Label of the address (Link) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:56
#: frontend/src/pages/Billing.vue:64
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Address"
@@ -353,6 +358,8 @@ msgstr "Ambra"
#. Label of the amount (Currency) field in DocType 'LMS Batch'
#. Label of the course_price (Currency) field in DocType 'LMS Course'
#. Label of the amount (Currency) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:68
#: frontend/src/components/Settings/Transactions.vue:219
#: frontend/src/pages/BatchForm.vue:278 frontend/src/pages/CourseForm.vue:262
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -460,7 +467,7 @@ msgstr ""
msgid "Are you sure you want to enroll?"
msgstr ""
#: frontend/src/components/UserDropdown.vue:175
#: frontend/src/components/UserDropdown.vue:177
msgid "Are you sure you want to login to your Frappe Cloud dashboard?"
msgstr ""
@@ -496,7 +503,7 @@ msgid "Assessment {0} has already been added to this batch."
msgstr ""
#. Label of the show_assessments (Check) field in DocType 'LMS Settings'
#: frontend/src/components/AppSidebar.vue:598
#: frontend/src/components/AppSidebar.vue:603
#: frontend/src/components/Assessments.vue:5
#: frontend/src/components/BatchStudents.vue:32
#: lms/lms/doctype/lms_settings/lms_settings.json
@@ -578,7 +585,7 @@ msgstr ""
msgid "Assignment will appear at the bottom of the lesson."
msgstr ""
#: frontend/src/components/AppSidebar.vue:602
#: frontend/src/components/AppSidebar.vue:607
#: frontend/src/components/Settings/Badges.vue:163
#: frontend/src/pages/Assignments.vue:208 lms/www/lms.py:271
msgid "Assignments"
@@ -702,6 +709,7 @@ msgstr ""
#: frontend/src/components/Modals/Event.vue:32
#: frontend/src/components/Settings/BadgeForm.vue:195
#: frontend/src/components/Settings/Badges.vue:200
#: frontend/src/components/Settings/TransactionDetails.vue:92
#: lms/lms/doctype/lms_batch_enrollment/lms_batch_enrollment.json
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
@@ -815,11 +823,11 @@ msgstr ""
msgid "Batch end date cannot be before the batch start date"
msgstr ""
#: lms/lms/api.py:210
#: lms/lms/api.py:211
msgid "Batch has already started."
msgstr ""
#: lms/lms/api.py:205
#: lms/lms/api.py:206
msgid "Batch is sold out."
msgstr ""
@@ -857,6 +865,8 @@ msgid "Billing Details"
msgstr ""
#. Label of the billing_name (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:31
#: frontend/src/components/Settings/Transactions.vue:213
#: frontend/src/pages/Billing.vue:70
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Billing Name"
@@ -1002,7 +1012,7 @@ msgstr ""
#. Enrollment'
#. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace
#: frontend/src/components/AppSidebar.vue:606
#: frontend/src/components/AppSidebar.vue:611
#: frontend/src/components/Modals/Event.vue:381
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58
#: frontend/src/pages/CourseCertification.vue:10
@@ -1145,7 +1155,7 @@ msgstr ""
#. Label of the city (Data) field in DocType 'User'
#. Label of the location (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/Billing.vue:81 frontend/src/pages/JobForm.vue:34
#: frontend/src/pages/Billing.vue:81 frontend/src/pages/JobForm.vue:41
#: lms/fixtures/custom_field.json
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "City"
@@ -1315,25 +1325,25 @@ msgstr ""
#. Label of the section_break_6 (Section Break) field in DocType 'Job
#. Opportunity'
#: frontend/src/pages/JobForm.vue:56
#: frontend/src/pages/JobForm.vue:63
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Details"
msgstr ""
#. Label of the company_email_address (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:75
#: frontend/src/pages/JobForm.vue:82
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Email Address"
msgstr ""
#. Label of the company_logo (Attach Image) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:80
#: frontend/src/pages/JobForm.vue:87
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Logo"
msgstr ""
#. Label of the company_name (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:62
#: frontend/src/pages/JobForm.vue:69
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Name"
msgstr ""
@@ -1344,7 +1354,7 @@ msgid "Company Type"
msgstr ""
#. Label of the company_website (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:68
#: frontend/src/pages/JobForm.vue:75
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Website"
msgstr ""
@@ -1414,7 +1424,7 @@ msgstr ""
msgid "Configurations"
msgstr ""
#: frontend/src/components/UserDropdown.vue:180
#: frontend/src/components/UserDropdown.vue:182
msgid "Confirm"
msgstr "Conferma"
@@ -1461,7 +1471,7 @@ msgid "Continue Learning"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:178
#: frontend/src/pages/Jobs.vue:196
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Contract"
msgstr ""
@@ -1491,7 +1501,7 @@ msgstr ""
#. Label of the country (Link) field in DocType 'User'
#. Label of the country (Link) field in DocType 'Job Opportunity'
#. Label of the country (Link) field in DocType 'Payment Country'
#: frontend/src/pages/Billing.vue:92 frontend/src/pages/JobForm.vue:40
#: frontend/src/pages/Billing.vue:92 frontend/src/pages/JobForm.vue:47
#: frontend/src/pages/Jobs.vue:57 lms/fixtures/custom_field.json
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/payment_country/payment_country.json
@@ -1533,7 +1543,8 @@ msgstr ""
#: frontend/src/components/Modals/Event.vue:24
#: frontend/src/components/Settings/BadgeForm.vue:194
#: frontend/src/components/Settings/Badges.vue:199
#: frontend/src/pages/Programs/ProgramForm.vue:195
#: frontend/src/components/Settings/TransactionDetails.vue:91
#: frontend/src/pages/Programs/ProgramForm.vue:196
#: frontend/src/pages/Programs/Programs.vue:35
#: lms/lms/doctype/batch_course/batch_course.json
#: lms/lms/doctype/cohort/cohort.json
@@ -1684,7 +1695,7 @@ msgstr ""
msgid "Course Title"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:436
#: frontend/src/pages/Programs/ProgramForm.vue:437
msgid "Course added to program successfully"
msgstr ""
@@ -1836,6 +1847,7 @@ msgstr ""
#. Label of the currency (Link) field in DocType 'LMS Batch'
#. Label of the currency (Link) field in DocType 'LMS Course'
#. Label of the currency (Link) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:64
#: frontend/src/pages/BatchForm.vue:285 frontend/src/pages/CourseForm.vue:279
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -1852,7 +1864,7 @@ msgstr ""
msgid "Current Streak"
msgstr ""
#: frontend/src/components/AppSidebar.vue:612
#: frontend/src/components/AppSidebar.vue:617
msgid "Custom Certificate Templates"
msgstr ""
@@ -1954,7 +1966,7 @@ msgstr ""
#: frontend/src/components/Settings/Badges.vue:171
#: frontend/src/pages/BatchForm.vue:565 frontend/src/pages/CourseForm.vue:597
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseForm.vue:67
#: frontend/src/pages/Programs/ProgramForm.vue:230
#: frontend/src/pages/Programs/ProgramForm.vue:231
msgid "Delete"
msgstr "Elimina"
@@ -2004,7 +2016,7 @@ msgstr ""
#. Label of the description (Small Text) field in DocType 'Work Experience'
#: frontend/src/components/Modals/LiveClassModal.vue:80
#: frontend/src/components/Settings/BadgeForm.vue:32
#: frontend/src/pages/JobForm.vue:125
#: frontend/src/pages/JobForm.vue:132
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/cohort/cohort.json
@@ -2045,6 +2057,7 @@ msgstr ""
#. Label of the disabled (Check) field in DocType 'Job Opportunity'
#: frontend/src/components/Settings/Badges.vue:56
#: frontend/src/components/Settings/PaymentGateways.vue:55
#: frontend/src/components/Settings/ZoomSettings.vue:66
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Disabled"
@@ -2145,6 +2158,10 @@ msgstr ""
msgid "Edit Email Template"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8
msgid "Edit Payment Gateway"
msgstr ""
#: frontend/src/pages/Profile.vue:72
msgid "Edit Profile"
msgstr "Modifica Profilo"
@@ -2250,6 +2267,7 @@ msgstr ""
#: frontend/src/components/Modals/ZoomAccountModal.vue:23
#: frontend/src/components/Settings/BadgeForm.vue:14
#: frontend/src/components/Settings/Badges.vue:53
#: frontend/src/components/Settings/PaymentGateways.vue:52
#: frontend/src/components/Settings/ZoomSettings.vue:63
#: lms/lms/doctype/lms_badge/lms_badge.json
#: lms/lms/doctype/lms_zoom_settings/lms_zoom_settings.json
@@ -2301,7 +2319,7 @@ msgstr ""
msgid "Enforce Course Order"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:176
#: frontend/src/pages/Programs/ProgramForm.vue:177
msgid "Enroll Member to Program"
msgstr ""
@@ -2460,15 +2478,15 @@ msgstr ""
msgid "Evaluator Schedule"
msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:163
#: frontend/src/components/Settings/Evaluators.vue:160
msgid "Evaluator added successfully"
msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:196
#: frontend/src/components/Settings/Evaluators.vue:193
msgid "Evaluator deleted successfully"
msgstr ""
#: lms/lms/api.py:1392
#: lms/lms/api.py:1416
msgid "Evaluator does not exist."
msgstr ""
@@ -2640,10 +2658,15 @@ msgstr ""
msgid "File Type"
msgstr ""
#: frontend/src/components/Settings/Transactions.vue:15
msgid "Filter by Billing Name"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:23
msgid "Filter by Exercise"
msgstr ""
#: frontend/src/components/Settings/Transactions.vue:20
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:28
msgid "Filter by Member"
msgstr ""
@@ -2677,7 +2700,7 @@ msgid "Free"
msgstr "Gratuito"
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:179
#: frontend/src/pages/Jobs.vue:197
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Freelance"
msgstr ""
@@ -2719,7 +2742,7 @@ msgid "Full Name"
msgstr "Nome e Cognome"
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:176
#: frontend/src/pages/Jobs.vue:194
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Full Time"
msgstr ""
@@ -2741,10 +2764,15 @@ msgid "GST Number"
msgstr ""
#. Label of the gstin (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:76
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "GSTIN"
msgstr ""
#: frontend/src/components/Settings/PaymentGateways.vue:134
msgid "Gateway"
msgstr ""
#. Label of the general_tab (Tab Break) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "General"
@@ -2923,6 +2951,11 @@ msgstr "Home"
msgid "Host"
msgstr ""
#. Option for the 'Work Mode' (Select) field in DocType 'Job Opportunity'
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Hybrid"
msgstr ""
#. Label of the current (Check) field in DocType 'Work Experience'
#: lms/lms/doctype/work_experience/work_experience.json
msgid "I am currently working here"
@@ -3197,7 +3230,7 @@ msgstr ""
msgid "Issue Date"
msgstr ""
#: frontend/src/components/AppSidebar.vue:609
#: frontend/src/components/AppSidebar.vue:614
msgid "Issue a Certificate"
msgstr ""
@@ -3273,7 +3306,7 @@ msgstr ""
#. 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/Jobs.vue:185
#: frontend/src/pages/Jobs.vue:212
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Jobs"
msgstr ""
@@ -3621,6 +3654,10 @@ msgstr ""
msgid "Learning Consistency"
msgstr ""
#: frontend/src/components/AppSidebar.vue:598
msgid "Learning Paths"
msgstr ""
#. Label of the left_at (Datetime) field in DocType 'LMS Live Class
#. Participant'
#: lms/lms/doctype/lms_live_class_participant/lms_live_class_participant.json
@@ -3753,6 +3790,7 @@ msgstr ""
#: frontend/src/components/Modals/CourseProgressSummary.vue:86
#: frontend/src/components/Settings/Evaluators.vue:81
#: frontend/src/components/Settings/Members.vue:79
#: frontend/src/components/Settings/Transactions.vue:94
#: frontend/src/pages/Assignments.vue:66 frontend/src/pages/Batches.vue:82
#: frontend/src/pages/CertifiedParticipants.vue:98
#: frontend/src/pages/Courses.vue:77
@@ -3786,7 +3824,7 @@ msgstr ""
msgid "Login"
msgstr "Login"
#: frontend/src/components/UserDropdown.vue:174
#: frontend/src/components/UserDropdown.vue:176
msgid "Login to Frappe Cloud?"
msgstr ""
@@ -3940,6 +3978,7 @@ msgstr ""
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:26
#: frontend/src/components/Settings/BadgeAssignments.vue:179
#: frontend/src/components/Settings/BadgeForm.vue:215
#: frontend/src/components/Settings/TransactionDetails.vue:26
#: frontend/src/components/Settings/ZoomSettings.vue:187
#: frontend/src/pages/AssignmentSubmissionList.vue:14
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:268
@@ -4073,7 +4112,7 @@ msgstr ""
msgid "Member Username"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:462
#: frontend/src/pages/Programs/ProgramForm.vue:463
msgid "Member added to program successfully"
msgstr ""
@@ -4157,7 +4196,7 @@ msgstr ""
msgid "Meta Tags"
msgstr ""
#: lms/lms/api.py:1432
#: lms/lms/api.py:1456
msgid "Meta tags should be a list."
msgstr ""
@@ -4209,11 +4248,11 @@ msgstr ""
msgid "Modified By"
msgstr ""
#: lms/lms/api.py:187
#: lms/lms/api.py:188
msgid "Module Name is incorrect or does not exist."
msgstr ""
#: lms/lms/api.py:183
#: lms/lms/api.py:184
msgid "Module is incorrect."
msgstr ""
@@ -4224,7 +4263,7 @@ msgstr ""
msgid "Monday"
msgstr ""
#: frontend/src/components/AppSidebar.vue:617
#: frontend/src/components/AppSidebar.vue:622
msgid "Monetization"
msgstr ""
@@ -4268,6 +4307,7 @@ msgstr ""
#: frontend/src/components/Settings/EmailTemplates.vue:17
#: frontend/src/components/Settings/Evaluators.vue:17
#: frontend/src/components/Settings/Members.vue:17
#: frontend/src/components/Settings/PaymentGateways.vue:16
#: frontend/src/components/Settings/ZoomSettings.vue:17
#: frontend/src/pages/Courses.vue:312
#: frontend/src/pages/Programs/Programs.vue:10
@@ -4295,6 +4335,10 @@ msgstr ""
msgid "New Job Applicant"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7
msgid "New Payment Gateway"
msgstr ""
#: frontend/src/pages/QuizForm.vue:137
msgid "New Question"
msgstr ""
@@ -4399,7 +4443,7 @@ msgstr ""
msgid "No live classes scheduled"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:166
#: frontend/src/pages/Programs/ProgramForm.vue:167
msgid "No members added yet."
msgstr ""
@@ -4469,7 +4513,6 @@ msgstr ""
#: frontend/src/components/Assignment.vue:36
#: frontend/src/components/Settings/BrandSettings.vue:10
#: frontend/src/components/Settings/PaymentSettings.vue:9
#: frontend/src/components/Settings/SettingDetails.vue:10
#: frontend/src/pages/Programs/ProgramForm.vue:16
#: frontend/src/pages/QuizForm.vue:8 frontend/src/pages/QuizSubmission.vue:9
@@ -4522,6 +4565,11 @@ msgstr ""
msgid "Offline"
msgstr ""
#. Option for the 'Work Mode' (Select) field in DocType 'Job Opportunity'
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "On-site"
msgstr ""
#: lms/templates/emails/certification.html:16
msgid "Once again, congratulations on this significant accomplishment."
msgstr ""
@@ -4569,6 +4617,10 @@ msgstr ""
msgid "Open Ended"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:88
msgid "Open the "
msgstr ""
#. Label of the option (Data) field in DocType 'LMS Option'
#: frontend/src/components/Modals/Question.vue:70
#: lms/lms/doctype/lms_option/lms_option.json
@@ -4605,6 +4657,7 @@ msgid "Orange"
msgstr ""
#. Label of the order_id (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:70
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Order ID"
msgstr ""
@@ -4642,6 +4695,7 @@ msgid "Owner"
msgstr ""
#. Label of the pan (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:77
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "PAN"
msgstr ""
@@ -4687,7 +4741,7 @@ msgid "Pan Number"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:177
#: frontend/src/pages/Jobs.vue:195
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Part Time"
msgstr ""
@@ -4747,21 +4801,38 @@ msgstr ""
#. Label of the payment_details_section (Section Break) field in DocType 'LMS
#. Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:42
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment Details"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:18
msgid "Payment For Certificate"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:51
msgid "Payment For Document"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:46
msgid "Payment For Document Type"
msgstr ""
#. Label of the payment_gateway (Data) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Payment Gateway"
msgstr ""
#. Label of the payment_id (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:79
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment ID"
msgstr ""
#. Label of the payment_received (Check) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:13
#: frontend/src/components/Settings/Transactions.vue:25
#: frontend/src/components/Settings/Transactions.vue:226
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment Received"
msgstr ""
@@ -4783,6 +4854,8 @@ msgid "Payment for "
msgstr ""
#. Label of the payment_for_certificate (Check) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/Transactions.vue:30
#: frontend/src/components/Settings/Transactions.vue:233
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment for Certificate"
msgstr ""
@@ -4923,7 +4996,7 @@ msgstr ""
msgid "Please login to access this page."
msgstr ""
#: lms/lms/api.py:179
#: lms/lms/api.py:180
msgid "Please login to continue with payment."
msgstr ""
@@ -4940,7 +5013,7 @@ msgstr ""
msgid "Please run the code to execute the test cases."
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:420
#: frontend/src/pages/Programs/ProgramForm.vue:421
msgid "Please select a course"
msgstr ""
@@ -4956,7 +5029,7 @@ msgstr ""
msgid "Please select a future date and time."
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:447
#: frontend/src/pages/Programs/ProgramForm.vue:448
msgid "Please select a member"
msgstr ""
@@ -5146,7 +5219,7 @@ msgstr ""
msgid "Program Courses"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:205
#: frontend/src/pages/Programs/ProgramForm.vue:206
msgid "Program Member"
msgstr ""
@@ -5155,15 +5228,15 @@ msgstr ""
msgid "Program Members"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:380
#: frontend/src/pages/Programs/ProgramForm.vue:381
msgid "Program created successfully"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:551
#: frontend/src/pages/Programs/ProgramForm.vue:552
msgid "Program deleted successfully"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:399
#: frontend/src/pages/Programs/ProgramForm.vue:400
msgid "Program updated successfully"
msgstr ""
@@ -5229,7 +5302,7 @@ msgid "Progress Distribution"
msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:99
#: frontend/src/pages/Programs/ProgramForm.vue:124
#: frontend/src/pages/Programs/ProgramForm.vue:125
msgid "Progress Summary"
msgstr ""
@@ -5407,7 +5480,7 @@ msgstr ""
msgid "Quiz will appear at the bottom of the lesson."
msgstr ""
#: frontend/src/components/AppSidebar.vue:601
#: frontend/src/components/AppSidebar.vue:606
#: frontend/src/pages/QuizForm.vue:396 frontend/src/pages/Quizzes.vue:275
#: frontend/src/pages/Quizzes.vue:285 lms/www/lms.py:249
msgid "Quizzes"
@@ -5497,6 +5570,11 @@ msgstr ""
msgid "Related Courses"
msgstr ""
#. Option for the 'Work Mode' (Select) field in DocType 'Job Opportunity'
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Remote"
msgstr ""
#: frontend/src/components/Controls/Uploader.vue:34
#: frontend/src/pages/BatchForm.vue:246 frontend/src/pages/CourseForm.vue:119
msgid "Remove"
@@ -5587,7 +5665,7 @@ msgstr ""
msgid "Role updated successfully"
msgstr ""
#: frontend/src/components/AppSidebar.vue:629
#: frontend/src/components/AppSidebar.vue:634
msgid "Roles"
msgstr "Ruoli"
@@ -5671,11 +5749,13 @@ msgstr ""
#: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
#: frontend/src/components/Settings/BadgeForm.vue:78
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:38
#: frontend/src/components/Settings/TransactionDetails.vue:96
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17
#: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseForm.vue:101
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseModal.vue:9
#: frontend/src/pages/Programs/ProgramForm.vue:233
#: frontend/src/pages/Programs/ProgramForm.vue:234
#: frontend/src/pages/QuizForm.vue:43 frontend/src/pages/QuizSubmission.vue:14
#: frontend/src/pages/Quizzes.vue:105
msgid "Save"
@@ -5777,6 +5857,10 @@ msgstr ""
msgid "Select Date"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22
msgid "Select Payment Gateway"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseModal.vue:23
msgid "Select a Programming Exercise"
msgstr ""
@@ -5832,11 +5916,11 @@ msgstr ""
msgid "Setting up"
msgstr ""
#: frontend/src/components/AppSidebar.vue:622
#: frontend/src/components/AppSidebar.vue:627
msgid "Setting up payment gateway"
msgstr ""
#: frontend/src/components/AppSidebar.vue:627
#: frontend/src/components/AppSidebar.vue:632
#: frontend/src/components/Settings/Settings.vue:7
#: frontend/src/pages/BatchForm.vue:53 frontend/src/pages/CourseForm.vue:142
#: frontend/src/pages/ProfileRoles.vue:4
@@ -5994,6 +6078,7 @@ msgstr ""
#. Label of the source (Link) field in DocType 'LMS Payment'
#. Label of the source (Data) field in DocType 'LMS Source'
#. Label of the source (Data) field in DocType 'LMS Video Watch Duration'
#: frontend/src/components/Settings/TransactionDetails.vue:35
#: lms/lms/doctype/lms_batch_enrollment/lms_batch_enrollment.json
#: lms/lms/doctype/lms_payment/lms_payment.json
#: lms/lms/doctype/lms_source/lms_source.json
@@ -6106,7 +6191,7 @@ msgstr ""
#: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19
#: frontend/src/pages/JobForm.vue:46
#: frontend/src/pages/JobForm.vue:53
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:280
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/cohort/cohort.json
@@ -6243,7 +6328,7 @@ msgstr ""
msgid "Sunday"
msgstr ""
#: lms/lms/api.py:1057
#: lms/lms/api.py:1081
msgid "Suspicious pattern found in {0}: {1}"
msgstr ""
@@ -6706,6 +6791,10 @@ msgstr ""
msgid "Training Feedback"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:5
msgid "Transaction Details"
msgstr ""
#. Option for the 'Location Preference' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Travel"
@@ -6838,7 +6927,6 @@ msgid "Upcoming Live Classes"
msgstr ""
#: frontend/src/components/Settings/BrandSettings.vue:24
#: frontend/src/components/Settings/PaymentSettings.vue:27
#: frontend/src/components/Settings/SettingDetails.vue:23
msgid "Update"
msgstr ""
@@ -7073,6 +7161,12 @@ msgstr ""
msgid "Work Experience Details"
msgstr ""
#. Label of the work_mode (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:32 frontend/src/pages/Jobs.vue:73
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Work Mode"
msgstr ""
#: frontend/src/components/CourseReviews.vue:8
#: frontend/src/components/Modals/ReviewModal.vue:5
#: lms/templates/reviews.html:117
@@ -7103,11 +7197,11 @@ msgstr ""
msgid "You are already certified for this course. Click on the card below to open your certificate."
msgstr ""
#: lms/lms/api.py:199
#: lms/lms/api.py:200
msgid "You are already enrolled for this batch."
msgstr ""
#: lms/lms/api.py:193
#: lms/lms/api.py:194
msgid "You are already enrolled for this course."
msgstr ""
@@ -7181,7 +7275,7 @@ msgstr ""
msgid "You have already exceeded the maximum number of attempts allowed for this quiz."
msgstr ""
#: lms/lms/api.py:223
#: lms/lms/api.py:224
msgid "You have already purchased the certificate for this course."
msgstr ""
@@ -7352,11 +7446,11 @@ msgstr ""
msgid "and then 'Add to Home Screen'"
msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:108
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114
msgid "applicant"
msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:108
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114
msgid "applicants"
msgstr ""
@@ -7509,7 +7603,7 @@ msgstr ""
msgid "{0} Quizzes"
msgstr ""
#: lms/lms/api.py:836 lms/lms/api.py:844
#: lms/lms/api.py:838 lms/lms/api.py:846
msgid "{0} Settings not found"
msgstr ""
@@ -7565,6 +7659,10 @@ msgstr ""
msgid "{0} mentioned you in a comment in {1}"
msgstr ""
#: lms/lms/api.py:887
msgid "{0} not found"
msgstr ""
#: lms/lms/utils.py:450
msgid "{0}k"
msgstr ""
+162 -64
View File
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Frappe LMS VERSION\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2025-09-19 16:04+0000\n"
"PO-Revision-Date: 2025-09-19 16:04+0000\n"
"POT-Creation-Date: 2025-09-26 16:04+0000\n"
"PO-Revision-Date: 2025-09-26 16:04+0000\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: jannat@frappe.io\n"
"MIME-Version: 1.0\n"
@@ -143,8 +143,8 @@ msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:93
#: frontend/src/components/Settings/Members.vue:91
#: frontend/src/pages/Programs/ProgramForm.vue:56
#: frontend/src/pages/Programs/ProgramForm.vue:130
#: frontend/src/pages/Programs/ProgramForm.vue:179
#: frontend/src/pages/Programs/ProgramForm.vue:131
#: frontend/src/pages/Programs/ProgramForm.vue:180
msgid "Add"
msgstr ""
@@ -154,7 +154,7 @@ msgstr ""
msgid "Add Chapter"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:175
#: frontend/src/pages/Programs/ProgramForm.vue:176
msgid "Add Course to Program"
msgstr ""
@@ -219,6 +219,10 @@ msgstr ""
msgid "Add a new question"
msgstr ""
#: frontend/src/components/AppSidebar.vue:600
msgid "Add a program"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseModal.vue:5
msgid "Add a programming exercise to your lesson"
msgstr ""
@@ -272,6 +276,7 @@ msgid "Add your first lesson"
msgstr ""
#. Label of the address (Link) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:56
#: frontend/src/pages/Billing.vue:64
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Address"
@@ -351,6 +356,8 @@ msgstr ""
#. Label of the amount (Currency) field in DocType 'LMS Batch'
#. Label of the course_price (Currency) field in DocType 'LMS Course'
#. Label of the amount (Currency) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:68
#: frontend/src/components/Settings/Transactions.vue:219
#: frontend/src/pages/BatchForm.vue:278 frontend/src/pages/CourseForm.vue:262
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -458,7 +465,7 @@ msgstr ""
msgid "Are you sure you want to enroll?"
msgstr ""
#: frontend/src/components/UserDropdown.vue:175
#: frontend/src/components/UserDropdown.vue:177
msgid "Are you sure you want to login to your Frappe Cloud dashboard?"
msgstr ""
@@ -494,7 +501,7 @@ msgid "Assessment {0} has already been added to this batch."
msgstr ""
#. Label of the show_assessments (Check) field in DocType 'LMS Settings'
#: frontend/src/components/AppSidebar.vue:598
#: frontend/src/components/AppSidebar.vue:603
#: frontend/src/components/Assessments.vue:5
#: frontend/src/components/BatchStudents.vue:32
#: lms/lms/doctype/lms_settings/lms_settings.json
@@ -576,7 +583,7 @@ msgstr ""
msgid "Assignment will appear at the bottom of the lesson."
msgstr ""
#: frontend/src/components/AppSidebar.vue:602
#: frontend/src/components/AppSidebar.vue:607
#: frontend/src/components/Settings/Badges.vue:163
#: frontend/src/pages/Assignments.vue:208 lms/www/lms.py:271
msgid "Assignments"
@@ -700,6 +707,7 @@ msgstr ""
#: frontend/src/components/Modals/Event.vue:32
#: frontend/src/components/Settings/BadgeForm.vue:195
#: frontend/src/components/Settings/Badges.vue:200
#: frontend/src/components/Settings/TransactionDetails.vue:92
#: lms/lms/doctype/lms_batch_enrollment/lms_batch_enrollment.json
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
@@ -813,11 +821,11 @@ msgstr ""
msgid "Batch end date cannot be before the batch start date"
msgstr ""
#: lms/lms/api.py:210
#: lms/lms/api.py:211
msgid "Batch has already started."
msgstr ""
#: lms/lms/api.py:205
#: lms/lms/api.py:206
msgid "Batch is sold out."
msgstr ""
@@ -855,6 +863,8 @@ msgid "Billing Details"
msgstr ""
#. Label of the billing_name (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:31
#: frontend/src/components/Settings/Transactions.vue:213
#: frontend/src/pages/Billing.vue:70
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Billing Name"
@@ -1000,7 +1010,7 @@ msgstr ""
#. Enrollment'
#. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace
#: frontend/src/components/AppSidebar.vue:606
#: frontend/src/components/AppSidebar.vue:611
#: frontend/src/components/Modals/Event.vue:381
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58
#: frontend/src/pages/CourseCertification.vue:10
@@ -1143,7 +1153,7 @@ msgstr ""
#. Label of the city (Data) field in DocType 'User'
#. Label of the location (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/Billing.vue:81 frontend/src/pages/JobForm.vue:34
#: frontend/src/pages/Billing.vue:81 frontend/src/pages/JobForm.vue:41
#: lms/fixtures/custom_field.json
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "City"
@@ -1313,25 +1323,25 @@ msgstr ""
#. Label of the section_break_6 (Section Break) field in DocType 'Job
#. Opportunity'
#: frontend/src/pages/JobForm.vue:56
#: frontend/src/pages/JobForm.vue:63
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Details"
msgstr ""
#. Label of the company_email_address (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:75
#: frontend/src/pages/JobForm.vue:82
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Email Address"
msgstr ""
#. Label of the company_logo (Attach Image) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:80
#: frontend/src/pages/JobForm.vue:87
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Logo"
msgstr ""
#. Label of the company_name (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:62
#: frontend/src/pages/JobForm.vue:69
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Name"
msgstr ""
@@ -1342,7 +1352,7 @@ msgid "Company Type"
msgstr ""
#. Label of the company_website (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:68
#: frontend/src/pages/JobForm.vue:75
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Website"
msgstr ""
@@ -1412,7 +1422,7 @@ msgstr ""
msgid "Configurations"
msgstr ""
#: frontend/src/components/UserDropdown.vue:180
#: frontend/src/components/UserDropdown.vue:182
msgid "Confirm"
msgstr ""
@@ -1459,7 +1469,7 @@ msgid "Continue Learning"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:178
#: frontend/src/pages/Jobs.vue:196
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Contract"
msgstr ""
@@ -1489,7 +1499,7 @@ msgstr ""
#. Label of the country (Link) field in DocType 'User'
#. Label of the country (Link) field in DocType 'Job Opportunity'
#. Label of the country (Link) field in DocType 'Payment Country'
#: frontend/src/pages/Billing.vue:92 frontend/src/pages/JobForm.vue:40
#: frontend/src/pages/Billing.vue:92 frontend/src/pages/JobForm.vue:47
#: frontend/src/pages/Jobs.vue:57 lms/fixtures/custom_field.json
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/payment_country/payment_country.json
@@ -1531,7 +1541,8 @@ msgstr ""
#: frontend/src/components/Modals/Event.vue:24
#: frontend/src/components/Settings/BadgeForm.vue:194
#: frontend/src/components/Settings/Badges.vue:199
#: frontend/src/pages/Programs/ProgramForm.vue:195
#: frontend/src/components/Settings/TransactionDetails.vue:91
#: frontend/src/pages/Programs/ProgramForm.vue:196
#: frontend/src/pages/Programs/Programs.vue:35
#: lms/lms/doctype/batch_course/batch_course.json
#: lms/lms/doctype/cohort/cohort.json
@@ -1682,7 +1693,7 @@ msgstr ""
msgid "Course Title"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:436
#: frontend/src/pages/Programs/ProgramForm.vue:437
msgid "Course added to program successfully"
msgstr ""
@@ -1834,6 +1845,7 @@ msgstr ""
#. Label of the currency (Link) field in DocType 'LMS Batch'
#. Label of the currency (Link) field in DocType 'LMS Course'
#. Label of the currency (Link) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:64
#: frontend/src/pages/BatchForm.vue:285 frontend/src/pages/CourseForm.vue:279
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -1850,7 +1862,7 @@ msgstr ""
msgid "Current Streak"
msgstr ""
#: frontend/src/components/AppSidebar.vue:612
#: frontend/src/components/AppSidebar.vue:617
msgid "Custom Certificate Templates"
msgstr ""
@@ -1952,7 +1964,7 @@ msgstr ""
#: frontend/src/components/Settings/Badges.vue:171
#: frontend/src/pages/BatchForm.vue:565 frontend/src/pages/CourseForm.vue:597
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseForm.vue:67
#: frontend/src/pages/Programs/ProgramForm.vue:230
#: frontend/src/pages/Programs/ProgramForm.vue:231
msgid "Delete"
msgstr ""
@@ -2002,7 +2014,7 @@ msgstr ""
#. Label of the description (Small Text) field in DocType 'Work Experience'
#: frontend/src/components/Modals/LiveClassModal.vue:80
#: frontend/src/components/Settings/BadgeForm.vue:32
#: frontend/src/pages/JobForm.vue:125
#: frontend/src/pages/JobForm.vue:132
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/cohort/cohort.json
@@ -2043,6 +2055,7 @@ msgstr ""
#. Label of the disabled (Check) field in DocType 'Job Opportunity'
#: frontend/src/components/Settings/Badges.vue:56
#: frontend/src/components/Settings/PaymentGateways.vue:55
#: frontend/src/components/Settings/ZoomSettings.vue:66
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Disabled"
@@ -2143,6 +2156,10 @@ msgstr ""
msgid "Edit Email Template"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8
msgid "Edit Payment Gateway"
msgstr ""
#: frontend/src/pages/Profile.vue:72
msgid "Edit Profile"
msgstr ""
@@ -2248,6 +2265,7 @@ msgstr ""
#: frontend/src/components/Modals/ZoomAccountModal.vue:23
#: frontend/src/components/Settings/BadgeForm.vue:14
#: frontend/src/components/Settings/Badges.vue:53
#: frontend/src/components/Settings/PaymentGateways.vue:52
#: frontend/src/components/Settings/ZoomSettings.vue:63
#: lms/lms/doctype/lms_badge/lms_badge.json
#: lms/lms/doctype/lms_zoom_settings/lms_zoom_settings.json
@@ -2299,7 +2317,7 @@ msgstr ""
msgid "Enforce Course Order"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:176
#: frontend/src/pages/Programs/ProgramForm.vue:177
msgid "Enroll Member to Program"
msgstr ""
@@ -2458,15 +2476,15 @@ msgstr ""
msgid "Evaluator Schedule"
msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:163
#: frontend/src/components/Settings/Evaluators.vue:160
msgid "Evaluator added successfully"
msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:196
#: frontend/src/components/Settings/Evaluators.vue:193
msgid "Evaluator deleted successfully"
msgstr ""
#: lms/lms/api.py:1392
#: lms/lms/api.py:1416
msgid "Evaluator does not exist."
msgstr ""
@@ -2638,10 +2656,15 @@ msgstr ""
msgid "File Type"
msgstr ""
#: frontend/src/components/Settings/Transactions.vue:15
msgid "Filter by Billing Name"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:23
msgid "Filter by Exercise"
msgstr ""
#: frontend/src/components/Settings/Transactions.vue:20
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:28
msgid "Filter by Member"
msgstr ""
@@ -2675,7 +2698,7 @@ msgid "Free"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:179
#: frontend/src/pages/Jobs.vue:197
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Freelance"
msgstr ""
@@ -2717,7 +2740,7 @@ msgid "Full Name"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:176
#: frontend/src/pages/Jobs.vue:194
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Full Time"
msgstr ""
@@ -2739,10 +2762,15 @@ msgid "GST Number"
msgstr ""
#. Label of the gstin (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:76
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "GSTIN"
msgstr ""
#: frontend/src/components/Settings/PaymentGateways.vue:134
msgid "Gateway"
msgstr ""
#. Label of the general_tab (Tab Break) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "General"
@@ -2921,6 +2949,11 @@ msgstr ""
msgid "Host"
msgstr ""
#. Option for the 'Work Mode' (Select) field in DocType 'Job Opportunity'
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Hybrid"
msgstr ""
#. Label of the current (Check) field in DocType 'Work Experience'
#: lms/lms/doctype/work_experience/work_experience.json
msgid "I am currently working here"
@@ -3195,7 +3228,7 @@ msgstr ""
msgid "Issue Date"
msgstr ""
#: frontend/src/components/AppSidebar.vue:609
#: frontend/src/components/AppSidebar.vue:614
msgid "Issue a Certificate"
msgstr ""
@@ -3271,7 +3304,7 @@ msgstr ""
#. 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/Jobs.vue:185
#: frontend/src/pages/Jobs.vue:212
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Jobs"
msgstr ""
@@ -3619,6 +3652,10 @@ msgstr ""
msgid "Learning Consistency"
msgstr ""
#: frontend/src/components/AppSidebar.vue:598
msgid "Learning Paths"
msgstr ""
#. Label of the left_at (Datetime) field in DocType 'LMS Live Class
#. Participant'
#: lms/lms/doctype/lms_live_class_participant/lms_live_class_participant.json
@@ -3751,6 +3788,7 @@ msgstr ""
#: frontend/src/components/Modals/CourseProgressSummary.vue:86
#: frontend/src/components/Settings/Evaluators.vue:81
#: frontend/src/components/Settings/Members.vue:79
#: frontend/src/components/Settings/Transactions.vue:94
#: frontend/src/pages/Assignments.vue:66 frontend/src/pages/Batches.vue:82
#: frontend/src/pages/CertifiedParticipants.vue:98
#: frontend/src/pages/Courses.vue:77
@@ -3784,7 +3822,7 @@ msgstr ""
msgid "Login"
msgstr ""
#: frontend/src/components/UserDropdown.vue:174
#: frontend/src/components/UserDropdown.vue:176
msgid "Login to Frappe Cloud?"
msgstr ""
@@ -3938,6 +3976,7 @@ msgstr ""
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:26
#: frontend/src/components/Settings/BadgeAssignments.vue:179
#: frontend/src/components/Settings/BadgeForm.vue:215
#: frontend/src/components/Settings/TransactionDetails.vue:26
#: frontend/src/components/Settings/ZoomSettings.vue:187
#: frontend/src/pages/AssignmentSubmissionList.vue:14
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:268
@@ -4071,7 +4110,7 @@ msgstr ""
msgid "Member Username"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:462
#: frontend/src/pages/Programs/ProgramForm.vue:463
msgid "Member added to program successfully"
msgstr ""
@@ -4155,7 +4194,7 @@ msgstr ""
msgid "Meta Tags"
msgstr ""
#: lms/lms/api.py:1432
#: lms/lms/api.py:1456
msgid "Meta tags should be a list."
msgstr ""
@@ -4207,11 +4246,11 @@ msgstr ""
msgid "Modified By"
msgstr ""
#: lms/lms/api.py:187
#: lms/lms/api.py:188
msgid "Module Name is incorrect or does not exist."
msgstr ""
#: lms/lms/api.py:183
#: lms/lms/api.py:184
msgid "Module is incorrect."
msgstr ""
@@ -4222,7 +4261,7 @@ msgstr ""
msgid "Monday"
msgstr ""
#: frontend/src/components/AppSidebar.vue:617
#: frontend/src/components/AppSidebar.vue:622
msgid "Monetization"
msgstr ""
@@ -4266,6 +4305,7 @@ msgstr ""
#: frontend/src/components/Settings/EmailTemplates.vue:17
#: frontend/src/components/Settings/Evaluators.vue:17
#: frontend/src/components/Settings/Members.vue:17
#: frontend/src/components/Settings/PaymentGateways.vue:16
#: frontend/src/components/Settings/ZoomSettings.vue:17
#: frontend/src/pages/Courses.vue:312
#: frontend/src/pages/Programs/Programs.vue:10
@@ -4293,6 +4333,10 @@ msgstr ""
msgid "New Job Applicant"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7
msgid "New Payment Gateway"
msgstr ""
#: frontend/src/pages/QuizForm.vue:137
msgid "New Question"
msgstr ""
@@ -4397,7 +4441,7 @@ msgstr ""
msgid "No live classes scheduled"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:166
#: frontend/src/pages/Programs/ProgramForm.vue:167
msgid "No members added yet."
msgstr ""
@@ -4467,7 +4511,6 @@ msgstr ""
#: frontend/src/components/Assignment.vue:36
#: frontend/src/components/Settings/BrandSettings.vue:10
#: frontend/src/components/Settings/PaymentSettings.vue:9
#: frontend/src/components/Settings/SettingDetails.vue:10
#: frontend/src/pages/Programs/ProgramForm.vue:16
#: frontend/src/pages/QuizForm.vue:8 frontend/src/pages/QuizSubmission.vue:9
@@ -4520,6 +4563,11 @@ msgstr ""
msgid "Offline"
msgstr ""
#. Option for the 'Work Mode' (Select) field in DocType 'Job Opportunity'
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "On-site"
msgstr ""
#: lms/templates/emails/certification.html:16
msgid "Once again, congratulations on this significant accomplishment."
msgstr ""
@@ -4567,6 +4615,10 @@ msgstr ""
msgid "Open Ended"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:88
msgid "Open the "
msgstr ""
#. Label of the option (Data) field in DocType 'LMS Option'
#: frontend/src/components/Modals/Question.vue:70
#: lms/lms/doctype/lms_option/lms_option.json
@@ -4603,6 +4655,7 @@ msgid "Orange"
msgstr ""
#. Label of the order_id (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:70
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Order ID"
msgstr ""
@@ -4640,6 +4693,7 @@ msgid "Owner"
msgstr ""
#. Label of the pan (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:77
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "PAN"
msgstr ""
@@ -4685,7 +4739,7 @@ msgid "Pan Number"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:177
#: frontend/src/pages/Jobs.vue:195
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Part Time"
msgstr ""
@@ -4745,21 +4799,38 @@ msgstr ""
#. Label of the payment_details_section (Section Break) field in DocType 'LMS
#. Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:42
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment Details"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:18
msgid "Payment For Certificate"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:51
msgid "Payment For Document"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:46
msgid "Payment For Document Type"
msgstr ""
#. Label of the payment_gateway (Data) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Payment Gateway"
msgstr ""
#. Label of the payment_id (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:79
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment ID"
msgstr ""
#. Label of the payment_received (Check) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:13
#: frontend/src/components/Settings/Transactions.vue:25
#: frontend/src/components/Settings/Transactions.vue:226
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment Received"
msgstr ""
@@ -4781,6 +4852,8 @@ msgid "Payment for "
msgstr ""
#. Label of the payment_for_certificate (Check) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/Transactions.vue:30
#: frontend/src/components/Settings/Transactions.vue:233
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment for Certificate"
msgstr ""
@@ -4921,7 +4994,7 @@ msgstr ""
msgid "Please login to access this page."
msgstr ""
#: lms/lms/api.py:179
#: lms/lms/api.py:180
msgid "Please login to continue with payment."
msgstr ""
@@ -4938,7 +5011,7 @@ msgstr ""
msgid "Please run the code to execute the test cases."
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:420
#: frontend/src/pages/Programs/ProgramForm.vue:421
msgid "Please select a course"
msgstr ""
@@ -4954,7 +5027,7 @@ msgstr ""
msgid "Please select a future date and time."
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:447
#: frontend/src/pages/Programs/ProgramForm.vue:448
msgid "Please select a member"
msgstr ""
@@ -5144,7 +5217,7 @@ msgstr ""
msgid "Program Courses"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:205
#: frontend/src/pages/Programs/ProgramForm.vue:206
msgid "Program Member"
msgstr ""
@@ -5153,15 +5226,15 @@ msgstr ""
msgid "Program Members"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:380
#: frontend/src/pages/Programs/ProgramForm.vue:381
msgid "Program created successfully"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:551
#: frontend/src/pages/Programs/ProgramForm.vue:552
msgid "Program deleted successfully"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:399
#: frontend/src/pages/Programs/ProgramForm.vue:400
msgid "Program updated successfully"
msgstr ""
@@ -5227,7 +5300,7 @@ msgid "Progress Distribution"
msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:99
#: frontend/src/pages/Programs/ProgramForm.vue:124
#: frontend/src/pages/Programs/ProgramForm.vue:125
msgid "Progress Summary"
msgstr ""
@@ -5405,7 +5478,7 @@ msgstr ""
msgid "Quiz will appear at the bottom of the lesson."
msgstr ""
#: frontend/src/components/AppSidebar.vue:601
#: frontend/src/components/AppSidebar.vue:606
#: frontend/src/pages/QuizForm.vue:396 frontend/src/pages/Quizzes.vue:275
#: frontend/src/pages/Quizzes.vue:285 lms/www/lms.py:249
msgid "Quizzes"
@@ -5495,6 +5568,11 @@ msgstr ""
msgid "Related Courses"
msgstr ""
#. Option for the 'Work Mode' (Select) field in DocType 'Job Opportunity'
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Remote"
msgstr ""
#: frontend/src/components/Controls/Uploader.vue:34
#: frontend/src/pages/BatchForm.vue:246 frontend/src/pages/CourseForm.vue:119
msgid "Remove"
@@ -5585,7 +5663,7 @@ msgstr ""
msgid "Role updated successfully"
msgstr ""
#: frontend/src/components/AppSidebar.vue:629
#: frontend/src/components/AppSidebar.vue:634
msgid "Roles"
msgstr ""
@@ -5669,11 +5747,13 @@ msgstr ""
#: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
#: frontend/src/components/Settings/BadgeForm.vue:78
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:38
#: frontend/src/components/Settings/TransactionDetails.vue:96
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17
#: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseForm.vue:101
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseModal.vue:9
#: frontend/src/pages/Programs/ProgramForm.vue:233
#: frontend/src/pages/Programs/ProgramForm.vue:234
#: frontend/src/pages/QuizForm.vue:43 frontend/src/pages/QuizSubmission.vue:14
#: frontend/src/pages/Quizzes.vue:105
msgid "Save"
@@ -5775,6 +5855,10 @@ msgstr ""
msgid "Select Date"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22
msgid "Select Payment Gateway"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseModal.vue:23
msgid "Select a Programming Exercise"
msgstr ""
@@ -5830,11 +5914,11 @@ msgstr ""
msgid "Setting up"
msgstr ""
#: frontend/src/components/AppSidebar.vue:622
#: frontend/src/components/AppSidebar.vue:627
msgid "Setting up payment gateway"
msgstr ""
#: frontend/src/components/AppSidebar.vue:627
#: frontend/src/components/AppSidebar.vue:632
#: frontend/src/components/Settings/Settings.vue:7
#: frontend/src/pages/BatchForm.vue:53 frontend/src/pages/CourseForm.vue:142
#: frontend/src/pages/ProfileRoles.vue:4
@@ -5992,6 +6076,7 @@ msgstr ""
#. Label of the source (Link) field in DocType 'LMS Payment'
#. Label of the source (Data) field in DocType 'LMS Source'
#. Label of the source (Data) field in DocType 'LMS Video Watch Duration'
#: frontend/src/components/Settings/TransactionDetails.vue:35
#: lms/lms/doctype/lms_batch_enrollment/lms_batch_enrollment.json
#: lms/lms/doctype/lms_payment/lms_payment.json
#: lms/lms/doctype/lms_source/lms_source.json
@@ -6104,7 +6189,7 @@ msgstr ""
#: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19
#: frontend/src/pages/JobForm.vue:46
#: frontend/src/pages/JobForm.vue:53
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:280
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/cohort/cohort.json
@@ -6241,7 +6326,7 @@ msgstr ""
msgid "Sunday"
msgstr ""
#: lms/lms/api.py:1057
#: lms/lms/api.py:1081
msgid "Suspicious pattern found in {0}: {1}"
msgstr ""
@@ -6704,6 +6789,10 @@ msgstr ""
msgid "Training Feedback"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:5
msgid "Transaction Details"
msgstr ""
#. Option for the 'Location Preference' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Travel"
@@ -6836,7 +6925,6 @@ msgid "Upcoming Live Classes"
msgstr ""
#: frontend/src/components/Settings/BrandSettings.vue:24
#: frontend/src/components/Settings/PaymentSettings.vue:27
#: frontend/src/components/Settings/SettingDetails.vue:23
msgid "Update"
msgstr ""
@@ -7071,6 +7159,12 @@ msgstr ""
msgid "Work Experience Details"
msgstr ""
#. Label of the work_mode (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:32 frontend/src/pages/Jobs.vue:73
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Work Mode"
msgstr ""
#: frontend/src/components/CourseReviews.vue:8
#: frontend/src/components/Modals/ReviewModal.vue:5
#: lms/templates/reviews.html:117
@@ -7101,11 +7195,11 @@ msgstr ""
msgid "You are already certified for this course. Click on the card below to open your certificate."
msgstr ""
#: lms/lms/api.py:199
#: lms/lms/api.py:200
msgid "You are already enrolled for this batch."
msgstr ""
#: lms/lms/api.py:193
#: lms/lms/api.py:194
msgid "You are already enrolled for this course."
msgstr ""
@@ -7179,7 +7273,7 @@ msgstr ""
msgid "You have already exceeded the maximum number of attempts allowed for this quiz."
msgstr ""
#: lms/lms/api.py:223
#: lms/lms/api.py:224
msgid "You have already purchased the certificate for this course."
msgstr ""
@@ -7350,11 +7444,11 @@ msgstr ""
msgid "and then 'Add to Home Screen'"
msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:108
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114
msgid "applicant"
msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:108
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114
msgid "applicants"
msgstr ""
@@ -7507,7 +7601,7 @@ msgstr ""
msgid "{0} Quizzes"
msgstr ""
#: lms/lms/api.py:836 lms/lms/api.py:844
#: lms/lms/api.py:838 lms/lms/api.py:846
msgid "{0} Settings not found"
msgstr ""
@@ -7563,6 +7657,10 @@ msgstr ""
msgid "{0} mentioned you in a comment in {1}"
msgstr ""
#: lms/lms/api.py:887
msgid "{0} not found"
msgstr ""
#: lms/lms/utils.py:450
msgid "{0}k"
msgstr ""
+170 -72
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2025-09-19 16:04+0000\n"
"PO-Revision-Date: 2025-09-24 07:16\n"
"POT-Creation-Date: 2025-09-26 16:04+0000\n"
"PO-Revision-Date: 2025-09-28 08:29\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Norwegian Bokmal\n"
"MIME-Version: 1.0\n"
@@ -145,8 +145,8 @@ msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:93
#: frontend/src/components/Settings/Members.vue:91
#: frontend/src/pages/Programs/ProgramForm.vue:56
#: frontend/src/pages/Programs/ProgramForm.vue:130
#: frontend/src/pages/Programs/ProgramForm.vue:179
#: frontend/src/pages/Programs/ProgramForm.vue:131
#: frontend/src/pages/Programs/ProgramForm.vue:180
msgid "Add"
msgstr ""
@@ -156,7 +156,7 @@ msgstr ""
msgid "Add Chapter"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:175
#: frontend/src/pages/Programs/ProgramForm.vue:176
msgid "Add Course to Program"
msgstr ""
@@ -221,6 +221,10 @@ msgstr ""
msgid "Add a new question"
msgstr ""
#: frontend/src/components/AppSidebar.vue:600
msgid "Add a program"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseModal.vue:5
msgid "Add a programming exercise to your lesson"
msgstr ""
@@ -274,6 +278,7 @@ msgid "Add your first lesson"
msgstr ""
#. Label of the address (Link) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:56
#: frontend/src/pages/Billing.vue:64
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Address"
@@ -353,6 +358,8 @@ msgstr ""
#. Label of the amount (Currency) field in DocType 'LMS Batch'
#. Label of the course_price (Currency) field in DocType 'LMS Course'
#. Label of the amount (Currency) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:68
#: frontend/src/components/Settings/Transactions.vue:219
#: frontend/src/pages/BatchForm.vue:278 frontend/src/pages/CourseForm.vue:262
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -460,7 +467,7 @@ msgstr ""
msgid "Are you sure you want to enroll?"
msgstr ""
#: frontend/src/components/UserDropdown.vue:175
#: frontend/src/components/UserDropdown.vue:177
msgid "Are you sure you want to login to your Frappe Cloud dashboard?"
msgstr ""
@@ -496,7 +503,7 @@ msgid "Assessment {0} has already been added to this batch."
msgstr ""
#. Label of the show_assessments (Check) field in DocType 'LMS Settings'
#: frontend/src/components/AppSidebar.vue:598
#: frontend/src/components/AppSidebar.vue:603
#: frontend/src/components/Assessments.vue:5
#: frontend/src/components/BatchStudents.vue:32
#: lms/lms/doctype/lms_settings/lms_settings.json
@@ -534,7 +541,7 @@ msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/templates/assignment.html:3
msgid "Assignment"
msgstr ""
msgstr "Tildeling"
#. Label of the assignment_attachment (Attach) field in DocType 'LMS Assignment
#. Submission'
@@ -578,11 +585,11 @@ msgstr ""
msgid "Assignment will appear at the bottom of the lesson."
msgstr ""
#: frontend/src/components/AppSidebar.vue:602
#: frontend/src/components/AppSidebar.vue:607
#: frontend/src/components/Settings/Badges.vue:163
#: frontend/src/pages/Assignments.vue:208 lms/www/lms.py:271
msgid "Assignments"
msgstr "Tilordninger"
msgstr "Tildelinger"
#: lms/lms/doctype/lms_question/lms_question.py:44
msgid "At least one option must be correct for this question."
@@ -702,6 +709,7 @@ msgstr ""
#: frontend/src/components/Modals/Event.vue:32
#: frontend/src/components/Settings/BadgeForm.vue:195
#: frontend/src/components/Settings/Badges.vue:200
#: frontend/src/components/Settings/TransactionDetails.vue:92
#: lms/lms/doctype/lms_batch_enrollment/lms_batch_enrollment.json
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
@@ -815,11 +823,11 @@ msgstr ""
msgid "Batch end date cannot be before the batch start date"
msgstr ""
#: lms/lms/api.py:210
#: lms/lms/api.py:211
msgid "Batch has already started."
msgstr ""
#: lms/lms/api.py:205
#: lms/lms/api.py:206
msgid "Batch is sold out."
msgstr ""
@@ -857,6 +865,8 @@ msgid "Billing Details"
msgstr ""
#. Label of the billing_name (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:31
#: frontend/src/components/Settings/Transactions.vue:213
#: frontend/src/pages/Billing.vue:70
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Billing Name"
@@ -1002,7 +1012,7 @@ msgstr ""
#. Enrollment'
#. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace
#: frontend/src/components/AppSidebar.vue:606
#: frontend/src/components/AppSidebar.vue:611
#: frontend/src/components/Modals/Event.vue:381
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58
#: frontend/src/pages/CourseCertification.vue:10
@@ -1145,7 +1155,7 @@ msgstr ""
#. Label of the city (Data) field in DocType 'User'
#. Label of the location (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/Billing.vue:81 frontend/src/pages/JobForm.vue:34
#: frontend/src/pages/Billing.vue:81 frontend/src/pages/JobForm.vue:41
#: lms/fixtures/custom_field.json
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "City"
@@ -1315,25 +1325,25 @@ msgstr "Selskap"
#. Label of the section_break_6 (Section Break) field in DocType 'Job
#. Opportunity'
#: frontend/src/pages/JobForm.vue:56
#: frontend/src/pages/JobForm.vue:63
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Details"
msgstr ""
#. Label of the company_email_address (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:75
#: frontend/src/pages/JobForm.vue:82
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Email Address"
msgstr ""
#. Label of the company_logo (Attach Image) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:80
#: frontend/src/pages/JobForm.vue:87
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Logo"
msgstr ""
#. Label of the company_name (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:62
#: frontend/src/pages/JobForm.vue:69
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Name"
msgstr ""
@@ -1344,7 +1354,7 @@ msgid "Company Type"
msgstr ""
#. Label of the company_website (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:68
#: frontend/src/pages/JobForm.vue:75
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Website"
msgstr ""
@@ -1414,9 +1424,9 @@ msgstr ""
msgid "Configurations"
msgstr ""
#: frontend/src/components/UserDropdown.vue:180
#: frontend/src/components/UserDropdown.vue:182
msgid "Confirm"
msgstr ""
msgstr "Bekreft"
#: frontend/src/pages/Programs/ProgramEnrollment.vue:100
msgid "Confirm Enrollment"
@@ -1461,7 +1471,7 @@ msgid "Continue Learning"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:178
#: frontend/src/pages/Jobs.vue:196
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Contract"
msgstr ""
@@ -1491,7 +1501,7 @@ msgstr ""
#. Label of the country (Link) field in DocType 'User'
#. Label of the country (Link) field in DocType 'Job Opportunity'
#. Label of the country (Link) field in DocType 'Payment Country'
#: frontend/src/pages/Billing.vue:92 frontend/src/pages/JobForm.vue:40
#: frontend/src/pages/Billing.vue:92 frontend/src/pages/JobForm.vue:47
#: frontend/src/pages/Jobs.vue:57 lms/fixtures/custom_field.json
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/payment_country/payment_country.json
@@ -1533,7 +1543,8 @@ msgstr ""
#: frontend/src/components/Modals/Event.vue:24
#: frontend/src/components/Settings/BadgeForm.vue:194
#: frontend/src/components/Settings/Badges.vue:199
#: frontend/src/pages/Programs/ProgramForm.vue:195
#: frontend/src/components/Settings/TransactionDetails.vue:91
#: frontend/src/pages/Programs/ProgramForm.vue:196
#: frontend/src/pages/Programs/Programs.vue:35
#: lms/lms/doctype/batch_course/batch_course.json
#: lms/lms/doctype/cohort/cohort.json
@@ -1684,7 +1695,7 @@ msgstr ""
msgid "Course Title"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:436
#: frontend/src/pages/Programs/ProgramForm.vue:437
msgid "Course added to program successfully"
msgstr ""
@@ -1836,6 +1847,7 @@ msgstr ""
#. Label of the currency (Link) field in DocType 'LMS Batch'
#. Label of the currency (Link) field in DocType 'LMS Course'
#. Label of the currency (Link) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:64
#: frontend/src/pages/BatchForm.vue:285 frontend/src/pages/CourseForm.vue:279
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -1852,7 +1864,7 @@ msgstr ""
msgid "Current Streak"
msgstr ""
#: frontend/src/components/AppSidebar.vue:612
#: frontend/src/components/AppSidebar.vue:617
msgid "Custom Certificate Templates"
msgstr ""
@@ -1954,7 +1966,7 @@ msgstr ""
#: frontend/src/components/Settings/Badges.vue:171
#: frontend/src/pages/BatchForm.vue:565 frontend/src/pages/CourseForm.vue:597
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseForm.vue:67
#: frontend/src/pages/Programs/ProgramForm.vue:230
#: frontend/src/pages/Programs/ProgramForm.vue:231
msgid "Delete"
msgstr ""
@@ -2004,7 +2016,7 @@ msgstr ""
#. Label of the description (Small Text) field in DocType 'Work Experience'
#: frontend/src/components/Modals/LiveClassModal.vue:80
#: frontend/src/components/Settings/BadgeForm.vue:32
#: frontend/src/pages/JobForm.vue:125
#: frontend/src/pages/JobForm.vue:132
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/cohort/cohort.json
@@ -2045,6 +2057,7 @@ msgstr ""
#. Label of the disabled (Check) field in DocType 'Job Opportunity'
#: frontend/src/components/Settings/Badges.vue:56
#: frontend/src/components/Settings/PaymentGateways.vue:55
#: frontend/src/components/Settings/ZoomSettings.vue:66
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Disabled"
@@ -2145,6 +2158,10 @@ msgstr ""
msgid "Edit Email Template"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8
msgid "Edit Payment Gateway"
msgstr ""
#: frontend/src/pages/Profile.vue:72
msgid "Edit Profile"
msgstr "Rediger profil"
@@ -2250,6 +2267,7 @@ msgstr ""
#: frontend/src/components/Modals/ZoomAccountModal.vue:23
#: frontend/src/components/Settings/BadgeForm.vue:14
#: frontend/src/components/Settings/Badges.vue:53
#: frontend/src/components/Settings/PaymentGateways.vue:52
#: frontend/src/components/Settings/ZoomSettings.vue:63
#: lms/lms/doctype/lms_badge/lms_badge.json
#: lms/lms/doctype/lms_zoom_settings/lms_zoom_settings.json
@@ -2301,7 +2319,7 @@ msgstr ""
msgid "Enforce Course Order"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:176
#: frontend/src/pages/Programs/ProgramForm.vue:177
msgid "Enroll Member to Program"
msgstr ""
@@ -2460,15 +2478,15 @@ msgstr ""
msgid "Evaluator Schedule"
msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:163
#: frontend/src/components/Settings/Evaluators.vue:160
msgid "Evaluator added successfully"
msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:196
#: frontend/src/components/Settings/Evaluators.vue:193
msgid "Evaluator deleted successfully"
msgstr ""
#: lms/lms/api.py:1392
#: lms/lms/api.py:1416
msgid "Evaluator does not exist."
msgstr ""
@@ -2640,10 +2658,15 @@ msgstr ""
msgid "File Type"
msgstr "Filtype"
#: frontend/src/components/Settings/Transactions.vue:15
msgid "Filter by Billing Name"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:23
msgid "Filter by Exercise"
msgstr ""
#: frontend/src/components/Settings/Transactions.vue:20
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:28
msgid "Filter by Member"
msgstr ""
@@ -2677,7 +2700,7 @@ msgid "Free"
msgstr "Gratis"
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:179
#: frontend/src/pages/Jobs.vue:197
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Freelance"
msgstr ""
@@ -2719,7 +2742,7 @@ msgid "Full Name"
msgstr "Fullt navn"
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:176
#: frontend/src/pages/Jobs.vue:194
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Full Time"
msgstr ""
@@ -2741,10 +2764,15 @@ msgid "GST Number"
msgstr ""
#. Label of the gstin (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:76
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "GSTIN"
msgstr ""
#: frontend/src/components/Settings/PaymentGateways.vue:134
msgid "Gateway"
msgstr ""
#. Label of the general_tab (Tab Break) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "General"
@@ -2923,6 +2951,11 @@ msgstr "Hjem"
msgid "Host"
msgstr ""
#. Option for the 'Work Mode' (Select) field in DocType 'Job Opportunity'
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Hybrid"
msgstr ""
#. Label of the current (Check) field in DocType 'Work Experience'
#: lms/lms/doctype/work_experience/work_experience.json
msgid "I am currently working here"
@@ -3197,7 +3230,7 @@ msgstr ""
msgid "Issue Date"
msgstr ""
#: frontend/src/components/AppSidebar.vue:609
#: frontend/src/components/AppSidebar.vue:614
msgid "Issue a Certificate"
msgstr ""
@@ -3273,7 +3306,7 @@ msgstr ""
#. 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/Jobs.vue:185
#: frontend/src/pages/Jobs.vue:212
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Jobs"
msgstr ""
@@ -3604,7 +3637,7 @@ msgstr "Språk"
#: frontend/src/components/Modals/EditProfile.vue:70
msgid "Last Name"
msgstr ""
msgstr "Etternavn"
#. Label of the latest_submission (Link) field in DocType 'Exercise Latest
#. Submission'
@@ -3621,6 +3654,10 @@ msgstr ""
msgid "Learning Consistency"
msgstr ""
#: frontend/src/components/AppSidebar.vue:598
msgid "Learning Paths"
msgstr ""
#. Label of the left_at (Datetime) field in DocType 'LMS Live Class
#. Participant'
#: lms/lms/doctype/lms_live_class_participant/lms_live_class_participant.json
@@ -3753,6 +3790,7 @@ msgstr ""
#: frontend/src/components/Modals/CourseProgressSummary.vue:86
#: frontend/src/components/Settings/Evaluators.vue:81
#: frontend/src/components/Settings/Members.vue:79
#: frontend/src/components/Settings/Transactions.vue:94
#: frontend/src/pages/Assignments.vue:66 frontend/src/pages/Batches.vue:82
#: frontend/src/pages/CertifiedParticipants.vue:98
#: frontend/src/pages/Courses.vue:77
@@ -3773,12 +3811,12 @@ msgstr ""
#: lms/lms/doctype/education_detail/education_detail.json
#: lms/lms/doctype/work_experience/work_experience.json
msgid "Location"
msgstr ""
msgstr "Sted"
#. Label of the location_preference (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Location Preference"
msgstr ""
msgstr "Stedspreferanse"
#: frontend/src/components/NoPermission.vue:28
#: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:196
@@ -3786,7 +3824,7 @@ msgstr ""
msgid "Login"
msgstr "Logg inn"
#: frontend/src/components/UserDropdown.vue:174
#: frontend/src/components/UserDropdown.vue:176
msgid "Login to Frappe Cloud?"
msgstr ""
@@ -3940,6 +3978,7 @@ msgstr ""
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:26
#: frontend/src/components/Settings/BadgeAssignments.vue:179
#: frontend/src/components/Settings/BadgeForm.vue:215
#: frontend/src/components/Settings/TransactionDetails.vue:26
#: frontend/src/components/Settings/ZoomSettings.vue:187
#: frontend/src/pages/AssignmentSubmissionList.vue:14
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:268
@@ -4073,7 +4112,7 @@ msgstr ""
msgid "Member Username"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:462
#: frontend/src/pages/Programs/ProgramForm.vue:463
msgid "Member added to program successfully"
msgstr ""
@@ -4157,7 +4196,7 @@ msgstr ""
msgid "Meta Tags"
msgstr "Meta-tagger"
#: lms/lms/api.py:1432
#: lms/lms/api.py:1456
msgid "Meta tags should be a list."
msgstr "Meta-tagger bør være en liste."
@@ -4209,11 +4248,11 @@ msgstr ""
msgid "Modified By"
msgstr ""
#: lms/lms/api.py:187
#: lms/lms/api.py:188
msgid "Module Name is incorrect or does not exist."
msgstr ""
#: lms/lms/api.py:183
#: lms/lms/api.py:184
msgid "Module is incorrect."
msgstr ""
@@ -4224,7 +4263,7 @@ msgstr ""
msgid "Monday"
msgstr ""
#: frontend/src/components/AppSidebar.vue:617
#: frontend/src/components/AppSidebar.vue:622
msgid "Monetization"
msgstr ""
@@ -4268,6 +4307,7 @@ msgstr ""
#: frontend/src/components/Settings/EmailTemplates.vue:17
#: frontend/src/components/Settings/Evaluators.vue:17
#: frontend/src/components/Settings/Members.vue:17
#: frontend/src/components/Settings/PaymentGateways.vue:16
#: frontend/src/components/Settings/ZoomSettings.vue:17
#: frontend/src/pages/Courses.vue:312
#: frontend/src/pages/Programs/Programs.vue:10
@@ -4295,6 +4335,10 @@ msgstr ""
msgid "New Job Applicant"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7
msgid "New Payment Gateway"
msgstr ""
#: frontend/src/pages/QuizForm.vue:137
msgid "New Question"
msgstr ""
@@ -4399,7 +4443,7 @@ msgstr ""
msgid "No live classes scheduled"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:166
#: frontend/src/pages/Programs/ProgramForm.vue:167
msgid "No members added yet."
msgstr ""
@@ -4469,7 +4513,6 @@ msgstr ""
#: frontend/src/components/Assignment.vue:36
#: frontend/src/components/Settings/BrandSettings.vue:10
#: frontend/src/components/Settings/PaymentSettings.vue:9
#: frontend/src/components/Settings/SettingDetails.vue:10
#: frontend/src/pages/Programs/ProgramForm.vue:16
#: frontend/src/pages/QuizForm.vue:8 frontend/src/pages/QuizSubmission.vue:9
@@ -4522,6 +4565,11 @@ msgstr ""
msgid "Offline"
msgstr ""
#. Option for the 'Work Mode' (Select) field in DocType 'Job Opportunity'
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "On-site"
msgstr ""
#: lms/templates/emails/certification.html:16
msgid "Once again, congratulations on this significant accomplishment."
msgstr ""
@@ -4569,6 +4617,10 @@ msgstr ""
msgid "Open Ended"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:88
msgid "Open the "
msgstr ""
#. Label of the option (Data) field in DocType 'LMS Option'
#: frontend/src/components/Modals/Question.vue:70
#: lms/lms/doctype/lms_option/lms_option.json
@@ -4605,6 +4657,7 @@ msgid "Orange"
msgstr ""
#. Label of the order_id (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:70
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Order ID"
msgstr ""
@@ -4642,6 +4695,7 @@ msgid "Owner"
msgstr ""
#. Label of the pan (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:77
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "PAN"
msgstr ""
@@ -4687,7 +4741,7 @@ msgid "Pan Number"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:177
#: frontend/src/pages/Jobs.vue:195
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Part Time"
msgstr ""
@@ -4747,21 +4801,38 @@ msgstr ""
#. Label of the payment_details_section (Section Break) field in DocType 'LMS
#. Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:42
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment Details"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:18
msgid "Payment For Certificate"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:51
msgid "Payment For Document"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:46
msgid "Payment For Document Type"
msgstr ""
#. Label of the payment_gateway (Data) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Payment Gateway"
msgstr ""
#. Label of the payment_id (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:79
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment ID"
msgstr ""
#. Label of the payment_received (Check) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:13
#: frontend/src/components/Settings/Transactions.vue:25
#: frontend/src/components/Settings/Transactions.vue:226
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment Received"
msgstr ""
@@ -4783,6 +4854,8 @@ msgid "Payment for "
msgstr ""
#. Label of the payment_for_certificate (Check) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/Transactions.vue:30
#: frontend/src/components/Settings/Transactions.vue:233
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment for Certificate"
msgstr ""
@@ -4923,7 +4996,7 @@ msgstr ""
msgid "Please login to access this page."
msgstr ""
#: lms/lms/api.py:179
#: lms/lms/api.py:180
msgid "Please login to continue with payment."
msgstr ""
@@ -4940,7 +5013,7 @@ msgstr ""
msgid "Please run the code to execute the test cases."
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:420
#: frontend/src/pages/Programs/ProgramForm.vue:421
msgid "Please select a course"
msgstr ""
@@ -4956,7 +5029,7 @@ msgstr ""
msgid "Please select a future date and time."
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:447
#: frontend/src/pages/Programs/ProgramForm.vue:448
msgid "Please select a member"
msgstr ""
@@ -5058,7 +5131,7 @@ msgstr ""
#. Label of the preferred_location (Data) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Preferred Location"
msgstr ""
msgstr "Foretrukket sted"
#. Label of the prevent_skipping_videos (Check) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
@@ -5146,7 +5219,7 @@ msgstr ""
msgid "Program Courses"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:205
#: frontend/src/pages/Programs/ProgramForm.vue:206
msgid "Program Member"
msgstr ""
@@ -5155,15 +5228,15 @@ msgstr ""
msgid "Program Members"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:380
#: frontend/src/pages/Programs/ProgramForm.vue:381
msgid "Program created successfully"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:551
#: frontend/src/pages/Programs/ProgramForm.vue:552
msgid "Program deleted successfully"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:399
#: frontend/src/pages/Programs/ProgramForm.vue:400
msgid "Program updated successfully"
msgstr ""
@@ -5229,7 +5302,7 @@ msgid "Progress Distribution"
msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:99
#: frontend/src/pages/Programs/ProgramForm.vue:124
#: frontend/src/pages/Programs/ProgramForm.vue:125
msgid "Progress Summary"
msgstr ""
@@ -5407,7 +5480,7 @@ msgstr ""
msgid "Quiz will appear at the bottom of the lesson."
msgstr ""
#: frontend/src/components/AppSidebar.vue:601
#: frontend/src/components/AppSidebar.vue:606
#: frontend/src/pages/QuizForm.vue:396 frontend/src/pages/Quizzes.vue:275
#: frontend/src/pages/Quizzes.vue:285 lms/www/lms.py:249
msgid "Quizzes"
@@ -5497,6 +5570,11 @@ msgstr ""
msgid "Related Courses"
msgstr ""
#. Option for the 'Work Mode' (Select) field in DocType 'Job Opportunity'
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Remote"
msgstr ""
#: frontend/src/components/Controls/Uploader.vue:34
#: frontend/src/pages/BatchForm.vue:246 frontend/src/pages/CourseForm.vue:119
msgid "Remove"
@@ -5587,7 +5665,7 @@ msgstr ""
msgid "Role updated successfully"
msgstr ""
#: frontend/src/components/AppSidebar.vue:629
#: frontend/src/components/AppSidebar.vue:634
msgid "Roles"
msgstr "Roller"
@@ -5671,11 +5749,13 @@ msgstr ""
#: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
#: frontend/src/components/Settings/BadgeForm.vue:78
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:38
#: frontend/src/components/Settings/TransactionDetails.vue:96
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17
#: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseForm.vue:101
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseModal.vue:9
#: frontend/src/pages/Programs/ProgramForm.vue:233
#: frontend/src/pages/Programs/ProgramForm.vue:234
#: frontend/src/pages/QuizForm.vue:43 frontend/src/pages/QuizSubmission.vue:14
#: frontend/src/pages/Quizzes.vue:105
msgid "Save"
@@ -5777,6 +5857,10 @@ msgstr ""
msgid "Select Date"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22
msgid "Select Payment Gateway"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseModal.vue:23
msgid "Select a Programming Exercise"
msgstr ""
@@ -5832,11 +5916,11 @@ msgstr ""
msgid "Setting up"
msgstr ""
#: frontend/src/components/AppSidebar.vue:622
#: frontend/src/components/AppSidebar.vue:627
msgid "Setting up payment gateway"
msgstr ""
#: frontend/src/components/AppSidebar.vue:627
#: frontend/src/components/AppSidebar.vue:632
#: frontend/src/components/Settings/Settings.vue:7
#: frontend/src/pages/BatchForm.vue:53 frontend/src/pages/CourseForm.vue:142
#: frontend/src/pages/ProfileRoles.vue:4
@@ -5994,6 +6078,7 @@ msgstr ""
#. Label of the source (Link) field in DocType 'LMS Payment'
#. Label of the source (Data) field in DocType 'LMS Source'
#. Label of the source (Data) field in DocType 'LMS Video Watch Duration'
#: frontend/src/components/Settings/TransactionDetails.vue:35
#: lms/lms/doctype/lms_batch_enrollment/lms_batch_enrollment.json
#: lms/lms/doctype/lms_payment/lms_payment.json
#: lms/lms/doctype/lms_source/lms_source.json
@@ -6106,7 +6191,7 @@ msgstr ""
#: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19
#: frontend/src/pages/JobForm.vue:46
#: frontend/src/pages/JobForm.vue:53
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:280
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/cohort/cohort.json
@@ -6243,7 +6328,7 @@ msgstr "Sammendrag"
msgid "Sunday"
msgstr ""
#: lms/lms/api.py:1057
#: lms/lms/api.py:1081
msgid "Suspicious pattern found in {0}: {1}"
msgstr ""
@@ -6706,6 +6791,10 @@ msgstr ""
msgid "Training Feedback"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:5
msgid "Transaction Details"
msgstr ""
#. Option for the 'Location Preference' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Travel"
@@ -6838,7 +6927,6 @@ msgid "Upcoming Live Classes"
msgstr ""
#: frontend/src/components/Settings/BrandSettings.vue:24
#: frontend/src/components/Settings/PaymentSettings.vue:27
#: frontend/src/components/Settings/SettingDetails.vue:23
msgid "Update"
msgstr ""
@@ -7073,6 +7161,12 @@ msgstr ""
msgid "Work Experience Details"
msgstr ""
#. Label of the work_mode (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:32 frontend/src/pages/Jobs.vue:73
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Work Mode"
msgstr ""
#: frontend/src/components/CourseReviews.vue:8
#: frontend/src/components/Modals/ReviewModal.vue:5
#: lms/templates/reviews.html:117
@@ -7103,11 +7197,11 @@ msgstr ""
msgid "You are already certified for this course. Click on the card below to open your certificate."
msgstr ""
#: lms/lms/api.py:199
#: lms/lms/api.py:200
msgid "You are already enrolled for this batch."
msgstr ""
#: lms/lms/api.py:193
#: lms/lms/api.py:194
msgid "You are already enrolled for this course."
msgstr ""
@@ -7181,7 +7275,7 @@ msgstr ""
msgid "You have already exceeded the maximum number of attempts allowed for this quiz."
msgstr ""
#: lms/lms/api.py:223
#: lms/lms/api.py:224
msgid "You have already purchased the certificate for this course."
msgstr ""
@@ -7352,11 +7446,11 @@ msgstr ""
msgid "and then 'Add to Home Screen'"
msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:108
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114
msgid "applicant"
msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:108
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114
msgid "applicants"
msgstr ""
@@ -7425,7 +7519,7 @@ msgstr ""
#: lms/templates/signup-form.html:12
msgid "jane@example.com"
msgstr ""
msgstr "janne@eksempel.no"
#: frontend/src/pages/Programs/ProgramEnrollment.vue:65
msgid "lessons"
@@ -7509,7 +7603,7 @@ msgstr ""
msgid "{0} Quizzes"
msgstr ""
#: lms/lms/api.py:836 lms/lms/api.py:844
#: lms/lms/api.py:838 lms/lms/api.py:846
msgid "{0} Settings not found"
msgstr ""
@@ -7565,6 +7659,10 @@ msgstr ""
msgid "{0} mentioned you in a comment in {1}"
msgstr ""
#: lms/lms/api.py:887
msgid "{0} not found"
msgstr "{0} ikke funnet"
#: lms/lms/utils.py:450
msgid "{0}k"
msgstr ""
+163 -65
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2025-09-19 16:04+0000\n"
"PO-Revision-Date: 2025-09-24 07:15\n"
"POT-Creation-Date: 2025-09-26 16:04+0000\n"
"PO-Revision-Date: 2025-09-27 08:15\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Dutch\n"
"MIME-Version: 1.0\n"
@@ -145,8 +145,8 @@ msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:93
#: frontend/src/components/Settings/Members.vue:91
#: frontend/src/pages/Programs/ProgramForm.vue:56
#: frontend/src/pages/Programs/ProgramForm.vue:130
#: frontend/src/pages/Programs/ProgramForm.vue:179
#: frontend/src/pages/Programs/ProgramForm.vue:131
#: frontend/src/pages/Programs/ProgramForm.vue:180
msgid "Add"
msgstr ""
@@ -156,7 +156,7 @@ msgstr ""
msgid "Add Chapter"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:175
#: frontend/src/pages/Programs/ProgramForm.vue:176
msgid "Add Course to Program"
msgstr ""
@@ -221,6 +221,10 @@ msgstr ""
msgid "Add a new question"
msgstr ""
#: frontend/src/components/AppSidebar.vue:600
msgid "Add a program"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseModal.vue:5
msgid "Add a programming exercise to your lesson"
msgstr ""
@@ -274,6 +278,7 @@ msgid "Add your first lesson"
msgstr ""
#. Label of the address (Link) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:56
#: frontend/src/pages/Billing.vue:64
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Address"
@@ -353,6 +358,8 @@ msgstr ""
#. Label of the amount (Currency) field in DocType 'LMS Batch'
#. Label of the course_price (Currency) field in DocType 'LMS Course'
#. Label of the amount (Currency) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:68
#: frontend/src/components/Settings/Transactions.vue:219
#: frontend/src/pages/BatchForm.vue:278 frontend/src/pages/CourseForm.vue:262
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -460,7 +467,7 @@ msgstr ""
msgid "Are you sure you want to enroll?"
msgstr ""
#: frontend/src/components/UserDropdown.vue:175
#: frontend/src/components/UserDropdown.vue:177
msgid "Are you sure you want to login to your Frappe Cloud dashboard?"
msgstr ""
@@ -496,7 +503,7 @@ msgid "Assessment {0} has already been added to this batch."
msgstr ""
#. Label of the show_assessments (Check) field in DocType 'LMS Settings'
#: frontend/src/components/AppSidebar.vue:598
#: frontend/src/components/AppSidebar.vue:603
#: frontend/src/components/Assessments.vue:5
#: frontend/src/components/BatchStudents.vue:32
#: lms/lms/doctype/lms_settings/lms_settings.json
@@ -578,7 +585,7 @@ msgstr ""
msgid "Assignment will appear at the bottom of the lesson."
msgstr ""
#: frontend/src/components/AppSidebar.vue:602
#: frontend/src/components/AppSidebar.vue:607
#: frontend/src/components/Settings/Badges.vue:163
#: frontend/src/pages/Assignments.vue:208 lms/www/lms.py:271
msgid "Assignments"
@@ -702,6 +709,7 @@ msgstr ""
#: frontend/src/components/Modals/Event.vue:32
#: frontend/src/components/Settings/BadgeForm.vue:195
#: frontend/src/components/Settings/Badges.vue:200
#: frontend/src/components/Settings/TransactionDetails.vue:92
#: lms/lms/doctype/lms_batch_enrollment/lms_batch_enrollment.json
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
@@ -815,11 +823,11 @@ msgstr ""
msgid "Batch end date cannot be before the batch start date"
msgstr ""
#: lms/lms/api.py:210
#: lms/lms/api.py:211
msgid "Batch has already started."
msgstr ""
#: lms/lms/api.py:205
#: lms/lms/api.py:206
msgid "Batch is sold out."
msgstr ""
@@ -857,6 +865,8 @@ msgid "Billing Details"
msgstr ""
#. Label of the billing_name (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:31
#: frontend/src/components/Settings/Transactions.vue:213
#: frontend/src/pages/Billing.vue:70
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Billing Name"
@@ -1002,7 +1012,7 @@ msgstr ""
#. Enrollment'
#. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace
#: frontend/src/components/AppSidebar.vue:606
#: frontend/src/components/AppSidebar.vue:611
#: frontend/src/components/Modals/Event.vue:381
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58
#: frontend/src/pages/CourseCertification.vue:10
@@ -1145,7 +1155,7 @@ msgstr ""
#. Label of the city (Data) field in DocType 'User'
#. Label of the location (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/Billing.vue:81 frontend/src/pages/JobForm.vue:34
#: frontend/src/pages/Billing.vue:81 frontend/src/pages/JobForm.vue:41
#: lms/fixtures/custom_field.json
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "City"
@@ -1315,25 +1325,25 @@ msgstr ""
#. Label of the section_break_6 (Section Break) field in DocType 'Job
#. Opportunity'
#: frontend/src/pages/JobForm.vue:56
#: frontend/src/pages/JobForm.vue:63
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Details"
msgstr ""
#. Label of the company_email_address (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:75
#: frontend/src/pages/JobForm.vue:82
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Email Address"
msgstr ""
#. Label of the company_logo (Attach Image) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:80
#: frontend/src/pages/JobForm.vue:87
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Logo"
msgstr ""
#. Label of the company_name (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:62
#: frontend/src/pages/JobForm.vue:69
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Name"
msgstr ""
@@ -1344,7 +1354,7 @@ msgid "Company Type"
msgstr ""
#. Label of the company_website (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:68
#: frontend/src/pages/JobForm.vue:75
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Website"
msgstr ""
@@ -1414,7 +1424,7 @@ msgstr ""
msgid "Configurations"
msgstr ""
#: frontend/src/components/UserDropdown.vue:180
#: frontend/src/components/UserDropdown.vue:182
msgid "Confirm"
msgstr ""
@@ -1461,7 +1471,7 @@ msgid "Continue Learning"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:178
#: frontend/src/pages/Jobs.vue:196
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Contract"
msgstr ""
@@ -1491,7 +1501,7 @@ msgstr ""
#. Label of the country (Link) field in DocType 'User'
#. Label of the country (Link) field in DocType 'Job Opportunity'
#. Label of the country (Link) field in DocType 'Payment Country'
#: frontend/src/pages/Billing.vue:92 frontend/src/pages/JobForm.vue:40
#: frontend/src/pages/Billing.vue:92 frontend/src/pages/JobForm.vue:47
#: frontend/src/pages/Jobs.vue:57 lms/fixtures/custom_field.json
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/payment_country/payment_country.json
@@ -1533,7 +1543,8 @@ msgstr ""
#: frontend/src/components/Modals/Event.vue:24
#: frontend/src/components/Settings/BadgeForm.vue:194
#: frontend/src/components/Settings/Badges.vue:199
#: frontend/src/pages/Programs/ProgramForm.vue:195
#: frontend/src/components/Settings/TransactionDetails.vue:91
#: frontend/src/pages/Programs/ProgramForm.vue:196
#: frontend/src/pages/Programs/Programs.vue:35
#: lms/lms/doctype/batch_course/batch_course.json
#: lms/lms/doctype/cohort/cohort.json
@@ -1684,7 +1695,7 @@ msgstr ""
msgid "Course Title"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:436
#: frontend/src/pages/Programs/ProgramForm.vue:437
msgid "Course added to program successfully"
msgstr ""
@@ -1836,6 +1847,7 @@ msgstr ""
#. Label of the currency (Link) field in DocType 'LMS Batch'
#. Label of the currency (Link) field in DocType 'LMS Course'
#. Label of the currency (Link) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:64
#: frontend/src/pages/BatchForm.vue:285 frontend/src/pages/CourseForm.vue:279
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -1852,7 +1864,7 @@ msgstr ""
msgid "Current Streak"
msgstr ""
#: frontend/src/components/AppSidebar.vue:612
#: frontend/src/components/AppSidebar.vue:617
msgid "Custom Certificate Templates"
msgstr ""
@@ -1954,7 +1966,7 @@ msgstr ""
#: frontend/src/components/Settings/Badges.vue:171
#: frontend/src/pages/BatchForm.vue:565 frontend/src/pages/CourseForm.vue:597
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseForm.vue:67
#: frontend/src/pages/Programs/ProgramForm.vue:230
#: frontend/src/pages/Programs/ProgramForm.vue:231
msgid "Delete"
msgstr ""
@@ -2004,7 +2016,7 @@ msgstr ""
#. Label of the description (Small Text) field in DocType 'Work Experience'
#: frontend/src/components/Modals/LiveClassModal.vue:80
#: frontend/src/components/Settings/BadgeForm.vue:32
#: frontend/src/pages/JobForm.vue:125
#: frontend/src/pages/JobForm.vue:132
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/cohort/cohort.json
@@ -2045,6 +2057,7 @@ msgstr ""
#. Label of the disabled (Check) field in DocType 'Job Opportunity'
#: frontend/src/components/Settings/Badges.vue:56
#: frontend/src/components/Settings/PaymentGateways.vue:55
#: frontend/src/components/Settings/ZoomSettings.vue:66
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Disabled"
@@ -2145,6 +2158,10 @@ msgstr ""
msgid "Edit Email Template"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8
msgid "Edit Payment Gateway"
msgstr ""
#: frontend/src/pages/Profile.vue:72
msgid "Edit Profile"
msgstr ""
@@ -2250,6 +2267,7 @@ msgstr ""
#: frontend/src/components/Modals/ZoomAccountModal.vue:23
#: frontend/src/components/Settings/BadgeForm.vue:14
#: frontend/src/components/Settings/Badges.vue:53
#: frontend/src/components/Settings/PaymentGateways.vue:52
#: frontend/src/components/Settings/ZoomSettings.vue:63
#: lms/lms/doctype/lms_badge/lms_badge.json
#: lms/lms/doctype/lms_zoom_settings/lms_zoom_settings.json
@@ -2301,7 +2319,7 @@ msgstr ""
msgid "Enforce Course Order"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:176
#: frontend/src/pages/Programs/ProgramForm.vue:177
msgid "Enroll Member to Program"
msgstr ""
@@ -2460,15 +2478,15 @@ msgstr ""
msgid "Evaluator Schedule"
msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:163
#: frontend/src/components/Settings/Evaluators.vue:160
msgid "Evaluator added successfully"
msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:196
#: frontend/src/components/Settings/Evaluators.vue:193
msgid "Evaluator deleted successfully"
msgstr ""
#: lms/lms/api.py:1392
#: lms/lms/api.py:1416
msgid "Evaluator does not exist."
msgstr ""
@@ -2640,10 +2658,15 @@ msgstr ""
msgid "File Type"
msgstr ""
#: frontend/src/components/Settings/Transactions.vue:15
msgid "Filter by Billing Name"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:23
msgid "Filter by Exercise"
msgstr ""
#: frontend/src/components/Settings/Transactions.vue:20
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:28
msgid "Filter by Member"
msgstr ""
@@ -2677,7 +2700,7 @@ msgid "Free"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:179
#: frontend/src/pages/Jobs.vue:197
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Freelance"
msgstr ""
@@ -2719,7 +2742,7 @@ msgid "Full Name"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:176
#: frontend/src/pages/Jobs.vue:194
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Full Time"
msgstr ""
@@ -2741,10 +2764,15 @@ msgid "GST Number"
msgstr ""
#. Label of the gstin (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:76
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "GSTIN"
msgstr ""
#: frontend/src/components/Settings/PaymentGateways.vue:134
msgid "Gateway"
msgstr ""
#. Label of the general_tab (Tab Break) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "General"
@@ -2923,6 +2951,11 @@ msgstr ""
msgid "Host"
msgstr ""
#. Option for the 'Work Mode' (Select) field in DocType 'Job Opportunity'
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Hybrid"
msgstr ""
#. Label of the current (Check) field in DocType 'Work Experience'
#: lms/lms/doctype/work_experience/work_experience.json
msgid "I am currently working here"
@@ -3197,7 +3230,7 @@ msgstr ""
msgid "Issue Date"
msgstr ""
#: frontend/src/components/AppSidebar.vue:609
#: frontend/src/components/AppSidebar.vue:614
msgid "Issue a Certificate"
msgstr ""
@@ -3273,7 +3306,7 @@ msgstr ""
#. 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/Jobs.vue:185
#: frontend/src/pages/Jobs.vue:212
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Jobs"
msgstr ""
@@ -3621,6 +3654,10 @@ msgstr ""
msgid "Learning Consistency"
msgstr ""
#: frontend/src/components/AppSidebar.vue:598
msgid "Learning Paths"
msgstr ""
#. Label of the left_at (Datetime) field in DocType 'LMS Live Class
#. Participant'
#: lms/lms/doctype/lms_live_class_participant/lms_live_class_participant.json
@@ -3753,6 +3790,7 @@ msgstr ""
#: frontend/src/components/Modals/CourseProgressSummary.vue:86
#: frontend/src/components/Settings/Evaluators.vue:81
#: frontend/src/components/Settings/Members.vue:79
#: frontend/src/components/Settings/Transactions.vue:94
#: frontend/src/pages/Assignments.vue:66 frontend/src/pages/Batches.vue:82
#: frontend/src/pages/CertifiedParticipants.vue:98
#: frontend/src/pages/Courses.vue:77
@@ -3786,7 +3824,7 @@ msgstr ""
msgid "Login"
msgstr ""
#: frontend/src/components/UserDropdown.vue:174
#: frontend/src/components/UserDropdown.vue:176
msgid "Login to Frappe Cloud?"
msgstr ""
@@ -3940,6 +3978,7 @@ msgstr ""
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:26
#: frontend/src/components/Settings/BadgeAssignments.vue:179
#: frontend/src/components/Settings/BadgeForm.vue:215
#: frontend/src/components/Settings/TransactionDetails.vue:26
#: frontend/src/components/Settings/ZoomSettings.vue:187
#: frontend/src/pages/AssignmentSubmissionList.vue:14
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:268
@@ -4073,7 +4112,7 @@ msgstr ""
msgid "Member Username"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:462
#: frontend/src/pages/Programs/ProgramForm.vue:463
msgid "Member added to program successfully"
msgstr ""
@@ -4157,7 +4196,7 @@ msgstr ""
msgid "Meta Tags"
msgstr ""
#: lms/lms/api.py:1432
#: lms/lms/api.py:1456
msgid "Meta tags should be a list."
msgstr ""
@@ -4209,11 +4248,11 @@ msgstr ""
msgid "Modified By"
msgstr ""
#: lms/lms/api.py:187
#: lms/lms/api.py:188
msgid "Module Name is incorrect or does not exist."
msgstr ""
#: lms/lms/api.py:183
#: lms/lms/api.py:184
msgid "Module is incorrect."
msgstr ""
@@ -4224,7 +4263,7 @@ msgstr ""
msgid "Monday"
msgstr ""
#: frontend/src/components/AppSidebar.vue:617
#: frontend/src/components/AppSidebar.vue:622
msgid "Monetization"
msgstr ""
@@ -4268,6 +4307,7 @@ msgstr ""
#: frontend/src/components/Settings/EmailTemplates.vue:17
#: frontend/src/components/Settings/Evaluators.vue:17
#: frontend/src/components/Settings/Members.vue:17
#: frontend/src/components/Settings/PaymentGateways.vue:16
#: frontend/src/components/Settings/ZoomSettings.vue:17
#: frontend/src/pages/Courses.vue:312
#: frontend/src/pages/Programs/Programs.vue:10
@@ -4295,6 +4335,10 @@ msgstr ""
msgid "New Job Applicant"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7
msgid "New Payment Gateway"
msgstr ""
#: frontend/src/pages/QuizForm.vue:137
msgid "New Question"
msgstr ""
@@ -4399,7 +4443,7 @@ msgstr ""
msgid "No live classes scheduled"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:166
#: frontend/src/pages/Programs/ProgramForm.vue:167
msgid "No members added yet."
msgstr ""
@@ -4469,7 +4513,6 @@ msgstr ""
#: frontend/src/components/Assignment.vue:36
#: frontend/src/components/Settings/BrandSettings.vue:10
#: frontend/src/components/Settings/PaymentSettings.vue:9
#: frontend/src/components/Settings/SettingDetails.vue:10
#: frontend/src/pages/Programs/ProgramForm.vue:16
#: frontend/src/pages/QuizForm.vue:8 frontend/src/pages/QuizSubmission.vue:9
@@ -4522,6 +4565,11 @@ msgstr ""
msgid "Offline"
msgstr ""
#. Option for the 'Work Mode' (Select) field in DocType 'Job Opportunity'
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "On-site"
msgstr ""
#: lms/templates/emails/certification.html:16
msgid "Once again, congratulations on this significant accomplishment."
msgstr ""
@@ -4569,6 +4617,10 @@ msgstr ""
msgid "Open Ended"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:88
msgid "Open the "
msgstr ""
#. Label of the option (Data) field in DocType 'LMS Option'
#: frontend/src/components/Modals/Question.vue:70
#: lms/lms/doctype/lms_option/lms_option.json
@@ -4605,6 +4657,7 @@ msgid "Orange"
msgstr ""
#. Label of the order_id (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:70
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Order ID"
msgstr ""
@@ -4642,6 +4695,7 @@ msgid "Owner"
msgstr ""
#. Label of the pan (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:77
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "PAN"
msgstr ""
@@ -4687,7 +4741,7 @@ msgid "Pan Number"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:177
#: frontend/src/pages/Jobs.vue:195
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Part Time"
msgstr ""
@@ -4747,21 +4801,38 @@ msgstr ""
#. Label of the payment_details_section (Section Break) field in DocType 'LMS
#. Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:42
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment Details"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:18
msgid "Payment For Certificate"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:51
msgid "Payment For Document"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:46
msgid "Payment For Document Type"
msgstr ""
#. Label of the payment_gateway (Data) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Payment Gateway"
msgstr ""
#. Label of the payment_id (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:79
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment ID"
msgstr ""
#. Label of the payment_received (Check) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:13
#: frontend/src/components/Settings/Transactions.vue:25
#: frontend/src/components/Settings/Transactions.vue:226
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment Received"
msgstr ""
@@ -4783,6 +4854,8 @@ msgid "Payment for "
msgstr ""
#. Label of the payment_for_certificate (Check) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/Transactions.vue:30
#: frontend/src/components/Settings/Transactions.vue:233
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment for Certificate"
msgstr ""
@@ -4923,7 +4996,7 @@ msgstr ""
msgid "Please login to access this page."
msgstr ""
#: lms/lms/api.py:179
#: lms/lms/api.py:180
msgid "Please login to continue with payment."
msgstr ""
@@ -4940,7 +5013,7 @@ msgstr ""
msgid "Please run the code to execute the test cases."
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:420
#: frontend/src/pages/Programs/ProgramForm.vue:421
msgid "Please select a course"
msgstr ""
@@ -4956,7 +5029,7 @@ msgstr ""
msgid "Please select a future date and time."
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:447
#: frontend/src/pages/Programs/ProgramForm.vue:448
msgid "Please select a member"
msgstr ""
@@ -5146,7 +5219,7 @@ msgstr ""
msgid "Program Courses"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:205
#: frontend/src/pages/Programs/ProgramForm.vue:206
msgid "Program Member"
msgstr ""
@@ -5155,15 +5228,15 @@ msgstr ""
msgid "Program Members"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:380
#: frontend/src/pages/Programs/ProgramForm.vue:381
msgid "Program created successfully"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:551
#: frontend/src/pages/Programs/ProgramForm.vue:552
msgid "Program deleted successfully"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:399
#: frontend/src/pages/Programs/ProgramForm.vue:400
msgid "Program updated successfully"
msgstr ""
@@ -5229,7 +5302,7 @@ msgid "Progress Distribution"
msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:99
#: frontend/src/pages/Programs/ProgramForm.vue:124
#: frontend/src/pages/Programs/ProgramForm.vue:125
msgid "Progress Summary"
msgstr ""
@@ -5407,7 +5480,7 @@ msgstr ""
msgid "Quiz will appear at the bottom of the lesson."
msgstr ""
#: frontend/src/components/AppSidebar.vue:601
#: frontend/src/components/AppSidebar.vue:606
#: frontend/src/pages/QuizForm.vue:396 frontend/src/pages/Quizzes.vue:275
#: frontend/src/pages/Quizzes.vue:285 lms/www/lms.py:249
msgid "Quizzes"
@@ -5497,6 +5570,11 @@ msgstr ""
msgid "Related Courses"
msgstr ""
#. Option for the 'Work Mode' (Select) field in DocType 'Job Opportunity'
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Remote"
msgstr ""
#: frontend/src/components/Controls/Uploader.vue:34
#: frontend/src/pages/BatchForm.vue:246 frontend/src/pages/CourseForm.vue:119
msgid "Remove"
@@ -5587,7 +5665,7 @@ msgstr ""
msgid "Role updated successfully"
msgstr ""
#: frontend/src/components/AppSidebar.vue:629
#: frontend/src/components/AppSidebar.vue:634
msgid "Roles"
msgstr ""
@@ -5671,11 +5749,13 @@ msgstr ""
#: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
#: frontend/src/components/Settings/BadgeForm.vue:78
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:38
#: frontend/src/components/Settings/TransactionDetails.vue:96
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17
#: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseForm.vue:101
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseModal.vue:9
#: frontend/src/pages/Programs/ProgramForm.vue:233
#: frontend/src/pages/Programs/ProgramForm.vue:234
#: frontend/src/pages/QuizForm.vue:43 frontend/src/pages/QuizSubmission.vue:14
#: frontend/src/pages/Quizzes.vue:105
msgid "Save"
@@ -5777,6 +5857,10 @@ msgstr ""
msgid "Select Date"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22
msgid "Select Payment Gateway"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseModal.vue:23
msgid "Select a Programming Exercise"
msgstr ""
@@ -5832,11 +5916,11 @@ msgstr ""
msgid "Setting up"
msgstr ""
#: frontend/src/components/AppSidebar.vue:622
#: frontend/src/components/AppSidebar.vue:627
msgid "Setting up payment gateway"
msgstr ""
#: frontend/src/components/AppSidebar.vue:627
#: frontend/src/components/AppSidebar.vue:632
#: frontend/src/components/Settings/Settings.vue:7
#: frontend/src/pages/BatchForm.vue:53 frontend/src/pages/CourseForm.vue:142
#: frontend/src/pages/ProfileRoles.vue:4
@@ -5994,6 +6078,7 @@ msgstr ""
#. Label of the source (Link) field in DocType 'LMS Payment'
#. Label of the source (Data) field in DocType 'LMS Source'
#. Label of the source (Data) field in DocType 'LMS Video Watch Duration'
#: frontend/src/components/Settings/TransactionDetails.vue:35
#: lms/lms/doctype/lms_batch_enrollment/lms_batch_enrollment.json
#: lms/lms/doctype/lms_payment/lms_payment.json
#: lms/lms/doctype/lms_source/lms_source.json
@@ -6106,7 +6191,7 @@ msgstr ""
#: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19
#: frontend/src/pages/JobForm.vue:46
#: frontend/src/pages/JobForm.vue:53
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:280
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/cohort/cohort.json
@@ -6243,7 +6328,7 @@ msgstr ""
msgid "Sunday"
msgstr ""
#: lms/lms/api.py:1057
#: lms/lms/api.py:1081
msgid "Suspicious pattern found in {0}: {1}"
msgstr ""
@@ -6706,6 +6791,10 @@ msgstr ""
msgid "Training Feedback"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:5
msgid "Transaction Details"
msgstr ""
#. Option for the 'Location Preference' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Travel"
@@ -6838,7 +6927,6 @@ msgid "Upcoming Live Classes"
msgstr ""
#: frontend/src/components/Settings/BrandSettings.vue:24
#: frontend/src/components/Settings/PaymentSettings.vue:27
#: frontend/src/components/Settings/SettingDetails.vue:23
msgid "Update"
msgstr ""
@@ -7073,6 +7161,12 @@ msgstr ""
msgid "Work Experience Details"
msgstr ""
#. Label of the work_mode (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:32 frontend/src/pages/Jobs.vue:73
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Work Mode"
msgstr ""
#: frontend/src/components/CourseReviews.vue:8
#: frontend/src/components/Modals/ReviewModal.vue:5
#: lms/templates/reviews.html:117
@@ -7103,11 +7197,11 @@ msgstr ""
msgid "You are already certified for this course. Click on the card below to open your certificate."
msgstr ""
#: lms/lms/api.py:199
#: lms/lms/api.py:200
msgid "You are already enrolled for this batch."
msgstr ""
#: lms/lms/api.py:193
#: lms/lms/api.py:194
msgid "You are already enrolled for this course."
msgstr ""
@@ -7181,7 +7275,7 @@ msgstr ""
msgid "You have already exceeded the maximum number of attempts allowed for this quiz."
msgstr ""
#: lms/lms/api.py:223
#: lms/lms/api.py:224
msgid "You have already purchased the certificate for this course."
msgstr ""
@@ -7352,11 +7446,11 @@ msgstr ""
msgid "and then 'Add to Home Screen'"
msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:108
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114
msgid "applicant"
msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:108
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114
msgid "applicants"
msgstr ""
@@ -7409,7 +7503,7 @@ msgstr ""
#: frontend/src/pages/Home/Home.vue:100 frontend/src/pages/Home/Home.vue:123
msgid "evaluation"
msgstr ""
msgstr "evaluatie"
#: frontend/src/pages/Home/Home.vue:100 frontend/src/pages/Home/Home.vue:123
msgid "evaluations"
@@ -7509,7 +7603,7 @@ msgstr ""
msgid "{0} Quizzes"
msgstr ""
#: lms/lms/api.py:836 lms/lms/api.py:844
#: lms/lms/api.py:838 lms/lms/api.py:846
msgid "{0} Settings not found"
msgstr ""
@@ -7565,6 +7659,10 @@ msgstr ""
msgid "{0} mentioned you in a comment in {1}"
msgstr ""
#: lms/lms/api.py:887
msgid "{0} not found"
msgstr ""
#: lms/lms/utils.py:450
msgid "{0}k"
msgstr ""
+162 -64
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2025-09-19 16:04+0000\n"
"PO-Revision-Date: 2025-09-24 07:15\n"
"POT-Creation-Date: 2025-09-26 16:04+0000\n"
"PO-Revision-Date: 2025-09-27 08:15\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Polish\n"
"MIME-Version: 1.0\n"
@@ -145,8 +145,8 @@ msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:93
#: frontend/src/components/Settings/Members.vue:91
#: frontend/src/pages/Programs/ProgramForm.vue:56
#: frontend/src/pages/Programs/ProgramForm.vue:130
#: frontend/src/pages/Programs/ProgramForm.vue:179
#: frontend/src/pages/Programs/ProgramForm.vue:131
#: frontend/src/pages/Programs/ProgramForm.vue:180
msgid "Add"
msgstr ""
@@ -156,7 +156,7 @@ msgstr ""
msgid "Add Chapter"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:175
#: frontend/src/pages/Programs/ProgramForm.vue:176
msgid "Add Course to Program"
msgstr ""
@@ -221,6 +221,10 @@ msgstr ""
msgid "Add a new question"
msgstr ""
#: frontend/src/components/AppSidebar.vue:600
msgid "Add a program"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseModal.vue:5
msgid "Add a programming exercise to your lesson"
msgstr ""
@@ -274,6 +278,7 @@ msgid "Add your first lesson"
msgstr ""
#. Label of the address (Link) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:56
#: frontend/src/pages/Billing.vue:64
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Address"
@@ -353,6 +358,8 @@ msgstr ""
#. Label of the amount (Currency) field in DocType 'LMS Batch'
#. Label of the course_price (Currency) field in DocType 'LMS Course'
#. Label of the amount (Currency) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:68
#: frontend/src/components/Settings/Transactions.vue:219
#: frontend/src/pages/BatchForm.vue:278 frontend/src/pages/CourseForm.vue:262
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -460,7 +467,7 @@ msgstr ""
msgid "Are you sure you want to enroll?"
msgstr ""
#: frontend/src/components/UserDropdown.vue:175
#: frontend/src/components/UserDropdown.vue:177
msgid "Are you sure you want to login to your Frappe Cloud dashboard?"
msgstr "Czy na pewno chcesz zalogować się do panelu Frappe Cloud?"
@@ -496,7 +503,7 @@ msgid "Assessment {0} has already been added to this batch."
msgstr ""
#. Label of the show_assessments (Check) field in DocType 'LMS Settings'
#: frontend/src/components/AppSidebar.vue:598
#: frontend/src/components/AppSidebar.vue:603
#: frontend/src/components/Assessments.vue:5
#: frontend/src/components/BatchStudents.vue:32
#: lms/lms/doctype/lms_settings/lms_settings.json
@@ -578,7 +585,7 @@ msgstr ""
msgid "Assignment will appear at the bottom of the lesson."
msgstr ""
#: frontend/src/components/AppSidebar.vue:602
#: frontend/src/components/AppSidebar.vue:607
#: frontend/src/components/Settings/Badges.vue:163
#: frontend/src/pages/Assignments.vue:208 lms/www/lms.py:271
msgid "Assignments"
@@ -702,6 +709,7 @@ msgstr ""
#: frontend/src/components/Modals/Event.vue:32
#: frontend/src/components/Settings/BadgeForm.vue:195
#: frontend/src/components/Settings/Badges.vue:200
#: frontend/src/components/Settings/TransactionDetails.vue:92
#: lms/lms/doctype/lms_batch_enrollment/lms_batch_enrollment.json
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
@@ -815,11 +823,11 @@ msgstr ""
msgid "Batch end date cannot be before the batch start date"
msgstr ""
#: lms/lms/api.py:210
#: lms/lms/api.py:211
msgid "Batch has already started."
msgstr ""
#: lms/lms/api.py:205
#: lms/lms/api.py:206
msgid "Batch is sold out."
msgstr ""
@@ -857,6 +865,8 @@ msgid "Billing Details"
msgstr ""
#. Label of the billing_name (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:31
#: frontend/src/components/Settings/Transactions.vue:213
#: frontend/src/pages/Billing.vue:70
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Billing Name"
@@ -1002,7 +1012,7 @@ msgstr ""
#. Enrollment'
#. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace
#: frontend/src/components/AppSidebar.vue:606
#: frontend/src/components/AppSidebar.vue:611
#: frontend/src/components/Modals/Event.vue:381
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58
#: frontend/src/pages/CourseCertification.vue:10
@@ -1145,7 +1155,7 @@ msgstr ""
#. Label of the city (Data) field in DocType 'User'
#. Label of the location (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/Billing.vue:81 frontend/src/pages/JobForm.vue:34
#: frontend/src/pages/Billing.vue:81 frontend/src/pages/JobForm.vue:41
#: lms/fixtures/custom_field.json
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "City"
@@ -1315,25 +1325,25 @@ msgstr ""
#. Label of the section_break_6 (Section Break) field in DocType 'Job
#. Opportunity'
#: frontend/src/pages/JobForm.vue:56
#: frontend/src/pages/JobForm.vue:63
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Details"
msgstr "Dane Firmy"
#. Label of the company_email_address (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:75
#: frontend/src/pages/JobForm.vue:82
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Email Address"
msgstr ""
#. Label of the company_logo (Attach Image) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:80
#: frontend/src/pages/JobForm.vue:87
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Logo"
msgstr ""
#. Label of the company_name (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:62
#: frontend/src/pages/JobForm.vue:69
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Name"
msgstr ""
@@ -1344,7 +1354,7 @@ msgid "Company Type"
msgstr ""
#. Label of the company_website (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:68
#: frontend/src/pages/JobForm.vue:75
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Website"
msgstr ""
@@ -1414,7 +1424,7 @@ msgstr ""
msgid "Configurations"
msgstr ""
#: frontend/src/components/UserDropdown.vue:180
#: frontend/src/components/UserDropdown.vue:182
msgid "Confirm"
msgstr "Potwierdź"
@@ -1461,7 +1471,7 @@ msgid "Continue Learning"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:178
#: frontend/src/pages/Jobs.vue:196
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Contract"
msgstr ""
@@ -1491,7 +1501,7 @@ msgstr ""
#. Label of the country (Link) field in DocType 'User'
#. Label of the country (Link) field in DocType 'Job Opportunity'
#. Label of the country (Link) field in DocType 'Payment Country'
#: frontend/src/pages/Billing.vue:92 frontend/src/pages/JobForm.vue:40
#: frontend/src/pages/Billing.vue:92 frontend/src/pages/JobForm.vue:47
#: frontend/src/pages/Jobs.vue:57 lms/fixtures/custom_field.json
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/payment_country/payment_country.json
@@ -1533,7 +1543,8 @@ msgstr ""
#: frontend/src/components/Modals/Event.vue:24
#: frontend/src/components/Settings/BadgeForm.vue:194
#: frontend/src/components/Settings/Badges.vue:199
#: frontend/src/pages/Programs/ProgramForm.vue:195
#: frontend/src/components/Settings/TransactionDetails.vue:91
#: frontend/src/pages/Programs/ProgramForm.vue:196
#: frontend/src/pages/Programs/Programs.vue:35
#: lms/lms/doctype/batch_course/batch_course.json
#: lms/lms/doctype/cohort/cohort.json
@@ -1684,7 +1695,7 @@ msgstr ""
msgid "Course Title"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:436
#: frontend/src/pages/Programs/ProgramForm.vue:437
msgid "Course added to program successfully"
msgstr ""
@@ -1836,6 +1847,7 @@ msgstr ""
#. Label of the currency (Link) field in DocType 'LMS Batch'
#. Label of the currency (Link) field in DocType 'LMS Course'
#. Label of the currency (Link) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:64
#: frontend/src/pages/BatchForm.vue:285 frontend/src/pages/CourseForm.vue:279
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -1852,7 +1864,7 @@ msgstr ""
msgid "Current Streak"
msgstr ""
#: frontend/src/components/AppSidebar.vue:612
#: frontend/src/components/AppSidebar.vue:617
msgid "Custom Certificate Templates"
msgstr ""
@@ -1954,7 +1966,7 @@ msgstr ""
#: frontend/src/components/Settings/Badges.vue:171
#: frontend/src/pages/BatchForm.vue:565 frontend/src/pages/CourseForm.vue:597
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseForm.vue:67
#: frontend/src/pages/Programs/ProgramForm.vue:230
#: frontend/src/pages/Programs/ProgramForm.vue:231
msgid "Delete"
msgstr ""
@@ -2004,7 +2016,7 @@ msgstr ""
#. Label of the description (Small Text) field in DocType 'Work Experience'
#: frontend/src/components/Modals/LiveClassModal.vue:80
#: frontend/src/components/Settings/BadgeForm.vue:32
#: frontend/src/pages/JobForm.vue:125
#: frontend/src/pages/JobForm.vue:132
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/cohort/cohort.json
@@ -2045,6 +2057,7 @@ msgstr ""
#. Label of the disabled (Check) field in DocType 'Job Opportunity'
#: frontend/src/components/Settings/Badges.vue:56
#: frontend/src/components/Settings/PaymentGateways.vue:55
#: frontend/src/components/Settings/ZoomSettings.vue:66
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Disabled"
@@ -2145,6 +2158,10 @@ msgstr ""
msgid "Edit Email Template"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8
msgid "Edit Payment Gateway"
msgstr ""
#: frontend/src/pages/Profile.vue:72
msgid "Edit Profile"
msgstr "Edytuj profil"
@@ -2250,6 +2267,7 @@ msgstr ""
#: frontend/src/components/Modals/ZoomAccountModal.vue:23
#: frontend/src/components/Settings/BadgeForm.vue:14
#: frontend/src/components/Settings/Badges.vue:53
#: frontend/src/components/Settings/PaymentGateways.vue:52
#: frontend/src/components/Settings/ZoomSettings.vue:63
#: lms/lms/doctype/lms_badge/lms_badge.json
#: lms/lms/doctype/lms_zoom_settings/lms_zoom_settings.json
@@ -2301,7 +2319,7 @@ msgstr ""
msgid "Enforce Course Order"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:176
#: frontend/src/pages/Programs/ProgramForm.vue:177
msgid "Enroll Member to Program"
msgstr ""
@@ -2460,15 +2478,15 @@ msgstr ""
msgid "Evaluator Schedule"
msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:163
#: frontend/src/components/Settings/Evaluators.vue:160
msgid "Evaluator added successfully"
msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:196
#: frontend/src/components/Settings/Evaluators.vue:193
msgid "Evaluator deleted successfully"
msgstr ""
#: lms/lms/api.py:1392
#: lms/lms/api.py:1416
msgid "Evaluator does not exist."
msgstr ""
@@ -2640,10 +2658,15 @@ msgstr ""
msgid "File Type"
msgstr "Typ pliku"
#: frontend/src/components/Settings/Transactions.vue:15
msgid "Filter by Billing Name"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:23
msgid "Filter by Exercise"
msgstr ""
#: frontend/src/components/Settings/Transactions.vue:20
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:28
msgid "Filter by Member"
msgstr ""
@@ -2677,7 +2700,7 @@ msgid "Free"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:179
#: frontend/src/pages/Jobs.vue:197
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Freelance"
msgstr ""
@@ -2719,7 +2742,7 @@ msgid "Full Name"
msgstr "Pełne imię i nazwisko"
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:176
#: frontend/src/pages/Jobs.vue:194
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Full Time"
msgstr ""
@@ -2741,10 +2764,15 @@ msgid "GST Number"
msgstr ""
#. Label of the gstin (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:76
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "GSTIN"
msgstr ""
#: frontend/src/components/Settings/PaymentGateways.vue:134
msgid "Gateway"
msgstr ""
#. Label of the general_tab (Tab Break) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "General"
@@ -2923,6 +2951,11 @@ msgstr ""
msgid "Host"
msgstr ""
#. Option for the 'Work Mode' (Select) field in DocType 'Job Opportunity'
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Hybrid"
msgstr ""
#. Label of the current (Check) field in DocType 'Work Experience'
#: lms/lms/doctype/work_experience/work_experience.json
msgid "I am currently working here"
@@ -3197,7 +3230,7 @@ msgstr ""
msgid "Issue Date"
msgstr "Data zdarzenia"
#: frontend/src/components/AppSidebar.vue:609
#: frontend/src/components/AppSidebar.vue:614
msgid "Issue a Certificate"
msgstr ""
@@ -3273,7 +3306,7 @@ msgstr "Tytuł zadania"
#. 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/Jobs.vue:185
#: frontend/src/pages/Jobs.vue:212
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Jobs"
msgstr ""
@@ -3621,6 +3654,10 @@ msgstr ""
msgid "Learning Consistency"
msgstr ""
#: frontend/src/components/AppSidebar.vue:598
msgid "Learning Paths"
msgstr ""
#. Label of the left_at (Datetime) field in DocType 'LMS Live Class
#. Participant'
#: lms/lms/doctype/lms_live_class_participant/lms_live_class_participant.json
@@ -3753,6 +3790,7 @@ msgstr ""
#: frontend/src/components/Modals/CourseProgressSummary.vue:86
#: frontend/src/components/Settings/Evaluators.vue:81
#: frontend/src/components/Settings/Members.vue:79
#: frontend/src/components/Settings/Transactions.vue:94
#: frontend/src/pages/Assignments.vue:66 frontend/src/pages/Batches.vue:82
#: frontend/src/pages/CertifiedParticipants.vue:98
#: frontend/src/pages/Courses.vue:77
@@ -3786,7 +3824,7 @@ msgstr ""
msgid "Login"
msgstr "Zaloguj się"
#: frontend/src/components/UserDropdown.vue:174
#: frontend/src/components/UserDropdown.vue:176
msgid "Login to Frappe Cloud?"
msgstr ""
@@ -3940,6 +3978,7 @@ msgstr ""
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:26
#: frontend/src/components/Settings/BadgeAssignments.vue:179
#: frontend/src/components/Settings/BadgeForm.vue:215
#: frontend/src/components/Settings/TransactionDetails.vue:26
#: frontend/src/components/Settings/ZoomSettings.vue:187
#: frontend/src/pages/AssignmentSubmissionList.vue:14
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:268
@@ -4073,7 +4112,7 @@ msgstr ""
msgid "Member Username"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:462
#: frontend/src/pages/Programs/ProgramForm.vue:463
msgid "Member added to program successfully"
msgstr ""
@@ -4157,7 +4196,7 @@ msgstr ""
msgid "Meta Tags"
msgstr "Meta tagi"
#: lms/lms/api.py:1432
#: lms/lms/api.py:1456
msgid "Meta tags should be a list."
msgstr ""
@@ -4209,11 +4248,11 @@ msgstr ""
msgid "Modified By"
msgstr ""
#: lms/lms/api.py:187
#: lms/lms/api.py:188
msgid "Module Name is incorrect or does not exist."
msgstr ""
#: lms/lms/api.py:183
#: lms/lms/api.py:184
msgid "Module is incorrect."
msgstr ""
@@ -4224,7 +4263,7 @@ msgstr ""
msgid "Monday"
msgstr "Poniedziałek"
#: frontend/src/components/AppSidebar.vue:617
#: frontend/src/components/AppSidebar.vue:622
msgid "Monetization"
msgstr ""
@@ -4268,6 +4307,7 @@ msgstr ""
#: frontend/src/components/Settings/EmailTemplates.vue:17
#: frontend/src/components/Settings/Evaluators.vue:17
#: frontend/src/components/Settings/Members.vue:17
#: frontend/src/components/Settings/PaymentGateways.vue:16
#: frontend/src/components/Settings/ZoomSettings.vue:17
#: frontend/src/pages/Courses.vue:312
#: frontend/src/pages/Programs/Programs.vue:10
@@ -4295,6 +4335,10 @@ msgstr ""
msgid "New Job Applicant"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7
msgid "New Payment Gateway"
msgstr ""
#: frontend/src/pages/QuizForm.vue:137
msgid "New Question"
msgstr ""
@@ -4399,7 +4443,7 @@ msgstr ""
msgid "No live classes scheduled"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:166
#: frontend/src/pages/Programs/ProgramForm.vue:167
msgid "No members added yet."
msgstr ""
@@ -4469,7 +4513,6 @@ msgstr ""
#: frontend/src/components/Assignment.vue:36
#: frontend/src/components/Settings/BrandSettings.vue:10
#: frontend/src/components/Settings/PaymentSettings.vue:9
#: frontend/src/components/Settings/SettingDetails.vue:10
#: frontend/src/pages/Programs/ProgramForm.vue:16
#: frontend/src/pages/QuizForm.vue:8 frontend/src/pages/QuizSubmission.vue:9
@@ -4522,6 +4565,11 @@ msgstr ""
msgid "Offline"
msgstr ""
#. Option for the 'Work Mode' (Select) field in DocType 'Job Opportunity'
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "On-site"
msgstr ""
#: lms/templates/emails/certification.html:16
msgid "Once again, congratulations on this significant accomplishment."
msgstr ""
@@ -4569,6 +4617,10 @@ msgstr ""
msgid "Open Ended"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:88
msgid "Open the "
msgstr ""
#. Label of the option (Data) field in DocType 'LMS Option'
#: frontend/src/components/Modals/Question.vue:70
#: lms/lms/doctype/lms_option/lms_option.json
@@ -4605,6 +4657,7 @@ msgid "Orange"
msgstr "Pomarańczowy"
#. Label of the order_id (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:70
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Order ID"
msgstr ""
@@ -4642,6 +4695,7 @@ msgid "Owner"
msgstr ""
#. Label of the pan (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:77
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "PAN"
msgstr ""
@@ -4687,7 +4741,7 @@ msgid "Pan Number"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:177
#: frontend/src/pages/Jobs.vue:195
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Part Time"
msgstr ""
@@ -4747,21 +4801,38 @@ msgstr ""
#. Label of the payment_details_section (Section Break) field in DocType 'LMS
#. Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:42
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment Details"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:18
msgid "Payment For Certificate"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:51
msgid "Payment For Document"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:46
msgid "Payment For Document Type"
msgstr ""
#. Label of the payment_gateway (Data) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Payment Gateway"
msgstr "Bramki płatności"
#. Label of the payment_id (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:79
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment ID"
msgstr ""
#. Label of the payment_received (Check) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:13
#: frontend/src/components/Settings/Transactions.vue:25
#: frontend/src/components/Settings/Transactions.vue:226
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment Received"
msgstr ""
@@ -4783,6 +4854,8 @@ msgid "Payment for "
msgstr ""
#. Label of the payment_for_certificate (Check) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/Transactions.vue:30
#: frontend/src/components/Settings/Transactions.vue:233
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment for Certificate"
msgstr ""
@@ -4923,7 +4996,7 @@ msgstr ""
msgid "Please login to access this page."
msgstr ""
#: lms/lms/api.py:179
#: lms/lms/api.py:180
msgid "Please login to continue with payment."
msgstr ""
@@ -4940,7 +5013,7 @@ msgstr ""
msgid "Please run the code to execute the test cases."
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:420
#: frontend/src/pages/Programs/ProgramForm.vue:421
msgid "Please select a course"
msgstr ""
@@ -4956,7 +5029,7 @@ msgstr ""
msgid "Please select a future date and time."
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:447
#: frontend/src/pages/Programs/ProgramForm.vue:448
msgid "Please select a member"
msgstr ""
@@ -5146,7 +5219,7 @@ msgstr ""
msgid "Program Courses"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:205
#: frontend/src/pages/Programs/ProgramForm.vue:206
msgid "Program Member"
msgstr ""
@@ -5155,15 +5228,15 @@ msgstr ""
msgid "Program Members"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:380
#: frontend/src/pages/Programs/ProgramForm.vue:381
msgid "Program created successfully"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:551
#: frontend/src/pages/Programs/ProgramForm.vue:552
msgid "Program deleted successfully"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:399
#: frontend/src/pages/Programs/ProgramForm.vue:400
msgid "Program updated successfully"
msgstr ""
@@ -5229,7 +5302,7 @@ msgid "Progress Distribution"
msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:99
#: frontend/src/pages/Programs/ProgramForm.vue:124
#: frontend/src/pages/Programs/ProgramForm.vue:125
msgid "Progress Summary"
msgstr ""
@@ -5407,7 +5480,7 @@ msgstr ""
msgid "Quiz will appear at the bottom of the lesson."
msgstr ""
#: frontend/src/components/AppSidebar.vue:601
#: frontend/src/components/AppSidebar.vue:606
#: frontend/src/pages/QuizForm.vue:396 frontend/src/pages/Quizzes.vue:275
#: frontend/src/pages/Quizzes.vue:285 lms/www/lms.py:249
msgid "Quizzes"
@@ -5497,6 +5570,11 @@ msgstr "Odrzucono"
msgid "Related Courses"
msgstr ""
#. Option for the 'Work Mode' (Select) field in DocType 'Job Opportunity'
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Remote"
msgstr ""
#: frontend/src/components/Controls/Uploader.vue:34
#: frontend/src/pages/BatchForm.vue:246 frontend/src/pages/CourseForm.vue:119
msgid "Remove"
@@ -5587,7 +5665,7 @@ msgstr ""
msgid "Role updated successfully"
msgstr ""
#: frontend/src/components/AppSidebar.vue:629
#: frontend/src/components/AppSidebar.vue:634
msgid "Roles"
msgstr "Role"
@@ -5671,11 +5749,13 @@ msgstr "Sobota"
#: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
#: frontend/src/components/Settings/BadgeForm.vue:78
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:38
#: frontend/src/components/Settings/TransactionDetails.vue:96
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17
#: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseForm.vue:101
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseModal.vue:9
#: frontend/src/pages/Programs/ProgramForm.vue:233
#: frontend/src/pages/Programs/ProgramForm.vue:234
#: frontend/src/pages/QuizForm.vue:43 frontend/src/pages/QuizSubmission.vue:14
#: frontend/src/pages/Quizzes.vue:105
msgid "Save"
@@ -5777,6 +5857,10 @@ msgstr ""
msgid "Select Date"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22
msgid "Select Payment Gateway"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseModal.vue:23
msgid "Select a Programming Exercise"
msgstr ""
@@ -5832,11 +5916,11 @@ msgstr ""
msgid "Setting up"
msgstr ""
#: frontend/src/components/AppSidebar.vue:622
#: frontend/src/components/AppSidebar.vue:627
msgid "Setting up payment gateway"
msgstr ""
#: frontend/src/components/AppSidebar.vue:627
#: frontend/src/components/AppSidebar.vue:632
#: frontend/src/components/Settings/Settings.vue:7
#: frontend/src/pages/BatchForm.vue:53 frontend/src/pages/CourseForm.vue:142
#: frontend/src/pages/ProfileRoles.vue:4
@@ -5994,6 +6078,7 @@ msgstr ""
#. Label of the source (Link) field in DocType 'LMS Payment'
#. Label of the source (Data) field in DocType 'LMS Source'
#. Label of the source (Data) field in DocType 'LMS Video Watch Duration'
#: frontend/src/components/Settings/TransactionDetails.vue:35
#: lms/lms/doctype/lms_batch_enrollment/lms_batch_enrollment.json
#: lms/lms/doctype/lms_payment/lms_payment.json
#: lms/lms/doctype/lms_source/lms_source.json
@@ -6106,7 +6191,7 @@ msgstr ""
#: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19
#: frontend/src/pages/JobForm.vue:46
#: frontend/src/pages/JobForm.vue:53
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:280
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/cohort/cohort.json
@@ -6243,7 +6328,7 @@ msgstr "Podsumowanie"
msgid "Sunday"
msgstr "Niedziela"
#: lms/lms/api.py:1057
#: lms/lms/api.py:1081
msgid "Suspicious pattern found in {0}: {1}"
msgstr ""
@@ -6706,6 +6791,10 @@ msgstr ""
msgid "Training Feedback"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:5
msgid "Transaction Details"
msgstr ""
#. Option for the 'Location Preference' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Travel"
@@ -6838,7 +6927,6 @@ msgid "Upcoming Live Classes"
msgstr ""
#: frontend/src/components/Settings/BrandSettings.vue:24
#: frontend/src/components/Settings/PaymentSettings.vue:27
#: frontend/src/components/Settings/SettingDetails.vue:23
msgid "Update"
msgstr ""
@@ -7073,6 +7161,12 @@ msgstr ""
msgid "Work Experience Details"
msgstr ""
#. Label of the work_mode (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:32 frontend/src/pages/Jobs.vue:73
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Work Mode"
msgstr ""
#: frontend/src/components/CourseReviews.vue:8
#: frontend/src/components/Modals/ReviewModal.vue:5
#: lms/templates/reviews.html:117
@@ -7103,11 +7197,11 @@ msgstr ""
msgid "You are already certified for this course. Click on the card below to open your certificate."
msgstr ""
#: lms/lms/api.py:199
#: lms/lms/api.py:200
msgid "You are already enrolled for this batch."
msgstr ""
#: lms/lms/api.py:193
#: lms/lms/api.py:194
msgid "You are already enrolled for this course."
msgstr ""
@@ -7181,7 +7275,7 @@ msgstr ""
msgid "You have already exceeded the maximum number of attempts allowed for this quiz."
msgstr ""
#: lms/lms/api.py:223
#: lms/lms/api.py:224
msgid "You have already purchased the certificate for this course."
msgstr ""
@@ -7352,11 +7446,11 @@ msgstr ""
msgid "and then 'Add to Home Screen'"
msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:108
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114
msgid "applicant"
msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:108
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114
msgid "applicants"
msgstr ""
@@ -7509,7 +7603,7 @@ msgstr ""
msgid "{0} Quizzes"
msgstr ""
#: lms/lms/api.py:836 lms/lms/api.py:844
#: lms/lms/api.py:838 lms/lms/api.py:846
msgid "{0} Settings not found"
msgstr ""
@@ -7565,6 +7659,10 @@ msgstr ""
msgid "{0} mentioned you in a comment in {1}"
msgstr "{0} wspomniał o Tobie w komentarzu w {1}"
#: lms/lms/api.py:887
msgid "{0} not found"
msgstr "{0} nie znaleziono"
#: lms/lms/utils.py:450
msgid "{0}k"
msgstr ""
+162 -64
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2025-09-19 16:04+0000\n"
"PO-Revision-Date: 2025-09-24 07:15\n"
"POT-Creation-Date: 2025-09-26 16:04+0000\n"
"PO-Revision-Date: 2025-09-27 08:15\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Portuguese\n"
"MIME-Version: 1.0\n"
@@ -145,8 +145,8 @@ msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:93
#: frontend/src/components/Settings/Members.vue:91
#: frontend/src/pages/Programs/ProgramForm.vue:56
#: frontend/src/pages/Programs/ProgramForm.vue:130
#: frontend/src/pages/Programs/ProgramForm.vue:179
#: frontend/src/pages/Programs/ProgramForm.vue:131
#: frontend/src/pages/Programs/ProgramForm.vue:180
msgid "Add"
msgstr "Adicionar"
@@ -156,7 +156,7 @@ msgstr "Adicionar"
msgid "Add Chapter"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:175
#: frontend/src/pages/Programs/ProgramForm.vue:176
msgid "Add Course to Program"
msgstr ""
@@ -221,6 +221,10 @@ msgstr ""
msgid "Add a new question"
msgstr ""
#: frontend/src/components/AppSidebar.vue:600
msgid "Add a program"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseModal.vue:5
msgid "Add a programming exercise to your lesson"
msgstr ""
@@ -274,6 +278,7 @@ msgid "Add your first lesson"
msgstr ""
#. Label of the address (Link) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:56
#: frontend/src/pages/Billing.vue:64
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Address"
@@ -353,6 +358,8 @@ msgstr ""
#. Label of the amount (Currency) field in DocType 'LMS Batch'
#. Label of the course_price (Currency) field in DocType 'LMS Course'
#. Label of the amount (Currency) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:68
#: frontend/src/components/Settings/Transactions.vue:219
#: frontend/src/pages/BatchForm.vue:278 frontend/src/pages/CourseForm.vue:262
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -460,7 +467,7 @@ msgstr ""
msgid "Are you sure you want to enroll?"
msgstr ""
#: frontend/src/components/UserDropdown.vue:175
#: frontend/src/components/UserDropdown.vue:177
msgid "Are you sure you want to login to your Frappe Cloud dashboard?"
msgstr ""
@@ -496,7 +503,7 @@ msgid "Assessment {0} has already been added to this batch."
msgstr ""
#. Label of the show_assessments (Check) field in DocType 'LMS Settings'
#: frontend/src/components/AppSidebar.vue:598
#: frontend/src/components/AppSidebar.vue:603
#: frontend/src/components/Assessments.vue:5
#: frontend/src/components/BatchStudents.vue:32
#: lms/lms/doctype/lms_settings/lms_settings.json
@@ -578,7 +585,7 @@ msgstr ""
msgid "Assignment will appear at the bottom of the lesson."
msgstr ""
#: frontend/src/components/AppSidebar.vue:602
#: frontend/src/components/AppSidebar.vue:607
#: frontend/src/components/Settings/Badges.vue:163
#: frontend/src/pages/Assignments.vue:208 lms/www/lms.py:271
msgid "Assignments"
@@ -702,6 +709,7 @@ msgstr ""
#: frontend/src/components/Modals/Event.vue:32
#: frontend/src/components/Settings/BadgeForm.vue:195
#: frontend/src/components/Settings/Badges.vue:200
#: frontend/src/components/Settings/TransactionDetails.vue:92
#: lms/lms/doctype/lms_batch_enrollment/lms_batch_enrollment.json
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
@@ -815,11 +823,11 @@ msgstr ""
msgid "Batch end date cannot be before the batch start date"
msgstr ""
#: lms/lms/api.py:210
#: lms/lms/api.py:211
msgid "Batch has already started."
msgstr ""
#: lms/lms/api.py:205
#: lms/lms/api.py:206
msgid "Batch is sold out."
msgstr ""
@@ -857,6 +865,8 @@ msgid "Billing Details"
msgstr ""
#. Label of the billing_name (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:31
#: frontend/src/components/Settings/Transactions.vue:213
#: frontend/src/pages/Billing.vue:70
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Billing Name"
@@ -1002,7 +1012,7 @@ msgstr ""
#. Enrollment'
#. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace
#: frontend/src/components/AppSidebar.vue:606
#: frontend/src/components/AppSidebar.vue:611
#: frontend/src/components/Modals/Event.vue:381
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58
#: frontend/src/pages/CourseCertification.vue:10
@@ -1145,7 +1155,7 @@ msgstr ""
#. Label of the city (Data) field in DocType 'User'
#. Label of the location (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/Billing.vue:81 frontend/src/pages/JobForm.vue:34
#: frontend/src/pages/Billing.vue:81 frontend/src/pages/JobForm.vue:41
#: lms/fixtures/custom_field.json
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "City"
@@ -1315,25 +1325,25 @@ msgstr ""
#. Label of the section_break_6 (Section Break) field in DocType 'Job
#. Opportunity'
#: frontend/src/pages/JobForm.vue:56
#: frontend/src/pages/JobForm.vue:63
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Details"
msgstr ""
#. Label of the company_email_address (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:75
#: frontend/src/pages/JobForm.vue:82
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Email Address"
msgstr ""
#. Label of the company_logo (Attach Image) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:80
#: frontend/src/pages/JobForm.vue:87
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Logo"
msgstr ""
#. Label of the company_name (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:62
#: frontend/src/pages/JobForm.vue:69
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Name"
msgstr ""
@@ -1344,7 +1354,7 @@ msgid "Company Type"
msgstr ""
#. Label of the company_website (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:68
#: frontend/src/pages/JobForm.vue:75
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Website"
msgstr ""
@@ -1414,7 +1424,7 @@ msgstr ""
msgid "Configurations"
msgstr ""
#: frontend/src/components/UserDropdown.vue:180
#: frontend/src/components/UserDropdown.vue:182
msgid "Confirm"
msgstr "Confirmar"
@@ -1461,7 +1471,7 @@ msgid "Continue Learning"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:178
#: frontend/src/pages/Jobs.vue:196
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Contract"
msgstr ""
@@ -1491,7 +1501,7 @@ msgstr ""
#. Label of the country (Link) field in DocType 'User'
#. Label of the country (Link) field in DocType 'Job Opportunity'
#. Label of the country (Link) field in DocType 'Payment Country'
#: frontend/src/pages/Billing.vue:92 frontend/src/pages/JobForm.vue:40
#: frontend/src/pages/Billing.vue:92 frontend/src/pages/JobForm.vue:47
#: frontend/src/pages/Jobs.vue:57 lms/fixtures/custom_field.json
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/payment_country/payment_country.json
@@ -1533,7 +1543,8 @@ msgstr ""
#: frontend/src/components/Modals/Event.vue:24
#: frontend/src/components/Settings/BadgeForm.vue:194
#: frontend/src/components/Settings/Badges.vue:199
#: frontend/src/pages/Programs/ProgramForm.vue:195
#: frontend/src/components/Settings/TransactionDetails.vue:91
#: frontend/src/pages/Programs/ProgramForm.vue:196
#: frontend/src/pages/Programs/Programs.vue:35
#: lms/lms/doctype/batch_course/batch_course.json
#: lms/lms/doctype/cohort/cohort.json
@@ -1684,7 +1695,7 @@ msgstr ""
msgid "Course Title"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:436
#: frontend/src/pages/Programs/ProgramForm.vue:437
msgid "Course added to program successfully"
msgstr ""
@@ -1836,6 +1847,7 @@ msgstr ""
#. Label of the currency (Link) field in DocType 'LMS Batch'
#. Label of the currency (Link) field in DocType 'LMS Course'
#. Label of the currency (Link) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:64
#: frontend/src/pages/BatchForm.vue:285 frontend/src/pages/CourseForm.vue:279
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -1852,7 +1864,7 @@ msgstr ""
msgid "Current Streak"
msgstr ""
#: frontend/src/components/AppSidebar.vue:612
#: frontend/src/components/AppSidebar.vue:617
msgid "Custom Certificate Templates"
msgstr ""
@@ -1954,7 +1966,7 @@ msgstr ""
#: frontend/src/components/Settings/Badges.vue:171
#: frontend/src/pages/BatchForm.vue:565 frontend/src/pages/CourseForm.vue:597
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseForm.vue:67
#: frontend/src/pages/Programs/ProgramForm.vue:230
#: frontend/src/pages/Programs/ProgramForm.vue:231
msgid "Delete"
msgstr "Eliminar"
@@ -2004,7 +2016,7 @@ msgstr ""
#. Label of the description (Small Text) field in DocType 'Work Experience'
#: frontend/src/components/Modals/LiveClassModal.vue:80
#: frontend/src/components/Settings/BadgeForm.vue:32
#: frontend/src/pages/JobForm.vue:125
#: frontend/src/pages/JobForm.vue:132
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/cohort/cohort.json
@@ -2045,6 +2057,7 @@ msgstr ""
#. Label of the disabled (Check) field in DocType 'Job Opportunity'
#: frontend/src/components/Settings/Badges.vue:56
#: frontend/src/components/Settings/PaymentGateways.vue:55
#: frontend/src/components/Settings/ZoomSettings.vue:66
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Disabled"
@@ -2145,6 +2158,10 @@ msgstr ""
msgid "Edit Email Template"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8
msgid "Edit Payment Gateway"
msgstr ""
#: frontend/src/pages/Profile.vue:72
msgid "Edit Profile"
msgstr ""
@@ -2250,6 +2267,7 @@ msgstr ""
#: frontend/src/components/Modals/ZoomAccountModal.vue:23
#: frontend/src/components/Settings/BadgeForm.vue:14
#: frontend/src/components/Settings/Badges.vue:53
#: frontend/src/components/Settings/PaymentGateways.vue:52
#: frontend/src/components/Settings/ZoomSettings.vue:63
#: lms/lms/doctype/lms_badge/lms_badge.json
#: lms/lms/doctype/lms_zoom_settings/lms_zoom_settings.json
@@ -2301,7 +2319,7 @@ msgstr ""
msgid "Enforce Course Order"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:176
#: frontend/src/pages/Programs/ProgramForm.vue:177
msgid "Enroll Member to Program"
msgstr ""
@@ -2460,15 +2478,15 @@ msgstr ""
msgid "Evaluator Schedule"
msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:163
#: frontend/src/components/Settings/Evaluators.vue:160
msgid "Evaluator added successfully"
msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:196
#: frontend/src/components/Settings/Evaluators.vue:193
msgid "Evaluator deleted successfully"
msgstr ""
#: lms/lms/api.py:1392
#: lms/lms/api.py:1416
msgid "Evaluator does not exist."
msgstr ""
@@ -2640,10 +2658,15 @@ msgstr ""
msgid "File Type"
msgstr ""
#: frontend/src/components/Settings/Transactions.vue:15
msgid "Filter by Billing Name"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:23
msgid "Filter by Exercise"
msgstr ""
#: frontend/src/components/Settings/Transactions.vue:20
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:28
msgid "Filter by Member"
msgstr ""
@@ -2677,7 +2700,7 @@ msgid "Free"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:179
#: frontend/src/pages/Jobs.vue:197
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Freelance"
msgstr ""
@@ -2719,7 +2742,7 @@ msgid "Full Name"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:176
#: frontend/src/pages/Jobs.vue:194
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Full Time"
msgstr ""
@@ -2741,10 +2764,15 @@ msgid "GST Number"
msgstr ""
#. Label of the gstin (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:76
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "GSTIN"
msgstr ""
#: frontend/src/components/Settings/PaymentGateways.vue:134
msgid "Gateway"
msgstr ""
#. Label of the general_tab (Tab Break) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "General"
@@ -2923,6 +2951,11 @@ msgstr ""
msgid "Host"
msgstr ""
#. Option for the 'Work Mode' (Select) field in DocType 'Job Opportunity'
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Hybrid"
msgstr ""
#. Label of the current (Check) field in DocType 'Work Experience'
#: lms/lms/doctype/work_experience/work_experience.json
msgid "I am currently working here"
@@ -3197,7 +3230,7 @@ msgstr ""
msgid "Issue Date"
msgstr ""
#: frontend/src/components/AppSidebar.vue:609
#: frontend/src/components/AppSidebar.vue:614
msgid "Issue a Certificate"
msgstr ""
@@ -3273,7 +3306,7 @@ msgstr ""
#. 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/Jobs.vue:185
#: frontend/src/pages/Jobs.vue:212
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Jobs"
msgstr ""
@@ -3621,6 +3654,10 @@ msgstr ""
msgid "Learning Consistency"
msgstr ""
#: frontend/src/components/AppSidebar.vue:598
msgid "Learning Paths"
msgstr ""
#. Label of the left_at (Datetime) field in DocType 'LMS Live Class
#. Participant'
#: lms/lms/doctype/lms_live_class_participant/lms_live_class_participant.json
@@ -3753,6 +3790,7 @@ msgstr ""
#: frontend/src/components/Modals/CourseProgressSummary.vue:86
#: frontend/src/components/Settings/Evaluators.vue:81
#: frontend/src/components/Settings/Members.vue:79
#: frontend/src/components/Settings/Transactions.vue:94
#: frontend/src/pages/Assignments.vue:66 frontend/src/pages/Batches.vue:82
#: frontend/src/pages/CertifiedParticipants.vue:98
#: frontend/src/pages/Courses.vue:77
@@ -3786,7 +3824,7 @@ msgstr ""
msgid "Login"
msgstr ""
#: frontend/src/components/UserDropdown.vue:174
#: frontend/src/components/UserDropdown.vue:176
msgid "Login to Frappe Cloud?"
msgstr ""
@@ -3940,6 +3978,7 @@ msgstr ""
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:26
#: frontend/src/components/Settings/BadgeAssignments.vue:179
#: frontend/src/components/Settings/BadgeForm.vue:215
#: frontend/src/components/Settings/TransactionDetails.vue:26
#: frontend/src/components/Settings/ZoomSettings.vue:187
#: frontend/src/pages/AssignmentSubmissionList.vue:14
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:268
@@ -4073,7 +4112,7 @@ msgstr ""
msgid "Member Username"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:462
#: frontend/src/pages/Programs/ProgramForm.vue:463
msgid "Member added to program successfully"
msgstr ""
@@ -4157,7 +4196,7 @@ msgstr ""
msgid "Meta Tags"
msgstr ""
#: lms/lms/api.py:1432
#: lms/lms/api.py:1456
msgid "Meta tags should be a list."
msgstr ""
@@ -4209,11 +4248,11 @@ msgstr ""
msgid "Modified By"
msgstr ""
#: lms/lms/api.py:187
#: lms/lms/api.py:188
msgid "Module Name is incorrect or does not exist."
msgstr ""
#: lms/lms/api.py:183
#: lms/lms/api.py:184
msgid "Module is incorrect."
msgstr ""
@@ -4224,7 +4263,7 @@ msgstr ""
msgid "Monday"
msgstr ""
#: frontend/src/components/AppSidebar.vue:617
#: frontend/src/components/AppSidebar.vue:622
msgid "Monetization"
msgstr ""
@@ -4268,6 +4307,7 @@ msgstr "Nome"
#: frontend/src/components/Settings/EmailTemplates.vue:17
#: frontend/src/components/Settings/Evaluators.vue:17
#: frontend/src/components/Settings/Members.vue:17
#: frontend/src/components/Settings/PaymentGateways.vue:16
#: frontend/src/components/Settings/ZoomSettings.vue:17
#: frontend/src/pages/Courses.vue:312
#: frontend/src/pages/Programs/Programs.vue:10
@@ -4295,6 +4335,10 @@ msgstr ""
msgid "New Job Applicant"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7
msgid "New Payment Gateway"
msgstr ""
#: frontend/src/pages/QuizForm.vue:137
msgid "New Question"
msgstr ""
@@ -4399,7 +4443,7 @@ msgstr ""
msgid "No live classes scheduled"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:166
#: frontend/src/pages/Programs/ProgramForm.vue:167
msgid "No members added yet."
msgstr ""
@@ -4469,7 +4513,6 @@ msgstr ""
#: frontend/src/components/Assignment.vue:36
#: frontend/src/components/Settings/BrandSettings.vue:10
#: frontend/src/components/Settings/PaymentSettings.vue:9
#: frontend/src/components/Settings/SettingDetails.vue:10
#: frontend/src/pages/Programs/ProgramForm.vue:16
#: frontend/src/pages/QuizForm.vue:8 frontend/src/pages/QuizSubmission.vue:9
@@ -4522,6 +4565,11 @@ msgstr ""
msgid "Offline"
msgstr ""
#. Option for the 'Work Mode' (Select) field in DocType 'Job Opportunity'
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "On-site"
msgstr ""
#: lms/templates/emails/certification.html:16
msgid "Once again, congratulations on this significant accomplishment."
msgstr ""
@@ -4569,6 +4617,10 @@ msgstr ""
msgid "Open Ended"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:88
msgid "Open the "
msgstr ""
#. Label of the option (Data) field in DocType 'LMS Option'
#: frontend/src/components/Modals/Question.vue:70
#: lms/lms/doctype/lms_option/lms_option.json
@@ -4605,6 +4657,7 @@ msgid "Orange"
msgstr ""
#. Label of the order_id (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:70
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Order ID"
msgstr ""
@@ -4642,6 +4695,7 @@ msgid "Owner"
msgstr "Dono"
#. Label of the pan (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:77
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "PAN"
msgstr ""
@@ -4687,7 +4741,7 @@ msgid "Pan Number"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:177
#: frontend/src/pages/Jobs.vue:195
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Part Time"
msgstr ""
@@ -4747,21 +4801,38 @@ msgstr ""
#. Label of the payment_details_section (Section Break) field in DocType 'LMS
#. Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:42
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment Details"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:18
msgid "Payment For Certificate"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:51
msgid "Payment For Document"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:46
msgid "Payment For Document Type"
msgstr ""
#. Label of the payment_gateway (Data) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Payment Gateway"
msgstr ""
#. Label of the payment_id (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:79
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment ID"
msgstr ""
#. Label of the payment_received (Check) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:13
#: frontend/src/components/Settings/Transactions.vue:25
#: frontend/src/components/Settings/Transactions.vue:226
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment Received"
msgstr ""
@@ -4783,6 +4854,8 @@ msgid "Payment for "
msgstr ""
#. Label of the payment_for_certificate (Check) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/Transactions.vue:30
#: frontend/src/components/Settings/Transactions.vue:233
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment for Certificate"
msgstr ""
@@ -4923,7 +4996,7 @@ msgstr ""
msgid "Please login to access this page."
msgstr ""
#: lms/lms/api.py:179
#: lms/lms/api.py:180
msgid "Please login to continue with payment."
msgstr ""
@@ -4940,7 +5013,7 @@ msgstr ""
msgid "Please run the code to execute the test cases."
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:420
#: frontend/src/pages/Programs/ProgramForm.vue:421
msgid "Please select a course"
msgstr ""
@@ -4956,7 +5029,7 @@ msgstr ""
msgid "Please select a future date and time."
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:447
#: frontend/src/pages/Programs/ProgramForm.vue:448
msgid "Please select a member"
msgstr ""
@@ -5146,7 +5219,7 @@ msgstr ""
msgid "Program Courses"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:205
#: frontend/src/pages/Programs/ProgramForm.vue:206
msgid "Program Member"
msgstr ""
@@ -5155,15 +5228,15 @@ msgstr ""
msgid "Program Members"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:380
#: frontend/src/pages/Programs/ProgramForm.vue:381
msgid "Program created successfully"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:551
#: frontend/src/pages/Programs/ProgramForm.vue:552
msgid "Program deleted successfully"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:399
#: frontend/src/pages/Programs/ProgramForm.vue:400
msgid "Program updated successfully"
msgstr ""
@@ -5229,7 +5302,7 @@ msgid "Progress Distribution"
msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:99
#: frontend/src/pages/Programs/ProgramForm.vue:124
#: frontend/src/pages/Programs/ProgramForm.vue:125
msgid "Progress Summary"
msgstr ""
@@ -5407,7 +5480,7 @@ msgstr ""
msgid "Quiz will appear at the bottom of the lesson."
msgstr ""
#: frontend/src/components/AppSidebar.vue:601
#: frontend/src/components/AppSidebar.vue:606
#: frontend/src/pages/QuizForm.vue:396 frontend/src/pages/Quizzes.vue:275
#: frontend/src/pages/Quizzes.vue:285 lms/www/lms.py:249
msgid "Quizzes"
@@ -5497,6 +5570,11 @@ msgstr ""
msgid "Related Courses"
msgstr ""
#. Option for the 'Work Mode' (Select) field in DocType 'Job Opportunity'
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Remote"
msgstr ""
#: frontend/src/components/Controls/Uploader.vue:34
#: frontend/src/pages/BatchForm.vue:246 frontend/src/pages/CourseForm.vue:119
msgid "Remove"
@@ -5587,7 +5665,7 @@ msgstr ""
msgid "Role updated successfully"
msgstr ""
#: frontend/src/components/AppSidebar.vue:629
#: frontend/src/components/AppSidebar.vue:634
msgid "Roles"
msgstr ""
@@ -5671,11 +5749,13 @@ msgstr ""
#: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
#: frontend/src/components/Settings/BadgeForm.vue:78
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:38
#: frontend/src/components/Settings/TransactionDetails.vue:96
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17
#: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseForm.vue:101
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseModal.vue:9
#: frontend/src/pages/Programs/ProgramForm.vue:233
#: frontend/src/pages/Programs/ProgramForm.vue:234
#: frontend/src/pages/QuizForm.vue:43 frontend/src/pages/QuizSubmission.vue:14
#: frontend/src/pages/Quizzes.vue:105
msgid "Save"
@@ -5777,6 +5857,10 @@ msgstr ""
msgid "Select Date"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22
msgid "Select Payment Gateway"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseModal.vue:23
msgid "Select a Programming Exercise"
msgstr ""
@@ -5832,11 +5916,11 @@ msgstr ""
msgid "Setting up"
msgstr ""
#: frontend/src/components/AppSidebar.vue:622
#: frontend/src/components/AppSidebar.vue:627
msgid "Setting up payment gateway"
msgstr ""
#: frontend/src/components/AppSidebar.vue:627
#: frontend/src/components/AppSidebar.vue:632
#: frontend/src/components/Settings/Settings.vue:7
#: frontend/src/pages/BatchForm.vue:53 frontend/src/pages/CourseForm.vue:142
#: frontend/src/pages/ProfileRoles.vue:4
@@ -5994,6 +6078,7 @@ msgstr ""
#. Label of the source (Link) field in DocType 'LMS Payment'
#. Label of the source (Data) field in DocType 'LMS Source'
#. Label of the source (Data) field in DocType 'LMS Video Watch Duration'
#: frontend/src/components/Settings/TransactionDetails.vue:35
#: lms/lms/doctype/lms_batch_enrollment/lms_batch_enrollment.json
#: lms/lms/doctype/lms_payment/lms_payment.json
#: lms/lms/doctype/lms_source/lms_source.json
@@ -6106,7 +6191,7 @@ msgstr ""
#: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19
#: frontend/src/pages/JobForm.vue:46
#: frontend/src/pages/JobForm.vue:53
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:280
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/cohort/cohort.json
@@ -6243,7 +6328,7 @@ msgstr ""
msgid "Sunday"
msgstr "Domingo"
#: lms/lms/api.py:1057
#: lms/lms/api.py:1081
msgid "Suspicious pattern found in {0}: {1}"
msgstr ""
@@ -6706,6 +6791,10 @@ msgstr ""
msgid "Training Feedback"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:5
msgid "Transaction Details"
msgstr ""
#. Option for the 'Location Preference' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Travel"
@@ -6838,7 +6927,6 @@ msgid "Upcoming Live Classes"
msgstr ""
#: frontend/src/components/Settings/BrandSettings.vue:24
#: frontend/src/components/Settings/PaymentSettings.vue:27
#: frontend/src/components/Settings/SettingDetails.vue:23
msgid "Update"
msgstr "Atualizar"
@@ -7073,6 +7161,12 @@ msgstr ""
msgid "Work Experience Details"
msgstr ""
#. Label of the work_mode (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:32 frontend/src/pages/Jobs.vue:73
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Work Mode"
msgstr ""
#: frontend/src/components/CourseReviews.vue:8
#: frontend/src/components/Modals/ReviewModal.vue:5
#: lms/templates/reviews.html:117
@@ -7103,11 +7197,11 @@ msgstr ""
msgid "You are already certified for this course. Click on the card below to open your certificate."
msgstr ""
#: lms/lms/api.py:199
#: lms/lms/api.py:200
msgid "You are already enrolled for this batch."
msgstr ""
#: lms/lms/api.py:193
#: lms/lms/api.py:194
msgid "You are already enrolled for this course."
msgstr ""
@@ -7181,7 +7275,7 @@ msgstr ""
msgid "You have already exceeded the maximum number of attempts allowed for this quiz."
msgstr ""
#: lms/lms/api.py:223
#: lms/lms/api.py:224
msgid "You have already purchased the certificate for this course."
msgstr ""
@@ -7352,11 +7446,11 @@ msgstr ""
msgid "and then 'Add to Home Screen'"
msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:108
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114
msgid "applicant"
msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:108
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114
msgid "applicants"
msgstr ""
@@ -7509,7 +7603,7 @@ msgstr ""
msgid "{0} Quizzes"
msgstr ""
#: lms/lms/api.py:836 lms/lms/api.py:844
#: lms/lms/api.py:838 lms/lms/api.py:846
msgid "{0} Settings not found"
msgstr ""
@@ -7565,6 +7659,10 @@ msgstr ""
msgid "{0} mentioned you in a comment in {1}"
msgstr ""
#: lms/lms/api.py:887
msgid "{0} not found"
msgstr "{0} não foi encontrado"
#: lms/lms/utils.py:450
msgid "{0}k"
msgstr ""
+162 -64
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2025-09-19 16:04+0000\n"
"PO-Revision-Date: 2025-09-24 07:16\n"
"POT-Creation-Date: 2025-09-26 16:04+0000\n"
"PO-Revision-Date: 2025-09-27 08:15\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Portuguese, Brazilian\n"
"MIME-Version: 1.0\n"
@@ -145,8 +145,8 @@ msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:93
#: frontend/src/components/Settings/Members.vue:91
#: frontend/src/pages/Programs/ProgramForm.vue:56
#: frontend/src/pages/Programs/ProgramForm.vue:130
#: frontend/src/pages/Programs/ProgramForm.vue:179
#: frontend/src/pages/Programs/ProgramForm.vue:131
#: frontend/src/pages/Programs/ProgramForm.vue:180
msgid "Add"
msgstr "Adicionar"
@@ -156,7 +156,7 @@ msgstr "Adicionar"
msgid "Add Chapter"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:175
#: frontend/src/pages/Programs/ProgramForm.vue:176
msgid "Add Course to Program"
msgstr ""
@@ -221,6 +221,10 @@ msgstr ""
msgid "Add a new question"
msgstr ""
#: frontend/src/components/AppSidebar.vue:600
msgid "Add a program"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseModal.vue:5
msgid "Add a programming exercise to your lesson"
msgstr ""
@@ -274,6 +278,7 @@ msgid "Add your first lesson"
msgstr ""
#. Label of the address (Link) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:56
#: frontend/src/pages/Billing.vue:64
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Address"
@@ -353,6 +358,8 @@ msgstr ""
#. Label of the amount (Currency) field in DocType 'LMS Batch'
#. Label of the course_price (Currency) field in DocType 'LMS Course'
#. Label of the amount (Currency) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:68
#: frontend/src/components/Settings/Transactions.vue:219
#: frontend/src/pages/BatchForm.vue:278 frontend/src/pages/CourseForm.vue:262
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -460,7 +467,7 @@ msgstr ""
msgid "Are you sure you want to enroll?"
msgstr ""
#: frontend/src/components/UserDropdown.vue:175
#: frontend/src/components/UserDropdown.vue:177
msgid "Are you sure you want to login to your Frappe Cloud dashboard?"
msgstr ""
@@ -496,7 +503,7 @@ msgid "Assessment {0} has already been added to this batch."
msgstr ""
#. Label of the show_assessments (Check) field in DocType 'LMS Settings'
#: frontend/src/components/AppSidebar.vue:598
#: frontend/src/components/AppSidebar.vue:603
#: frontend/src/components/Assessments.vue:5
#: frontend/src/components/BatchStudents.vue:32
#: lms/lms/doctype/lms_settings/lms_settings.json
@@ -578,7 +585,7 @@ msgstr ""
msgid "Assignment will appear at the bottom of the lesson."
msgstr ""
#: frontend/src/components/AppSidebar.vue:602
#: frontend/src/components/AppSidebar.vue:607
#: frontend/src/components/Settings/Badges.vue:163
#: frontend/src/pages/Assignments.vue:208 lms/www/lms.py:271
msgid "Assignments"
@@ -702,6 +709,7 @@ msgstr ""
#: frontend/src/components/Modals/Event.vue:32
#: frontend/src/components/Settings/BadgeForm.vue:195
#: frontend/src/components/Settings/Badges.vue:200
#: frontend/src/components/Settings/TransactionDetails.vue:92
#: lms/lms/doctype/lms_batch_enrollment/lms_batch_enrollment.json
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
@@ -815,11 +823,11 @@ msgstr ""
msgid "Batch end date cannot be before the batch start date"
msgstr ""
#: lms/lms/api.py:210
#: lms/lms/api.py:211
msgid "Batch has already started."
msgstr ""
#: lms/lms/api.py:205
#: lms/lms/api.py:206
msgid "Batch is sold out."
msgstr ""
@@ -857,6 +865,8 @@ msgid "Billing Details"
msgstr ""
#. Label of the billing_name (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:31
#: frontend/src/components/Settings/Transactions.vue:213
#: frontend/src/pages/Billing.vue:70
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Billing Name"
@@ -1002,7 +1012,7 @@ msgstr ""
#. Enrollment'
#. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace
#: frontend/src/components/AppSidebar.vue:606
#: frontend/src/components/AppSidebar.vue:611
#: frontend/src/components/Modals/Event.vue:381
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58
#: frontend/src/pages/CourseCertification.vue:10
@@ -1145,7 +1155,7 @@ msgstr ""
#. Label of the city (Data) field in DocType 'User'
#. Label of the location (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/Billing.vue:81 frontend/src/pages/JobForm.vue:34
#: frontend/src/pages/Billing.vue:81 frontend/src/pages/JobForm.vue:41
#: lms/fixtures/custom_field.json
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "City"
@@ -1315,25 +1325,25 @@ msgstr "Empresa"
#. Label of the section_break_6 (Section Break) field in DocType 'Job
#. Opportunity'
#: frontend/src/pages/JobForm.vue:56
#: frontend/src/pages/JobForm.vue:63
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Details"
msgstr ""
#. Label of the company_email_address (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:75
#: frontend/src/pages/JobForm.vue:82
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Email Address"
msgstr ""
#. Label of the company_logo (Attach Image) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:80
#: frontend/src/pages/JobForm.vue:87
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Logo"
msgstr ""
#. Label of the company_name (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:62
#: frontend/src/pages/JobForm.vue:69
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Name"
msgstr "Nome da Empresa"
@@ -1344,7 +1354,7 @@ msgid "Company Type"
msgstr ""
#. Label of the company_website (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:68
#: frontend/src/pages/JobForm.vue:75
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Website"
msgstr ""
@@ -1414,7 +1424,7 @@ msgstr ""
msgid "Configurations"
msgstr ""
#: frontend/src/components/UserDropdown.vue:180
#: frontend/src/components/UserDropdown.vue:182
msgid "Confirm"
msgstr ""
@@ -1461,7 +1471,7 @@ msgid "Continue Learning"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:178
#: frontend/src/pages/Jobs.vue:196
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Contract"
msgstr "Contrato"
@@ -1491,7 +1501,7 @@ msgstr ""
#. Label of the country (Link) field in DocType 'User'
#. Label of the country (Link) field in DocType 'Job Opportunity'
#. Label of the country (Link) field in DocType 'Payment Country'
#: frontend/src/pages/Billing.vue:92 frontend/src/pages/JobForm.vue:40
#: frontend/src/pages/Billing.vue:92 frontend/src/pages/JobForm.vue:47
#: frontend/src/pages/Jobs.vue:57 lms/fixtures/custom_field.json
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/payment_country/payment_country.json
@@ -1533,7 +1543,8 @@ msgstr "País"
#: frontend/src/components/Modals/Event.vue:24
#: frontend/src/components/Settings/BadgeForm.vue:194
#: frontend/src/components/Settings/Badges.vue:199
#: frontend/src/pages/Programs/ProgramForm.vue:195
#: frontend/src/components/Settings/TransactionDetails.vue:91
#: frontend/src/pages/Programs/ProgramForm.vue:196
#: frontend/src/pages/Programs/Programs.vue:35
#: lms/lms/doctype/batch_course/batch_course.json
#: lms/lms/doctype/cohort/cohort.json
@@ -1684,7 +1695,7 @@ msgstr ""
msgid "Course Title"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:436
#: frontend/src/pages/Programs/ProgramForm.vue:437
msgid "Course added to program successfully"
msgstr ""
@@ -1836,6 +1847,7 @@ msgstr ""
#. Label of the currency (Link) field in DocType 'LMS Batch'
#. Label of the currency (Link) field in DocType 'LMS Course'
#. Label of the currency (Link) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:64
#: frontend/src/pages/BatchForm.vue:285 frontend/src/pages/CourseForm.vue:279
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -1852,7 +1864,7 @@ msgstr ""
msgid "Current Streak"
msgstr ""
#: frontend/src/components/AppSidebar.vue:612
#: frontend/src/components/AppSidebar.vue:617
msgid "Custom Certificate Templates"
msgstr ""
@@ -1954,7 +1966,7 @@ msgstr ""
#: frontend/src/components/Settings/Badges.vue:171
#: frontend/src/pages/BatchForm.vue:565 frontend/src/pages/CourseForm.vue:597
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseForm.vue:67
#: frontend/src/pages/Programs/ProgramForm.vue:230
#: frontend/src/pages/Programs/ProgramForm.vue:231
msgid "Delete"
msgstr "Excluir"
@@ -2004,7 +2016,7 @@ msgstr ""
#. Label of the description (Small Text) field in DocType 'Work Experience'
#: frontend/src/components/Modals/LiveClassModal.vue:80
#: frontend/src/components/Settings/BadgeForm.vue:32
#: frontend/src/pages/JobForm.vue:125
#: frontend/src/pages/JobForm.vue:132
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/cohort/cohort.json
@@ -2045,6 +2057,7 @@ msgstr ""
#. Label of the disabled (Check) field in DocType 'Job Opportunity'
#: frontend/src/components/Settings/Badges.vue:56
#: frontend/src/components/Settings/PaymentGateways.vue:55
#: frontend/src/components/Settings/ZoomSettings.vue:66
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Disabled"
@@ -2145,6 +2158,10 @@ msgstr ""
msgid "Edit Email Template"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8
msgid "Edit Payment Gateway"
msgstr ""
#: frontend/src/pages/Profile.vue:72
msgid "Edit Profile"
msgstr ""
@@ -2250,6 +2267,7 @@ msgstr ""
#: frontend/src/components/Modals/ZoomAccountModal.vue:23
#: frontend/src/components/Settings/BadgeForm.vue:14
#: frontend/src/components/Settings/Badges.vue:53
#: frontend/src/components/Settings/PaymentGateways.vue:52
#: frontend/src/components/Settings/ZoomSettings.vue:63
#: lms/lms/doctype/lms_badge/lms_badge.json
#: lms/lms/doctype/lms_zoom_settings/lms_zoom_settings.json
@@ -2301,7 +2319,7 @@ msgstr ""
msgid "Enforce Course Order"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:176
#: frontend/src/pages/Programs/ProgramForm.vue:177
msgid "Enroll Member to Program"
msgstr ""
@@ -2460,15 +2478,15 @@ msgstr ""
msgid "Evaluator Schedule"
msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:163
#: frontend/src/components/Settings/Evaluators.vue:160
msgid "Evaluator added successfully"
msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:196
#: frontend/src/components/Settings/Evaluators.vue:193
msgid "Evaluator deleted successfully"
msgstr ""
#: lms/lms/api.py:1392
#: lms/lms/api.py:1416
msgid "Evaluator does not exist."
msgstr ""
@@ -2640,10 +2658,15 @@ msgstr ""
msgid "File Type"
msgstr ""
#: frontend/src/components/Settings/Transactions.vue:15
msgid "Filter by Billing Name"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:23
msgid "Filter by Exercise"
msgstr ""
#: frontend/src/components/Settings/Transactions.vue:20
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:28
msgid "Filter by Member"
msgstr ""
@@ -2677,7 +2700,7 @@ msgid "Free"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:179
#: frontend/src/pages/Jobs.vue:197
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Freelance"
msgstr ""
@@ -2719,7 +2742,7 @@ msgid "Full Name"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:176
#: frontend/src/pages/Jobs.vue:194
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Full Time"
msgstr ""
@@ -2741,10 +2764,15 @@ msgid "GST Number"
msgstr ""
#. Label of the gstin (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:76
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "GSTIN"
msgstr ""
#: frontend/src/components/Settings/PaymentGateways.vue:134
msgid "Gateway"
msgstr ""
#. Label of the general_tab (Tab Break) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "General"
@@ -2923,6 +2951,11 @@ msgstr "Início"
msgid "Host"
msgstr ""
#. Option for the 'Work Mode' (Select) field in DocType 'Job Opportunity'
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Hybrid"
msgstr ""
#. Label of the current (Check) field in DocType 'Work Experience'
#: lms/lms/doctype/work_experience/work_experience.json
msgid "I am currently working here"
@@ -3197,7 +3230,7 @@ msgstr ""
msgid "Issue Date"
msgstr ""
#: frontend/src/components/AppSidebar.vue:609
#: frontend/src/components/AppSidebar.vue:614
msgid "Issue a Certificate"
msgstr ""
@@ -3273,7 +3306,7 @@ msgstr ""
#. 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/Jobs.vue:185
#: frontend/src/pages/Jobs.vue:212
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Jobs"
msgstr ""
@@ -3621,6 +3654,10 @@ msgstr ""
msgid "Learning Consistency"
msgstr ""
#: frontend/src/components/AppSidebar.vue:598
msgid "Learning Paths"
msgstr ""
#. Label of the left_at (Datetime) field in DocType 'LMS Live Class
#. Participant'
#: lms/lms/doctype/lms_live_class_participant/lms_live_class_participant.json
@@ -3753,6 +3790,7 @@ msgstr ""
#: frontend/src/components/Modals/CourseProgressSummary.vue:86
#: frontend/src/components/Settings/Evaluators.vue:81
#: frontend/src/components/Settings/Members.vue:79
#: frontend/src/components/Settings/Transactions.vue:94
#: frontend/src/pages/Assignments.vue:66 frontend/src/pages/Batches.vue:82
#: frontend/src/pages/CertifiedParticipants.vue:98
#: frontend/src/pages/Courses.vue:77
@@ -3786,7 +3824,7 @@ msgstr ""
msgid "Login"
msgstr ""
#: frontend/src/components/UserDropdown.vue:174
#: frontend/src/components/UserDropdown.vue:176
msgid "Login to Frappe Cloud?"
msgstr ""
@@ -3940,6 +3978,7 @@ msgstr ""
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:26
#: frontend/src/components/Settings/BadgeAssignments.vue:179
#: frontend/src/components/Settings/BadgeForm.vue:215
#: frontend/src/components/Settings/TransactionDetails.vue:26
#: frontend/src/components/Settings/ZoomSettings.vue:187
#: frontend/src/pages/AssignmentSubmissionList.vue:14
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:268
@@ -4073,7 +4112,7 @@ msgstr ""
msgid "Member Username"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:462
#: frontend/src/pages/Programs/ProgramForm.vue:463
msgid "Member added to program successfully"
msgstr ""
@@ -4157,7 +4196,7 @@ msgstr ""
msgid "Meta Tags"
msgstr "Meta Tags"
#: lms/lms/api.py:1432
#: lms/lms/api.py:1456
msgid "Meta tags should be a list."
msgstr ""
@@ -4209,11 +4248,11 @@ msgstr ""
msgid "Modified By"
msgstr ""
#: lms/lms/api.py:187
#: lms/lms/api.py:188
msgid "Module Name is incorrect or does not exist."
msgstr ""
#: lms/lms/api.py:183
#: lms/lms/api.py:184
msgid "Module is incorrect."
msgstr ""
@@ -4224,7 +4263,7 @@ msgstr ""
msgid "Monday"
msgstr ""
#: frontend/src/components/AppSidebar.vue:617
#: frontend/src/components/AppSidebar.vue:622
msgid "Monetization"
msgstr ""
@@ -4268,6 +4307,7 @@ msgstr "Nome"
#: frontend/src/components/Settings/EmailTemplates.vue:17
#: frontend/src/components/Settings/Evaluators.vue:17
#: frontend/src/components/Settings/Members.vue:17
#: frontend/src/components/Settings/PaymentGateways.vue:16
#: frontend/src/components/Settings/ZoomSettings.vue:17
#: frontend/src/pages/Courses.vue:312
#: frontend/src/pages/Programs/Programs.vue:10
@@ -4295,6 +4335,10 @@ msgstr ""
msgid "New Job Applicant"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7
msgid "New Payment Gateway"
msgstr ""
#: frontend/src/pages/QuizForm.vue:137
msgid "New Question"
msgstr ""
@@ -4399,7 +4443,7 @@ msgstr ""
msgid "No live classes scheduled"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:166
#: frontend/src/pages/Programs/ProgramForm.vue:167
msgid "No members added yet."
msgstr ""
@@ -4469,7 +4513,6 @@ msgstr "Não Permitido"
#: frontend/src/components/Assignment.vue:36
#: frontend/src/components/Settings/BrandSettings.vue:10
#: frontend/src/components/Settings/PaymentSettings.vue:9
#: frontend/src/components/Settings/SettingDetails.vue:10
#: frontend/src/pages/Programs/ProgramForm.vue:16
#: frontend/src/pages/QuizForm.vue:8 frontend/src/pages/QuizSubmission.vue:9
@@ -4522,6 +4565,11 @@ msgstr ""
msgid "Offline"
msgstr ""
#. Option for the 'Work Mode' (Select) field in DocType 'Job Opportunity'
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "On-site"
msgstr ""
#: lms/templates/emails/certification.html:16
msgid "Once again, congratulations on this significant accomplishment."
msgstr ""
@@ -4569,6 +4617,10 @@ msgstr ""
msgid "Open Ended"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:88
msgid "Open the "
msgstr ""
#. Label of the option (Data) field in DocType 'LMS Option'
#: frontend/src/components/Modals/Question.vue:70
#: lms/lms/doctype/lms_option/lms_option.json
@@ -4605,6 +4657,7 @@ msgid "Orange"
msgstr "Laranja"
#. Label of the order_id (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:70
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Order ID"
msgstr ""
@@ -4642,6 +4695,7 @@ msgid "Owner"
msgstr "Proprietário"
#. Label of the pan (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:77
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "PAN"
msgstr ""
@@ -4687,7 +4741,7 @@ msgid "Pan Number"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:177
#: frontend/src/pages/Jobs.vue:195
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Part Time"
msgstr ""
@@ -4747,21 +4801,38 @@ msgstr ""
#. Label of the payment_details_section (Section Break) field in DocType 'LMS
#. Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:42
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment Details"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:18
msgid "Payment For Certificate"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:51
msgid "Payment For Document"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:46
msgid "Payment For Document Type"
msgstr ""
#. Label of the payment_gateway (Data) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Payment Gateway"
msgstr ""
#. Label of the payment_id (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:79
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment ID"
msgstr ""
#. Label of the payment_received (Check) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:13
#: frontend/src/components/Settings/Transactions.vue:25
#: frontend/src/components/Settings/Transactions.vue:226
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment Received"
msgstr "Pagamento Recebido"
@@ -4783,6 +4854,8 @@ msgid "Payment for "
msgstr ""
#. Label of the payment_for_certificate (Check) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/Transactions.vue:30
#: frontend/src/components/Settings/Transactions.vue:233
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment for Certificate"
msgstr ""
@@ -4923,7 +4996,7 @@ msgstr ""
msgid "Please login to access this page."
msgstr ""
#: lms/lms/api.py:179
#: lms/lms/api.py:180
msgid "Please login to continue with payment."
msgstr ""
@@ -4940,7 +5013,7 @@ msgstr ""
msgid "Please run the code to execute the test cases."
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:420
#: frontend/src/pages/Programs/ProgramForm.vue:421
msgid "Please select a course"
msgstr ""
@@ -4956,7 +5029,7 @@ msgstr ""
msgid "Please select a future date and time."
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:447
#: frontend/src/pages/Programs/ProgramForm.vue:448
msgid "Please select a member"
msgstr ""
@@ -5146,7 +5219,7 @@ msgstr ""
msgid "Program Courses"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:205
#: frontend/src/pages/Programs/ProgramForm.vue:206
msgid "Program Member"
msgstr ""
@@ -5155,15 +5228,15 @@ msgstr ""
msgid "Program Members"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:380
#: frontend/src/pages/Programs/ProgramForm.vue:381
msgid "Program created successfully"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:551
#: frontend/src/pages/Programs/ProgramForm.vue:552
msgid "Program deleted successfully"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:399
#: frontend/src/pages/Programs/ProgramForm.vue:400
msgid "Program updated successfully"
msgstr ""
@@ -5229,7 +5302,7 @@ msgid "Progress Distribution"
msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:99
#: frontend/src/pages/Programs/ProgramForm.vue:124
#: frontend/src/pages/Programs/ProgramForm.vue:125
msgid "Progress Summary"
msgstr ""
@@ -5407,7 +5480,7 @@ msgstr ""
msgid "Quiz will appear at the bottom of the lesson."
msgstr ""
#: frontend/src/components/AppSidebar.vue:601
#: frontend/src/components/AppSidebar.vue:606
#: frontend/src/pages/QuizForm.vue:396 frontend/src/pages/Quizzes.vue:275
#: frontend/src/pages/Quizzes.vue:285 lms/www/lms.py:249
msgid "Quizzes"
@@ -5497,6 +5570,11 @@ msgstr ""
msgid "Related Courses"
msgstr ""
#. Option for the 'Work Mode' (Select) field in DocType 'Job Opportunity'
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Remote"
msgstr ""
#: frontend/src/components/Controls/Uploader.vue:34
#: frontend/src/pages/BatchForm.vue:246 frontend/src/pages/CourseForm.vue:119
msgid "Remove"
@@ -5587,7 +5665,7 @@ msgstr ""
msgid "Role updated successfully"
msgstr ""
#: frontend/src/components/AppSidebar.vue:629
#: frontend/src/components/AppSidebar.vue:634
msgid "Roles"
msgstr ""
@@ -5671,11 +5749,13 @@ msgstr ""
#: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
#: frontend/src/components/Settings/BadgeForm.vue:78
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:38
#: frontend/src/components/Settings/TransactionDetails.vue:96
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17
#: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseForm.vue:101
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseModal.vue:9
#: frontend/src/pages/Programs/ProgramForm.vue:233
#: frontend/src/pages/Programs/ProgramForm.vue:234
#: frontend/src/pages/QuizForm.vue:43 frontend/src/pages/QuizSubmission.vue:14
#: frontend/src/pages/Quizzes.vue:105
msgid "Save"
@@ -5777,6 +5857,10 @@ msgstr ""
msgid "Select Date"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22
msgid "Select Payment Gateway"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseModal.vue:23
msgid "Select a Programming Exercise"
msgstr ""
@@ -5832,11 +5916,11 @@ msgstr ""
msgid "Setting up"
msgstr ""
#: frontend/src/components/AppSidebar.vue:622
#: frontend/src/components/AppSidebar.vue:627
msgid "Setting up payment gateway"
msgstr ""
#: frontend/src/components/AppSidebar.vue:627
#: frontend/src/components/AppSidebar.vue:632
#: frontend/src/components/Settings/Settings.vue:7
#: frontend/src/pages/BatchForm.vue:53 frontend/src/pages/CourseForm.vue:142
#: frontend/src/pages/ProfileRoles.vue:4
@@ -5994,6 +6078,7 @@ msgstr ""
#. Label of the source (Link) field in DocType 'LMS Payment'
#. Label of the source (Data) field in DocType 'LMS Source'
#. Label of the source (Data) field in DocType 'LMS Video Watch Duration'
#: frontend/src/components/Settings/TransactionDetails.vue:35
#: lms/lms/doctype/lms_batch_enrollment/lms_batch_enrollment.json
#: lms/lms/doctype/lms_payment/lms_payment.json
#: lms/lms/doctype/lms_source/lms_source.json
@@ -6106,7 +6191,7 @@ msgstr ""
#: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19
#: frontend/src/pages/JobForm.vue:46
#: frontend/src/pages/JobForm.vue:53
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:280
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/cohort/cohort.json
@@ -6243,7 +6328,7 @@ msgstr ""
msgid "Sunday"
msgstr ""
#: lms/lms/api.py:1057
#: lms/lms/api.py:1081
msgid "Suspicious pattern found in {0}: {1}"
msgstr ""
@@ -6706,6 +6791,10 @@ msgstr ""
msgid "Training Feedback"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:5
msgid "Transaction Details"
msgstr ""
#. Option for the 'Location Preference' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Travel"
@@ -6838,7 +6927,6 @@ msgid "Upcoming Live Classes"
msgstr ""
#: frontend/src/components/Settings/BrandSettings.vue:24
#: frontend/src/components/Settings/PaymentSettings.vue:27
#: frontend/src/components/Settings/SettingDetails.vue:23
msgid "Update"
msgstr "Atualizar"
@@ -7073,6 +7161,12 @@ msgstr ""
msgid "Work Experience Details"
msgstr ""
#. Label of the work_mode (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:32 frontend/src/pages/Jobs.vue:73
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Work Mode"
msgstr ""
#: frontend/src/components/CourseReviews.vue:8
#: frontend/src/components/Modals/ReviewModal.vue:5
#: lms/templates/reviews.html:117
@@ -7103,11 +7197,11 @@ msgstr ""
msgid "You are already certified for this course. Click on the card below to open your certificate."
msgstr ""
#: lms/lms/api.py:199
#: lms/lms/api.py:200
msgid "You are already enrolled for this batch."
msgstr ""
#: lms/lms/api.py:193
#: lms/lms/api.py:194
msgid "You are already enrolled for this course."
msgstr ""
@@ -7181,7 +7275,7 @@ msgstr ""
msgid "You have already exceeded the maximum number of attempts allowed for this quiz."
msgstr ""
#: lms/lms/api.py:223
#: lms/lms/api.py:224
msgid "You have already purchased the certificate for this course."
msgstr ""
@@ -7352,11 +7446,11 @@ msgstr "e"
msgid "and then 'Add to Home Screen'"
msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:108
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114
msgid "applicant"
msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:108
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114
msgid "applicants"
msgstr ""
@@ -7509,7 +7603,7 @@ msgstr ""
msgid "{0} Quizzes"
msgstr ""
#: lms/lms/api.py:836 lms/lms/api.py:844
#: lms/lms/api.py:838 lms/lms/api.py:846
msgid "{0} Settings not found"
msgstr ""
@@ -7565,6 +7659,10 @@ msgstr ""
msgid "{0} mentioned you in a comment in {1}"
msgstr ""
#: lms/lms/api.py:887
msgid "{0} not found"
msgstr ""
#: lms/lms/utils.py:450
msgid "{0}k"
msgstr ""
+162 -64
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2025-09-19 16:04+0000\n"
"PO-Revision-Date: 2025-09-24 07:15\n"
"POT-Creation-Date: 2025-09-26 16:04+0000\n"
"PO-Revision-Date: 2025-09-27 08:15\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Russian\n"
"MIME-Version: 1.0\n"
@@ -145,8 +145,8 @@ msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:93
#: frontend/src/components/Settings/Members.vue:91
#: frontend/src/pages/Programs/ProgramForm.vue:56
#: frontend/src/pages/Programs/ProgramForm.vue:130
#: frontend/src/pages/Programs/ProgramForm.vue:179
#: frontend/src/pages/Programs/ProgramForm.vue:131
#: frontend/src/pages/Programs/ProgramForm.vue:180
msgid "Add"
msgstr ""
@@ -156,7 +156,7 @@ msgstr ""
msgid "Add Chapter"
msgstr "Добавить главу"
#: frontend/src/pages/Programs/ProgramForm.vue:175
#: frontend/src/pages/Programs/ProgramForm.vue:176
msgid "Add Course to Program"
msgstr ""
@@ -221,6 +221,10 @@ msgstr ""
msgid "Add a new question"
msgstr ""
#: frontend/src/components/AppSidebar.vue:600
msgid "Add a program"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseModal.vue:5
msgid "Add a programming exercise to your lesson"
msgstr ""
@@ -274,6 +278,7 @@ msgid "Add your first lesson"
msgstr ""
#. Label of the address (Link) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:56
#: frontend/src/pages/Billing.vue:64
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Address"
@@ -353,6 +358,8 @@ msgstr ""
#. Label of the amount (Currency) field in DocType 'LMS Batch'
#. Label of the course_price (Currency) field in DocType 'LMS Course'
#. Label of the amount (Currency) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:68
#: frontend/src/components/Settings/Transactions.vue:219
#: frontend/src/pages/BatchForm.vue:278 frontend/src/pages/CourseForm.vue:262
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -460,7 +467,7 @@ msgstr ""
msgid "Are you sure you want to enroll?"
msgstr ""
#: frontend/src/components/UserDropdown.vue:175
#: frontend/src/components/UserDropdown.vue:177
msgid "Are you sure you want to login to your Frappe Cloud dashboard?"
msgstr ""
@@ -496,7 +503,7 @@ msgid "Assessment {0} has already been added to this batch."
msgstr "Оценка {0} уже добавлена в этот пакет."
#. Label of the show_assessments (Check) field in DocType 'LMS Settings'
#: frontend/src/components/AppSidebar.vue:598
#: frontend/src/components/AppSidebar.vue:603
#: frontend/src/components/Assessments.vue:5
#: frontend/src/components/BatchStudents.vue:32
#: lms/lms/doctype/lms_settings/lms_settings.json
@@ -578,7 +585,7 @@ msgstr ""
msgid "Assignment will appear at the bottom of the lesson."
msgstr "Задание появится в конце урока."
#: frontend/src/components/AppSidebar.vue:602
#: frontend/src/components/AppSidebar.vue:607
#: frontend/src/components/Settings/Badges.vue:163
#: frontend/src/pages/Assignments.vue:208 lms/www/lms.py:271
msgid "Assignments"
@@ -702,6 +709,7 @@ msgstr ""
#: frontend/src/components/Modals/Event.vue:32
#: frontend/src/components/Settings/BadgeForm.vue:195
#: frontend/src/components/Settings/Badges.vue:200
#: frontend/src/components/Settings/TransactionDetails.vue:92
#: lms/lms/doctype/lms_batch_enrollment/lms_batch_enrollment.json
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
@@ -815,11 +823,11 @@ msgstr ""
msgid "Batch end date cannot be before the batch start date"
msgstr ""
#: lms/lms/api.py:210
#: lms/lms/api.py:211
msgid "Batch has already started."
msgstr ""
#: lms/lms/api.py:205
#: lms/lms/api.py:206
msgid "Batch is sold out."
msgstr ""
@@ -857,6 +865,8 @@ msgid "Billing Details"
msgstr "Платёжные реквизиты"
#. Label of the billing_name (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:31
#: frontend/src/components/Settings/Transactions.vue:213
#: frontend/src/pages/Billing.vue:70
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Billing Name"
@@ -1002,7 +1012,7 @@ msgstr ""
#. Enrollment'
#. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace
#: frontend/src/components/AppSidebar.vue:606
#: frontend/src/components/AppSidebar.vue:611
#: frontend/src/components/Modals/Event.vue:381
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58
#: frontend/src/pages/CourseCertification.vue:10
@@ -1145,7 +1155,7 @@ msgstr "Выберите один ответ"
#. Label of the city (Data) field in DocType 'User'
#. Label of the location (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/Billing.vue:81 frontend/src/pages/JobForm.vue:34
#: frontend/src/pages/Billing.vue:81 frontend/src/pages/JobForm.vue:41
#: lms/fixtures/custom_field.json
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "City"
@@ -1315,25 +1325,25 @@ msgstr ""
#. Label of the section_break_6 (Section Break) field in DocType 'Job
#. Opportunity'
#: frontend/src/pages/JobForm.vue:56
#: frontend/src/pages/JobForm.vue:63
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Details"
msgstr "Информация о компании"
#. Label of the company_email_address (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:75
#: frontend/src/pages/JobForm.vue:82
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Email Address"
msgstr "Email Компании"
#. Label of the company_logo (Attach Image) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:80
#: frontend/src/pages/JobForm.vue:87
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Logo"
msgstr "Логотип Компании"
#. Label of the company_name (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:62
#: frontend/src/pages/JobForm.vue:69
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Name"
msgstr ""
@@ -1344,7 +1354,7 @@ msgid "Company Type"
msgstr ""
#. Label of the company_website (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:68
#: frontend/src/pages/JobForm.vue:75
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Website"
msgstr "Вебсайт Компании"
@@ -1414,7 +1424,7 @@ msgstr ""
msgid "Configurations"
msgstr ""
#: frontend/src/components/UserDropdown.vue:180
#: frontend/src/components/UserDropdown.vue:182
msgid "Confirm"
msgstr "Подтвердить"
@@ -1461,7 +1471,7 @@ msgid "Continue Learning"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:178
#: frontend/src/pages/Jobs.vue:196
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Contract"
msgstr ""
@@ -1491,7 +1501,7 @@ msgstr ""
#. Label of the country (Link) field in DocType 'User'
#. Label of the country (Link) field in DocType 'Job Opportunity'
#. Label of the country (Link) field in DocType 'Payment Country'
#: frontend/src/pages/Billing.vue:92 frontend/src/pages/JobForm.vue:40
#: frontend/src/pages/Billing.vue:92 frontend/src/pages/JobForm.vue:47
#: frontend/src/pages/Jobs.vue:57 lms/fixtures/custom_field.json
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/payment_country/payment_country.json
@@ -1533,7 +1543,8 @@ msgstr ""
#: frontend/src/components/Modals/Event.vue:24
#: frontend/src/components/Settings/BadgeForm.vue:194
#: frontend/src/components/Settings/Badges.vue:199
#: frontend/src/pages/Programs/ProgramForm.vue:195
#: frontend/src/components/Settings/TransactionDetails.vue:91
#: frontend/src/pages/Programs/ProgramForm.vue:196
#: frontend/src/pages/Programs/Programs.vue:35
#: lms/lms/doctype/batch_course/batch_course.json
#: lms/lms/doctype/cohort/cohort.json
@@ -1684,7 +1695,7 @@ msgstr "Статистика курса"
msgid "Course Title"
msgstr "Заголовок курса"
#: frontend/src/pages/Programs/ProgramForm.vue:436
#: frontend/src/pages/Programs/ProgramForm.vue:437
msgid "Course added to program successfully"
msgstr ""
@@ -1836,6 +1847,7 @@ msgstr ""
#. Label of the currency (Link) field in DocType 'LMS Batch'
#. Label of the currency (Link) field in DocType 'LMS Course'
#. Label of the currency (Link) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:64
#: frontend/src/pages/BatchForm.vue:285 frontend/src/pages/CourseForm.vue:279
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -1852,7 +1864,7 @@ msgstr "Текущий урок"
msgid "Current Streak"
msgstr ""
#: frontend/src/components/AppSidebar.vue:612
#: frontend/src/components/AppSidebar.vue:617
msgid "Custom Certificate Templates"
msgstr ""
@@ -1954,7 +1966,7 @@ msgstr "Тип степени"
#: frontend/src/components/Settings/Badges.vue:171
#: frontend/src/pages/BatchForm.vue:565 frontend/src/pages/CourseForm.vue:597
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseForm.vue:67
#: frontend/src/pages/Programs/ProgramForm.vue:230
#: frontend/src/pages/Programs/ProgramForm.vue:231
msgid "Delete"
msgstr ""
@@ -2004,7 +2016,7 @@ msgstr ""
#. Label of the description (Small Text) field in DocType 'Work Experience'
#: frontend/src/components/Modals/LiveClassModal.vue:80
#: frontend/src/components/Settings/BadgeForm.vue:32
#: frontend/src/pages/JobForm.vue:125
#: frontend/src/pages/JobForm.vue:132
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/cohort/cohort.json
@@ -2045,6 +2057,7 @@ msgstr ""
#. Label of the disabled (Check) field in DocType 'Job Opportunity'
#: frontend/src/components/Settings/Badges.vue:56
#: frontend/src/components/Settings/PaymentGateways.vue:55
#: frontend/src/components/Settings/ZoomSettings.vue:66
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Disabled"
@@ -2145,6 +2158,10 @@ msgstr "Редактировать главу"
msgid "Edit Email Template"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8
msgid "Edit Payment Gateway"
msgstr ""
#: frontend/src/pages/Profile.vue:72
msgid "Edit Profile"
msgstr "Редактировать профиль"
@@ -2250,6 +2267,7 @@ msgstr ""
#: frontend/src/components/Modals/ZoomAccountModal.vue:23
#: frontend/src/components/Settings/BadgeForm.vue:14
#: frontend/src/components/Settings/Badges.vue:53
#: frontend/src/components/Settings/PaymentGateways.vue:52
#: frontend/src/components/Settings/ZoomSettings.vue:63
#: lms/lms/doctype/lms_badge/lms_badge.json
#: lms/lms/doctype/lms_zoom_settings/lms_zoom_settings.json
@@ -2301,7 +2319,7 @@ msgstr ""
msgid "Enforce Course Order"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:176
#: frontend/src/pages/Programs/ProgramForm.vue:177
msgid "Enroll Member to Program"
msgstr ""
@@ -2460,15 +2478,15 @@ msgstr ""
msgid "Evaluator Schedule"
msgstr "График оценки"
#: frontend/src/components/Settings/Evaluators.vue:163
#: frontend/src/components/Settings/Evaluators.vue:160
msgid "Evaluator added successfully"
msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:196
#: frontend/src/components/Settings/Evaluators.vue:193
msgid "Evaluator deleted successfully"
msgstr ""
#: lms/lms/api.py:1392
#: lms/lms/api.py:1416
msgid "Evaluator does not exist."
msgstr ""
@@ -2640,10 +2658,15 @@ msgstr "Область специальности/исследования"
msgid "File Type"
msgstr "Тип файла"
#: frontend/src/components/Settings/Transactions.vue:15
msgid "Filter by Billing Name"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:23
msgid "Filter by Exercise"
msgstr ""
#: frontend/src/components/Settings/Transactions.vue:20
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:28
msgid "Filter by Member"
msgstr ""
@@ -2677,7 +2700,7 @@ msgid "Free"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:179
#: frontend/src/pages/Jobs.vue:197
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Freelance"
msgstr "Фриланс"
@@ -2719,7 +2742,7 @@ msgid "Full Name"
msgstr "Полное имя"
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:176
#: frontend/src/pages/Jobs.vue:194
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Full Time"
msgstr "Полная занятость"
@@ -2741,10 +2764,15 @@ msgid "GST Number"
msgstr ""
#. Label of the gstin (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:76
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "GSTIN"
msgstr "GSTIN"
#: frontend/src/components/Settings/PaymentGateways.vue:134
msgid "Gateway"
msgstr ""
#. Label of the general_tab (Tab Break) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "General"
@@ -2923,6 +2951,11 @@ msgstr ""
msgid "Host"
msgstr "Сервер"
#. Option for the 'Work Mode' (Select) field in DocType 'Job Opportunity'
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Hybrid"
msgstr ""
#. Label of the current (Check) field in DocType 'Work Experience'
#: lms/lms/doctype/work_experience/work_experience.json
msgid "I am currently working here"
@@ -3197,7 +3230,7 @@ msgstr ""
msgid "Issue Date"
msgstr "Дата"
#: frontend/src/components/AppSidebar.vue:609
#: frontend/src/components/AppSidebar.vue:614
msgid "Issue a Certificate"
msgstr ""
@@ -3273,7 +3306,7 @@ msgstr "Должность"
#. 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/Jobs.vue:185
#: frontend/src/pages/Jobs.vue:212
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Jobs"
msgstr "Вакансии"
@@ -3621,6 +3654,10 @@ msgstr ""
msgid "Learning Consistency"
msgstr ""
#: frontend/src/components/AppSidebar.vue:598
msgid "Learning Paths"
msgstr ""
#. Label of the left_at (Datetime) field in DocType 'LMS Live Class
#. Participant'
#: lms/lms/doctype/lms_live_class_participant/lms_live_class_participant.json
@@ -3753,6 +3790,7 @@ msgstr ""
#: frontend/src/components/Modals/CourseProgressSummary.vue:86
#: frontend/src/components/Settings/Evaluators.vue:81
#: frontend/src/components/Settings/Members.vue:79
#: frontend/src/components/Settings/Transactions.vue:94
#: frontend/src/pages/Assignments.vue:66 frontend/src/pages/Batches.vue:82
#: frontend/src/pages/CertifiedParticipants.vue:98
#: frontend/src/pages/Courses.vue:77
@@ -3786,7 +3824,7 @@ msgstr ""
msgid "Login"
msgstr "Логин"
#: frontend/src/components/UserDropdown.vue:174
#: frontend/src/components/UserDropdown.vue:176
msgid "Login to Frappe Cloud?"
msgstr ""
@@ -3940,6 +3978,7 @@ msgstr ""
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:26
#: frontend/src/components/Settings/BadgeAssignments.vue:179
#: frontend/src/components/Settings/BadgeForm.vue:215
#: frontend/src/components/Settings/TransactionDetails.vue:26
#: frontend/src/components/Settings/ZoomSettings.vue:187
#: frontend/src/pages/AssignmentSubmissionList.vue:14
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:268
@@ -4073,7 +4112,7 @@ msgstr "Тип участника"
msgid "Member Username"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:462
#: frontend/src/pages/Programs/ProgramForm.vue:463
msgid "Member added to program successfully"
msgstr ""
@@ -4157,7 +4196,7 @@ msgstr ""
msgid "Meta Tags"
msgstr ""
#: lms/lms/api.py:1432
#: lms/lms/api.py:1456
msgid "Meta tags should be a list."
msgstr ""
@@ -4209,11 +4248,11 @@ msgstr ""
msgid "Modified By"
msgstr "Изменено"
#: lms/lms/api.py:187
#: lms/lms/api.py:188
msgid "Module Name is incorrect or does not exist."
msgstr "Имя модуля неверно или не существует."
#: lms/lms/api.py:183
#: lms/lms/api.py:184
msgid "Module is incorrect."
msgstr "Модуль неверный."
@@ -4224,7 +4263,7 @@ msgstr "Модуль неверный."
msgid "Monday"
msgstr "Понедельник"
#: frontend/src/components/AppSidebar.vue:617
#: frontend/src/components/AppSidebar.vue:622
msgid "Monetization"
msgstr ""
@@ -4268,6 +4307,7 @@ msgstr ""
#: frontend/src/components/Settings/EmailTemplates.vue:17
#: frontend/src/components/Settings/Evaluators.vue:17
#: frontend/src/components/Settings/Members.vue:17
#: frontend/src/components/Settings/PaymentGateways.vue:16
#: frontend/src/components/Settings/ZoomSettings.vue:17
#: frontend/src/pages/Courses.vue:312
#: frontend/src/pages/Programs/Programs.vue:10
@@ -4295,6 +4335,10 @@ msgstr "Новая Вакансия"
msgid "New Job Applicant"
msgstr "Новый соискатель работы"
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7
msgid "New Payment Gateway"
msgstr ""
#: frontend/src/pages/QuizForm.vue:137
msgid "New Question"
msgstr ""
@@ -4399,7 +4443,7 @@ msgstr "Без введения"
msgid "No live classes scheduled"
msgstr "Не запланированы онлайн-курсы"
#: frontend/src/pages/Programs/ProgramForm.vue:166
#: frontend/src/pages/Programs/ProgramForm.vue:167
msgid "No members added yet."
msgstr ""
@@ -4469,7 +4513,6 @@ msgstr ""
#: frontend/src/components/Assignment.vue:36
#: frontend/src/components/Settings/BrandSettings.vue:10
#: frontend/src/components/Settings/PaymentSettings.vue:9
#: frontend/src/components/Settings/SettingDetails.vue:10
#: frontend/src/pages/Programs/ProgramForm.vue:16
#: frontend/src/pages/QuizForm.vue:8 frontend/src/pages/QuizSubmission.vue:9
@@ -4522,6 +4565,11 @@ msgstr ""
msgid "Offline"
msgstr "Offline"
#. Option for the 'Work Mode' (Select) field in DocType 'Job Opportunity'
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "On-site"
msgstr ""
#: lms/templates/emails/certification.html:16
msgid "Once again, congratulations on this significant accomplishment."
msgstr "Еще раз поздравляю с этим значительным достижением."
@@ -4569,6 +4617,10 @@ msgstr "Открытый курс"
msgid "Open Ended"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:88
msgid "Open the "
msgstr ""
#. Label of the option (Data) field in DocType 'LMS Option'
#: frontend/src/components/Modals/Question.vue:70
#: lms/lms/doctype/lms_option/lms_option.json
@@ -4605,6 +4657,7 @@ msgid "Orange"
msgstr ""
#. Label of the order_id (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:70
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Order ID"
msgstr "ID Заказа"
@@ -4642,6 +4695,7 @@ msgid "Owner"
msgstr ""
#. Label of the pan (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:77
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "PAN"
msgstr "PAN"
@@ -4687,7 +4741,7 @@ msgid "Pan Number"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:177
#: frontend/src/pages/Jobs.vue:195
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Part Time"
msgstr "Неполная занятость"
@@ -4747,21 +4801,38 @@ msgstr "Страна платежа"
#. Label of the payment_details_section (Section Break) field in DocType 'LMS
#. Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:42
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment Details"
msgstr "Платежные данные"
#: frontend/src/components/Settings/TransactionDetails.vue:18
msgid "Payment For Certificate"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:51
msgid "Payment For Document"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:46
msgid "Payment For Document Type"
msgstr ""
#. Label of the payment_gateway (Data) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Payment Gateway"
msgstr ""
#. Label of the payment_id (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:79
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment ID"
msgstr "ID Платежа"
#. Label of the payment_received (Check) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:13
#: frontend/src/components/Settings/Transactions.vue:25
#: frontend/src/components/Settings/Transactions.vue:226
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment Received"
msgstr ""
@@ -4783,6 +4854,8 @@ msgid "Payment for "
msgstr ""
#. Label of the payment_for_certificate (Check) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/Transactions.vue:30
#: frontend/src/components/Settings/Transactions.vue:233
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment for Certificate"
msgstr ""
@@ -4923,7 +4996,7 @@ msgstr "Пожалуйста, войдите в систему, чтобы по
msgid "Please login to access this page."
msgstr "Пожалуйста, войдите в систему, чтобы получить доступ к этой странице."
#: lms/lms/api.py:179
#: lms/lms/api.py:180
msgid "Please login to continue with payment."
msgstr "Пожалуйста, войдите в систему, чтобы продолжить оплату."
@@ -4940,7 +5013,7 @@ msgstr "Пожалуйста, хорошо подготовьтесь и при
msgid "Please run the code to execute the test cases."
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:420
#: frontend/src/pages/Programs/ProgramForm.vue:421
msgid "Please select a course"
msgstr ""
@@ -4956,7 +5029,7 @@ msgstr ""
msgid "Please select a future date and time."
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:447
#: frontend/src/pages/Programs/ProgramForm.vue:448
msgid "Please select a member"
msgstr ""
@@ -5146,7 +5219,7 @@ msgstr ""
msgid "Program Courses"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:205
#: frontend/src/pages/Programs/ProgramForm.vue:206
msgid "Program Member"
msgstr ""
@@ -5155,15 +5228,15 @@ msgstr ""
msgid "Program Members"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:380
#: frontend/src/pages/Programs/ProgramForm.vue:381
msgid "Program created successfully"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:551
#: frontend/src/pages/Programs/ProgramForm.vue:552
msgid "Program deleted successfully"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:399
#: frontend/src/pages/Programs/ProgramForm.vue:400
msgid "Program updated successfully"
msgstr ""
@@ -5229,7 +5302,7 @@ msgid "Progress Distribution"
msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:99
#: frontend/src/pages/Programs/ProgramForm.vue:124
#: frontend/src/pages/Programs/ProgramForm.vue:125
msgid "Progress Summary"
msgstr ""
@@ -5407,7 +5480,7 @@ msgstr ""
msgid "Quiz will appear at the bottom of the lesson."
msgstr "Тест появится в конце урока."
#: frontend/src/components/AppSidebar.vue:601
#: frontend/src/components/AppSidebar.vue:606
#: frontend/src/pages/QuizForm.vue:396 frontend/src/pages/Quizzes.vue:275
#: frontend/src/pages/Quizzes.vue:285 lms/www/lms.py:249
msgid "Quizzes"
@@ -5497,6 +5570,11 @@ msgstr "Отклонено"
msgid "Related Courses"
msgstr "Похожие курсы"
#. Option for the 'Work Mode' (Select) field in DocType 'Job Opportunity'
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Remote"
msgstr ""
#: frontend/src/components/Controls/Uploader.vue:34
#: frontend/src/pages/BatchForm.vue:246 frontend/src/pages/CourseForm.vue:119
msgid "Remove"
@@ -5587,7 +5665,7 @@ msgstr ""
msgid "Role updated successfully"
msgstr ""
#: frontend/src/components/AppSidebar.vue:629
#: frontend/src/components/AppSidebar.vue:634
msgid "Roles"
msgstr ""
@@ -5671,11 +5749,13 @@ msgstr "Суббота"
#: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
#: frontend/src/components/Settings/BadgeForm.vue:78
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:38
#: frontend/src/components/Settings/TransactionDetails.vue:96
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17
#: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseForm.vue:101
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseModal.vue:9
#: frontend/src/pages/Programs/ProgramForm.vue:233
#: frontend/src/pages/Programs/ProgramForm.vue:234
#: frontend/src/pages/QuizForm.vue:43 frontend/src/pages/QuizSubmission.vue:14
#: frontend/src/pages/Quizzes.vue:105
msgid "Save"
@@ -5777,6 +5857,10 @@ msgstr ""
msgid "Select Date"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22
msgid "Select Payment Gateway"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseModal.vue:23
msgid "Select a Programming Exercise"
msgstr ""
@@ -5832,11 +5916,11 @@ msgstr "Введите свой пароль"
msgid "Setting up"
msgstr ""
#: frontend/src/components/AppSidebar.vue:622
#: frontend/src/components/AppSidebar.vue:627
msgid "Setting up payment gateway"
msgstr ""
#: frontend/src/components/AppSidebar.vue:627
#: frontend/src/components/AppSidebar.vue:632
#: frontend/src/components/Settings/Settings.vue:7
#: frontend/src/pages/BatchForm.vue:53 frontend/src/pages/CourseForm.vue:142
#: frontend/src/pages/ProfileRoles.vue:4
@@ -5994,6 +6078,7 @@ msgstr "Решение"
#. Label of the source (Link) field in DocType 'LMS Payment'
#. Label of the source (Data) field in DocType 'LMS Source'
#. Label of the source (Data) field in DocType 'LMS Video Watch Duration'
#: frontend/src/components/Settings/TransactionDetails.vue:35
#: lms/lms/doctype/lms_batch_enrollment/lms_batch_enrollment.json
#: lms/lms/doctype/lms_payment/lms_payment.json
#: lms/lms/doctype/lms_source/lms_source.json
@@ -6106,7 +6191,7 @@ msgstr "Статистика"
#: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19
#: frontend/src/pages/JobForm.vue:46
#: frontend/src/pages/JobForm.vue:53
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:280
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/cohort/cohort.json
@@ -6243,7 +6328,7 @@ msgstr "Резюме"
msgid "Sunday"
msgstr "Воскресенье"
#: lms/lms/api.py:1057
#: lms/lms/api.py:1081
msgid "Suspicious pattern found in {0}: {1}"
msgstr ""
@@ -6706,6 +6791,10 @@ msgstr "Всего регистраций"
msgid "Training Feedback"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:5
msgid "Transaction Details"
msgstr ""
#. Option for the 'Location Preference' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Travel"
@@ -6838,7 +6927,6 @@ msgid "Upcoming Live Classes"
msgstr ""
#: frontend/src/components/Settings/BrandSettings.vue:24
#: frontend/src/components/Settings/PaymentSettings.vue:27
#: frontend/src/components/Settings/SettingDetails.vue:23
msgid "Update"
msgstr ""
@@ -7073,6 +7161,12 @@ msgstr "Опыт работы"
msgid "Work Experience Details"
msgstr ""
#. Label of the work_mode (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:32 frontend/src/pages/Jobs.vue:73
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Work Mode"
msgstr ""
#: frontend/src/components/CourseReviews.vue:8
#: frontend/src/components/Modals/ReviewModal.vue:5
#: lms/templates/reviews.html:117
@@ -7103,11 +7197,11 @@ msgstr "У вас уже есть оценка {0} в {1} для курса {2}.
msgid "You are already certified for this course. Click on the card below to open your certificate."
msgstr ""
#: lms/lms/api.py:199
#: lms/lms/api.py:200
msgid "You are already enrolled for this batch."
msgstr "Вы уже зачислены в эту группу."
#: lms/lms/api.py:193
#: lms/lms/api.py:194
msgid "You are already enrolled for this course."
msgstr "Вы уже зачислены на этот курс."
@@ -7181,7 +7275,7 @@ msgstr "Вы уже подали заявку на эту вакансию."
msgid "You have already exceeded the maximum number of attempts allowed for this quiz."
msgstr "Вы уже превысили максимально допустимое количество попыток для этого теста."
#: lms/lms/api.py:223
#: lms/lms/api.py:224
msgid "You have already purchased the certificate for this course."
msgstr ""
@@ -7352,11 +7446,11 @@ msgstr ""
msgid "and then 'Add to Home Screen'"
msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:108
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114
msgid "applicant"
msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:108
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114
msgid "applicants"
msgstr ""
@@ -7509,7 +7603,7 @@ msgstr ""
msgid "{0} Quizzes"
msgstr ""
#: lms/lms/api.py:836 lms/lms/api.py:844
#: lms/lms/api.py:838 lms/lms/api.py:846
msgid "{0} Settings not found"
msgstr ""
@@ -7565,6 +7659,10 @@ msgstr "{0} упомянул вас в комментарии в вашей гр
msgid "{0} mentioned you in a comment in {1}"
msgstr "{0} упомянул вас в комментарии в {1}"
#: lms/lms/api.py:887
msgid "{0} not found"
msgstr ""
#: lms/lms/utils.py:450
msgid "{0}k"
msgstr "{0}k"
+196 -98
View File
File diff suppressed because it is too large Load Diff
+196 -98
View File
File diff suppressed because it is too large Load Diff
+196 -98
View File
File diff suppressed because it is too large Load Diff
+162 -64
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2025-09-19 16:04+0000\n"
"PO-Revision-Date: 2025-09-24 07:16\n"
"POT-Creation-Date: 2025-09-26 16:04+0000\n"
"PO-Revision-Date: 2025-09-27 08:15\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Thai\n"
"MIME-Version: 1.0\n"
@@ -145,8 +145,8 @@ msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:93
#: frontend/src/components/Settings/Members.vue:91
#: frontend/src/pages/Programs/ProgramForm.vue:56
#: frontend/src/pages/Programs/ProgramForm.vue:130
#: frontend/src/pages/Programs/ProgramForm.vue:179
#: frontend/src/pages/Programs/ProgramForm.vue:131
#: frontend/src/pages/Programs/ProgramForm.vue:180
msgid "Add"
msgstr "เพิ่ม"
@@ -156,7 +156,7 @@ msgstr "เพิ่ม"
msgid "Add Chapter"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:175
#: frontend/src/pages/Programs/ProgramForm.vue:176
msgid "Add Course to Program"
msgstr ""
@@ -221,6 +221,10 @@ msgstr ""
msgid "Add a new question"
msgstr ""
#: frontend/src/components/AppSidebar.vue:600
msgid "Add a program"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseModal.vue:5
msgid "Add a programming exercise to your lesson"
msgstr ""
@@ -274,6 +278,7 @@ msgid "Add your first lesson"
msgstr ""
#. Label of the address (Link) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:56
#: frontend/src/pages/Billing.vue:64
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Address"
@@ -353,6 +358,8 @@ msgstr ""
#. Label of the amount (Currency) field in DocType 'LMS Batch'
#. Label of the course_price (Currency) field in DocType 'LMS Course'
#. Label of the amount (Currency) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:68
#: frontend/src/components/Settings/Transactions.vue:219
#: frontend/src/pages/BatchForm.vue:278 frontend/src/pages/CourseForm.vue:262
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -460,7 +467,7 @@ msgstr ""
msgid "Are you sure you want to enroll?"
msgstr ""
#: frontend/src/components/UserDropdown.vue:175
#: frontend/src/components/UserDropdown.vue:177
msgid "Are you sure you want to login to your Frappe Cloud dashboard?"
msgstr ""
@@ -496,7 +503,7 @@ msgid "Assessment {0} has already been added to this batch."
msgstr ""
#. Label of the show_assessments (Check) field in DocType 'LMS Settings'
#: frontend/src/components/AppSidebar.vue:598
#: frontend/src/components/AppSidebar.vue:603
#: frontend/src/components/Assessments.vue:5
#: frontend/src/components/BatchStudents.vue:32
#: lms/lms/doctype/lms_settings/lms_settings.json
@@ -578,7 +585,7 @@ msgstr ""
msgid "Assignment will appear at the bottom of the lesson."
msgstr ""
#: frontend/src/components/AppSidebar.vue:602
#: frontend/src/components/AppSidebar.vue:607
#: frontend/src/components/Settings/Badges.vue:163
#: frontend/src/pages/Assignments.vue:208 lms/www/lms.py:271
msgid "Assignments"
@@ -702,6 +709,7 @@ msgstr ""
#: frontend/src/components/Modals/Event.vue:32
#: frontend/src/components/Settings/BadgeForm.vue:195
#: frontend/src/components/Settings/Badges.vue:200
#: frontend/src/components/Settings/TransactionDetails.vue:92
#: lms/lms/doctype/lms_batch_enrollment/lms_batch_enrollment.json
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
@@ -815,11 +823,11 @@ msgstr ""
msgid "Batch end date cannot be before the batch start date"
msgstr ""
#: lms/lms/api.py:210
#: lms/lms/api.py:211
msgid "Batch has already started."
msgstr ""
#: lms/lms/api.py:205
#: lms/lms/api.py:206
msgid "Batch is sold out."
msgstr ""
@@ -857,6 +865,8 @@ msgid "Billing Details"
msgstr ""
#. Label of the billing_name (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:31
#: frontend/src/components/Settings/Transactions.vue:213
#: frontend/src/pages/Billing.vue:70
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Billing Name"
@@ -1002,7 +1012,7 @@ msgstr ""
#. Enrollment'
#. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace
#: frontend/src/components/AppSidebar.vue:606
#: frontend/src/components/AppSidebar.vue:611
#: frontend/src/components/Modals/Event.vue:381
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58
#: frontend/src/pages/CourseCertification.vue:10
@@ -1145,7 +1155,7 @@ msgstr ""
#. Label of the city (Data) field in DocType 'User'
#. Label of the location (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/Billing.vue:81 frontend/src/pages/JobForm.vue:34
#: frontend/src/pages/Billing.vue:81 frontend/src/pages/JobForm.vue:41
#: lms/fixtures/custom_field.json
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "City"
@@ -1315,25 +1325,25 @@ msgstr "บริษัท"
#. Label of the section_break_6 (Section Break) field in DocType 'Job
#. Opportunity'
#: frontend/src/pages/JobForm.vue:56
#: frontend/src/pages/JobForm.vue:63
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Details"
msgstr ""
#. Label of the company_email_address (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:75
#: frontend/src/pages/JobForm.vue:82
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Email Address"
msgstr ""
#. Label of the company_logo (Attach Image) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:80
#: frontend/src/pages/JobForm.vue:87
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Logo"
msgstr ""
#. Label of the company_name (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:62
#: frontend/src/pages/JobForm.vue:69
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Name"
msgstr ""
@@ -1344,7 +1354,7 @@ msgid "Company Type"
msgstr ""
#. Label of the company_website (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:68
#: frontend/src/pages/JobForm.vue:75
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Website"
msgstr ""
@@ -1414,7 +1424,7 @@ msgstr ""
msgid "Configurations"
msgstr ""
#: frontend/src/components/UserDropdown.vue:180
#: frontend/src/components/UserDropdown.vue:182
msgid "Confirm"
msgstr ""
@@ -1461,7 +1471,7 @@ msgid "Continue Learning"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:178
#: frontend/src/pages/Jobs.vue:196
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Contract"
msgstr ""
@@ -1491,7 +1501,7 @@ msgstr ""
#. Label of the country (Link) field in DocType 'User'
#. Label of the country (Link) field in DocType 'Job Opportunity'
#. Label of the country (Link) field in DocType 'Payment Country'
#: frontend/src/pages/Billing.vue:92 frontend/src/pages/JobForm.vue:40
#: frontend/src/pages/Billing.vue:92 frontend/src/pages/JobForm.vue:47
#: frontend/src/pages/Jobs.vue:57 lms/fixtures/custom_field.json
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/payment_country/payment_country.json
@@ -1533,7 +1543,8 @@ msgstr ""
#: frontend/src/components/Modals/Event.vue:24
#: frontend/src/components/Settings/BadgeForm.vue:194
#: frontend/src/components/Settings/Badges.vue:199
#: frontend/src/pages/Programs/ProgramForm.vue:195
#: frontend/src/components/Settings/TransactionDetails.vue:91
#: frontend/src/pages/Programs/ProgramForm.vue:196
#: frontend/src/pages/Programs/Programs.vue:35
#: lms/lms/doctype/batch_course/batch_course.json
#: lms/lms/doctype/cohort/cohort.json
@@ -1684,7 +1695,7 @@ msgstr ""
msgid "Course Title"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:436
#: frontend/src/pages/Programs/ProgramForm.vue:437
msgid "Course added to program successfully"
msgstr ""
@@ -1836,6 +1847,7 @@ msgstr ""
#. Label of the currency (Link) field in DocType 'LMS Batch'
#. Label of the currency (Link) field in DocType 'LMS Course'
#. Label of the currency (Link) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:64
#: frontend/src/pages/BatchForm.vue:285 frontend/src/pages/CourseForm.vue:279
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -1852,7 +1864,7 @@ msgstr ""
msgid "Current Streak"
msgstr ""
#: frontend/src/components/AppSidebar.vue:612
#: frontend/src/components/AppSidebar.vue:617
msgid "Custom Certificate Templates"
msgstr ""
@@ -1957,7 +1969,7 @@ msgstr ""
#: frontend/src/components/Settings/Badges.vue:171
#: frontend/src/pages/BatchForm.vue:565 frontend/src/pages/CourseForm.vue:597
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseForm.vue:67
#: frontend/src/pages/Programs/ProgramForm.vue:230
#: frontend/src/pages/Programs/ProgramForm.vue:231
msgid "Delete"
msgstr "ลบ"
@@ -2007,7 +2019,7 @@ msgstr ""
#. Label of the description (Small Text) field in DocType 'Work Experience'
#: frontend/src/components/Modals/LiveClassModal.vue:80
#: frontend/src/components/Settings/BadgeForm.vue:32
#: frontend/src/pages/JobForm.vue:125
#: frontend/src/pages/JobForm.vue:132
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/cohort/cohort.json
@@ -2048,6 +2060,7 @@ msgstr ""
#. Label of the disabled (Check) field in DocType 'Job Opportunity'
#: frontend/src/components/Settings/Badges.vue:56
#: frontend/src/components/Settings/PaymentGateways.vue:55
#: frontend/src/components/Settings/ZoomSettings.vue:66
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Disabled"
@@ -2148,6 +2161,10 @@ msgstr ""
msgid "Edit Email Template"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8
msgid "Edit Payment Gateway"
msgstr ""
#: frontend/src/pages/Profile.vue:72
msgid "Edit Profile"
msgstr "แก้ไขโปรไฟล์"
@@ -2253,6 +2270,7 @@ msgstr ""
#: frontend/src/components/Modals/ZoomAccountModal.vue:23
#: frontend/src/components/Settings/BadgeForm.vue:14
#: frontend/src/components/Settings/Badges.vue:53
#: frontend/src/components/Settings/PaymentGateways.vue:52
#: frontend/src/components/Settings/ZoomSettings.vue:63
#: lms/lms/doctype/lms_badge/lms_badge.json
#: lms/lms/doctype/lms_zoom_settings/lms_zoom_settings.json
@@ -2304,7 +2322,7 @@ msgstr ""
msgid "Enforce Course Order"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:176
#: frontend/src/pages/Programs/ProgramForm.vue:177
msgid "Enroll Member to Program"
msgstr ""
@@ -2463,15 +2481,15 @@ msgstr ""
msgid "Evaluator Schedule"
msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:163
#: frontend/src/components/Settings/Evaluators.vue:160
msgid "Evaluator added successfully"
msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:196
#: frontend/src/components/Settings/Evaluators.vue:193
msgid "Evaluator deleted successfully"
msgstr ""
#: lms/lms/api.py:1392
#: lms/lms/api.py:1416
msgid "Evaluator does not exist."
msgstr ""
@@ -2643,10 +2661,15 @@ msgstr ""
msgid "File Type"
msgstr ""
#: frontend/src/components/Settings/Transactions.vue:15
msgid "Filter by Billing Name"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:23
msgid "Filter by Exercise"
msgstr ""
#: frontend/src/components/Settings/Transactions.vue:20
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:28
msgid "Filter by Member"
msgstr ""
@@ -2680,7 +2703,7 @@ msgid "Free"
msgstr "ฟรี"
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:179
#: frontend/src/pages/Jobs.vue:197
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Freelance"
msgstr ""
@@ -2722,7 +2745,7 @@ msgid "Full Name"
msgstr "ชื่อเต็ม"
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:176
#: frontend/src/pages/Jobs.vue:194
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Full Time"
msgstr ""
@@ -2744,10 +2767,15 @@ msgid "GST Number"
msgstr ""
#. Label of the gstin (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:76
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "GSTIN"
msgstr ""
#: frontend/src/components/Settings/PaymentGateways.vue:134
msgid "Gateway"
msgstr ""
#. Label of the general_tab (Tab Break) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "General"
@@ -2926,6 +2954,11 @@ msgstr "หน้าแรก"
msgid "Host"
msgstr ""
#. Option for the 'Work Mode' (Select) field in DocType 'Job Opportunity'
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Hybrid"
msgstr ""
#. Label of the current (Check) field in DocType 'Work Experience'
#: lms/lms/doctype/work_experience/work_experience.json
msgid "I am currently working here"
@@ -3200,7 +3233,7 @@ msgstr ""
msgid "Issue Date"
msgstr "วันที่ออก"
#: frontend/src/components/AppSidebar.vue:609
#: frontend/src/components/AppSidebar.vue:614
msgid "Issue a Certificate"
msgstr ""
@@ -3276,7 +3309,7 @@ msgstr ""
#. 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/Jobs.vue:185
#: frontend/src/pages/Jobs.vue:212
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Jobs"
msgstr ""
@@ -3624,6 +3657,10 @@ msgstr ""
msgid "Learning Consistency"
msgstr ""
#: frontend/src/components/AppSidebar.vue:598
msgid "Learning Paths"
msgstr ""
#. Label of the left_at (Datetime) field in DocType 'LMS Live Class
#. Participant'
#: lms/lms/doctype/lms_live_class_participant/lms_live_class_participant.json
@@ -3756,6 +3793,7 @@ msgstr ""
#: frontend/src/components/Modals/CourseProgressSummary.vue:86
#: frontend/src/components/Settings/Evaluators.vue:81
#: frontend/src/components/Settings/Members.vue:79
#: frontend/src/components/Settings/Transactions.vue:94
#: frontend/src/pages/Assignments.vue:66 frontend/src/pages/Batches.vue:82
#: frontend/src/pages/CertifiedParticipants.vue:98
#: frontend/src/pages/Courses.vue:77
@@ -3789,7 +3827,7 @@ msgstr ""
msgid "Login"
msgstr "เข้าสู่ระบบ"
#: frontend/src/components/UserDropdown.vue:174
#: frontend/src/components/UserDropdown.vue:176
msgid "Login to Frappe Cloud?"
msgstr ""
@@ -3943,6 +3981,7 @@ msgstr ""
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:26
#: frontend/src/components/Settings/BadgeAssignments.vue:179
#: frontend/src/components/Settings/BadgeForm.vue:215
#: frontend/src/components/Settings/TransactionDetails.vue:26
#: frontend/src/components/Settings/ZoomSettings.vue:187
#: frontend/src/pages/AssignmentSubmissionList.vue:14
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:268
@@ -4076,7 +4115,7 @@ msgstr ""
msgid "Member Username"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:462
#: frontend/src/pages/Programs/ProgramForm.vue:463
msgid "Member added to program successfully"
msgstr ""
@@ -4160,7 +4199,7 @@ msgstr ""
msgid "Meta Tags"
msgstr "แท็กเมตา"
#: lms/lms/api.py:1432
#: lms/lms/api.py:1456
msgid "Meta tags should be a list."
msgstr ""
@@ -4212,11 +4251,11 @@ msgstr ""
msgid "Modified By"
msgstr "แก้ไขโดย"
#: lms/lms/api.py:187
#: lms/lms/api.py:188
msgid "Module Name is incorrect or does not exist."
msgstr ""
#: lms/lms/api.py:183
#: lms/lms/api.py:184
msgid "Module is incorrect."
msgstr ""
@@ -4227,7 +4266,7 @@ msgstr ""
msgid "Monday"
msgstr "วันจันทร์"
#: frontend/src/components/AppSidebar.vue:617
#: frontend/src/components/AppSidebar.vue:622
msgid "Monetization"
msgstr ""
@@ -4271,6 +4310,7 @@ msgstr "ชื่อ"
#: frontend/src/components/Settings/EmailTemplates.vue:17
#: frontend/src/components/Settings/Evaluators.vue:17
#: frontend/src/components/Settings/Members.vue:17
#: frontend/src/components/Settings/PaymentGateways.vue:16
#: frontend/src/components/Settings/ZoomSettings.vue:17
#: frontend/src/pages/Courses.vue:312
#: frontend/src/pages/Programs/Programs.vue:10
@@ -4298,6 +4338,10 @@ msgstr ""
msgid "New Job Applicant"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7
msgid "New Payment Gateway"
msgstr ""
#: frontend/src/pages/QuizForm.vue:137
msgid "New Question"
msgstr ""
@@ -4402,7 +4446,7 @@ msgstr ""
msgid "No live classes scheduled"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:166
#: frontend/src/pages/Programs/ProgramForm.vue:167
msgid "No members added yet."
msgstr ""
@@ -4472,7 +4516,6 @@ msgstr "ไม่ได้รับอนุญาต"
#: frontend/src/components/Assignment.vue:36
#: frontend/src/components/Settings/BrandSettings.vue:10
#: frontend/src/components/Settings/PaymentSettings.vue:9
#: frontend/src/components/Settings/SettingDetails.vue:10
#: frontend/src/pages/Programs/ProgramForm.vue:16
#: frontend/src/pages/QuizForm.vue:8 frontend/src/pages/QuizSubmission.vue:9
@@ -4525,6 +4568,11 @@ msgstr ""
msgid "Offline"
msgstr ""
#. Option for the 'Work Mode' (Select) field in DocType 'Job Opportunity'
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "On-site"
msgstr ""
#: lms/templates/emails/certification.html:16
msgid "Once again, congratulations on this significant accomplishment."
msgstr ""
@@ -4572,6 +4620,10 @@ msgstr ""
msgid "Open Ended"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:88
msgid "Open the "
msgstr ""
#. Label of the option (Data) field in DocType 'LMS Option'
#: frontend/src/components/Modals/Question.vue:70
#: lms/lms/doctype/lms_option/lms_option.json
@@ -4608,6 +4660,7 @@ msgid "Orange"
msgstr "สีส้ม"
#. Label of the order_id (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:70
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Order ID"
msgstr ""
@@ -4645,6 +4698,7 @@ msgid "Owner"
msgstr "เจ้าของ"
#. Label of the pan (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:77
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "PAN"
msgstr ""
@@ -4690,7 +4744,7 @@ msgid "Pan Number"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:177
#: frontend/src/pages/Jobs.vue:195
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Part Time"
msgstr ""
@@ -4750,21 +4804,38 @@ msgstr ""
#. Label of the payment_details_section (Section Break) field in DocType 'LMS
#. Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:42
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment Details"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:18
msgid "Payment For Certificate"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:51
msgid "Payment For Document"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:46
msgid "Payment For Document Type"
msgstr ""
#. Label of the payment_gateway (Data) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Payment Gateway"
msgstr "เกตเวย์การชำระเงิน"
#. Label of the payment_id (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:79
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment ID"
msgstr ""
#. Label of the payment_received (Check) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:13
#: frontend/src/components/Settings/Transactions.vue:25
#: frontend/src/components/Settings/Transactions.vue:226
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment Received"
msgstr "ได้รับการชำระเงิน"
@@ -4786,6 +4857,8 @@ msgid "Payment for "
msgstr ""
#. Label of the payment_for_certificate (Check) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/Transactions.vue:30
#: frontend/src/components/Settings/Transactions.vue:233
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment for Certificate"
msgstr ""
@@ -4926,7 +4999,7 @@ msgstr ""
msgid "Please login to access this page."
msgstr ""
#: lms/lms/api.py:179
#: lms/lms/api.py:180
msgid "Please login to continue with payment."
msgstr ""
@@ -4943,7 +5016,7 @@ msgstr ""
msgid "Please run the code to execute the test cases."
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:420
#: frontend/src/pages/Programs/ProgramForm.vue:421
msgid "Please select a course"
msgstr ""
@@ -4959,7 +5032,7 @@ msgstr ""
msgid "Please select a future date and time."
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:447
#: frontend/src/pages/Programs/ProgramForm.vue:448
msgid "Please select a member"
msgstr ""
@@ -5149,7 +5222,7 @@ msgstr ""
msgid "Program Courses"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:205
#: frontend/src/pages/Programs/ProgramForm.vue:206
msgid "Program Member"
msgstr ""
@@ -5158,15 +5231,15 @@ msgstr ""
msgid "Program Members"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:380
#: frontend/src/pages/Programs/ProgramForm.vue:381
msgid "Program created successfully"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:551
#: frontend/src/pages/Programs/ProgramForm.vue:552
msgid "Program deleted successfully"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:399
#: frontend/src/pages/Programs/ProgramForm.vue:400
msgid "Program updated successfully"
msgstr ""
@@ -5232,7 +5305,7 @@ msgid "Progress Distribution"
msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:99
#: frontend/src/pages/Programs/ProgramForm.vue:124
#: frontend/src/pages/Programs/ProgramForm.vue:125
msgid "Progress Summary"
msgstr ""
@@ -5410,7 +5483,7 @@ msgstr ""
msgid "Quiz will appear at the bottom of the lesson."
msgstr ""
#: frontend/src/components/AppSidebar.vue:601
#: frontend/src/components/AppSidebar.vue:606
#: frontend/src/pages/QuizForm.vue:396 frontend/src/pages/Quizzes.vue:275
#: frontend/src/pages/Quizzes.vue:285 lms/www/lms.py:249
msgid "Quizzes"
@@ -5500,6 +5573,11 @@ msgstr "ถูกปฏิเสธ"
msgid "Related Courses"
msgstr ""
#. Option for the 'Work Mode' (Select) field in DocType 'Job Opportunity'
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Remote"
msgstr ""
#: frontend/src/components/Controls/Uploader.vue:34
#: frontend/src/pages/BatchForm.vue:246 frontend/src/pages/CourseForm.vue:119
msgid "Remove"
@@ -5590,7 +5668,7 @@ msgstr ""
msgid "Role updated successfully"
msgstr ""
#: frontend/src/components/AppSidebar.vue:629
#: frontend/src/components/AppSidebar.vue:634
msgid "Roles"
msgstr "บทบาท"
@@ -5674,11 +5752,13 @@ msgstr "วันเสาร์"
#: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
#: frontend/src/components/Settings/BadgeForm.vue:78
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:38
#: frontend/src/components/Settings/TransactionDetails.vue:96
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17
#: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseForm.vue:101
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseModal.vue:9
#: frontend/src/pages/Programs/ProgramForm.vue:233
#: frontend/src/pages/Programs/ProgramForm.vue:234
#: frontend/src/pages/QuizForm.vue:43 frontend/src/pages/QuizSubmission.vue:14
#: frontend/src/pages/Quizzes.vue:105
msgid "Save"
@@ -5780,6 +5860,10 @@ msgstr ""
msgid "Select Date"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22
msgid "Select Payment Gateway"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseModal.vue:23
msgid "Select a Programming Exercise"
msgstr ""
@@ -5835,11 +5919,11 @@ msgstr ""
msgid "Setting up"
msgstr ""
#: frontend/src/components/AppSidebar.vue:622
#: frontend/src/components/AppSidebar.vue:627
msgid "Setting up payment gateway"
msgstr ""
#: frontend/src/components/AppSidebar.vue:627
#: frontend/src/components/AppSidebar.vue:632
#: frontend/src/components/Settings/Settings.vue:7
#: frontend/src/pages/BatchForm.vue:53 frontend/src/pages/CourseForm.vue:142
#: frontend/src/pages/ProfileRoles.vue:4
@@ -5997,6 +6081,7 @@ msgstr ""
#. Label of the source (Link) field in DocType 'LMS Payment'
#. Label of the source (Data) field in DocType 'LMS Source'
#. Label of the source (Data) field in DocType 'LMS Video Watch Duration'
#: frontend/src/components/Settings/TransactionDetails.vue:35
#: lms/lms/doctype/lms_batch_enrollment/lms_batch_enrollment.json
#: lms/lms/doctype/lms_payment/lms_payment.json
#: lms/lms/doctype/lms_source/lms_source.json
@@ -6109,7 +6194,7 @@ msgstr ""
#: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19
#: frontend/src/pages/JobForm.vue:46
#: frontend/src/pages/JobForm.vue:53
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:280
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/cohort/cohort.json
@@ -6246,7 +6331,7 @@ msgstr ""
msgid "Sunday"
msgstr ""
#: lms/lms/api.py:1057
#: lms/lms/api.py:1081
msgid "Suspicious pattern found in {0}: {1}"
msgstr ""
@@ -6709,6 +6794,10 @@ msgstr ""
msgid "Training Feedback"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:5
msgid "Transaction Details"
msgstr "รายละเอียดธุรกรรม"
#. Option for the 'Location Preference' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Travel"
@@ -6841,7 +6930,6 @@ msgid "Upcoming Live Classes"
msgstr ""
#: frontend/src/components/Settings/BrandSettings.vue:24
#: frontend/src/components/Settings/PaymentSettings.vue:27
#: frontend/src/components/Settings/SettingDetails.vue:23
msgid "Update"
msgstr "อัปเดต"
@@ -7076,6 +7164,12 @@ msgstr ""
msgid "Work Experience Details"
msgstr ""
#. Label of the work_mode (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:32 frontend/src/pages/Jobs.vue:73
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Work Mode"
msgstr ""
#: frontend/src/components/CourseReviews.vue:8
#: frontend/src/components/Modals/ReviewModal.vue:5
#: lms/templates/reviews.html:117
@@ -7106,11 +7200,11 @@ msgstr ""
msgid "You are already certified for this course. Click on the card below to open your certificate."
msgstr ""
#: lms/lms/api.py:199
#: lms/lms/api.py:200
msgid "You are already enrolled for this batch."
msgstr ""
#: lms/lms/api.py:193
#: lms/lms/api.py:194
msgid "You are already enrolled for this course."
msgstr ""
@@ -7184,7 +7278,7 @@ msgstr ""
msgid "You have already exceeded the maximum number of attempts allowed for this quiz."
msgstr ""
#: lms/lms/api.py:223
#: lms/lms/api.py:224
msgid "You have already purchased the certificate for this course."
msgstr ""
@@ -7355,11 +7449,11 @@ msgstr "และ"
msgid "and then 'Add to Home Screen'"
msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:108
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114
msgid "applicant"
msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:108
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114
msgid "applicants"
msgstr ""
@@ -7512,7 +7606,7 @@ msgstr ""
msgid "{0} Quizzes"
msgstr ""
#: lms/lms/api.py:836 lms/lms/api.py:844
#: lms/lms/api.py:838 lms/lms/api.py:846
msgid "{0} Settings not found"
msgstr ""
@@ -7568,6 +7662,10 @@ msgstr ""
msgid "{0} mentioned you in a comment in {1}"
msgstr ""
#: lms/lms/api.py:887
msgid "{0} not found"
msgstr "ไม่พบ {0}"
#: lms/lms/utils.py:450
msgid "{0}k"
msgstr ""
+162 -64
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2025-09-19 16:04+0000\n"
"PO-Revision-Date: 2025-09-24 07:16\n"
"POT-Creation-Date: 2025-09-26 16:04+0000\n"
"PO-Revision-Date: 2025-09-27 08:15\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Turkish\n"
"MIME-Version: 1.0\n"
@@ -145,8 +145,8 @@ msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:93
#: frontend/src/components/Settings/Members.vue:91
#: frontend/src/pages/Programs/ProgramForm.vue:56
#: frontend/src/pages/Programs/ProgramForm.vue:130
#: frontend/src/pages/Programs/ProgramForm.vue:179
#: frontend/src/pages/Programs/ProgramForm.vue:131
#: frontend/src/pages/Programs/ProgramForm.vue:180
msgid "Add"
msgstr "Ekle"
@@ -156,7 +156,7 @@ msgstr "Ekle"
msgid "Add Chapter"
msgstr "Bölüm Ekle"
#: frontend/src/pages/Programs/ProgramForm.vue:175
#: frontend/src/pages/Programs/ProgramForm.vue:176
msgid "Add Course to Program"
msgstr ""
@@ -221,6 +221,10 @@ msgstr ""
msgid "Add a new question"
msgstr "Yeni Soru Ekle"
#: frontend/src/components/AppSidebar.vue:600
msgid "Add a program"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseModal.vue:5
msgid "Add a programming exercise to your lesson"
msgstr ""
@@ -274,6 +278,7 @@ msgid "Add your first lesson"
msgstr ""
#. Label of the address (Link) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:56
#: frontend/src/pages/Billing.vue:64
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Address"
@@ -353,6 +358,8 @@ msgstr ""
#. Label of the amount (Currency) field in DocType 'LMS Batch'
#. Label of the course_price (Currency) field in DocType 'LMS Course'
#. Label of the amount (Currency) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:68
#: frontend/src/components/Settings/Transactions.vue:219
#: frontend/src/pages/BatchForm.vue:278 frontend/src/pages/CourseForm.vue:262
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -460,7 +467,7 @@ msgstr ""
msgid "Are you sure you want to enroll?"
msgstr ""
#: frontend/src/components/UserDropdown.vue:175
#: frontend/src/components/UserDropdown.vue:177
msgid "Are you sure you want to login to your Frappe Cloud dashboard?"
msgstr ""
@@ -496,7 +503,7 @@ msgid "Assessment {0} has already been added to this batch."
msgstr "Değerlendirme {0} bu gruba zaten eklendi."
#. Label of the show_assessments (Check) field in DocType 'LMS Settings'
#: frontend/src/components/AppSidebar.vue:598
#: frontend/src/components/AppSidebar.vue:603
#: frontend/src/components/Assessments.vue:5
#: frontend/src/components/BatchStudents.vue:32
#: lms/lms/doctype/lms_settings/lms_settings.json
@@ -578,7 +585,7 @@ msgstr ""
msgid "Assignment will appear at the bottom of the lesson."
msgstr "Ödev dersin alt kısmında görünecektir."
#: frontend/src/components/AppSidebar.vue:602
#: frontend/src/components/AppSidebar.vue:607
#: frontend/src/components/Settings/Badges.vue:163
#: frontend/src/pages/Assignments.vue:208 lms/www/lms.py:271
msgid "Assignments"
@@ -702,6 +709,7 @@ msgstr ""
#: frontend/src/components/Modals/Event.vue:32
#: frontend/src/components/Settings/BadgeForm.vue:195
#: frontend/src/components/Settings/Badges.vue:200
#: frontend/src/components/Settings/TransactionDetails.vue:92
#: lms/lms/doctype/lms_batch_enrollment/lms_batch_enrollment.json
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
@@ -815,11 +823,11 @@ msgstr ""
msgid "Batch end date cannot be before the batch start date"
msgstr ""
#: lms/lms/api.py:210
#: lms/lms/api.py:211
msgid "Batch has already started."
msgstr ""
#: lms/lms/api.py:205
#: lms/lms/api.py:206
msgid "Batch is sold out."
msgstr ""
@@ -857,6 +865,8 @@ msgid "Billing Details"
msgstr "Fatura Detayları"
#. Label of the billing_name (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:31
#: frontend/src/components/Settings/Transactions.vue:213
#: frontend/src/pages/Billing.vue:70
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Billing Name"
@@ -1002,7 +1012,7 @@ msgstr ""
#. Enrollment'
#. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace
#: frontend/src/components/AppSidebar.vue:606
#: frontend/src/components/AppSidebar.vue:611
#: frontend/src/components/Modals/Event.vue:381
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58
#: frontend/src/pages/CourseCertification.vue:10
@@ -1145,7 +1155,7 @@ msgstr "Bir cevap seçin"
#. Label of the city (Data) field in DocType 'User'
#. Label of the location (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/Billing.vue:81 frontend/src/pages/JobForm.vue:34
#: frontend/src/pages/Billing.vue:81 frontend/src/pages/JobForm.vue:41
#: lms/fixtures/custom_field.json
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "City"
@@ -1315,25 +1325,25 @@ msgstr "Şirket"
#. Label of the section_break_6 (Section Break) field in DocType 'Job
#. Opportunity'
#: frontend/src/pages/JobForm.vue:56
#: frontend/src/pages/JobForm.vue:63
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Details"
msgstr "Şirket Detayları"
#. Label of the company_email_address (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:75
#: frontend/src/pages/JobForm.vue:82
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Email Address"
msgstr "Şirket E-posta Adresi"
#. Label of the company_logo (Attach Image) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:80
#: frontend/src/pages/JobForm.vue:87
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Logo"
msgstr "Şirket Logosu"
#. Label of the company_name (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:62
#: frontend/src/pages/JobForm.vue:69
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Name"
msgstr "Şirket Adı"
@@ -1344,7 +1354,7 @@ msgid "Company Type"
msgstr "Şirket Türü"
#. Label of the company_website (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:68
#: frontend/src/pages/JobForm.vue:75
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Website"
msgstr "Şirket Web Sitesi"
@@ -1414,7 +1424,7 @@ msgstr ""
msgid "Configurations"
msgstr ""
#: frontend/src/components/UserDropdown.vue:180
#: frontend/src/components/UserDropdown.vue:182
msgid "Confirm"
msgstr "Onayla"
@@ -1461,7 +1471,7 @@ msgid "Continue Learning"
msgstr "Öğrenmeye Devam Et"
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:178
#: frontend/src/pages/Jobs.vue:196
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Contract"
msgstr "Sözleşme"
@@ -1491,7 +1501,7 @@ msgstr "Doğru Cevap"
#. Label of the country (Link) field in DocType 'User'
#. Label of the country (Link) field in DocType 'Job Opportunity'
#. Label of the country (Link) field in DocType 'Payment Country'
#: frontend/src/pages/Billing.vue:92 frontend/src/pages/JobForm.vue:40
#: frontend/src/pages/Billing.vue:92 frontend/src/pages/JobForm.vue:47
#: frontend/src/pages/Jobs.vue:57 lms/fixtures/custom_field.json
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/payment_country/payment_country.json
@@ -1533,7 +1543,8 @@ msgstr "Ülke"
#: frontend/src/components/Modals/Event.vue:24
#: frontend/src/components/Settings/BadgeForm.vue:194
#: frontend/src/components/Settings/Badges.vue:199
#: frontend/src/pages/Programs/ProgramForm.vue:195
#: frontend/src/components/Settings/TransactionDetails.vue:91
#: frontend/src/pages/Programs/ProgramForm.vue:196
#: frontend/src/pages/Programs/Programs.vue:35
#: lms/lms/doctype/batch_course/batch_course.json
#: lms/lms/doctype/cohort/cohort.json
@@ -1684,7 +1695,7 @@ msgstr "Kurs İstatistikleri"
msgid "Course Title"
msgstr "Kurs Başlığı"
#: frontend/src/pages/Programs/ProgramForm.vue:436
#: frontend/src/pages/Programs/ProgramForm.vue:437
msgid "Course added to program successfully"
msgstr ""
@@ -1836,6 +1847,7 @@ msgstr ""
#. Label of the currency (Link) field in DocType 'LMS Batch'
#. Label of the currency (Link) field in DocType 'LMS Course'
#. Label of the currency (Link) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:64
#: frontend/src/pages/BatchForm.vue:285 frontend/src/pages/CourseForm.vue:279
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -1852,7 +1864,7 @@ msgstr "Güncel Ders"
msgid "Current Streak"
msgstr ""
#: frontend/src/components/AppSidebar.vue:612
#: frontend/src/components/AppSidebar.vue:617
msgid "Custom Certificate Templates"
msgstr ""
@@ -1954,7 +1966,7 @@ msgstr "Derece Türü"
#: frontend/src/components/Settings/Badges.vue:171
#: frontend/src/pages/BatchForm.vue:565 frontend/src/pages/CourseForm.vue:597
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseForm.vue:67
#: frontend/src/pages/Programs/ProgramForm.vue:230
#: frontend/src/pages/Programs/ProgramForm.vue:231
msgid "Delete"
msgstr "Sil"
@@ -2004,7 +2016,7 @@ msgstr "Bu dersi silmek onu kurstan kalıcı olarak kaldıracaktır. Bu eylem ge
#. Label of the description (Small Text) field in DocType 'Work Experience'
#: frontend/src/components/Modals/LiveClassModal.vue:80
#: frontend/src/components/Settings/BadgeForm.vue:32
#: frontend/src/pages/JobForm.vue:125
#: frontend/src/pages/JobForm.vue:132
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/cohort/cohort.json
@@ -2045,6 +2057,7 @@ msgstr ""
#. Label of the disabled (Check) field in DocType 'Job Opportunity'
#: frontend/src/components/Settings/Badges.vue:56
#: frontend/src/components/Settings/PaymentGateways.vue:55
#: frontend/src/components/Settings/ZoomSettings.vue:66
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Disabled"
@@ -2145,6 +2158,10 @@ msgstr "Bölümü Düzenle"
msgid "Edit Email Template"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8
msgid "Edit Payment Gateway"
msgstr ""
#: frontend/src/pages/Profile.vue:72
msgid "Edit Profile"
msgstr "Profili Düzenle"
@@ -2250,6 +2267,7 @@ msgstr "Bunu yalnızca bir SCORM paketini bölüm olarak yüklemek istiyorsanız
#: frontend/src/components/Modals/ZoomAccountModal.vue:23
#: frontend/src/components/Settings/BadgeForm.vue:14
#: frontend/src/components/Settings/Badges.vue:53
#: frontend/src/components/Settings/PaymentGateways.vue:52
#: frontend/src/components/Settings/ZoomSettings.vue:63
#: lms/lms/doctype/lms_badge/lms_badge.json
#: lms/lms/doctype/lms_zoom_settings/lms_zoom_settings.json
@@ -2301,7 +2319,7 @@ msgstr ""
msgid "Enforce Course Order"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:176
#: frontend/src/pages/Programs/ProgramForm.vue:177
msgid "Enroll Member to Program"
msgstr ""
@@ -2460,15 +2478,15 @@ msgstr ""
msgid "Evaluator Schedule"
msgstr "Değerlendirici Programı"
#: frontend/src/components/Settings/Evaluators.vue:163
#: frontend/src/components/Settings/Evaluators.vue:160
msgid "Evaluator added successfully"
msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:196
#: frontend/src/components/Settings/Evaluators.vue:193
msgid "Evaluator deleted successfully"
msgstr ""
#: lms/lms/api.py:1392
#: lms/lms/api.py:1416
msgid "Evaluator does not exist."
msgstr ""
@@ -2640,10 +2658,15 @@ msgstr ""
msgid "File Type"
msgstr "Dosya Türü"
#: frontend/src/components/Settings/Transactions.vue:15
msgid "Filter by Billing Name"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:23
msgid "Filter by Exercise"
msgstr ""
#: frontend/src/components/Settings/Transactions.vue:20
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:28
msgid "Filter by Member"
msgstr ""
@@ -2677,7 +2700,7 @@ msgid "Free"
msgstr "Serbest"
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:179
#: frontend/src/pages/Jobs.vue:197
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Freelance"
msgstr "Serbest çalışan"
@@ -2719,7 +2742,7 @@ msgid "Full Name"
msgstr "Tam Adı"
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:176
#: frontend/src/pages/Jobs.vue:194
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Full Time"
msgstr "Tam Zamanlı"
@@ -2741,10 +2764,15 @@ msgid "GST Number"
msgstr ""
#. Label of the gstin (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:76
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "GSTIN"
msgstr ""
#: frontend/src/components/Settings/PaymentGateways.vue:134
msgid "Gateway"
msgstr ""
#. Label of the general_tab (Tab Break) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "General"
@@ -2923,6 +2951,11 @@ msgstr "Ana Sayfa"
msgid "Host"
msgstr ""
#. Option for the 'Work Mode' (Select) field in DocType 'Job Opportunity'
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Hybrid"
msgstr ""
#. Label of the current (Check) field in DocType 'Work Experience'
#: lms/lms/doctype/work_experience/work_experience.json
msgid "I am currently working here"
@@ -3197,7 +3230,7 @@ msgstr ""
msgid "Issue Date"
msgstr "Veriliş tarihi"
#: frontend/src/components/AppSidebar.vue:609
#: frontend/src/components/AppSidebar.vue:614
msgid "Issue a Certificate"
msgstr ""
@@ -3273,7 +3306,7 @@ msgstr "İş İlanı Başlığı"
#. 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/Jobs.vue:185
#: frontend/src/pages/Jobs.vue:212
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Jobs"
msgstr "İşler"
@@ -3621,6 +3654,10 @@ msgstr ""
msgid "Learning Consistency"
msgstr ""
#: frontend/src/components/AppSidebar.vue:598
msgid "Learning Paths"
msgstr ""
#. Label of the left_at (Datetime) field in DocType 'LMS Live Class
#. Participant'
#: lms/lms/doctype/lms_live_class_participant/lms_live_class_participant.json
@@ -3753,6 +3790,7 @@ msgstr ""
#: frontend/src/components/Modals/CourseProgressSummary.vue:86
#: frontend/src/components/Settings/Evaluators.vue:81
#: frontend/src/components/Settings/Members.vue:79
#: frontend/src/components/Settings/Transactions.vue:94
#: frontend/src/pages/Assignments.vue:66 frontend/src/pages/Batches.vue:82
#: frontend/src/pages/CertifiedParticipants.vue:98
#: frontend/src/pages/Courses.vue:77
@@ -3786,7 +3824,7 @@ msgstr "Konum Tercihi"
msgid "Login"
msgstr "Giriş"
#: frontend/src/components/UserDropdown.vue:174
#: frontend/src/components/UserDropdown.vue:176
msgid "Login to Frappe Cloud?"
msgstr "Frappe Cloud'a Giriş Yapın?"
@@ -3940,6 +3978,7 @@ msgstr ""
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:26
#: frontend/src/components/Settings/BadgeAssignments.vue:179
#: frontend/src/components/Settings/BadgeForm.vue:215
#: frontend/src/components/Settings/TransactionDetails.vue:26
#: frontend/src/components/Settings/ZoomSettings.vue:187
#: frontend/src/pages/AssignmentSubmissionList.vue:14
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:268
@@ -4073,7 +4112,7 @@ msgstr "Üye Türü"
msgid "Member Username"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:462
#: frontend/src/pages/Programs/ProgramForm.vue:463
msgid "Member added to program successfully"
msgstr ""
@@ -4157,7 +4196,7 @@ msgstr ""
msgid "Meta Tags"
msgstr "Meta Etiketleri"
#: lms/lms/api.py:1432
#: lms/lms/api.py:1456
msgid "Meta tags should be a list."
msgstr ""
@@ -4209,11 +4248,11 @@ msgstr "Değiştirilmiş"
msgid "Modified By"
msgstr "Değiştiren"
#: lms/lms/api.py:187
#: lms/lms/api.py:188
msgid "Module Name is incorrect or does not exist."
msgstr "Modül Adı yanlış veya mevcut değil."
#: lms/lms/api.py:183
#: lms/lms/api.py:184
msgid "Module is incorrect."
msgstr "Modül hatalı."
@@ -4224,7 +4263,7 @@ msgstr "Modül hatalı."
msgid "Monday"
msgstr "Pazartesi"
#: frontend/src/components/AppSidebar.vue:617
#: frontend/src/components/AppSidebar.vue:622
msgid "Monetization"
msgstr ""
@@ -4268,6 +4307,7 @@ msgstr "Adı"
#: frontend/src/components/Settings/EmailTemplates.vue:17
#: frontend/src/components/Settings/Evaluators.vue:17
#: frontend/src/components/Settings/Members.vue:17
#: frontend/src/components/Settings/PaymentGateways.vue:16
#: frontend/src/components/Settings/ZoomSettings.vue:17
#: frontend/src/pages/Courses.vue:312
#: frontend/src/pages/Programs/Programs.vue:10
@@ -4295,6 +4335,10 @@ msgstr "Yeni İş"
msgid "New Job Applicant"
msgstr "Yeni İş Başvurusu"
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7
msgid "New Payment Gateway"
msgstr ""
#: frontend/src/pages/QuizForm.vue:137
msgid "New Question"
msgstr "Yeni Soru"
@@ -4399,7 +4443,7 @@ msgstr "Tanıtım yok"
msgid "No live classes scheduled"
msgstr "Planlanmış canlı ders yok"
#: frontend/src/pages/Programs/ProgramForm.vue:166
#: frontend/src/pages/Programs/ProgramForm.vue:167
msgid "No members added yet."
msgstr ""
@@ -4469,7 +4513,6 @@ msgstr "İzin Verilmedi"
#: frontend/src/components/Assignment.vue:36
#: frontend/src/components/Settings/BrandSettings.vue:10
#: frontend/src/components/Settings/PaymentSettings.vue:9
#: frontend/src/components/Settings/SettingDetails.vue:10
#: frontend/src/pages/Programs/ProgramForm.vue:16
#: frontend/src/pages/QuizForm.vue:8 frontend/src/pages/QuizSubmission.vue:9
@@ -4522,6 +4565,11 @@ msgstr "Eve yakın ofis"
msgid "Offline"
msgstr "Çevrimdışı"
#. Option for the 'Work Mode' (Select) field in DocType 'Job Opportunity'
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "On-site"
msgstr ""
#: lms/templates/emails/certification.html:16
msgid "Once again, congratulations on this significant accomplishment."
msgstr "Bu önemli başarı için bir kez daha tebrikler."
@@ -4569,6 +4617,10 @@ msgstr "Açık Kurs"
msgid "Open Ended"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:88
msgid "Open the "
msgstr ""
#. Label of the option (Data) field in DocType 'LMS Option'
#: frontend/src/components/Modals/Question.vue:70
#: lms/lms/doctype/lms_option/lms_option.json
@@ -4605,6 +4657,7 @@ msgid "Orange"
msgstr "Turuncu"
#. Label of the order_id (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:70
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Order ID"
msgstr "Sipariş No"
@@ -4642,6 +4695,7 @@ msgid "Owner"
msgstr "Sahibi"
#. Label of the pan (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:77
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "PAN"
msgstr ""
@@ -4687,7 +4741,7 @@ msgid "Pan Number"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:177
#: frontend/src/pages/Jobs.vue:195
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Part Time"
msgstr "Yarı Zamanlı"
@@ -4747,21 +4801,38 @@ msgstr "Ödeme Ülkesi"
#. Label of the payment_details_section (Section Break) field in DocType 'LMS
#. Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:42
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment Details"
msgstr "Ödeme Detayları"
#: frontend/src/components/Settings/TransactionDetails.vue:18
msgid "Payment For Certificate"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:51
msgid "Payment For Document"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:46
msgid "Payment For Document Type"
msgstr ""
#. Label of the payment_gateway (Data) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Payment Gateway"
msgstr "Ödeme Gateway"
#. Label of the payment_id (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:79
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment ID"
msgstr "Ödeme Kimliği"
#. Label of the payment_received (Check) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:13
#: frontend/src/components/Settings/Transactions.vue:25
#: frontend/src/components/Settings/Transactions.vue:226
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment Received"
msgstr "Ödeme Alındı"
@@ -4783,6 +4854,8 @@ msgid "Payment for "
msgstr ""
#. Label of the payment_for_certificate (Check) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/Transactions.vue:30
#: frontend/src/components/Settings/Transactions.vue:233
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment for Certificate"
msgstr ""
@@ -4923,7 +4996,7 @@ msgstr "Teste erişmek için lütfen giriş yapın."
msgid "Please login to access this page."
msgstr "Bu sayfaya erişebilmek için lütfen giriş yapın."
#: lms/lms/api.py:179
#: lms/lms/api.py:180
msgid "Please login to continue with payment."
msgstr "Ödeme işlemine devam etmek için lütfen giriş yapın."
@@ -4940,7 +5013,7 @@ msgstr "Lütfen iyi hazırlanın ve değerlendirmelere zamanında katılın."
msgid "Please run the code to execute the test cases."
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:420
#: frontend/src/pages/Programs/ProgramForm.vue:421
msgid "Please select a course"
msgstr ""
@@ -4956,7 +5029,7 @@ msgstr ""
msgid "Please select a future date and time."
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:447
#: frontend/src/pages/Programs/ProgramForm.vue:448
msgid "Please select a member"
msgstr ""
@@ -5146,7 +5219,7 @@ msgstr ""
msgid "Program Courses"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:205
#: frontend/src/pages/Programs/ProgramForm.vue:206
msgid "Program Member"
msgstr ""
@@ -5155,15 +5228,15 @@ msgstr ""
msgid "Program Members"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:380
#: frontend/src/pages/Programs/ProgramForm.vue:381
msgid "Program created successfully"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:551
#: frontend/src/pages/Programs/ProgramForm.vue:552
msgid "Program deleted successfully"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:399
#: frontend/src/pages/Programs/ProgramForm.vue:400
msgid "Program updated successfully"
msgstr ""
@@ -5229,7 +5302,7 @@ msgid "Progress Distribution"
msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:99
#: frontend/src/pages/Programs/ProgramForm.vue:124
#: frontend/src/pages/Programs/ProgramForm.vue:125
msgid "Progress Summary"
msgstr ""
@@ -5407,7 +5480,7 @@ msgstr "Sınav başarıyla güncellendi"
msgid "Quiz will appear at the bottom of the lesson."
msgstr ""
#: frontend/src/components/AppSidebar.vue:601
#: frontend/src/components/AppSidebar.vue:606
#: frontend/src/pages/QuizForm.vue:396 frontend/src/pages/Quizzes.vue:275
#: frontend/src/pages/Quizzes.vue:285 lms/www/lms.py:249
msgid "Quizzes"
@@ -5497,6 +5570,11 @@ msgstr "Reddedildi"
msgid "Related Courses"
msgstr "İlgili Kurslar"
#. Option for the 'Work Mode' (Select) field in DocType 'Job Opportunity'
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Remote"
msgstr ""
#: frontend/src/components/Controls/Uploader.vue:34
#: frontend/src/pages/BatchForm.vue:246 frontend/src/pages/CourseForm.vue:119
msgid "Remove"
@@ -5587,7 +5665,7 @@ msgstr "Rol Tercihi"
msgid "Role updated successfully"
msgstr ""
#: frontend/src/components/AppSidebar.vue:629
#: frontend/src/components/AppSidebar.vue:634
msgid "Roles"
msgstr "Roller"
@@ -5671,11 +5749,13 @@ msgstr "Cumartesi"
#: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
#: frontend/src/components/Settings/BadgeForm.vue:78
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:38
#: frontend/src/components/Settings/TransactionDetails.vue:96
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17
#: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseForm.vue:101
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseModal.vue:9
#: frontend/src/pages/Programs/ProgramForm.vue:233
#: frontend/src/pages/Programs/ProgramForm.vue:234
#: frontend/src/pages/QuizForm.vue:43 frontend/src/pages/QuizSubmission.vue:14
#: frontend/src/pages/Quizzes.vue:105
msgid "Save"
@@ -5777,6 +5857,10 @@ msgstr ""
msgid "Select Date"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22
msgid "Select Payment Gateway"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseModal.vue:23
msgid "Select a Programming Exercise"
msgstr ""
@@ -5832,11 +5916,11 @@ msgstr "Şifrenizi Ayarlayın"
msgid "Setting up"
msgstr "Kurulum"
#: frontend/src/components/AppSidebar.vue:622
#: frontend/src/components/AppSidebar.vue:627
msgid "Setting up payment gateway"
msgstr ""
#: frontend/src/components/AppSidebar.vue:627
#: frontend/src/components/AppSidebar.vue:632
#: frontend/src/components/Settings/Settings.vue:7
#: frontend/src/pages/BatchForm.vue:53 frontend/src/pages/CourseForm.vue:142
#: frontend/src/pages/ProfileRoles.vue:4
@@ -5994,6 +6078,7 @@ msgstr "Çözüm"
#. Label of the source (Link) field in DocType 'LMS Payment'
#. Label of the source (Data) field in DocType 'LMS Source'
#. Label of the source (Data) field in DocType 'LMS Video Watch Duration'
#: frontend/src/components/Settings/TransactionDetails.vue:35
#: lms/lms/doctype/lms_batch_enrollment/lms_batch_enrollment.json
#: lms/lms/doctype/lms_payment/lms_payment.json
#: lms/lms/doctype/lms_source/lms_source.json
@@ -6106,7 +6191,7 @@ msgstr "İstatistik"
#: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19
#: frontend/src/pages/JobForm.vue:46
#: frontend/src/pages/JobForm.vue:53
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:280
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/cohort/cohort.json
@@ -6243,7 +6328,7 @@ msgstr "Özet"
msgid "Sunday"
msgstr "Pazar"
#: lms/lms/api.py:1057
#: lms/lms/api.py:1081
msgid "Suspicious pattern found in {0}: {1}"
msgstr ""
@@ -6706,6 +6791,10 @@ msgstr "Toplam Kayıt"
msgid "Training Feedback"
msgstr "Eğitim Geri Bildirimi"
#: frontend/src/components/Settings/TransactionDetails.vue:5
msgid "Transaction Details"
msgstr "İşlem Detayları"
#. Option for the 'Location Preference' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Travel"
@@ -6838,7 +6927,6 @@ msgid "Upcoming Live Classes"
msgstr ""
#: frontend/src/components/Settings/BrandSettings.vue:24
#: frontend/src/components/Settings/PaymentSettings.vue:27
#: frontend/src/components/Settings/SettingDetails.vue:23
msgid "Update"
msgstr "Güncelle"
@@ -7073,6 +7161,12 @@ msgstr "İş Deneyimi"
msgid "Work Experience Details"
msgstr "İş Deneyimi"
#. Label of the work_mode (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:32 frontend/src/pages/Jobs.vue:73
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Work Mode"
msgstr ""
#: frontend/src/components/CourseReviews.vue:8
#: frontend/src/components/Modals/ReviewModal.vue:5
#: lms/templates/reviews.html:117
@@ -7103,11 +7197,11 @@ msgstr ""
msgid "You are already certified for this course. Click on the card below to open your certificate."
msgstr ""
#: lms/lms/api.py:199
#: lms/lms/api.py:200
msgid "You are already enrolled for this batch."
msgstr "Bu gruba zaten kayıtlısınız."
#: lms/lms/api.py:193
#: lms/lms/api.py:194
msgid "You are already enrolled for this course."
msgstr "Bu kursa zaten kayıtlısınız."
@@ -7181,7 +7275,7 @@ msgstr "Bu iş için zaten başvurdunuz."
msgid "You have already exceeded the maximum number of attempts allowed for this quiz."
msgstr "Bu sınav için izin verilen maksimum deneme sayısını zaten aştınız."
#: lms/lms/api.py:223
#: lms/lms/api.py:224
msgid "You have already purchased the certificate for this course."
msgstr ""
@@ -7352,11 +7446,11 @@ msgstr "ve"
msgid "and then 'Add to Home Screen'"
msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:108
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114
msgid "applicant"
msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:108
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114
msgid "applicants"
msgstr ""
@@ -7509,7 +7603,7 @@ msgstr ""
msgid "{0} Quizzes"
msgstr ""
#: lms/lms/api.py:836 lms/lms/api.py:844
#: lms/lms/api.py:838 lms/lms/api.py:846
msgid "{0} Settings not found"
msgstr "{0} Ayarları bulunamadı"
@@ -7565,6 +7659,10 @@ msgstr ""
msgid "{0} mentioned you in a comment in {1}"
msgstr ""
#: lms/lms/api.py:887
msgid "{0} not found"
msgstr "{0} bulunamadı"
#: lms/lms/utils.py:450
msgid "{0}k"
msgstr ""
+162 -64
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2025-09-19 16:04+0000\n"
"PO-Revision-Date: 2025-09-24 07:16\n"
"POT-Creation-Date: 2025-09-26 16:04+0000\n"
"PO-Revision-Date: 2025-09-27 08:15\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Vietnamese\n"
"MIME-Version: 1.0\n"
@@ -145,8 +145,8 @@ msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:93
#: frontend/src/components/Settings/Members.vue:91
#: frontend/src/pages/Programs/ProgramForm.vue:56
#: frontend/src/pages/Programs/ProgramForm.vue:130
#: frontend/src/pages/Programs/ProgramForm.vue:179
#: frontend/src/pages/Programs/ProgramForm.vue:131
#: frontend/src/pages/Programs/ProgramForm.vue:180
msgid "Add"
msgstr ""
@@ -156,7 +156,7 @@ msgstr ""
msgid "Add Chapter"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:175
#: frontend/src/pages/Programs/ProgramForm.vue:176
msgid "Add Course to Program"
msgstr ""
@@ -221,6 +221,10 @@ msgstr ""
msgid "Add a new question"
msgstr ""
#: frontend/src/components/AppSidebar.vue:600
msgid "Add a program"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseModal.vue:5
msgid "Add a programming exercise to your lesson"
msgstr ""
@@ -274,6 +278,7 @@ msgid "Add your first lesson"
msgstr ""
#. Label of the address (Link) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:56
#: frontend/src/pages/Billing.vue:64
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Address"
@@ -353,6 +358,8 @@ msgstr ""
#. Label of the amount (Currency) field in DocType 'LMS Batch'
#. Label of the course_price (Currency) field in DocType 'LMS Course'
#. Label of the amount (Currency) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:68
#: frontend/src/components/Settings/Transactions.vue:219
#: frontend/src/pages/BatchForm.vue:278 frontend/src/pages/CourseForm.vue:262
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -460,7 +467,7 @@ msgstr ""
msgid "Are you sure you want to enroll?"
msgstr ""
#: frontend/src/components/UserDropdown.vue:175
#: frontend/src/components/UserDropdown.vue:177
msgid "Are you sure you want to login to your Frappe Cloud dashboard?"
msgstr ""
@@ -496,7 +503,7 @@ msgid "Assessment {0} has already been added to this batch."
msgstr ""
#. Label of the show_assessments (Check) field in DocType 'LMS Settings'
#: frontend/src/components/AppSidebar.vue:598
#: frontend/src/components/AppSidebar.vue:603
#: frontend/src/components/Assessments.vue:5
#: frontend/src/components/BatchStudents.vue:32
#: lms/lms/doctype/lms_settings/lms_settings.json
@@ -578,7 +585,7 @@ msgstr ""
msgid "Assignment will appear at the bottom of the lesson."
msgstr ""
#: frontend/src/components/AppSidebar.vue:602
#: frontend/src/components/AppSidebar.vue:607
#: frontend/src/components/Settings/Badges.vue:163
#: frontend/src/pages/Assignments.vue:208 lms/www/lms.py:271
msgid "Assignments"
@@ -702,6 +709,7 @@ msgstr ""
#: frontend/src/components/Modals/Event.vue:32
#: frontend/src/components/Settings/BadgeForm.vue:195
#: frontend/src/components/Settings/Badges.vue:200
#: frontend/src/components/Settings/TransactionDetails.vue:92
#: lms/lms/doctype/lms_batch_enrollment/lms_batch_enrollment.json
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
@@ -815,11 +823,11 @@ msgstr ""
msgid "Batch end date cannot be before the batch start date"
msgstr ""
#: lms/lms/api.py:210
#: lms/lms/api.py:211
msgid "Batch has already started."
msgstr ""
#: lms/lms/api.py:205
#: lms/lms/api.py:206
msgid "Batch is sold out."
msgstr ""
@@ -857,6 +865,8 @@ msgid "Billing Details"
msgstr ""
#. Label of the billing_name (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:31
#: frontend/src/components/Settings/Transactions.vue:213
#: frontend/src/pages/Billing.vue:70
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Billing Name"
@@ -1002,7 +1012,7 @@ msgstr ""
#. Enrollment'
#. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace
#: frontend/src/components/AppSidebar.vue:606
#: frontend/src/components/AppSidebar.vue:611
#: frontend/src/components/Modals/Event.vue:381
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58
#: frontend/src/pages/CourseCertification.vue:10
@@ -1145,7 +1155,7 @@ msgstr ""
#. Label of the city (Data) field in DocType 'User'
#. Label of the location (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/Billing.vue:81 frontend/src/pages/JobForm.vue:34
#: frontend/src/pages/Billing.vue:81 frontend/src/pages/JobForm.vue:41
#: lms/fixtures/custom_field.json
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "City"
@@ -1315,25 +1325,25 @@ msgstr ""
#. Label of the section_break_6 (Section Break) field in DocType 'Job
#. Opportunity'
#: frontend/src/pages/JobForm.vue:56
#: frontend/src/pages/JobForm.vue:63
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Details"
msgstr ""
#. Label of the company_email_address (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:75
#: frontend/src/pages/JobForm.vue:82
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Email Address"
msgstr ""
#. Label of the company_logo (Attach Image) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:80
#: frontend/src/pages/JobForm.vue:87
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Logo"
msgstr ""
#. Label of the company_name (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:62
#: frontend/src/pages/JobForm.vue:69
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Name"
msgstr ""
@@ -1344,7 +1354,7 @@ msgid "Company Type"
msgstr ""
#. Label of the company_website (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:68
#: frontend/src/pages/JobForm.vue:75
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Website"
msgstr ""
@@ -1414,7 +1424,7 @@ msgstr ""
msgid "Configurations"
msgstr ""
#: frontend/src/components/UserDropdown.vue:180
#: frontend/src/components/UserDropdown.vue:182
msgid "Confirm"
msgstr ""
@@ -1461,7 +1471,7 @@ msgid "Continue Learning"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:178
#: frontend/src/pages/Jobs.vue:196
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Contract"
msgstr ""
@@ -1491,7 +1501,7 @@ msgstr ""
#. Label of the country (Link) field in DocType 'User'
#. Label of the country (Link) field in DocType 'Job Opportunity'
#. Label of the country (Link) field in DocType 'Payment Country'
#: frontend/src/pages/Billing.vue:92 frontend/src/pages/JobForm.vue:40
#: frontend/src/pages/Billing.vue:92 frontend/src/pages/JobForm.vue:47
#: frontend/src/pages/Jobs.vue:57 lms/fixtures/custom_field.json
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/payment_country/payment_country.json
@@ -1533,7 +1543,8 @@ msgstr ""
#: frontend/src/components/Modals/Event.vue:24
#: frontend/src/components/Settings/BadgeForm.vue:194
#: frontend/src/components/Settings/Badges.vue:199
#: frontend/src/pages/Programs/ProgramForm.vue:195
#: frontend/src/components/Settings/TransactionDetails.vue:91
#: frontend/src/pages/Programs/ProgramForm.vue:196
#: frontend/src/pages/Programs/Programs.vue:35
#: lms/lms/doctype/batch_course/batch_course.json
#: lms/lms/doctype/cohort/cohort.json
@@ -1684,7 +1695,7 @@ msgstr ""
msgid "Course Title"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:436
#: frontend/src/pages/Programs/ProgramForm.vue:437
msgid "Course added to program successfully"
msgstr ""
@@ -1836,6 +1847,7 @@ msgstr ""
#. Label of the currency (Link) field in DocType 'LMS Batch'
#. Label of the currency (Link) field in DocType 'LMS Course'
#. Label of the currency (Link) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:64
#: frontend/src/pages/BatchForm.vue:285 frontend/src/pages/CourseForm.vue:279
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -1852,7 +1864,7 @@ msgstr ""
msgid "Current Streak"
msgstr ""
#: frontend/src/components/AppSidebar.vue:612
#: frontend/src/components/AppSidebar.vue:617
msgid "Custom Certificate Templates"
msgstr ""
@@ -1954,7 +1966,7 @@ msgstr ""
#: frontend/src/components/Settings/Badges.vue:171
#: frontend/src/pages/BatchForm.vue:565 frontend/src/pages/CourseForm.vue:597
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseForm.vue:67
#: frontend/src/pages/Programs/ProgramForm.vue:230
#: frontend/src/pages/Programs/ProgramForm.vue:231
msgid "Delete"
msgstr ""
@@ -2004,7 +2016,7 @@ msgstr ""
#. Label of the description (Small Text) field in DocType 'Work Experience'
#: frontend/src/components/Modals/LiveClassModal.vue:80
#: frontend/src/components/Settings/BadgeForm.vue:32
#: frontend/src/pages/JobForm.vue:125
#: frontend/src/pages/JobForm.vue:132
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/cohort/cohort.json
@@ -2045,6 +2057,7 @@ msgstr ""
#. Label of the disabled (Check) field in DocType 'Job Opportunity'
#: frontend/src/components/Settings/Badges.vue:56
#: frontend/src/components/Settings/PaymentGateways.vue:55
#: frontend/src/components/Settings/ZoomSettings.vue:66
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Disabled"
@@ -2145,6 +2158,10 @@ msgstr ""
msgid "Edit Email Template"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8
msgid "Edit Payment Gateway"
msgstr ""
#: frontend/src/pages/Profile.vue:72
msgid "Edit Profile"
msgstr ""
@@ -2250,6 +2267,7 @@ msgstr ""
#: frontend/src/components/Modals/ZoomAccountModal.vue:23
#: frontend/src/components/Settings/BadgeForm.vue:14
#: frontend/src/components/Settings/Badges.vue:53
#: frontend/src/components/Settings/PaymentGateways.vue:52
#: frontend/src/components/Settings/ZoomSettings.vue:63
#: lms/lms/doctype/lms_badge/lms_badge.json
#: lms/lms/doctype/lms_zoom_settings/lms_zoom_settings.json
@@ -2301,7 +2319,7 @@ msgstr ""
msgid "Enforce Course Order"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:176
#: frontend/src/pages/Programs/ProgramForm.vue:177
msgid "Enroll Member to Program"
msgstr ""
@@ -2460,15 +2478,15 @@ msgstr ""
msgid "Evaluator Schedule"
msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:163
#: frontend/src/components/Settings/Evaluators.vue:160
msgid "Evaluator added successfully"
msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:196
#: frontend/src/components/Settings/Evaluators.vue:193
msgid "Evaluator deleted successfully"
msgstr ""
#: lms/lms/api.py:1392
#: lms/lms/api.py:1416
msgid "Evaluator does not exist."
msgstr ""
@@ -2640,10 +2658,15 @@ msgstr ""
msgid "File Type"
msgstr ""
#: frontend/src/components/Settings/Transactions.vue:15
msgid "Filter by Billing Name"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:23
msgid "Filter by Exercise"
msgstr ""
#: frontend/src/components/Settings/Transactions.vue:20
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:28
msgid "Filter by Member"
msgstr ""
@@ -2677,7 +2700,7 @@ msgid "Free"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:179
#: frontend/src/pages/Jobs.vue:197
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Freelance"
msgstr ""
@@ -2719,7 +2742,7 @@ msgid "Full Name"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:176
#: frontend/src/pages/Jobs.vue:194
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Full Time"
msgstr ""
@@ -2741,10 +2764,15 @@ msgid "GST Number"
msgstr ""
#. Label of the gstin (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:76
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "GSTIN"
msgstr ""
#: frontend/src/components/Settings/PaymentGateways.vue:134
msgid "Gateway"
msgstr ""
#. Label of the general_tab (Tab Break) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "General"
@@ -2923,6 +2951,11 @@ msgstr ""
msgid "Host"
msgstr ""
#. Option for the 'Work Mode' (Select) field in DocType 'Job Opportunity'
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Hybrid"
msgstr ""
#. Label of the current (Check) field in DocType 'Work Experience'
#: lms/lms/doctype/work_experience/work_experience.json
msgid "I am currently working here"
@@ -3197,7 +3230,7 @@ msgstr ""
msgid "Issue Date"
msgstr ""
#: frontend/src/components/AppSidebar.vue:609
#: frontend/src/components/AppSidebar.vue:614
msgid "Issue a Certificate"
msgstr ""
@@ -3273,7 +3306,7 @@ msgstr ""
#. 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/Jobs.vue:185
#: frontend/src/pages/Jobs.vue:212
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Jobs"
msgstr ""
@@ -3621,6 +3654,10 @@ msgstr ""
msgid "Learning Consistency"
msgstr ""
#: frontend/src/components/AppSidebar.vue:598
msgid "Learning Paths"
msgstr ""
#. Label of the left_at (Datetime) field in DocType 'LMS Live Class
#. Participant'
#: lms/lms/doctype/lms_live_class_participant/lms_live_class_participant.json
@@ -3753,6 +3790,7 @@ msgstr ""
#: frontend/src/components/Modals/CourseProgressSummary.vue:86
#: frontend/src/components/Settings/Evaluators.vue:81
#: frontend/src/components/Settings/Members.vue:79
#: frontend/src/components/Settings/Transactions.vue:94
#: frontend/src/pages/Assignments.vue:66 frontend/src/pages/Batches.vue:82
#: frontend/src/pages/CertifiedParticipants.vue:98
#: frontend/src/pages/Courses.vue:77
@@ -3786,7 +3824,7 @@ msgstr ""
msgid "Login"
msgstr ""
#: frontend/src/components/UserDropdown.vue:174
#: frontend/src/components/UserDropdown.vue:176
msgid "Login to Frappe Cloud?"
msgstr ""
@@ -3940,6 +3978,7 @@ msgstr ""
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:26
#: frontend/src/components/Settings/BadgeAssignments.vue:179
#: frontend/src/components/Settings/BadgeForm.vue:215
#: frontend/src/components/Settings/TransactionDetails.vue:26
#: frontend/src/components/Settings/ZoomSettings.vue:187
#: frontend/src/pages/AssignmentSubmissionList.vue:14
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:268
@@ -4073,7 +4112,7 @@ msgstr ""
msgid "Member Username"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:462
#: frontend/src/pages/Programs/ProgramForm.vue:463
msgid "Member added to program successfully"
msgstr ""
@@ -4157,7 +4196,7 @@ msgstr ""
msgid "Meta Tags"
msgstr ""
#: lms/lms/api.py:1432
#: lms/lms/api.py:1456
msgid "Meta tags should be a list."
msgstr ""
@@ -4209,11 +4248,11 @@ msgstr ""
msgid "Modified By"
msgstr ""
#: lms/lms/api.py:187
#: lms/lms/api.py:188
msgid "Module Name is incorrect or does not exist."
msgstr ""
#: lms/lms/api.py:183
#: lms/lms/api.py:184
msgid "Module is incorrect."
msgstr ""
@@ -4224,7 +4263,7 @@ msgstr ""
msgid "Monday"
msgstr ""
#: frontend/src/components/AppSidebar.vue:617
#: frontend/src/components/AppSidebar.vue:622
msgid "Monetization"
msgstr ""
@@ -4268,6 +4307,7 @@ msgstr ""
#: frontend/src/components/Settings/EmailTemplates.vue:17
#: frontend/src/components/Settings/Evaluators.vue:17
#: frontend/src/components/Settings/Members.vue:17
#: frontend/src/components/Settings/PaymentGateways.vue:16
#: frontend/src/components/Settings/ZoomSettings.vue:17
#: frontend/src/pages/Courses.vue:312
#: frontend/src/pages/Programs/Programs.vue:10
@@ -4295,6 +4335,10 @@ msgstr ""
msgid "New Job Applicant"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7
msgid "New Payment Gateway"
msgstr ""
#: frontend/src/pages/QuizForm.vue:137
msgid "New Question"
msgstr ""
@@ -4399,7 +4443,7 @@ msgstr ""
msgid "No live classes scheduled"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:166
#: frontend/src/pages/Programs/ProgramForm.vue:167
msgid "No members added yet."
msgstr ""
@@ -4469,7 +4513,6 @@ msgstr ""
#: frontend/src/components/Assignment.vue:36
#: frontend/src/components/Settings/BrandSettings.vue:10
#: frontend/src/components/Settings/PaymentSettings.vue:9
#: frontend/src/components/Settings/SettingDetails.vue:10
#: frontend/src/pages/Programs/ProgramForm.vue:16
#: frontend/src/pages/QuizForm.vue:8 frontend/src/pages/QuizSubmission.vue:9
@@ -4522,6 +4565,11 @@ msgstr ""
msgid "Offline"
msgstr ""
#. Option for the 'Work Mode' (Select) field in DocType 'Job Opportunity'
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "On-site"
msgstr ""
#: lms/templates/emails/certification.html:16
msgid "Once again, congratulations on this significant accomplishment."
msgstr ""
@@ -4569,6 +4617,10 @@ msgstr ""
msgid "Open Ended"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:88
msgid "Open the "
msgstr ""
#. Label of the option (Data) field in DocType 'LMS Option'
#: frontend/src/components/Modals/Question.vue:70
#: lms/lms/doctype/lms_option/lms_option.json
@@ -4605,6 +4657,7 @@ msgid "Orange"
msgstr ""
#. Label of the order_id (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:70
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Order ID"
msgstr ""
@@ -4642,6 +4695,7 @@ msgid "Owner"
msgstr ""
#. Label of the pan (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:77
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "PAN"
msgstr ""
@@ -4687,7 +4741,7 @@ msgid "Pan Number"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:177
#: frontend/src/pages/Jobs.vue:195
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Part Time"
msgstr ""
@@ -4747,21 +4801,38 @@ msgstr ""
#. Label of the payment_details_section (Section Break) field in DocType 'LMS
#. Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:42
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment Details"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:18
msgid "Payment For Certificate"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:51
msgid "Payment For Document"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:46
msgid "Payment For Document Type"
msgstr ""
#. Label of the payment_gateway (Data) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Payment Gateway"
msgstr ""
#. Label of the payment_id (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:79
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment ID"
msgstr ""
#. Label of the payment_received (Check) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:13
#: frontend/src/components/Settings/Transactions.vue:25
#: frontend/src/components/Settings/Transactions.vue:226
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment Received"
msgstr ""
@@ -4783,6 +4854,8 @@ msgid "Payment for "
msgstr ""
#. Label of the payment_for_certificate (Check) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/Transactions.vue:30
#: frontend/src/components/Settings/Transactions.vue:233
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment for Certificate"
msgstr ""
@@ -4923,7 +4996,7 @@ msgstr ""
msgid "Please login to access this page."
msgstr ""
#: lms/lms/api.py:179
#: lms/lms/api.py:180
msgid "Please login to continue with payment."
msgstr ""
@@ -4940,7 +5013,7 @@ msgstr ""
msgid "Please run the code to execute the test cases."
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:420
#: frontend/src/pages/Programs/ProgramForm.vue:421
msgid "Please select a course"
msgstr ""
@@ -4956,7 +5029,7 @@ msgstr ""
msgid "Please select a future date and time."
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:447
#: frontend/src/pages/Programs/ProgramForm.vue:448
msgid "Please select a member"
msgstr ""
@@ -5146,7 +5219,7 @@ msgstr ""
msgid "Program Courses"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:205
#: frontend/src/pages/Programs/ProgramForm.vue:206
msgid "Program Member"
msgstr ""
@@ -5155,15 +5228,15 @@ msgstr ""
msgid "Program Members"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:380
#: frontend/src/pages/Programs/ProgramForm.vue:381
msgid "Program created successfully"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:551
#: frontend/src/pages/Programs/ProgramForm.vue:552
msgid "Program deleted successfully"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:399
#: frontend/src/pages/Programs/ProgramForm.vue:400
msgid "Program updated successfully"
msgstr ""
@@ -5229,7 +5302,7 @@ msgid "Progress Distribution"
msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:99
#: frontend/src/pages/Programs/ProgramForm.vue:124
#: frontend/src/pages/Programs/ProgramForm.vue:125
msgid "Progress Summary"
msgstr ""
@@ -5407,7 +5480,7 @@ msgstr ""
msgid "Quiz will appear at the bottom of the lesson."
msgstr ""
#: frontend/src/components/AppSidebar.vue:601
#: frontend/src/components/AppSidebar.vue:606
#: frontend/src/pages/QuizForm.vue:396 frontend/src/pages/Quizzes.vue:275
#: frontend/src/pages/Quizzes.vue:285 lms/www/lms.py:249
msgid "Quizzes"
@@ -5497,6 +5570,11 @@ msgstr ""
msgid "Related Courses"
msgstr ""
#. Option for the 'Work Mode' (Select) field in DocType 'Job Opportunity'
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Remote"
msgstr ""
#: frontend/src/components/Controls/Uploader.vue:34
#: frontend/src/pages/BatchForm.vue:246 frontend/src/pages/CourseForm.vue:119
msgid "Remove"
@@ -5587,7 +5665,7 @@ msgstr ""
msgid "Role updated successfully"
msgstr ""
#: frontend/src/components/AppSidebar.vue:629
#: frontend/src/components/AppSidebar.vue:634
msgid "Roles"
msgstr ""
@@ -5671,11 +5749,13 @@ msgstr ""
#: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
#: frontend/src/components/Settings/BadgeForm.vue:78
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:38
#: frontend/src/components/Settings/TransactionDetails.vue:96
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17
#: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseForm.vue:101
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseModal.vue:9
#: frontend/src/pages/Programs/ProgramForm.vue:233
#: frontend/src/pages/Programs/ProgramForm.vue:234
#: frontend/src/pages/QuizForm.vue:43 frontend/src/pages/QuizSubmission.vue:14
#: frontend/src/pages/Quizzes.vue:105
msgid "Save"
@@ -5777,6 +5857,10 @@ msgstr ""
msgid "Select Date"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22
msgid "Select Payment Gateway"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseModal.vue:23
msgid "Select a Programming Exercise"
msgstr ""
@@ -5832,11 +5916,11 @@ msgstr ""
msgid "Setting up"
msgstr ""
#: frontend/src/components/AppSidebar.vue:622
#: frontend/src/components/AppSidebar.vue:627
msgid "Setting up payment gateway"
msgstr ""
#: frontend/src/components/AppSidebar.vue:627
#: frontend/src/components/AppSidebar.vue:632
#: frontend/src/components/Settings/Settings.vue:7
#: frontend/src/pages/BatchForm.vue:53 frontend/src/pages/CourseForm.vue:142
#: frontend/src/pages/ProfileRoles.vue:4
@@ -5994,6 +6078,7 @@ msgstr ""
#. Label of the source (Link) field in DocType 'LMS Payment'
#. Label of the source (Data) field in DocType 'LMS Source'
#. Label of the source (Data) field in DocType 'LMS Video Watch Duration'
#: frontend/src/components/Settings/TransactionDetails.vue:35
#: lms/lms/doctype/lms_batch_enrollment/lms_batch_enrollment.json
#: lms/lms/doctype/lms_payment/lms_payment.json
#: lms/lms/doctype/lms_source/lms_source.json
@@ -6106,7 +6191,7 @@ msgstr ""
#: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19
#: frontend/src/pages/JobForm.vue:46
#: frontend/src/pages/JobForm.vue:53
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:280
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/cohort/cohort.json
@@ -6243,7 +6328,7 @@ msgstr ""
msgid "Sunday"
msgstr ""
#: lms/lms/api.py:1057
#: lms/lms/api.py:1081
msgid "Suspicious pattern found in {0}: {1}"
msgstr ""
@@ -6706,6 +6791,10 @@ msgstr ""
msgid "Training Feedback"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:5
msgid "Transaction Details"
msgstr ""
#. Option for the 'Location Preference' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Travel"
@@ -6838,7 +6927,6 @@ msgid "Upcoming Live Classes"
msgstr ""
#: frontend/src/components/Settings/BrandSettings.vue:24
#: frontend/src/components/Settings/PaymentSettings.vue:27
#: frontend/src/components/Settings/SettingDetails.vue:23
msgid "Update"
msgstr ""
@@ -7073,6 +7161,12 @@ msgstr ""
msgid "Work Experience Details"
msgstr ""
#. Label of the work_mode (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:32 frontend/src/pages/Jobs.vue:73
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Work Mode"
msgstr ""
#: frontend/src/components/CourseReviews.vue:8
#: frontend/src/components/Modals/ReviewModal.vue:5
#: lms/templates/reviews.html:117
@@ -7103,11 +7197,11 @@ msgstr ""
msgid "You are already certified for this course. Click on the card below to open your certificate."
msgstr ""
#: lms/lms/api.py:199
#: lms/lms/api.py:200
msgid "You are already enrolled for this batch."
msgstr ""
#: lms/lms/api.py:193
#: lms/lms/api.py:194
msgid "You are already enrolled for this course."
msgstr ""
@@ -7181,7 +7275,7 @@ msgstr ""
msgid "You have already exceeded the maximum number of attempts allowed for this quiz."
msgstr ""
#: lms/lms/api.py:223
#: lms/lms/api.py:224
msgid "You have already purchased the certificate for this course."
msgstr ""
@@ -7352,11 +7446,11 @@ msgstr ""
msgid "and then 'Add to Home Screen'"
msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:108
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114
msgid "applicant"
msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:108
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114
msgid "applicants"
msgstr ""
@@ -7509,7 +7603,7 @@ msgstr ""
msgid "{0} Quizzes"
msgstr ""
#: lms/lms/api.py:836 lms/lms/api.py:844
#: lms/lms/api.py:838 lms/lms/api.py:846
msgid "{0} Settings not found"
msgstr ""
@@ -7565,6 +7659,10 @@ msgstr ""
msgid "{0} mentioned you in a comment in {1}"
msgstr ""
#: lms/lms/api.py:887
msgid "{0} not found"
msgstr ""
#: lms/lms/utils.py:450
msgid "{0}k"
msgstr ""
+162 -64
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2025-09-19 16:04+0000\n"
"PO-Revision-Date: 2025-09-24 07:16\n"
"POT-Creation-Date: 2025-09-26 16:04+0000\n"
"PO-Revision-Date: 2025-09-27 08:15\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Chinese Simplified\n"
"MIME-Version: 1.0\n"
@@ -145,8 +145,8 @@ msgstr "活跃成员"
#: frontend/src/components/Settings/Evaluators.vue:93
#: frontend/src/components/Settings/Members.vue:91
#: frontend/src/pages/Programs/ProgramForm.vue:56
#: frontend/src/pages/Programs/ProgramForm.vue:130
#: frontend/src/pages/Programs/ProgramForm.vue:179
#: frontend/src/pages/Programs/ProgramForm.vue:131
#: frontend/src/pages/Programs/ProgramForm.vue:180
msgid "Add"
msgstr "添加"
@@ -156,7 +156,7 @@ msgstr "添加"
msgid "Add Chapter"
msgstr "添加章节"
#: frontend/src/pages/Programs/ProgramForm.vue:175
#: frontend/src/pages/Programs/ProgramForm.vue:176
msgid "Add Course to Program"
msgstr ""
@@ -221,6 +221,10 @@ msgstr ""
msgid "Add a new question"
msgstr "新增试题"
#: frontend/src/components/AppSidebar.vue:600
msgid "Add a program"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseModal.vue:5
msgid "Add a programming exercise to your lesson"
msgstr ""
@@ -274,6 +278,7 @@ msgid "Add your first lesson"
msgstr "添加首节课时"
#. Label of the address (Link) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:56
#: frontend/src/pages/Billing.vue:64
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Address"
@@ -353,6 +358,8 @@ msgstr ""
#. Label of the amount (Currency) field in DocType 'LMS Batch'
#. Label of the course_price (Currency) field in DocType 'LMS Course'
#. Label of the amount (Currency) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:68
#: frontend/src/components/Settings/Transactions.vue:219
#: frontend/src/pages/BatchForm.vue:278 frontend/src/pages/CourseForm.vue:262
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -460,7 +467,7 @@ msgstr "确认取消本次评估?此操作不可撤销。"
msgid "Are you sure you want to enroll?"
msgstr ""
#: frontend/src/components/UserDropdown.vue:175
#: frontend/src/components/UserDropdown.vue:177
msgid "Are you sure you want to login to your Frappe Cloud dashboard?"
msgstr "确定要登录Frappe Cloud控制面板?"
@@ -496,7 +503,7 @@ msgid "Assessment {0} has already been added to this batch."
msgstr "考核{0}已添加至本批次。"
#. Label of the show_assessments (Check) field in DocType 'LMS Settings'
#: frontend/src/components/AppSidebar.vue:598
#: frontend/src/components/AppSidebar.vue:603
#: frontend/src/components/Assessments.vue:5
#: frontend/src/components/BatchStudents.vue:32
#: lms/lms/doctype/lms_settings/lms_settings.json
@@ -578,7 +585,7 @@ msgstr "作业更新成功"
msgid "Assignment will appear at the bottom of the lesson."
msgstr "作业将显示在课时末尾。"
#: frontend/src/components/AppSidebar.vue:602
#: frontend/src/components/AppSidebar.vue:607
#: frontend/src/components/Settings/Badges.vue:163
#: frontend/src/pages/Assignments.vue:208 lms/www/lms.py:271
msgid "Assignments"
@@ -702,6 +709,7 @@ msgstr ""
#: frontend/src/components/Modals/Event.vue:32
#: frontend/src/components/Settings/BadgeForm.vue:195
#: frontend/src/components/Settings/Badges.vue:200
#: frontend/src/components/Settings/TransactionDetails.vue:92
#: lms/lms/doctype/lms_batch_enrollment/lms_batch_enrollment.json
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
@@ -815,11 +823,11 @@ msgstr ""
msgid "Batch end date cannot be before the batch start date"
msgstr "批次结束日期不可早于开始日期"
#: lms/lms/api.py:210
#: lms/lms/api.py:211
msgid "Batch has already started."
msgstr "班级已开始。"
#: lms/lms/api.py:205
#: lms/lms/api.py:206
msgid "Batch is sold out."
msgstr "该批次已满额。"
@@ -857,6 +865,8 @@ msgid "Billing Details"
msgstr "账单明细"
#. Label of the billing_name (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:31
#: frontend/src/components/Settings/Transactions.vue:213
#: frontend/src/pages/Billing.vue:70
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Billing Name"
@@ -1002,7 +1012,7 @@ msgstr "证书生成成功"
#. Enrollment'
#. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace
#: frontend/src/components/AppSidebar.vue:606
#: frontend/src/components/AppSidebar.vue:611
#: frontend/src/components/Modals/Event.vue:381
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58
#: frontend/src/pages/CourseCertification.vue:10
@@ -1145,7 +1155,7 @@ msgstr "选择唯一答案"
#. Label of the city (Data) field in DocType 'User'
#. Label of the location (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/Billing.vue:81 frontend/src/pages/JobForm.vue:34
#: frontend/src/pages/Billing.vue:81 frontend/src/pages/JobForm.vue:41
#: lms/fixtures/custom_field.json
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "City"
@@ -1315,25 +1325,25 @@ msgstr "公司"
#. Label of the section_break_6 (Section Break) field in DocType 'Job
#. Opportunity'
#: frontend/src/pages/JobForm.vue:56
#: frontend/src/pages/JobForm.vue:63
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Details"
msgstr "公司详情"
#. Label of the company_email_address (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:75
#: frontend/src/pages/JobForm.vue:82
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Email Address"
msgstr "公司邮箱"
#. Label of the company_logo (Attach Image) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:80
#: frontend/src/pages/JobForm.vue:87
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Logo"
msgstr "公司标志"
#. Label of the company_name (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:62
#: frontend/src/pages/JobForm.vue:69
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Name"
msgstr "公司名称"
@@ -1344,7 +1354,7 @@ msgid "Company Type"
msgstr "公司类型"
#. Label of the company_website (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:68
#: frontend/src/pages/JobForm.vue:75
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Website"
msgstr "公司网站"
@@ -1414,7 +1424,7 @@ msgstr "执行评估"
msgid "Configurations"
msgstr "系统配置"
#: frontend/src/components/UserDropdown.vue:180
#: frontend/src/components/UserDropdown.vue:182
msgid "Confirm"
msgstr "确认"
@@ -1461,7 +1471,7 @@ msgid "Continue Learning"
msgstr "继续学习"
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:178
#: frontend/src/pages/Jobs.vue:196
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Contract"
msgstr "合同"
@@ -1491,7 +1501,7 @@ msgstr "正确答案"
#. Label of the country (Link) field in DocType 'User'
#. Label of the country (Link) field in DocType 'Job Opportunity'
#. Label of the country (Link) field in DocType 'Payment Country'
#: frontend/src/pages/Billing.vue:92 frontend/src/pages/JobForm.vue:40
#: frontend/src/pages/Billing.vue:92 frontend/src/pages/JobForm.vue:47
#: frontend/src/pages/Jobs.vue:57 lms/fixtures/custom_field.json
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/payment_country/payment_country.json
@@ -1533,7 +1543,8 @@ msgstr "国家"
#: frontend/src/components/Modals/Event.vue:24
#: frontend/src/components/Settings/BadgeForm.vue:194
#: frontend/src/components/Settings/Badges.vue:199
#: frontend/src/pages/Programs/ProgramForm.vue:195
#: frontend/src/components/Settings/TransactionDetails.vue:91
#: frontend/src/pages/Programs/ProgramForm.vue:196
#: frontend/src/pages/Programs/Programs.vue:35
#: lms/lms/doctype/batch_course/batch_course.json
#: lms/lms/doctype/cohort/cohort.json
@@ -1684,7 +1695,7 @@ msgstr "课程统计"
msgid "Course Title"
msgstr "课程标题"
#: frontend/src/pages/Programs/ProgramForm.vue:436
#: frontend/src/pages/Programs/ProgramForm.vue:437
msgid "Course added to program successfully"
msgstr ""
@@ -1836,6 +1847,7 @@ msgstr "正在创建课程"
#. Label of the currency (Link) field in DocType 'LMS Batch'
#. Label of the currency (Link) field in DocType 'LMS Course'
#. Label of the currency (Link) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:64
#: frontend/src/pages/BatchForm.vue:285 frontend/src/pages/CourseForm.vue:279
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -1852,7 +1864,7 @@ msgstr "当前课时"
msgid "Current Streak"
msgstr ""
#: frontend/src/components/AppSidebar.vue:612
#: frontend/src/components/AppSidebar.vue:617
msgid "Custom Certificate Templates"
msgstr "自定义证书模板"
@@ -1954,7 +1966,7 @@ msgstr "学位类型"
#: frontend/src/components/Settings/Badges.vue:171
#: frontend/src/pages/BatchForm.vue:565 frontend/src/pages/CourseForm.vue:597
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseForm.vue:67
#: frontend/src/pages/Programs/ProgramForm.vue:230
#: frontend/src/pages/Programs/ProgramForm.vue:231
msgid "Delete"
msgstr "删除"
@@ -2004,7 +2016,7 @@ msgstr "删除本课时将永久移除。此操作不可撤销。确认继续吗
#. Label of the description (Small Text) field in DocType 'Work Experience'
#: frontend/src/components/Modals/LiveClassModal.vue:80
#: frontend/src/components/Settings/BadgeForm.vue:32
#: frontend/src/pages/JobForm.vue:125
#: frontend/src/pages/JobForm.vue:132
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/cohort/cohort.json
@@ -2045,6 +2057,7 @@ msgstr "禁用注册功能"
#. Label of the disabled (Check) field in DocType 'Job Opportunity'
#: frontend/src/components/Settings/Badges.vue:56
#: frontend/src/components/Settings/PaymentGateways.vue:55
#: frontend/src/components/Settings/ZoomSettings.vue:66
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Disabled"
@@ -2145,6 +2158,10 @@ msgstr "编辑章节"
msgid "Edit Email Template"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8
msgid "Edit Payment Gateway"
msgstr ""
#: frontend/src/pages/Profile.vue:72
msgid "Edit Profile"
msgstr "编辑个人资料"
@@ -2250,6 +2267,7 @@ msgstr "仅在上传SCORM包作为章节时启用"
#: frontend/src/components/Modals/ZoomAccountModal.vue:23
#: frontend/src/components/Settings/BadgeForm.vue:14
#: frontend/src/components/Settings/Badges.vue:53
#: frontend/src/components/Settings/PaymentGateways.vue:52
#: frontend/src/components/Settings/ZoomSettings.vue:63
#: lms/lms/doctype/lms_badge/lms_badge.json
#: lms/lms/doctype/lms_zoom_settings/lms_zoom_settings.json
@@ -2301,7 +2319,7 @@ msgstr ""
msgid "Enforce Course Order"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:176
#: frontend/src/pages/Programs/ProgramForm.vue:177
msgid "Enroll Member to Program"
msgstr ""
@@ -2460,15 +2478,15 @@ msgstr "评估人姓名"
msgid "Evaluator Schedule"
msgstr "评估人日程"
#: frontend/src/components/Settings/Evaluators.vue:163
#: frontend/src/components/Settings/Evaluators.vue:160
msgid "Evaluator added successfully"
msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:196
#: frontend/src/components/Settings/Evaluators.vue:193
msgid "Evaluator deleted successfully"
msgstr ""
#: lms/lms/api.py:1392
#: lms/lms/api.py:1416
msgid "Evaluator does not exist."
msgstr ""
@@ -2640,10 +2658,15 @@ msgstr "专业/研究领域"
msgid "File Type"
msgstr "文件类型"
#: frontend/src/components/Settings/Transactions.vue:15
msgid "Filter by Billing Name"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:23
msgid "Filter by Exercise"
msgstr ""
#: frontend/src/components/Settings/Transactions.vue:20
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:28
msgid "Filter by Member"
msgstr ""
@@ -2677,7 +2700,7 @@ msgid "Free"
msgstr "免费"
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:179
#: frontend/src/pages/Jobs.vue:197
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Freelance"
msgstr "自由职业"
@@ -2719,7 +2742,7 @@ msgid "Full Name"
msgstr "全名"
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:176
#: frontend/src/pages/Jobs.vue:194
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Full Time"
msgstr "全职"
@@ -2741,10 +2764,15 @@ msgid "GST Number"
msgstr "商品及服务税号"
#. Label of the gstin (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:76
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "GSTIN"
msgstr "商品及服务税识别号"
#: frontend/src/components/Settings/PaymentGateways.vue:134
msgid "Gateway"
msgstr ""
#. Label of the general_tab (Tab Break) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "General"
@@ -2923,6 +2951,11 @@ msgstr "主页"
msgid "Host"
msgstr "主持人"
#. Option for the 'Work Mode' (Select) field in DocType 'Job Opportunity'
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Hybrid"
msgstr ""
#. Label of the current (Check) field in DocType 'Work Experience'
#: lms/lms/doctype/work_experience/work_experience.json
msgid "I am currently working here"
@@ -3197,7 +3230,7 @@ msgstr "是否为SCORM包"
msgid "Issue Date"
msgstr "签发日期"
#: frontend/src/components/AppSidebar.vue:609
#: frontend/src/components/AppSidebar.vue:614
msgid "Issue a Certificate"
msgstr "颁发证书"
@@ -3273,7 +3306,7 @@ msgstr "职位名称"
#. 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/Jobs.vue:185
#: frontend/src/pages/Jobs.vue:212
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Jobs"
msgstr "职位"
@@ -3621,6 +3654,10 @@ msgstr "启动文件"
msgid "Learning Consistency"
msgstr ""
#: frontend/src/components/AppSidebar.vue:598
msgid "Learning Paths"
msgstr ""
#. Label of the left_at (Datetime) field in DocType 'LMS Live Class
#. Participant'
#: lms/lms/doctype/lms_live_class_participant/lms_live_class_participant.json
@@ -3753,6 +3790,7 @@ msgstr "实时编码链接"
#: frontend/src/components/Modals/CourseProgressSummary.vue:86
#: frontend/src/components/Settings/Evaluators.vue:81
#: frontend/src/components/Settings/Members.vue:79
#: frontend/src/components/Settings/Transactions.vue:94
#: frontend/src/pages/Assignments.vue:66 frontend/src/pages/Batches.vue:82
#: frontend/src/pages/CertifiedParticipants.vue:98
#: frontend/src/pages/Courses.vue:77
@@ -3786,7 +3824,7 @@ msgstr "地点偏好"
msgid "Login"
msgstr "登录"
#: frontend/src/components/UserDropdown.vue:174
#: frontend/src/components/UserDropdown.vue:176
msgid "Login to Frappe Cloud?"
msgstr "登录Frappe云平台?"
@@ -3940,6 +3978,7 @@ msgstr ""
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:26
#: frontend/src/components/Settings/BadgeAssignments.vue:179
#: frontend/src/components/Settings/BadgeForm.vue:215
#: frontend/src/components/Settings/TransactionDetails.vue:26
#: frontend/src/components/Settings/ZoomSettings.vue:187
#: frontend/src/pages/AssignmentSubmissionList.vue:14
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:268
@@ -4073,7 +4112,7 @@ msgstr "成员类型"
msgid "Member Username"
msgstr "成员用户名"
#: frontend/src/pages/Programs/ProgramForm.vue:462
#: frontend/src/pages/Programs/ProgramForm.vue:463
msgid "Member added to program successfully"
msgstr ""
@@ -4157,7 +4196,7 @@ msgstr "元关键词"
msgid "Meta Tags"
msgstr "元标签"
#: lms/lms/api.py:1432
#: lms/lms/api.py:1456
msgid "Meta tags should be a list."
msgstr ""
@@ -4209,11 +4248,11 @@ msgstr ""
msgid "Modified By"
msgstr "修改人"
#: lms/lms/api.py:187
#: lms/lms/api.py:188
msgid "Module Name is incorrect or does not exist."
msgstr "模块名称错误或不存在"
#: lms/lms/api.py:183
#: lms/lms/api.py:184
msgid "Module is incorrect."
msgstr "模块错误"
@@ -4224,7 +4263,7 @@ msgstr "模块错误"
msgid "Monday"
msgstr "星期一"
#: frontend/src/components/AppSidebar.vue:617
#: frontend/src/components/AppSidebar.vue:622
msgid "Monetization"
msgstr "课程变现功能"
@@ -4268,6 +4307,7 @@ msgstr "名称"
#: frontend/src/components/Settings/EmailTemplates.vue:17
#: frontend/src/components/Settings/Evaluators.vue:17
#: frontend/src/components/Settings/Members.vue:17
#: frontend/src/components/Settings/PaymentGateways.vue:16
#: frontend/src/components/Settings/ZoomSettings.vue:17
#: frontend/src/pages/Courses.vue:312
#: frontend/src/pages/Programs/Programs.vue:10
@@ -4295,6 +4335,10 @@ msgstr "新建职位"
msgid "New Job Applicant"
msgstr "新职位申请人"
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7
msgid "New Payment Gateway"
msgstr ""
#: frontend/src/pages/QuizForm.vue:137
msgid "New Question"
msgstr "新建试题"
@@ -4399,7 +4443,7 @@ msgstr "无简介"
msgid "No live classes scheduled"
msgstr "未安排直播课程"
#: frontend/src/pages/Programs/ProgramForm.vue:166
#: frontend/src/pages/Programs/ProgramForm.vue:167
msgid "No members added yet."
msgstr ""
@@ -4469,7 +4513,6 @@ msgstr "未授权"
#: frontend/src/components/Assignment.vue:36
#: frontend/src/components/Settings/BrandSettings.vue:10
#: frontend/src/components/Settings/PaymentSettings.vue:9
#: frontend/src/components/Settings/SettingDetails.vue:10
#: frontend/src/pages/Programs/ProgramForm.vue:16
#: frontend/src/pages/QuizForm.vue:8 frontend/src/pages/QuizSubmission.vue:9
@@ -4522,6 +4565,11 @@ msgstr "离家近的办公地点"
msgid "Offline"
msgstr "离线"
#. Option for the 'Work Mode' (Select) field in DocType 'Job Opportunity'
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "On-site"
msgstr ""
#: lms/templates/emails/certification.html:16
msgid "Once again, congratulations on this significant accomplishment."
msgstr "再次祝贺您取得这一重要成就"
@@ -4569,6 +4617,10 @@ msgstr "开放课程"
msgid "Open Ended"
msgstr "开放型问题"
#: frontend/src/components/Settings/TransactionDetails.vue:88
msgid "Open the "
msgstr ""
#. Label of the option (Data) field in DocType 'LMS Option'
#: frontend/src/components/Modals/Question.vue:70
#: lms/lms/doctype/lms_option/lms_option.json
@@ -4605,6 +4657,7 @@ msgid "Orange"
msgstr "橙色"
#. Label of the order_id (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:70
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Order ID"
msgstr "订单ID"
@@ -4642,6 +4695,7 @@ msgid "Owner"
msgstr "所有者"
#. Label of the pan (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:77
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "PAN"
msgstr "永久账户号码"
@@ -4687,7 +4741,7 @@ msgid "Pan Number"
msgstr "PAN号码"
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:177
#: frontend/src/pages/Jobs.vue:195
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Part Time"
msgstr "兼职"
@@ -4747,21 +4801,38 @@ msgstr "支付国家"
#. Label of the payment_details_section (Section Break) field in DocType 'LMS
#. Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:42
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment Details"
msgstr "支付详情"
#: frontend/src/components/Settings/TransactionDetails.vue:18
msgid "Payment For Certificate"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:51
msgid "Payment For Document"
msgstr ""
#: frontend/src/components/Settings/TransactionDetails.vue:46
msgid "Payment For Document Type"
msgstr ""
#. Label of the payment_gateway (Data) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Payment Gateway"
msgstr "支付网关"
#. Label of the payment_id (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:79
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment ID"
msgstr "支付ID"
#. Label of the payment_received (Check) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/TransactionDetails.vue:13
#: frontend/src/components/Settings/Transactions.vue:25
#: frontend/src/components/Settings/Transactions.vue:226
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment Received"
msgstr "已收款"
@@ -4783,6 +4854,8 @@ msgid "Payment for "
msgstr "支付对象:"
#. Label of the payment_for_certificate (Check) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/Transactions.vue:30
#: frontend/src/components/Settings/Transactions.vue:233
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Payment for Certificate"
msgstr "证书支付"
@@ -4923,7 +4996,7 @@ msgstr "请登录以访问测验"
msgid "Please login to access this page."
msgstr "请登录以访问此页面"
#: lms/lms/api.py:179
#: lms/lms/api.py:180
msgid "Please login to continue with payment."
msgstr "请登录以继续支付"
@@ -4940,7 +5013,7 @@ msgstr "请充分准备并准时参加评估"
msgid "Please run the code to execute the test cases."
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:420
#: frontend/src/pages/Programs/ProgramForm.vue:421
msgid "Please select a course"
msgstr ""
@@ -4956,7 +5029,7 @@ msgstr "请选择时长"
msgid "Please select a future date and time."
msgstr "请选择未来的日期和时间"
#: frontend/src/pages/Programs/ProgramForm.vue:447
#: frontend/src/pages/Programs/ProgramForm.vue:448
msgid "Please select a member"
msgstr ""
@@ -5146,7 +5219,7 @@ msgstr ""
msgid "Program Courses"
msgstr "项目课程"
#: frontend/src/pages/Programs/ProgramForm.vue:205
#: frontend/src/pages/Programs/ProgramForm.vue:206
msgid "Program Member"
msgstr "项目成员"
@@ -5155,15 +5228,15 @@ msgstr "项目成员"
msgid "Program Members"
msgstr "项目成员"
#: frontend/src/pages/Programs/ProgramForm.vue:380
#: frontend/src/pages/Programs/ProgramForm.vue:381
msgid "Program created successfully"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:551
#: frontend/src/pages/Programs/ProgramForm.vue:552
msgid "Program deleted successfully"
msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:399
#: frontend/src/pages/Programs/ProgramForm.vue:400
msgid "Program updated successfully"
msgstr ""
@@ -5229,7 +5302,7 @@ msgid "Progress Distribution"
msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:99
#: frontend/src/pages/Programs/ProgramForm.vue:124
#: frontend/src/pages/Programs/ProgramForm.vue:125
msgid "Progress Summary"
msgstr ""
@@ -5407,7 +5480,7 @@ msgstr "测验更新成功"
msgid "Quiz will appear at the bottom of the lesson."
msgstr "测验将显示在课时末尾"
#: frontend/src/components/AppSidebar.vue:601
#: frontend/src/components/AppSidebar.vue:606
#: frontend/src/pages/QuizForm.vue:396 frontend/src/pages/Quizzes.vue:275
#: frontend/src/pages/Quizzes.vue:285 lms/www/lms.py:249
msgid "Quizzes"
@@ -5497,6 +5570,11 @@ msgstr "已拒绝"
msgid "Related Courses"
msgstr "相关课程"
#. Option for the 'Work Mode' (Select) field in DocType 'Job Opportunity'
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Remote"
msgstr ""
#: frontend/src/components/Controls/Uploader.vue:34
#: frontend/src/pages/BatchForm.vue:246 frontend/src/pages/CourseForm.vue:119
msgid "Remove"
@@ -5587,7 +5665,7 @@ msgstr "角色偏好"
msgid "Role updated successfully"
msgstr "角色更新成功。"
#: frontend/src/components/AppSidebar.vue:629
#: frontend/src/components/AppSidebar.vue:634
msgid "Roles"
msgstr "角色"
@@ -5671,11 +5749,13 @@ msgstr "星期六"
#: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
#: frontend/src/components/Settings/BadgeForm.vue:78
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:38
#: frontend/src/components/Settings/TransactionDetails.vue:96
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17
#: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseForm.vue:101
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseModal.vue:9
#: frontend/src/pages/Programs/ProgramForm.vue:233
#: frontend/src/pages/Programs/ProgramForm.vue:234
#: frontend/src/pages/QuizForm.vue:43 frontend/src/pages/QuizSubmission.vue:14
#: frontend/src/pages/Quizzes.vue:105
msgid "Save"
@@ -5777,6 +5857,10 @@ msgstr ""
msgid "Select Date"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22
msgid "Select Payment Gateway"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseModal.vue:23
msgid "Select a Programming Exercise"
msgstr ""
@@ -5832,11 +5916,11 @@ msgstr "设置密码"
msgid "Setting up"
msgstr "系统配置中"
#: frontend/src/components/AppSidebar.vue:622
#: frontend/src/components/AppSidebar.vue:627
msgid "Setting up payment gateway"
msgstr "设置支付网关"
#: frontend/src/components/AppSidebar.vue:627
#: frontend/src/components/AppSidebar.vue:632
#: frontend/src/components/Settings/Settings.vue:7
#: frontend/src/pages/BatchForm.vue:53 frontend/src/pages/CourseForm.vue:142
#: frontend/src/pages/ProfileRoles.vue:4
@@ -5994,6 +6078,7 @@ msgstr "解决方案"
#. Label of the source (Link) field in DocType 'LMS Payment'
#. Label of the source (Data) field in DocType 'LMS Source'
#. Label of the source (Data) field in DocType 'LMS Video Watch Duration'
#: frontend/src/components/Settings/TransactionDetails.vue:35
#: lms/lms/doctype/lms_batch_enrollment/lms_batch_enrollment.json
#: lms/lms/doctype/lms_payment/lms_payment.json
#: lms/lms/doctype/lms_source/lms_source.json
@@ -6106,7 +6191,7 @@ msgstr "统计"
#: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19
#: frontend/src/pages/JobForm.vue:46
#: frontend/src/pages/JobForm.vue:53
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:280
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/cohort/cohort.json
@@ -6243,7 +6328,7 @@ msgstr "摘要"
msgid "Sunday"
msgstr "星期日"
#: lms/lms/api.py:1057
#: lms/lms/api.py:1081
msgid "Suspicious pattern found in {0}: {1}"
msgstr "在{0}中发现可疑模式:{1}"
@@ -6706,6 +6791,10 @@ msgstr "总注册数"
msgid "Training Feedback"
msgstr "培训反馈"
#: frontend/src/components/Settings/TransactionDetails.vue:5
msgid "Transaction Details"
msgstr "交易详情"
#. Option for the 'Location Preference' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Travel"
@@ -6838,7 +6927,6 @@ msgid "Upcoming Live Classes"
msgstr ""
#: frontend/src/components/Settings/BrandSettings.vue:24
#: frontend/src/components/Settings/PaymentSettings.vue:27
#: frontend/src/components/Settings/SettingDetails.vue:23
msgid "Update"
msgstr "更新"
@@ -7073,6 +7161,12 @@ msgstr "工作经验"
msgid "Work Experience Details"
msgstr "工作经验详情"
#. Label of the work_mode (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobForm.vue:32 frontend/src/pages/Jobs.vue:73
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Work Mode"
msgstr ""
#: frontend/src/components/CourseReviews.vue:8
#: frontend/src/components/Modals/ReviewModal.vue:5
#: lms/templates/reviews.html:117
@@ -7103,11 +7197,11 @@ msgstr "您已在{0} {1}为课程{2}安排评估"
msgid "You are already certified for this course. Click on the card below to open your certificate."
msgstr "您已完成本课程认证,点击下方卡片查看证书"
#: lms/lms/api.py:199
#: lms/lms/api.py:200
msgid "You are already enrolled for this batch."
msgstr "您已注册本批次"
#: lms/lms/api.py:193
#: lms/lms/api.py:194
msgid "You are already enrolled for this course."
msgstr "您已注册本课程"
@@ -7181,7 +7275,7 @@ msgstr "您已申请该职位"
msgid "You have already exceeded the maximum number of attempts allowed for this quiz."
msgstr "您已超过本测验允许的最大尝试次数"
#: lms/lms/api.py:223
#: lms/lms/api.py:224
msgid "You have already purchased the certificate for this course."
msgstr "您已购买本课程证书"
@@ -7352,11 +7446,11 @@ msgstr "和"
msgid "and then 'Add to Home Screen'"
msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:108
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114
msgid "applicant"
msgstr "申请人"
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:108
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114
msgid "applicants"
msgstr "申请人列表"
@@ -7509,7 +7603,7 @@ msgstr "{0}个开放职位"
msgid "{0} Quizzes"
msgstr "{0}项测验"
#: lms/lms/api.py:836 lms/lms/api.py:844
#: lms/lms/api.py:838 lms/lms/api.py:846
msgid "{0} Settings not found"
msgstr "未找到{0}设置"
@@ -7565,6 +7659,10 @@ msgstr "{0}在您的批次评论中提及您"
msgid "{0} mentioned you in a comment in {1}"
msgstr "{0}在{1}的评论中提及您"
#: lms/lms/api.py:887
msgid "{0} not found"
msgstr "{0}未找到"
#: lms/lms/utils.py:450
msgid "{0}k"
msgstr "{0}千"
+1374
View File
File diff suppressed because it is too large Load Diff