Merge pull request #1130 from frappe/develop

chore: merge 'develop' into 'main'
This commit is contained in:
Jannat Patel
2024-11-13 11:53:57 +05:30
committed by GitHub
46 changed files with 1999 additions and 2427 deletions

View File

@@ -2,6 +2,7 @@
<div class="space-y-1.5">
<label class="block" :class="labelClasses" v-if="attrs.label">
{{ attrs.label }}
<span class="text-red-500" v-if="attrs.required">*</span>
</label>
<Autocomplete
ref="autocomplete"

View File

@@ -46,6 +46,7 @@
{{ __('Start') }}
</a>
<a
v-if="cls.date <= dayjs().format('YYYY-MM-DD')"
:href="cls.join_url"
target="_blank"
class="w-full cursor-pointer inline-flex items-center justify-center gap-2 transition-colors focus:outline-none text-gray-800 bg-gray-100 hover:bg-gray-200 active:bg-gray-300 focus-visible:ring focus-visible:ring-gray-400 h-7 text-base px-2 rounded"

View File

@@ -18,6 +18,7 @@
<div class="">
<div class="mb-1.5 text-sm text-gray-600">
{{ __('Subject') }}
<span class="text-red-500">*</span>
</div>
<Input type="text" v-model="announcement.subject" />
</div>

View File

@@ -14,7 +14,12 @@
}"
>
<template #body-content>
<Link doctype="LMS Course" v-model="course" :label="__('Course')" />
<Link
doctype="LMS Course"
v-model="course"
:label="__('Course')"
:required="true"
/>
<Link
doctype="Course Evaluator"
v-model="evaluator"

View File

@@ -20,6 +20,7 @@
label="Title"
v-model="chapter.title"
class="mb-4"
:required="true"
/>
</template>
</Dialog>

View File

@@ -69,7 +69,18 @@
:label="__('Headline')"
class="mb-4"
/>
<FormControl type="textarea" v-model="profile.bio" :label="__('Bio')" />
<div class="mb-4">
<div class="mb-1.5 text-sm text-gray-600">
{{ __('Bio') }}
</div>
<TextEditor
:fixedMenu="true"
@change="(val) => (profile.bio = val)"
:content="profile.bio"
editorClass="prose-sm py-2 px-2 min-h-[200px] border-gray-300 hover:border-gray-400 rounded-md bg-gray-200"
/>
</div>
</div>
</template>
</Dialog>
@@ -81,6 +92,7 @@ import {
FileUploader,
Button,
createResource,
TextEditor,
} from 'frappe-ui'
import { reactive, watch, defineModel } from 'vue'
import { FileText, X } from 'lucide-vue-next'

View File

@@ -154,10 +154,12 @@ function submitEvaluation(close) {
const getCourses = () => {
let courses = []
for (const course of props.courses) {
courses.push({
label: course.title,
value: course.course,
})
if (course.evaluator) {
courses.push({
label: course.title,
value: course.course,
})
}
}
return courses
}

View File

@@ -22,6 +22,7 @@
v-model="liveClass.title"
:label="__('Title')"
class="mb-4"
:required="true"
/>
<Tooltip
:text="
@@ -35,6 +36,7 @@
type="time"
:label="__('Time')"
class="mb-4"
:required="true"
/>
</Tooltip>
<FormControl
@@ -42,6 +44,7 @@
type="select"
:options="getTimezoneOptions()"
:label="__('Timezone')"
:required="true"
/>
</div>
<div>
@@ -50,6 +53,7 @@
type="date"
class="mb-4"
:label="__('Date')"
:required="true"
/>
<Tooltip :text="__('Duration of the live class in minutes')">
<FormControl
@@ -57,6 +61,7 @@
v-model="liveClass.duration"
:label="__('Duration')"
class="mb-4"
:required="true"
/>
</Tooltip>
<FormControl

View File

@@ -4,6 +4,7 @@
@timeupdate="updateTime"
@ended="videoEnded"
@click="togglePlay"
oncontextmenu="return false"
class="rounded-lg border border-gray-100 group cursor-pointer"
ref="videoRef"
>

View File

@@ -15,7 +15,11 @@
</header>
<div v-if="batch.data" class="grid grid-cols-[70%,30%] h-screen">
<div class="border-r-2">
<Tabs v-model="tabIndex" :tabs="tabs" tablistClass="overflow-y-hidden">
<Tabs
v-model="tabIndex"
:tabs="tabs"
tablistClass="overflow-y-hidden sticky top-11 bg-white z-10"
>
<template #tab="{ tab, selected }" class="overflow-x-hidden">
<div>
<button

View File

@@ -15,7 +15,11 @@
</div>
<div class="grid grid-cols-2 gap-10 mb-4 space-y-2">
<div>
<FormControl v-model="batch.title" :label="__('Title')" />
<FormControl
v-model="batch.title"
:label="__('Title')"
:required="true"
/>
</div>
<div class="flex flex-col space-y-2">
<FormControl
@@ -83,6 +87,8 @@
v-model="instructors"
doctype="User"
:label="__('Instructors')"
:required="true"
:filters="{ ignore_user_type: 1 }"
/>
<div class="mb-4">
<FormControl
@@ -91,10 +97,12 @@
type="textarea"
class="my-4"
:placeholder="__('Short description of the batch')"
:required="true"
/>
<div>
<label class="block text-sm text-gray-600 mb-1">
{{ __('Batch Details') }}
<span class="text-red-500">*</span>
</label>
<TextEditor
:content="batch.batch_details"
@@ -116,12 +124,14 @@
:label="__('Start Date')"
type="date"
class="mb-4"
:required="true"
/>
<FormControl
v-model="batch.end_date"
:label="__('End Date')"
type="date"
class="mb-4"
:required="true"
/>
</div>
<div>
@@ -130,12 +140,14 @@
:label="__('Start Time')"
type="time"
class="mb-4"
:required="true"
/>
<FormControl
v-model="batch.end_time"
:label="__('End Time')"
type="time"
class="mb-4"
:required="true"
/>
<FormControl
v-model="batch.timezone"
@@ -143,6 +155,7 @@
type="text"
:placeholder="__('Example: IST (+5:30)')"
class="mb-4"
:required="true"
/>
</div>
</div>

View File

@@ -67,7 +67,7 @@
<CourseCardOverlay :course="course" class="md:hidden mb-4" />
<div
v-html="course.data.description"
class="course-description"
class="ProseMirror prose prose-table:table-fixed prose-td:p-2 prose-th:p-2 prose-td:border prose-th:border prose-td:border-gray-300 prose-th:border-gray-300 prose-td:relative prose-th:relative prose-th:bg-gray-100 prose-sm max-w-none !whitespace-normal"
></div>
<div class="mt-10">
<CourseOutline :courseName="course.data.name" :showOutline="true" />
@@ -131,26 +131,6 @@ const pageMeta = computed(() => {
updateDocumentTitle(pageMeta)
</script>
<style>
.course-description p {
margin-bottom: 1rem;
line-height: 1.7;
}
.course-description li {
line-height: 1.7;
}
.course-description ol {
list-style: auto;
margin: revert;
padding: revert;
}
.course-description ul {
list-style: disc;
margin: revert;
padding: revert;
}
.avatar-group {
display: inline-flex;
align-items: center;

View File

@@ -152,6 +152,7 @@
v-model="instructors"
doctype="User"
:label="__('Instructors')"
:filters="{ ignore_user_type: 1 }"
:required="true"
/>
</div>

View File

@@ -12,7 +12,12 @@
</header>
<div class="py-5">
<div class="w-5/6 mx-auto">
<FormControl v-model="lesson.title" label="Title" class="mb-4" />
<FormControl
v-model="lesson.title"
label="Title"
class="mb-4"
:required="true"
/>
<FormControl
v-model="lesson.include_in_preview"
type="checkbox"

View File

@@ -1 +1 @@
__version__ = "2.10.0"
__version__ = "2.11.0"

View File

@@ -1,6 +1,7 @@
"""API methods for the LMS.
"""
import json
import frappe
from frappe.translate import get_all_translations
from frappe import _
@@ -295,7 +296,8 @@ def get_branding():
for field in image_fields:
if website_settings.get(field):
website_settings.update({field: get_file_info(website_settings.get(field))})
file_info = get_file_info(website_settings.get(field))
website_settings.update({field: json.loads(json.dumps(file_info))})
else:
website_settings.update({field: None})

View File

@@ -132,9 +132,10 @@
"read_only": 1
}
],
"in_create": 1,
"index_web_pages_for_search": 1,
"links": [],
"modified": "2024-10-31 15:41:35.540856",
"modified": "2024-11-11 18:59:26.396111",
"modified_by": "Administrator",
"module": "LMS",
"name": "LMS Live Class",

View File

@@ -1103,7 +1103,7 @@ def get_categorized_courses(courses):
categories = [live, enrolled, created]
for category in categories:
category.sort(key=lambda x: x.enrollments, reverse=True)
category.sort(key=lambda x: cint(x.enrollments), reverse=True)
live.sort(key=lambda x: x.featured, reverse=True)
@@ -1265,7 +1265,7 @@ def get_batch_details(batch):
batch_details.instructors = get_instructors(batch)
batch_details.courses = frappe.get_all(
"Batch Course", filters={"parent": batch}, fields=["course", "title"]
"Batch Course", filters={"parent": batch}, fields=["course", "title", "evaluator"]
)
batch_details.students = frappe.get_all(
"Batch Student", {"parent": batch}, pluck="student"

View File

@@ -1,49 +0,0 @@
frappe.ready(function () {
frappe.web_form.after_save = () => {
let data = frappe.web_form.get_values();
let slug = new URLSearchParams(window.location.search).get("slug");
frappe.msgprint({
message: __("Batch {0} has been successfully created!", [
data.title,
]),
clear: true,
});
setTimeout(function () {
window.location.href = `courses/${slug}`;
}, 2000);
};
frappe.web_form.validate = () => {
let sysdefaults = frappe.boot.sysdefaults;
let time_format =
sysdefaults && sysdefaults.time_format
? sysdefaults.time_format
: "HH:mm:ss";
let data = frappe.web_form.get_values();
data.start_time = moment(data.start_time, time_format).format(
time_format
);
data.end_time = moment(data.end_time, time_format).format(time_format);
if (data.start_date < frappe.datetime.nowdate()) {
frappe.msgprint(__("Start date cannot be a past date."));
return false;
}
if (
!frappe.datetime.validate(data.start_time) ||
!frappe.datetime.validate(data.end_time)
) {
frappe.msgprint(__("Invalid Start or End Time."));
return false;
}
if (data.start_time > data.end_time) {
frappe.msgprint(__("Start Time should be less than End Time."));
return false;
}
return true;
};
});

View File

@@ -1,114 +0,0 @@
{
"accept_payment": 0,
"allow_comments": 0,
"allow_delete": 0,
"allow_edit": 0,
"allow_incomplete": 0,
"allow_multiple": 0,
"allow_print": 0,
"amount": 0.0,
"amount_based_on_field": 0,
"apply_document_permissions": 0,
"button_label": "Save",
"creation": "2021-04-20 11:37:49.135114",
"custom_css": ".datepicker.active {\n background-color: white;\n}\n\n[data-doctype=\"Web Form\"] {\n max-width: 720px;\n margin: 6rem auto;\n}",
"doc_type": "LMS Batch Old",
"docstatus": 0,
"doctype": "Web Form",
"idx": 0,
"is_standard": 1,
"login_required": 1,
"max_attachment_size": 0,
"modified": "2021-06-15 18:49:50.530002",
"modified_by": "Administrator",
"module": "LMS",
"name": "add-a-new-batch",
"owner": "Administrator",
"payment_button_label": "Buy Now",
"published": 1,
"route": "add-a-new-batch",
"route_to_success_link": 0,
"show_attachments": 0,
"show_in_grid": 0,
"show_sidebar": 0,
"sidebar_items": [],
"success_url": "/add-a-new-batch",
"title": "Add a new batch",
"web_form_fields": [
{
"allow_read_on_all_link_options": 0,
"fieldname": "course",
"fieldtype": "Data",
"hidden": 1,
"label": "Course",
"max_length": 0,
"max_value": 0,
"options": "LMS Course",
"read_only": 0,
"reqd": 0,
"show_in_filter": 0
},
{
"allow_read_on_all_link_options": 0,
"fieldname": "title",
"fieldtype": "Data",
"hidden": 0,
"label": "Title",
"max_length": 0,
"max_value": 0,
"read_only": 0,
"reqd": 1,
"show_in_filter": 0
},
{
"allow_read_on_all_link_options": 0,
"fieldname": "start_date",
"fieldtype": "Date",
"hidden": 0,
"label": "Start Date",
"max_length": 0,
"max_value": 0,
"read_only": 0,
"reqd": 1,
"show_in_filter": 0
},
{
"allow_read_on_all_link_options": 0,
"description": "",
"fieldname": "sessions_on",
"fieldtype": "Data",
"hidden": 0,
"label": "Sessions On Days",
"max_length": 0,
"max_value": 0,
"options": "",
"read_only": 0,
"reqd": 1,
"show_in_filter": 0
},
{
"allow_read_on_all_link_options": 0,
"fieldname": "start_time",
"fieldtype": "Data",
"hidden": 0,
"label": "Start Time",
"max_length": 0,
"max_value": 0,
"read_only": 0,
"reqd": 1,
"show_in_filter": 0
},
{
"allow_read_on_all_link_options": 0,
"fieldname": "end_time",
"fieldtype": "Data",
"hidden": 0,
"label": "End Time",
"max_length": 0,
"max_value": 0,
"read_only": 0,
"reqd": 1,
"show_in_filter": 0
}
]
}

View File

@@ -1,6 +0,0 @@
import frappe
def get_context(context):
# do your magic here
pass

View File

@@ -1,10 +0,0 @@
frappe.ready(function () {
frappe.web_form.after_save = () => {
let data = frappe.web_form.get_values();
if (data.class) {
setTimeout(() => {
window.location.href = `/batches/${data.class}`;
}, 2000);
}
};
});

View File

@@ -1,189 +0,0 @@
{
"accept_payment": 0,
"allow_comments": 0,
"allow_delete": 0,
"allow_edit": 0,
"allow_incomplete": 0,
"allow_multiple": 1,
"allow_print": 0,
"amount": 0.0,
"amount_based_on_field": 0,
"anonymous": 0,
"apply_document_permissions": 0,
"button_label": "Save",
"creation": "2022-11-23 11:59:33.533053",
"doc_type": "LMS Certificate Evaluation",
"docstatus": 0,
"doctype": "Web Form",
"idx": 1,
"introduction_text": "",
"is_standard": 1,
"list_columns": [],
"login_required": 1,
"max_attachment_size": 0,
"modified": "2023-08-23 14:37:03.086305",
"modified_by": "Administrator",
"module": "LMS",
"name": "evaluation",
"owner": "Administrator",
"payment_button_label": "Buy Now",
"published": 1,
"route": "evaluation",
"show_attachments": 0,
"show_list": 1,
"show_sidebar": 0,
"title": "Evaluation",
"web_form_fields": [
{
"allow_read_on_all_link_options": 1,
"fieldname": "member",
"fieldtype": "Link",
"hidden": 0,
"label": "Member",
"max_length": 0,
"max_value": 0,
"options": "User",
"read_only": 0,
"reqd": 1,
"show_in_filter": 0
},
{
"allow_read_on_all_link_options": 1,
"fieldname": "course",
"fieldtype": "Link",
"hidden": 0,
"label": "Course",
"max_length": 0,
"max_value": 0,
"options": "LMS Course",
"read_only": 0,
"reqd": 1,
"show_in_filter": 0
},
{
"allow_read_on_all_link_options": 0,
"fieldname": "batch_name",
"fieldtype": "Link",
"hidden": 0,
"label": "Batch Name",
"max_length": 0,
"max_value": 0,
"options": "LMS Batch",
"read_only": 0,
"reqd": 0,
"show_in_filter": 0
},
{
"allow_read_on_all_link_options": 0,
"fieldname": "",
"fieldtype": "Column Break",
"hidden": 0,
"label": "",
"max_length": 0,
"max_value": 0,
"options": "",
"read_only": 0,
"reqd": 0,
"show_in_filter": 0
},
{
"allow_read_on_all_link_options": 0,
"fieldname": "date",
"fieldtype": "Date",
"hidden": 0,
"label": "Date",
"max_length": 0,
"max_value": 0,
"read_only": 0,
"reqd": 1,
"show_in_filter": 0
},
{
"allow_read_on_all_link_options": 0,
"fieldname": "start_time",
"fieldtype": "Time",
"hidden": 0,
"label": "Start Time",
"max_length": 0,
"max_value": 0,
"read_only": 0,
"reqd": 1,
"show_in_filter": 0
},
{
"allow_read_on_all_link_options": 0,
"fieldname": "end_time",
"fieldtype": "Time",
"hidden": 0,
"label": "End Time",
"max_length": 0,
"max_value": 0,
"read_only": 0,
"reqd": 0,
"show_in_filter": 0
},
{
"allow_read_on_all_link_options": 0,
"fieldname": "",
"fieldtype": "Section Break",
"hidden": 0,
"label": "Evaluation Details",
"max_length": 0,
"max_value": 0,
"options": "",
"read_only": 0,
"reqd": 0,
"show_in_filter": 0
},
{
"allow_read_on_all_link_options": 0,
"fieldname": "rating",
"fieldtype": "Rating",
"hidden": 0,
"label": "Rating",
"max_length": 0,
"max_value": 0,
"read_only": 0,
"reqd": 1,
"show_in_filter": 0
},
{
"allow_read_on_all_link_options": 0,
"fieldname": "status",
"fieldtype": "Select",
"hidden": 0,
"label": "Status",
"max_length": 0,
"max_value": 0,
"options": "Pass\nFail",
"read_only": 0,
"reqd": 1,
"show_in_filter": 0
},
{
"allow_read_on_all_link_options": 0,
"fieldname": "",
"fieldtype": "Column Break",
"hidden": 0,
"label": "",
"max_length": 0,
"max_value": 0,
"options": "",
"read_only": 0,
"reqd": 0,
"show_in_filter": 0
},
{
"allow_read_on_all_link_options": 0,
"fieldname": "summary",
"fieldtype": "Small Text",
"hidden": 0,
"label": "Summary",
"max_length": 0,
"max_value": 0,
"read_only": 0,
"reqd": 0,
"show_in_filter": 0
}
]
}

View File

@@ -1,6 +0,0 @@
import frappe
from frappe import _
def get_context(context):
pass

View File

@@ -1,98 +0,0 @@
frappe.ready(function () {
frappe.web_form.after_load = () => {
redirect_to_user_profile_form();
add_listener_for_current_company();
add_listener_for_certificate_expiry();
add_listener_for_skill_add_rows();
add_listener_for_functions_add_rows();
add_listener_for_industries_add_rows();
};
frappe.web_form.validate = () => {
let information_missing;
const data = frappe.web_form.get_values();
if (data && data.work_experience && data.work_experience.length) {
data.work_experience.forEach((exp) => {
if (!exp.current && !exp.to_date) {
information_missing = true;
frappe.msgprint(
__("To Date is mandatory in Work Experience.")
);
}
});
}
if (information_missing) return false;
return true;
};
frappe.web_form.after_save = () => {
setTimeout(() => {
window.location.href = `/profile_/${frappe.web_form.get_value([
"username",
])}`;
});
};
});
const redirect_to_user_profile_form = () => {
if (!frappe.utils.get_url_arg("name")) {
window.location.href = `/edit-profile?name=${frappe.session.user}`;
}
};
const add_listener_for_current_company = () => {
$(document).on("click", "input[data-fieldname='current']", (e) => {
if ($(e.currentTarget).prop("checked"))
$("div[data-fieldname='to_date']").addClass("hide");
else $("div[data-fieldname='to_date']").removeClass("hide");
});
};
const add_listener_for_certificate_expiry = () => {
$(document).on("click", "input[data-fieldname='expire']", (e) => {
if ($(e.currentTarget).prop("checked"))
$("div[data-fieldname='expiration_date']").addClass("hide");
else $("div[data-fieldname='expiration_date']").removeClass("hide");
});
};
const add_listener_for_skill_add_rows = () => {
$('[data-fieldname="skill"]')
.find(".grid-add-row")
.click((e) => {
if ($('[data-fieldname="skill"]').find(".grid-row").length > 5) {
$('[data-fieldname="skill"]').find(".grid-add-row").hide();
}
});
};
const add_listener_for_functions_add_rows = () => {
$('[data-fieldname="preferred_functions"]')
.find(".grid-add-row")
.click((e) => {
if (
$('[data-fieldname="preferred_functions"]').find(".grid-row")
.length > 3
) {
$('[data-fieldname="preferred_functions"]')
.find(".grid-add-row")
.hide();
}
});
};
const add_listener_for_industries_add_rows = () => {
$('[data-fieldname="preferred_industries"]')
.find(".grid-add-row")
.click((e) => {
if (
$('[data-fieldname="preferred_industries"]').find(".grid-row")
.length > 3
) {
$('[data-fieldname="preferred_industries"]')
.find(".grid-add-row")
.hide();
}
});
};

View File

@@ -1,341 +0,0 @@
{
"accept_payment": 0,
"allow_comments": 0,
"allow_delete": 0,
"allow_edit": 1,
"allow_incomplete": 0,
"allow_multiple": 0,
"allow_print": 0,
"amount": 0.0,
"amount_based_on_field": 0,
"apply_document_permissions": 0,
"breadcrumbs": "",
"button_label": "Save",
"client_script": "",
"creation": "2021-06-30 13:48:13.682851",
"custom_css": "",
"doc_type": "User",
"docstatus": 0,
"doctype": "Web Form",
"idx": 0,
"is_standard": 1,
"list_columns": [],
"login_required": 1,
"max_attachment_size": 0,
"modified": "2023-01-09 15:45:11.411692",
"modified_by": "Administrator",
"module": "LMS",
"name": "profile",
"owner": "Administrator",
"payment_button_label": "Buy Now",
"published": 1,
"route": "edit-profile",
"show_attachments": 0,
"show_list": 0,
"show_sidebar": 0,
"success_url": "/profile",
"title": "Profile",
"web_form_fields": [
{
"allow_read_on_all_link_options": 0,
"fieldname": "first_name",
"fieldtype": "Data",
"hidden": 0,
"label": "First Name",
"max_length": 0,
"max_value": 0,
"read_only": 0,
"reqd": 1,
"show_in_filter": 0
},
{
"allow_read_on_all_link_options": 0,
"fieldname": "last_name",
"fieldtype": "Data",
"hidden": 0,
"label": "Last Name",
"max_length": 0,
"max_value": 0,
"read_only": 0,
"reqd": 0,
"show_in_filter": 0
},
{
"allow_read_on_all_link_options": 0,
"fieldname": "username",
"fieldtype": "Data",
"hidden": 0,
"label": "Username",
"max_length": 0,
"max_value": 0,
"read_only": 0,
"reqd": 1,
"show_in_filter": 0
},
{
"allow_read_on_all_link_options": 0,
"description": "Get your globally recognized avatar from Gravatar.com",
"fieldname": "user_image",
"fieldtype": "Attach Image",
"hidden": 0,
"label": "User Image",
"max_length": 0,
"max_value": 0,
"read_only": 0,
"reqd": 0,
"show_in_filter": 0
},
{
"allow_read_on_all_link_options": 0,
"description": "",
"fieldname": "cover_image",
"fieldtype": "Attach Image",
"hidden": 0,
"label": "Cover Image",
"max_length": 0,
"max_value": 0,
"read_only": 0,
"reqd": 0,
"show_in_filter": 0
},
{
"allow_read_on_all_link_options": 0,
"fieldname": "city",
"fieldtype": "Data",
"hidden": 0,
"label": "City",
"max_length": 0,
"max_value": 0,
"read_only": 0,
"reqd": 0,
"show_in_filter": 0
},
{
"allow_read_on_all_link_options": 0,
"fieldname": "mobile_no",
"fieldtype": "Data",
"hidden": 0,
"label": "Mobile No",
"max_length": 0,
"max_value": 0,
"options": "Phone",
"read_only": 0,
"reqd": 0,
"show_in_filter": 0
},
{
"allow_read_on_all_link_options": 0,
"fieldname": "",
"fieldtype": "Column Break",
"hidden": 0,
"label": "",
"max_length": 0,
"max_value": 0,
"options": "",
"read_only": 0,
"reqd": 0,
"show_in_filter": 0
},
{
"allow_read_on_all_link_options": 0,
"fieldname": "headline",
"fieldtype": "Data",
"hidden": 0,
"label": "Headline",
"max_length": 0,
"max_value": 0,
"read_only": 0,
"reqd": 0,
"show_in_filter": 0
},
{
"allow_read_on_all_link_options": 0,
"fieldname": "linkedin",
"fieldtype": "Data",
"hidden": 0,
"label": "LinkedIn ID",
"max_length": 0,
"max_value": 0,
"read_only": 0,
"reqd": 0,
"show_in_filter": 0
},
{
"allow_read_on_all_link_options": 0,
"fieldname": "github",
"fieldtype": "Data",
"hidden": 0,
"label": "Github ID",
"max_length": 0,
"max_value": 0,
"read_only": 0,
"reqd": 0,
"show_in_filter": 0
},
{
"allow_read_on_all_link_options": 0,
"fieldname": "medium",
"fieldtype": "Data",
"hidden": 0,
"label": "Medium ID",
"max_length": 0,
"max_value": 0,
"read_only": 0,
"reqd": 0,
"show_in_filter": 0
},
{
"allow_read_on_all_link_options": 0,
"fieldname": "looking_for_job",
"fieldtype": "Check",
"hidden": 0,
"label": "I am looking for a job",
"max_length": 0,
"max_value": 0,
"read_only": 0,
"reqd": 0,
"show_in_filter": 0
},
{
"allow_read_on_all_link_options": 0,
"fieldname": "bio",
"fieldtype": "Small Text",
"hidden": 0,
"label": "Bio",
"max_length": 0,
"max_value": 0,
"read_only": 0,
"reqd": 0,
"show_in_filter": 0
},
{
"allow_read_on_all_link_options": 0,
"fieldname": "",
"fieldtype": "Page Break",
"hidden": 0,
"label": "",
"max_length": 0,
"max_value": 0,
"options": "",
"read_only": 0,
"reqd": 0,
"show_in_filter": 0
},
{
"allow_read_on_all_link_options": 0,
"fieldname": "",
"fieldtype": "Section Break",
"hidden": 0,
"label": "",
"max_length": 0,
"max_value": 0,
"options": "",
"read_only": 0,
"reqd": 0,
"show_in_filter": 0
},
{
"allow_read_on_all_link_options": 0,
"fieldname": "education",
"fieldtype": "Table",
"hidden": 0,
"label": "Education",
"max_length": 0,
"max_value": 0,
"options": "Education Detail",
"read_only": 0,
"reqd": 0,
"show_in_filter": 0
},
{
"allow_read_on_all_link_options": 0,
"fieldname": "work_experience_details",
"fieldtype": "Section Break",
"hidden": 0,
"label": "Work Experience",
"max_length": 0,
"max_value": 0,
"read_only": 0,
"reqd": 0,
"show_in_filter": 0
},
{
"allow_read_on_all_link_options": 0,
"fieldname": "work_experience",
"fieldtype": "Table",
"hidden": 0,
"label": "Work Experience",
"max_length": 0,
"max_value": 0,
"options": "Work Experience",
"read_only": 0,
"reqd": 0,
"show_in_filter": 0
},
{
"allow_read_on_all_link_options": 0,
"fieldname": "internship",
"fieldtype": "Table",
"hidden": 0,
"label": "Volunteering or Internship",
"max_length": 0,
"max_value": 0,
"options": "Work Experience",
"read_only": 0,
"reqd": 0,
"show_in_filter": 0
},
{
"allow_read_on_all_link_options": 0,
"fieldname": "certification_details",
"fieldtype": "Section Break",
"hidden": 0,
"label": "Certification Details",
"max_length": 0,
"max_value": 0,
"options": "",
"read_only": 0,
"reqd": 0,
"show_in_filter": 0
},
{
"allow_read_on_all_link_options": 0,
"fieldname": "certification",
"fieldtype": "Table",
"hidden": 0,
"label": "Certification",
"max_length": 0,
"max_value": 0,
"options": "Certification",
"read_only": 0,
"reqd": 0,
"show_in_filter": 0
},
{
"allow_read_on_all_link_options": 0,
"fieldname": "skill_details",
"fieldtype": "Section Break",
"hidden": 0,
"label": "Skill Details",
"max_length": 0,
"max_value": 0,
"options": "",
"read_only": 0,
"reqd": 0,
"show_in_filter": 0
},
{
"allow_read_on_all_link_options": 0,
"fieldname": "skill",
"fieldtype": "Table",
"hidden": 0,
"label": "Skill",
"max_length": 0,
"max_value": 0,
"options": "Skills",
"read_only": 0,
"reqd": 0,
"show_in_filter": 0
}
]
}

View File

@@ -1,6 +0,0 @@
import frappe
def get_context(context):
# do your magic here
pass

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2024-11-01 16:04+0000\n"
"PO-Revision-Date: 2024-11-05 14:33\n"
"POT-Creation-Date: 2024-11-08 16:04+0000\n"
"PO-Revision-Date: 2024-11-11 15:23\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Arabic\n"
"MIME-Version: 1.0\n"
@@ -62,7 +62,7 @@ msgstr ""
msgid "<span style=\"font-size: 18px;\"><b>Statistics</b></span>"
msgstr ""
#: frontend/src/pages/CourseForm.vue:32
#: frontend/src/pages/CourseForm.vue:40
msgid "A one line introduction to the course that appears on the course card"
msgstr ""
@@ -228,7 +228,7 @@ msgstr "مسجل بالفعل"
#. Label of the amount (Currency) field in DocType 'Web Form'
#. Label of the amount (Currency) field in DocType 'LMS Batch'
#. Label of the amount (Currency) field in DocType 'LMS Payment'
#: frontend/src/pages/BatchForm.vue:208 lms/fixtures/custom_field.json
#: frontend/src/pages/BatchForm.vue:209 lms/fixtures/custom_field.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_payment/lms_payment.json
#: lms/public/js/common_functions.js:379
@@ -262,6 +262,10 @@ msgstr ""
msgid "Announcement"
msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:99
msgid "Announcement has been sent successfully"
msgstr ""
#. Label of the answer (Text Editor) field in DocType 'LMS Assignment'
#. Label of the answer (Text Editor) field in DocType 'LMS Assignment
#. Submission'
@@ -272,7 +276,7 @@ msgstr ""
msgid "Answer"
msgstr ""
#: frontend/src/pages/CourseForm.vue:76 frontend/src/pages/CourseForm.vue:94
#: frontend/src/pages/CourseForm.vue:84 frontend/src/pages/CourseForm.vue:102
msgid "Appears on the course card in the course list"
msgstr ""
@@ -346,7 +350,7 @@ msgstr ""
msgid "Assessment added successfully"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:74
#: lms/lms/doctype/lms_batch/lms_batch.py:75
msgid "Assessment {0} has already been added to this batch."
msgstr ""
@@ -426,7 +430,7 @@ msgstr ""
msgid "Average Rating"
msgstr ""
#: frontend/src/pages/Lesson.vue:101
#: frontend/src/pages/Lesson.vue:96
msgid "Back to Course"
msgstr ""
@@ -478,7 +482,7 @@ msgid "Batch Description"
msgstr "وصف الباتش"
#. Label of the batch_details (Text Editor) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:97 lms/lms/doctype/lms_batch/lms_batch.json
#: frontend/src/pages/BatchForm.vue:98 lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:349
#: lms/templates/emails/batch_confirmation.html:30
msgid "Batch Details"
@@ -539,7 +543,7 @@ msgstr ""
msgid "Batch Updated"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:39
#: lms/lms/doctype/lms_batch/lms_batch.py:40
msgid "Batch end date cannot be before the batch start date"
msgstr ""
@@ -645,8 +649,8 @@ msgstr ""
#. Label of the category (Link) field in DocType 'LMS Batch'
#. Label of the category (Data) field in DocType 'LMS Category'
#. Label of the category (Link) field in DocType 'LMS Course'
#: frontend/src/pages/BatchForm.vue:189 frontend/src/pages/Batches.vue:16
#: frontend/src/pages/CourseForm.vue:139 frontend/src/pages/Courses.vue:17
#: frontend/src/pages/BatchForm.vue:190 frontend/src/pages/Batches.vue:16
#: frontend/src/pages/CourseForm.vue:147 frontend/src/pages/Courses.vue:17
#: frontend/src/pages/JobDetail.vue:102
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_category/lms_category.json
@@ -947,7 +951,7 @@ msgstr ""
msgid "Completed"
msgstr "أكتمل"
#: frontend/src/pages/CourseForm.vue:192
#: frontend/src/pages/CourseForm.vue:201
msgid "Completion Certificate"
msgstr ""
@@ -1118,7 +1122,7 @@ msgstr ""
msgid "Course Data"
msgstr ""
#: frontend/src/pages/CourseForm.vue:41
#: frontend/src/pages/CourseForm.vue:49
msgid "Course Description"
msgstr ""
@@ -1127,7 +1131,7 @@ msgstr ""
msgid "Course Evaluator"
msgstr ""
#: frontend/src/pages/CourseForm.vue:54
#: frontend/src/pages/CourseForm.vue:62
msgid "Course Image"
msgstr ""
@@ -1150,7 +1154,7 @@ msgid "Course Name"
msgstr ""
#. Label of the course_price (Currency) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:210
#: frontend/src/pages/CourseForm.vue:219
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Course Price"
msgstr ""
@@ -1179,15 +1183,15 @@ msgstr ""
msgid "Course Title"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:318
#: lms/lms/doctype/lms_batch/lms_batch.py:340
msgid "Course already added to the batch."
msgstr ""
#: frontend/src/pages/CourseForm.vue:457
msgid "Course price and currency are mandatory for paid courses"
msgid "Course deleted successfully"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:57
#: lms/lms/doctype/lms_batch/lms_batch.py:58
msgid "Course {0} has already been added to this batch."
msgstr ""
@@ -1253,7 +1257,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/pages/BatchForm.vue:216 frontend/src/pages/CourseForm.vue:217
#: frontend/src/pages/BatchForm.vue:217 frontend/src/pages/CourseForm.vue:226
#: lms/fixtures/custom_field.json lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_payment/lms_payment.json
@@ -1311,7 +1315,7 @@ msgstr "تاريخ"
#. Label of the section_break_glxh (Section Break) field in DocType 'LMS Live
#. Class'
#: frontend/src/pages/BatchForm.vue:110
#: frontend/src/pages/BatchForm.vue:111
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Date and Time"
msgstr ""
@@ -1347,13 +1351,22 @@ msgid "Degree Type"
msgstr ""
#: frontend/src/components/CourseOutline.vue:212
#: frontend/src/pages/CourseForm.vue:15 frontend/src/pages/CourseForm.vue:470
msgid "Delete"
msgstr "حذف"
#: frontend/src/pages/CourseForm.vue:464
msgid "Delete Course"
msgstr ""
#: frontend/src/components/CourseOutline.vue:208
msgid "Delete Lesson"
msgstr ""
#: frontend/src/pages/CourseForm.vue:465
msgid "Deleting the course will also delete all its chapters and lessons. Are you sure you want to delete this course?"
msgstr ""
#. Label of the description (Text Editor) field in DocType 'Job Opportunity'
#. Label of the description (Small Text) field in DocType 'Certification'
#. Label of the description (Markdown Editor) field in DocType 'Cohort'
@@ -1367,7 +1380,7 @@ msgstr ""
#. Label of the description (Text) field in DocType 'LMS Live Class'
#. Label of the description (Small Text) field in DocType 'Work Experience'
#: frontend/src/components/Modals/LiveClassModal.vue:73
#: frontend/src/pages/BatchForm.vue:90 frontend/src/pages/JobCreation.vue:43
#: frontend/src/pages/BatchForm.vue:91 frontend/src/pages/JobCreation.vue:43
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/cohort/cohort.json
@@ -1388,12 +1401,12 @@ msgid "Desk"
msgstr ""
#: frontend/src/components/Modals/DiscussionModal.vue:22
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:20
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:28
#: frontend/src/pages/QuizForm.vue:42
msgid "Details"
msgstr "تفاصيل"
#: frontend/src/pages/CourseForm.vue:187
#: frontend/src/pages/CourseForm.vue:196
msgid "Disable Self Enrollment"
msgstr ""
@@ -1469,7 +1482,7 @@ msgstr ""
#: frontend/src/components/BatchOverlay.vue:93
#: frontend/src/components/CourseCardOverlay.vue:86
#: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/pages/JobDetail.vue:31 frontend/src/pages/Lesson.vue:70
#: frontend/src/pages/JobDetail.vue:31 frontend/src/pages/Lesson.vue:65
#: frontend/src/pages/Profile.vue:32
msgid "Edit"
msgstr "تصحيح"
@@ -1551,7 +1564,7 @@ msgstr "تمكين"
#. Label of the end_date (Date) field in DocType 'Cohort'
#. Label of the end_date (Date) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:122 lms/lms/doctype/cohort/cohort.json
#: frontend/src/pages/BatchForm.vue:123 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:282
msgid "End Date"
@@ -1569,7 +1582,7 @@ msgstr ""
#. Label of the end_time (Time) field in DocType 'LMS Certificate Evaluation'
#. Label of the end_time (Time) field in DocType 'LMS Certificate Request'
#. Label of the end_time (Time) field in DocType 'Scheduled Flow'
#: frontend/src/pages/BatchForm.vue:136
#: frontend/src/pages/BatchForm.vue:137
#: frontend/src/pages/ProfileEvaluator.vue:18
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1596,7 +1609,7 @@ msgstr ""
msgid "Enrolled successfully"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:97
#: lms/lms/doctype/lms_batch/lms_batch.py:98
msgid "Enrollment Confirmation for the Next Training Batch"
msgstr ""
@@ -1605,7 +1618,7 @@ msgstr ""
msgid "Enrollment Count"
msgstr ""
#: lms/lms/utils.py:1692
#: lms/lms/utils.py:1690
msgid "Enrollment Failed"
msgstr ""
@@ -1633,6 +1646,7 @@ msgstr ""
msgid "Enter the correct answer"
msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:104
#: frontend/src/components/Modals/Question.vue:246
#: frontend/src/components/Modals/Question.vue:266
#: frontend/src/components/Modals/Question.vue:323
@@ -1655,7 +1669,7 @@ msgid "Evaluation Details"
msgstr ""
#. Label of the evaluation_end_date (Date) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:165
#: frontend/src/pages/BatchForm.vue:166
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:333
msgid "Evaluation End Date"
@@ -1666,7 +1680,7 @@ msgstr ""
msgid "Evaluation Request"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:81
#: lms/lms/doctype/lms_batch/lms_batch.py:82
msgid "Evaluation end date cannot be less than the batch end date."
msgstr ""
@@ -1713,11 +1727,13 @@ msgid "Evaluator is Unavailable"
msgstr ""
#. Label of the event (Select) field in DocType 'LMS Badge'
#. Label of the event (Link) field in DocType 'LMS Live Class'
#: lms/lms/doctype/lms_badge/lms_badge.json
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Event"
msgstr "حدث"
#: frontend/src/pages/BatchForm.vue:144
#: frontend/src/pages/BatchForm.vue:145
msgid "Example: IST (+5:30)"
msgstr ""
@@ -1791,7 +1807,7 @@ msgstr ""
#. Label of the featured (Check) field in DocType 'LMS Course'
#: frontend/src/components/CourseCard.vue:16
#: frontend/src/pages/CourseForm.vue:180
#: frontend/src/pages/CourseForm.vue:189
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Featured"
msgstr "متميز"
@@ -2078,7 +2094,7 @@ msgstr ""
msgid "If you set an amount here, then the USD equivalent setting will not get applied."
msgstr ""
#: lms/lms/doctype/lms_quiz/lms_quiz.py:62
#: lms/lms/doctype/lms_quiz/lms_quiz.py:63
msgid "If you want open ended questions then make sure each question in the quiz is of open ended type."
msgstr ""
@@ -2104,7 +2120,7 @@ msgstr "صورة"
msgid "Image search powered by"
msgstr ""
#: lms/lms/doctype/lms_quiz/lms_quiz.py:221
#: lms/lms/doctype/lms_quiz/lms_quiz.py:222
msgid "Image: Corrupted Data Stream"
msgstr ""
@@ -2187,14 +2203,14 @@ msgstr ""
#. Label of the instructor_notes (Markdown Editor) field in DocType 'Course
#. Lesson'
#: frontend/src/pages/Lesson.vue:130 frontend/src/pages/LessonForm.vue:33
#: frontend/src/pages/Lesson.vue:125 frontend/src/pages/LessonForm.vue:33
#: lms/lms/doctype/course_lesson/course_lesson.json
msgid "Instructor Notes"
msgstr ""
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Batch'
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Course'
#: frontend/src/pages/BatchForm.vue:85 frontend/src/pages/CourseForm.vue:146
#: frontend/src/pages/BatchForm.vue:85 frontend/src/pages/CourseForm.vue:154
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Instructors"
@@ -2353,7 +2369,7 @@ msgstr ""
msgid "Join URL"
msgstr ""
#: frontend/src/pages/CourseForm.vue:128
#: frontend/src/pages/CourseForm.vue:136
msgid "Keywords for the course"
msgstr ""
@@ -2657,7 +2673,7 @@ msgstr ""
msgid "Links"
msgstr "الروابط"
#: frontend/src/pages/Quizzes.vue:131
#: frontend/src/pages/Quizzes.vue:147
msgid "List of quizzes"
msgstr ""
@@ -2707,7 +2723,7 @@ msgstr ""
#: frontend/src/components/NoPermission.vue:28
#: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:163
#: frontend/src/pages/Lesson.vue:29
#: frontend/src/pages/Lesson.vue:24
msgid "Login"
msgstr "دخول"
@@ -2787,7 +2803,7 @@ msgid "Maximun Attempts"
msgstr ""
#. Label of the medium (Select) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:184
#: frontend/src/pages/BatchForm.vue:185
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:309
msgid "Medium"
@@ -3042,11 +3058,11 @@ msgstr ""
msgid "New Sign Up"
msgstr ""
#: lms/lms/utils.py:632
#: lms/lms/utils.py:627
msgid "New comment in batch {0}"
msgstr ""
#: lms/lms/utils.py:625
#: lms/lms/utils.py:620
msgid "New reply on the topic {0} in course {1}"
msgstr ""
@@ -3055,7 +3071,7 @@ msgstr ""
msgid "New {0}"
msgstr "{0} جديد"
#: frontend/src/components/Quiz.vue:209 frontend/src/pages/Lesson.vue:89
#: frontend/src/components/Quiz.vue:209 frontend/src/pages/Lesson.vue:84
msgid "Next"
msgstr "التالي"
@@ -3116,6 +3132,10 @@ msgstr ""
msgid "No live classes scheduled"
msgstr ""
#: frontend/src/pages/Quizzes.vue:56
msgid "No quizzes found"
msgstr ""
#: frontend/src/components/Modals/EvaluationModal.vue:53
msgid "No slots available for this date."
msgstr ""
@@ -3188,7 +3208,7 @@ msgstr "إخطارات"
msgid "Notify me when available"
msgstr ""
#: frontend/src/pages/BatchForm.vue:161
#: frontend/src/pages/BatchForm.vue:162
msgid "Number of seats available"
msgstr ""
@@ -3224,7 +3244,7 @@ msgstr ""
msgid "Only files of type {0} will be accepted."
msgstr ""
#: frontend/src/pages/CourseForm.vue:473 frontend/src/utils/index.js:518
#: frontend/src/pages/CourseForm.vue:494 frontend/src/utils/index.js:518
msgid "Only image file is allowed."
msgstr ""
@@ -3332,14 +3352,14 @@ msgid "Pages"
msgstr ""
#. Label of the paid_batch (Check) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:204
#: frontend/src/pages/BatchForm.vue:205
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:373
msgid "Paid Batch"
msgstr ""
#. Label of the paid_course (Check) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:205
#: frontend/src/pages/CourseForm.vue:214
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Paid Course"
msgstr ""
@@ -3370,7 +3390,7 @@ msgstr ""
#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz'
#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/QuizForm.vue:71 frontend/src/pages/Quizzes.vue:109
#: frontend/src/pages/QuizForm.vue:71 frontend/src/pages/Quizzes.vue:125
#: lms/lms/doctype/lms_quiz/lms_quiz.json
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
msgid "Passing Percentage"
@@ -3381,13 +3401,13 @@ msgstr ""
msgid "Password"
msgstr "كلمة السر"
#: frontend/src/pages/CourseForm.vue:104
#: frontend/src/pages/CourseForm.vue:112
msgid "Paste the youtube link of a short video introducing the course"
msgstr ""
#. Label of the payment (Link) field in DocType 'Batch Student'
#. Label of the payment (Link) field in DocType 'LMS Enrollment'
#: frontend/src/pages/BatchForm.vue:198
#: frontend/src/pages/BatchForm.vue:199
#: lms/lms/doctype/batch_student/batch_student.json
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
msgid "Payment"
@@ -3499,7 +3519,7 @@ msgstr "يرجى التحقق من بريدك الالكتروني للتحقق"
msgid "Please click on the following button to set your new password"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:229
#: lms/lms/doctype/lms_batch/lms_batch.py:251
msgid "Please enable Zoom Settings to use this feature."
msgstr ""
@@ -3520,7 +3540,7 @@ msgstr ""
msgid "Please enter your answer"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:64
#: lms/lms/doctype/lms_batch/lms_batch.py:65
msgid "Please install the Payments app to create a paid batches."
msgstr ""
@@ -3630,17 +3650,17 @@ msgstr ""
msgid "Preview Image"
msgstr "معاينة الصورة"
#: frontend/src/pages/CourseForm.vue:102
#: frontend/src/pages/CourseForm.vue:110
msgid "Preview Video"
msgstr ""
#: frontend/src/pages/Lesson.vue:54
#: frontend/src/pages/Lesson.vue:49
msgid "Previous"
msgstr "سابق"
#. Label of the pricing_tab (Tab Break) field in DocType 'LMS Batch'
#. Label of the pricing_tab (Tab Break) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:199
#: frontend/src/pages/CourseForm.vue:208
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/public/js/common_functions.js:368
@@ -3710,7 +3730,7 @@ msgstr ""
#. Label of the published (Check) field in DocType 'LMS Batch'
#. Label of the published (Check) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:108
#: frontend/src/pages/BatchForm.vue:24 frontend/src/pages/CourseForm.vue:162
#: frontend/src/pages/BatchForm.vue:24 frontend/src/pages/CourseForm.vue:171
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/public/js/common_functions.js:266
@@ -3723,7 +3743,7 @@ msgid "Published Courses"
msgstr ""
#. Label of the published_on (Date) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:166
#: frontend/src/pages/CourseForm.vue:175
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Published On"
msgstr "نشرت في"
@@ -3838,8 +3858,8 @@ msgstr ""
msgid "Quiz will appear at the bottom of the lesson."
msgstr ""
#: frontend/src/pages/QuizForm.vue:441 frontend/src/pages/Quizzes.vue:120
#: frontend/src/pages/Quizzes.vue:130
#: frontend/src/pages/QuizForm.vue:441 frontend/src/pages/Quizzes.vue:136
#: frontend/src/pages/Quizzes.vue:146
msgid "Quizzes"
msgstr ""
@@ -3921,7 +3941,7 @@ msgstr "مرفوض"
msgid "Related Courses"
msgstr ""
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/CourseForm.vue:91
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/CourseForm.vue:99
msgid "Remove"
msgstr ""
@@ -3995,19 +4015,19 @@ msgstr ""
msgid "Route"
msgstr "مسار"
#: lms/lms/doctype/lms_batch/lms_batch.py:172
#: lms/lms/doctype/lms_batch/lms_batch.py:194
msgid "Row #{0} Date cannot be outside the batch duration."
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:167
#: lms/lms/doctype/lms_batch/lms_batch.py:189
msgid "Row #{0} End time cannot be outside the batch duration."
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:149
#: lms/lms/doctype/lms_batch/lms_batch.py:171
msgid "Row #{0} Start time cannot be greater than or equal to end time."
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:158
#: lms/lms/doctype/lms_batch/lms_batch.py:180
msgid "Row #{0} Start time cannot be outside the batch duration."
msgstr ""
@@ -4031,7 +4051,7 @@ msgstr "السبت"
#: frontend/src/components/Modals/Event.vue:129
#: frontend/src/components/QuizPlugin.vue:23
#: frontend/src/pages/AssignmentSubmission.vue:7
#: frontend/src/pages/BatchForm.vue:8 frontend/src/pages/CourseForm.vue:12
#: frontend/src/pages/BatchForm.vue:8 frontend/src/pages/CourseForm.vue:20
#: frontend/src/pages/JobCreation.vue:8 frontend/src/pages/LessonForm.vue:10
#: frontend/src/pages/QuizForm.vue:34 frontend/src/pages/QuizSubmission.vue:14
#: lms/public/js/common_functions.js:405
@@ -4080,7 +4100,7 @@ msgid "Search for an icon"
msgstr ""
#. Label of the seat_count (Int) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:158
#: frontend/src/pages/BatchForm.vue:159
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:327
msgid "Seat Count"
@@ -4124,7 +4144,7 @@ msgid "Set your Password"
msgstr ""
#: frontend/src/components/Modals/Settings.vue:7
#: frontend/src/pages/BatchForm.vue:152 frontend/src/pages/CourseForm.vue:152
#: frontend/src/pages/BatchForm.vue:153 frontend/src/pages/CourseForm.vue:161
#: frontend/src/pages/ProfileRoles.vue:4 frontend/src/pages/QuizForm.vue:78
msgid "Settings"
msgstr "إعدادات"
@@ -4134,12 +4154,12 @@ msgid "Share on"
msgstr ""
#. Label of the short_introduction (Small Text) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:30
#: frontend/src/pages/CourseForm.vue:38
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Short Introduction"
msgstr ""
#: frontend/src/pages/BatchForm.vue:93
#: frontend/src/pages/BatchForm.vue:94
msgid "Short description of the batch"
msgstr ""
@@ -4303,7 +4323,7 @@ msgstr "بداية"
#. Label of the start_date (Date) field in DocType 'Education Detail'
#. Label of the start_date (Date) field in DocType 'LMS Batch'
#. Label of the start_date (Date) field in DocType 'LMS Batch Old'
#: frontend/src/pages/BatchForm.vue:116
#: frontend/src/pages/BatchForm.vue:117
#: lms/lms/doctype/education_detail/education_detail.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
@@ -4312,7 +4332,7 @@ msgid "Start Date"
msgstr "تاريخ البدء"
#: frontend/src/components/CourseCardOverlay.vue:63
#: frontend/src/pages/Lesson.vue:25
#: frontend/src/pages/Lesson.vue:21
#: lms/templates/emails/lms_course_interest.html:9
msgid "Start Learning"
msgstr ""
@@ -4324,7 +4344,7 @@ msgstr ""
#. Label of the start_time (Time) field in DocType 'LMS Certificate Evaluation'
#. Label of the start_time (Time) field in DocType 'LMS Certificate Request'
#. Label of the start_time (Time) field in DocType 'Scheduled Flow'
#: frontend/src/pages/BatchForm.vue:130
#: frontend/src/pages/BatchForm.vue:131
#: frontend/src/pages/ProfileEvaluator.vue:15
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -4430,7 +4450,7 @@ msgstr ""
msgid "Student Reviews"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:46
#: lms/lms/doctype/lms_batch/lms_batch.py:47
msgid "Student {0} has already been added to this batch."
msgstr ""
@@ -4496,13 +4516,14 @@ msgstr ""
#: frontend/src/components/BatchOverlay.vue:135
#: frontend/src/components/BatchStudents.vue:157
#: frontend/src/components/CourseCardOverlay.vue:161
#: frontend/src/components/Modals/AnnouncementModal.vue:98
#: frontend/src/components/Modals/AssessmentModal.vue:73
#: frontend/src/components/Modals/Event.vue:255
#: frontend/src/components/Modals/Event.vue:310
#: frontend/src/components/Modals/Question.vue:261
#: frontend/src/components/Modals/Question.vue:312
#: frontend/src/pages/QuizForm.vue:342 frontend/src/pages/QuizForm.vue:361
#: frontend/src/pages/QuizForm.vue:430
#: frontend/src/pages/CourseForm.vue:457 frontend/src/pages/QuizForm.vue:342
#: frontend/src/pages/QuizForm.vue:361 frontend/src/pages/QuizForm.vue:430
msgid "Success"
msgstr "نجاح"
@@ -4569,7 +4590,7 @@ msgid "System Manager"
msgstr "مدير النظام"
#. Label of the tags (Data) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:112
#: frontend/src/pages/CourseForm.vue:120
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Tags"
msgstr "بطاقات"
@@ -4661,7 +4682,7 @@ msgstr ""
msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:140
#: lms/lms/doctype/lms_batch/lms_batch.py:141
msgid "There are no seats available in this batch."
msgstr ""
@@ -4692,7 +4713,7 @@ msgstr ""
msgid "This course has:"
msgstr ""
#: lms/lms/utils.py:1572
#: lms/lms/utils.py:1570
msgid "This course is free."
msgstr ""
@@ -4761,7 +4782,7 @@ msgstr ""
#. Label of the timezone (Data) field in DocType 'LMS Certificate Request'
#. Label of the timezone (Data) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/LiveClassModal.vue:44
#: frontend/src/pages/BatchForm.vue:142
#: frontend/src/pages/BatchForm.vue:143
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -4790,9 +4811,9 @@ msgstr ""
#. Label of the title (Data) field in DocType 'Work Experience'
#: frontend/src/components/Modals/DiscussionModal.vue:18
#: frontend/src/components/Modals/LiveClassModal.vue:23
#: frontend/src/pages/BatchForm.vue:18 frontend/src/pages/CourseForm.vue:24
#: frontend/src/pages/BatchForm.vue:18 frontend/src/pages/CourseForm.vue:32
#: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/QuizForm.vue:48
#: frontend/src/pages/Quizzes.vue:98 lms/lms/doctype/cohort/cohort.json
#: frontend/src/pages/Quizzes.vue:114 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json
#: lms/lms/doctype/course_chapter/course_chapter.json
@@ -4827,7 +4848,7 @@ msgstr "إلى تاريخ"
msgid "To Date is mandatory in Work Experience."
msgstr ""
#: lms/lms/utils.py:1583
#: lms/lms/utils.py:1581
msgid "To join this batch, please contact the Administrator."
msgstr ""
@@ -4844,7 +4865,7 @@ msgid "Total"
msgstr "الاجمالي غير شامل الضريبة"
#. Label of the total_marks (Int) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:66 frontend/src/pages/Quizzes.vue:103
#: frontend/src/pages/QuizForm.vue:66 frontend/src/pages/Quizzes.vue:119
#: lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Total Marks"
msgstr ""
@@ -4944,7 +4965,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Cohort'
#. Label of the upcoming (Check) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:175 lms/lms/doctype/cohort/cohort.json
#: frontend/src/pages/CourseForm.vue:184 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Upcoming"
msgstr ""
@@ -4968,7 +4989,7 @@ msgstr "تحديث"
msgid "Update Password"
msgstr ""
#: frontend/src/pages/BatchForm.vue:51 frontend/src/pages/CourseForm.vue:72
#: frontend/src/pages/BatchForm.vue:51 frontend/src/pages/CourseForm.vue:80
msgid "Upload"
msgstr "تحميل"
@@ -5237,6 +5258,10 @@ msgstr ""
msgid "You have been enrolled in this course"
msgstr ""
#: frontend/src/pages/Quizzes.vue:60
msgid "You have not created any quizzes yet. To create a new quiz, click on the \"New Quiz\" button above."
msgstr ""
#: lms/lms/widgets/NoPreviewModal.html:12 lms/public/js/common_functions.js:126
msgid "You have opted to be notified for this course. You will receive an email when the course becomes available."
msgstr ""
@@ -5315,7 +5340,7 @@ msgstr ""
msgid "cancel your application"
msgstr ""
#: frontend/src/pages/Lesson.vue:175
#: frontend/src/pages/Lesson.vue:170
msgid "completed"
msgstr "أكتمل"
@@ -5363,7 +5388,7 @@ msgstr ""
msgid "you can"
msgstr ""
#: lms/lms/api.py:732 lms/lms/api.py:740
#: lms/lms/api.py:740 lms/lms/api.py:748
msgid "{0} Settings not found"
msgstr ""
@@ -5399,7 +5424,7 @@ msgstr ""
msgid "{0} is your evaluator"
msgstr ""
#: lms/lms/utils.py:709
#: lms/lms/utils.py:704
msgid "{0} mentioned you in a comment"
msgstr ""
@@ -5407,7 +5432,7 @@ msgstr ""
msgid "{0} mentioned you in a comment in your batch."
msgstr ""
#: lms/lms/utils.py:662 lms/lms/utils.py:668
#: lms/lms/utils.py:657 lms/lms/utils.py:663
msgid "{0} mentioned you in a comment in {1}"
msgstr "{0} ذكرتك في تعليق في {1}"

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2024-11-01 16:04+0000\n"
"PO-Revision-Date: 2024-11-05 14:34\n"
"POT-Creation-Date: 2024-11-08 16:04+0000\n"
"PO-Revision-Date: 2024-11-11 15:23\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Bosnian\n"
"MIME-Version: 1.0\n"
@@ -62,7 +62,7 @@ msgstr ""
msgid "<span style=\"font-size: 18px;\"><b>Statistics</b></span>"
msgstr ""
#: frontend/src/pages/CourseForm.vue:32
#: frontend/src/pages/CourseForm.vue:40
msgid "A one line introduction to the course that appears on the course card"
msgstr ""
@@ -228,7 +228,7 @@ msgstr "Već registrovan"
#. Label of the amount (Currency) field in DocType 'Web Form'
#. Label of the amount (Currency) field in DocType 'LMS Batch'
#. Label of the amount (Currency) field in DocType 'LMS Payment'
#: frontend/src/pages/BatchForm.vue:208 lms/fixtures/custom_field.json
#: frontend/src/pages/BatchForm.vue:209 lms/fixtures/custom_field.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_payment/lms_payment.json
#: lms/public/js/common_functions.js:379
@@ -262,6 +262,10 @@ msgstr ""
msgid "Announcement"
msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:99
msgid "Announcement has been sent successfully"
msgstr ""
#. Label of the answer (Text Editor) field in DocType 'LMS Assignment'
#. Label of the answer (Text Editor) field in DocType 'LMS Assignment
#. Submission'
@@ -272,7 +276,7 @@ msgstr ""
msgid "Answer"
msgstr ""
#: frontend/src/pages/CourseForm.vue:76 frontend/src/pages/CourseForm.vue:94
#: frontend/src/pages/CourseForm.vue:84 frontend/src/pages/CourseForm.vue:102
msgid "Appears on the course card in the course list"
msgstr ""
@@ -346,7 +350,7 @@ msgstr ""
msgid "Assessment added successfully"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:74
#: lms/lms/doctype/lms_batch/lms_batch.py:75
msgid "Assessment {0} has already been added to this batch."
msgstr ""
@@ -426,7 +430,7 @@ msgstr ""
msgid "Average Rating"
msgstr ""
#: frontend/src/pages/Lesson.vue:101
#: frontend/src/pages/Lesson.vue:96
msgid "Back to Course"
msgstr ""
@@ -478,7 +482,7 @@ msgid "Batch Description"
msgstr ""
#. Label of the batch_details (Text Editor) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:97 lms/lms/doctype/lms_batch/lms_batch.json
#: frontend/src/pages/BatchForm.vue:98 lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:349
#: lms/templates/emails/batch_confirmation.html:30
msgid "Batch Details"
@@ -539,7 +543,7 @@ msgstr ""
msgid "Batch Updated"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:39
#: lms/lms/doctype/lms_batch/lms_batch.py:40
msgid "Batch end date cannot be before the batch start date"
msgstr ""
@@ -645,8 +649,8 @@ msgstr ""
#. Label of the category (Link) field in DocType 'LMS Batch'
#. Label of the category (Data) field in DocType 'LMS Category'
#. Label of the category (Link) field in DocType 'LMS Course'
#: frontend/src/pages/BatchForm.vue:189 frontend/src/pages/Batches.vue:16
#: frontend/src/pages/CourseForm.vue:139 frontend/src/pages/Courses.vue:17
#: frontend/src/pages/BatchForm.vue:190 frontend/src/pages/Batches.vue:16
#: frontend/src/pages/CourseForm.vue:147 frontend/src/pages/Courses.vue:17
#: frontend/src/pages/JobDetail.vue:102
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_category/lms_category.json
@@ -947,7 +951,7 @@ msgstr ""
msgid "Completed"
msgstr "Završeno"
#: frontend/src/pages/CourseForm.vue:192
#: frontend/src/pages/CourseForm.vue:201
msgid "Completion Certificate"
msgstr ""
@@ -1118,7 +1122,7 @@ msgstr ""
msgid "Course Data"
msgstr ""
#: frontend/src/pages/CourseForm.vue:41
#: frontend/src/pages/CourseForm.vue:49
msgid "Course Description"
msgstr ""
@@ -1127,7 +1131,7 @@ msgstr ""
msgid "Course Evaluator"
msgstr ""
#: frontend/src/pages/CourseForm.vue:54
#: frontend/src/pages/CourseForm.vue:62
msgid "Course Image"
msgstr ""
@@ -1150,7 +1154,7 @@ msgid "Course Name"
msgstr ""
#. Label of the course_price (Currency) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:210
#: frontend/src/pages/CourseForm.vue:219
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Course Price"
msgstr ""
@@ -1179,15 +1183,15 @@ msgstr ""
msgid "Course Title"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:318
#: lms/lms/doctype/lms_batch/lms_batch.py:340
msgid "Course already added to the batch."
msgstr ""
#: frontend/src/pages/CourseForm.vue:457
msgid "Course price and currency are mandatory for paid courses"
msgid "Course deleted successfully"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:57
#: lms/lms/doctype/lms_batch/lms_batch.py:58
msgid "Course {0} has already been added to this batch."
msgstr ""
@@ -1253,7 +1257,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/pages/BatchForm.vue:216 frontend/src/pages/CourseForm.vue:217
#: frontend/src/pages/BatchForm.vue:217 frontend/src/pages/CourseForm.vue:226
#: lms/fixtures/custom_field.json lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_payment/lms_payment.json
@@ -1311,7 +1315,7 @@ msgstr "Datum"
#. Label of the section_break_glxh (Section Break) field in DocType 'LMS Live
#. Class'
#: frontend/src/pages/BatchForm.vue:110
#: frontend/src/pages/BatchForm.vue:111
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Date and Time"
msgstr ""
@@ -1347,13 +1351,22 @@ msgid "Degree Type"
msgstr ""
#: frontend/src/components/CourseOutline.vue:212
#: frontend/src/pages/CourseForm.vue:15 frontend/src/pages/CourseForm.vue:470
msgid "Delete"
msgstr "Izbriši"
#: frontend/src/pages/CourseForm.vue:464
msgid "Delete Course"
msgstr ""
#: frontend/src/components/CourseOutline.vue:208
msgid "Delete Lesson"
msgstr ""
#: frontend/src/pages/CourseForm.vue:465
msgid "Deleting the course will also delete all its chapters and lessons. Are you sure you want to delete this course?"
msgstr ""
#. Label of the description (Text Editor) field in DocType 'Job Opportunity'
#. Label of the description (Small Text) field in DocType 'Certification'
#. Label of the description (Markdown Editor) field in DocType 'Cohort'
@@ -1367,7 +1380,7 @@ msgstr ""
#. Label of the description (Text) field in DocType 'LMS Live Class'
#. Label of the description (Small Text) field in DocType 'Work Experience'
#: frontend/src/components/Modals/LiveClassModal.vue:73
#: frontend/src/pages/BatchForm.vue:90 frontend/src/pages/JobCreation.vue:43
#: frontend/src/pages/BatchForm.vue:91 frontend/src/pages/JobCreation.vue:43
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/cohort/cohort.json
@@ -1388,12 +1401,12 @@ msgid "Desk"
msgstr ""
#: frontend/src/components/Modals/DiscussionModal.vue:22
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:20
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:28
#: frontend/src/pages/QuizForm.vue:42
msgid "Details"
msgstr "Detalji"
#: frontend/src/pages/CourseForm.vue:187
#: frontend/src/pages/CourseForm.vue:196
msgid "Disable Self Enrollment"
msgstr ""
@@ -1469,7 +1482,7 @@ msgstr ""
#: frontend/src/components/BatchOverlay.vue:93
#: frontend/src/components/CourseCardOverlay.vue:86
#: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/pages/JobDetail.vue:31 frontend/src/pages/Lesson.vue:70
#: frontend/src/pages/JobDetail.vue:31 frontend/src/pages/Lesson.vue:65
#: frontend/src/pages/Profile.vue:32
msgid "Edit"
msgstr "Uredi"
@@ -1551,7 +1564,7 @@ msgstr "Omogućeno"
#. Label of the end_date (Date) field in DocType 'Cohort'
#. Label of the end_date (Date) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:122 lms/lms/doctype/cohort/cohort.json
#: frontend/src/pages/BatchForm.vue:123 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:282
msgid "End Date"
@@ -1569,7 +1582,7 @@ msgstr ""
#. Label of the end_time (Time) field in DocType 'LMS Certificate Evaluation'
#. Label of the end_time (Time) field in DocType 'LMS Certificate Request'
#. Label of the end_time (Time) field in DocType 'Scheduled Flow'
#: frontend/src/pages/BatchForm.vue:136
#: frontend/src/pages/BatchForm.vue:137
#: frontend/src/pages/ProfileEvaluator.vue:18
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1596,7 +1609,7 @@ msgstr ""
msgid "Enrolled successfully"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:97
#: lms/lms/doctype/lms_batch/lms_batch.py:98
msgid "Enrollment Confirmation for the Next Training Batch"
msgstr ""
@@ -1605,7 +1618,7 @@ msgstr ""
msgid "Enrollment Count"
msgstr ""
#: lms/lms/utils.py:1692
#: lms/lms/utils.py:1690
msgid "Enrollment Failed"
msgstr ""
@@ -1633,6 +1646,7 @@ msgstr ""
msgid "Enter the correct answer"
msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:104
#: frontend/src/components/Modals/Question.vue:246
#: frontend/src/components/Modals/Question.vue:266
#: frontend/src/components/Modals/Question.vue:323
@@ -1655,7 +1669,7 @@ msgid "Evaluation Details"
msgstr ""
#. Label of the evaluation_end_date (Date) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:165
#: frontend/src/pages/BatchForm.vue:166
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:333
msgid "Evaluation End Date"
@@ -1666,7 +1680,7 @@ msgstr ""
msgid "Evaluation Request"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:81
#: lms/lms/doctype/lms_batch/lms_batch.py:82
msgid "Evaluation end date cannot be less than the batch end date."
msgstr ""
@@ -1713,11 +1727,13 @@ msgid "Evaluator is Unavailable"
msgstr ""
#. Label of the event (Select) field in DocType 'LMS Badge'
#. Label of the event (Link) field in DocType 'LMS Live Class'
#: lms/lms/doctype/lms_badge/lms_badge.json
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Event"
msgstr "Događaj"
#: frontend/src/pages/BatchForm.vue:144
#: frontend/src/pages/BatchForm.vue:145
msgid "Example: IST (+5:30)"
msgstr ""
@@ -1791,7 +1807,7 @@ msgstr "Neuspjeh"
#. Label of the featured (Check) field in DocType 'LMS Course'
#: frontend/src/components/CourseCard.vue:16
#: frontend/src/pages/CourseForm.vue:180
#: frontend/src/pages/CourseForm.vue:189
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Featured"
msgstr "Istaknuto"
@@ -2078,7 +2094,7 @@ msgstr ""
msgid "If you set an amount here, then the USD equivalent setting will not get applied."
msgstr ""
#: lms/lms/doctype/lms_quiz/lms_quiz.py:62
#: lms/lms/doctype/lms_quiz/lms_quiz.py:63
msgid "If you want open ended questions then make sure each question in the quiz is of open ended type."
msgstr ""
@@ -2104,7 +2120,7 @@ msgstr "Slika"
msgid "Image search powered by"
msgstr ""
#: lms/lms/doctype/lms_quiz/lms_quiz.py:221
#: lms/lms/doctype/lms_quiz/lms_quiz.py:222
msgid "Image: Corrupted Data Stream"
msgstr ""
@@ -2187,14 +2203,14 @@ msgstr ""
#. Label of the instructor_notes (Markdown Editor) field in DocType 'Course
#. Lesson'
#: frontend/src/pages/Lesson.vue:130 frontend/src/pages/LessonForm.vue:33
#: frontend/src/pages/Lesson.vue:125 frontend/src/pages/LessonForm.vue:33
#: lms/lms/doctype/course_lesson/course_lesson.json
msgid "Instructor Notes"
msgstr ""
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Batch'
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Course'
#: frontend/src/pages/BatchForm.vue:85 frontend/src/pages/CourseForm.vue:146
#: frontend/src/pages/BatchForm.vue:85 frontend/src/pages/CourseForm.vue:154
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Instructors"
@@ -2353,7 +2369,7 @@ msgstr ""
msgid "Join URL"
msgstr ""
#: frontend/src/pages/CourseForm.vue:128
#: frontend/src/pages/CourseForm.vue:136
msgid "Keywords for the course"
msgstr ""
@@ -2657,7 +2673,7 @@ msgstr ""
msgid "Links"
msgstr "Veze"
#: frontend/src/pages/Quizzes.vue:131
#: frontend/src/pages/Quizzes.vue:147
msgid "List of quizzes"
msgstr ""
@@ -2707,7 +2723,7 @@ msgstr ""
#: frontend/src/components/NoPermission.vue:28
#: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:163
#: frontend/src/pages/Lesson.vue:29
#: frontend/src/pages/Lesson.vue:24
msgid "Login"
msgstr "Prijava"
@@ -2787,7 +2803,7 @@ msgid "Maximun Attempts"
msgstr ""
#. Label of the medium (Select) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:184
#: frontend/src/pages/BatchForm.vue:185
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:309
msgid "Medium"
@@ -3042,11 +3058,11 @@ msgstr ""
msgid "New Sign Up"
msgstr ""
#: lms/lms/utils.py:632
#: lms/lms/utils.py:627
msgid "New comment in batch {0}"
msgstr ""
#: lms/lms/utils.py:625
#: lms/lms/utils.py:620
msgid "New reply on the topic {0} in course {1}"
msgstr ""
@@ -3055,7 +3071,7 @@ msgstr ""
msgid "New {0}"
msgstr "Novi {0}"
#: frontend/src/components/Quiz.vue:209 frontend/src/pages/Lesson.vue:89
#: frontend/src/components/Quiz.vue:209 frontend/src/pages/Lesson.vue:84
msgid "Next"
msgstr "Sljedeći"
@@ -3116,6 +3132,10 @@ msgstr ""
msgid "No live classes scheduled"
msgstr ""
#: frontend/src/pages/Quizzes.vue:56
msgid "No quizzes found"
msgstr ""
#: frontend/src/components/Modals/EvaluationModal.vue:53
msgid "No slots available for this date."
msgstr ""
@@ -3188,7 +3208,7 @@ msgstr "Obavijesti"
msgid "Notify me when available"
msgstr ""
#: frontend/src/pages/BatchForm.vue:161
#: frontend/src/pages/BatchForm.vue:162
msgid "Number of seats available"
msgstr ""
@@ -3224,7 +3244,7 @@ msgstr ""
msgid "Only files of type {0} will be accepted."
msgstr ""
#: frontend/src/pages/CourseForm.vue:473 frontend/src/utils/index.js:518
#: frontend/src/pages/CourseForm.vue:494 frontend/src/utils/index.js:518
msgid "Only image file is allowed."
msgstr ""
@@ -3332,14 +3352,14 @@ msgid "Pages"
msgstr ""
#. Label of the paid_batch (Check) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:204
#: frontend/src/pages/BatchForm.vue:205
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:373
msgid "Paid Batch"
msgstr ""
#. Label of the paid_course (Check) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:205
#: frontend/src/pages/CourseForm.vue:214
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Paid Course"
msgstr ""
@@ -3370,7 +3390,7 @@ msgstr "Prolaz"
#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz'
#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/QuizForm.vue:71 frontend/src/pages/Quizzes.vue:109
#: frontend/src/pages/QuizForm.vue:71 frontend/src/pages/Quizzes.vue:125
#: lms/lms/doctype/lms_quiz/lms_quiz.json
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
msgid "Passing Percentage"
@@ -3381,13 +3401,13 @@ msgstr ""
msgid "Password"
msgstr "Lozinka"
#: frontend/src/pages/CourseForm.vue:104
#: frontend/src/pages/CourseForm.vue:112
msgid "Paste the youtube link of a short video introducing the course"
msgstr ""
#. Label of the payment (Link) field in DocType 'Batch Student'
#. Label of the payment (Link) field in DocType 'LMS Enrollment'
#: frontend/src/pages/BatchForm.vue:198
#: frontend/src/pages/BatchForm.vue:199
#: lms/lms/doctype/batch_student/batch_student.json
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
msgid "Payment"
@@ -3499,7 +3519,7 @@ msgstr "Molimo provjerite svoju e-poštu za potvrdu"
msgid "Please click on the following button to set your new password"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:229
#: lms/lms/doctype/lms_batch/lms_batch.py:251
msgid "Please enable Zoom Settings to use this feature."
msgstr ""
@@ -3520,7 +3540,7 @@ msgstr ""
msgid "Please enter your answer"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:64
#: lms/lms/doctype/lms_batch/lms_batch.py:65
msgid "Please install the Payments app to create a paid batches."
msgstr ""
@@ -3630,17 +3650,17 @@ msgstr ""
msgid "Preview Image"
msgstr "Pregled slike"
#: frontend/src/pages/CourseForm.vue:102
#: frontend/src/pages/CourseForm.vue:110
msgid "Preview Video"
msgstr ""
#: frontend/src/pages/Lesson.vue:54
#: frontend/src/pages/Lesson.vue:49
msgid "Previous"
msgstr "Prethodno"
#. Label of the pricing_tab (Tab Break) field in DocType 'LMS Batch'
#. Label of the pricing_tab (Tab Break) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:199
#: frontend/src/pages/CourseForm.vue:208
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/public/js/common_functions.js:368
@@ -3710,7 +3730,7 @@ msgstr ""
#. Label of the published (Check) field in DocType 'LMS Batch'
#. Label of the published (Check) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:108
#: frontend/src/pages/BatchForm.vue:24 frontend/src/pages/CourseForm.vue:162
#: frontend/src/pages/BatchForm.vue:24 frontend/src/pages/CourseForm.vue:171
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/public/js/common_functions.js:266
@@ -3723,7 +3743,7 @@ msgid "Published Courses"
msgstr ""
#. Label of the published_on (Date) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:166
#: frontend/src/pages/CourseForm.vue:175
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Published On"
msgstr "Objavljeno dana"
@@ -3838,8 +3858,8 @@ msgstr ""
msgid "Quiz will appear at the bottom of the lesson."
msgstr ""
#: frontend/src/pages/QuizForm.vue:441 frontend/src/pages/Quizzes.vue:120
#: frontend/src/pages/Quizzes.vue:130
#: frontend/src/pages/QuizForm.vue:441 frontend/src/pages/Quizzes.vue:136
#: frontend/src/pages/Quizzes.vue:146
msgid "Quizzes"
msgstr ""
@@ -3921,7 +3941,7 @@ msgstr ""
msgid "Related Courses"
msgstr ""
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/CourseForm.vue:91
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/CourseForm.vue:99
msgid "Remove"
msgstr "Ukloni"
@@ -3995,19 +4015,19 @@ msgstr ""
msgid "Route"
msgstr "Ruta"
#: lms/lms/doctype/lms_batch/lms_batch.py:172
#: lms/lms/doctype/lms_batch/lms_batch.py:194
msgid "Row #{0} Date cannot be outside the batch duration."
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:167
#: lms/lms/doctype/lms_batch/lms_batch.py:189
msgid "Row #{0} End time cannot be outside the batch duration."
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:149
#: lms/lms/doctype/lms_batch/lms_batch.py:171
msgid "Row #{0} Start time cannot be greater than or equal to end time."
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:158
#: lms/lms/doctype/lms_batch/lms_batch.py:180
msgid "Row #{0} Start time cannot be outside the batch duration."
msgstr ""
@@ -4031,7 +4051,7 @@ msgstr ""
#: frontend/src/components/Modals/Event.vue:129
#: frontend/src/components/QuizPlugin.vue:23
#: frontend/src/pages/AssignmentSubmission.vue:7
#: frontend/src/pages/BatchForm.vue:8 frontend/src/pages/CourseForm.vue:12
#: frontend/src/pages/BatchForm.vue:8 frontend/src/pages/CourseForm.vue:20
#: frontend/src/pages/JobCreation.vue:8 frontend/src/pages/LessonForm.vue:10
#: frontend/src/pages/QuizForm.vue:34 frontend/src/pages/QuizSubmission.vue:14
#: lms/public/js/common_functions.js:405
@@ -4080,7 +4100,7 @@ msgid "Search for an icon"
msgstr ""
#. Label of the seat_count (Int) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:158
#: frontend/src/pages/BatchForm.vue:159
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:327
msgid "Seat Count"
@@ -4124,7 +4144,7 @@ msgid "Set your Password"
msgstr ""
#: frontend/src/components/Modals/Settings.vue:7
#: frontend/src/pages/BatchForm.vue:152 frontend/src/pages/CourseForm.vue:152
#: frontend/src/pages/BatchForm.vue:153 frontend/src/pages/CourseForm.vue:161
#: frontend/src/pages/ProfileRoles.vue:4 frontend/src/pages/QuizForm.vue:78
msgid "Settings"
msgstr ""
@@ -4134,12 +4154,12 @@ msgid "Share on"
msgstr ""
#. Label of the short_introduction (Small Text) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:30
#: frontend/src/pages/CourseForm.vue:38
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Short Introduction"
msgstr ""
#: frontend/src/pages/BatchForm.vue:93
#: frontend/src/pages/BatchForm.vue:94
msgid "Short description of the batch"
msgstr ""
@@ -4303,7 +4323,7 @@ msgstr ""
#. Label of the start_date (Date) field in DocType 'Education Detail'
#. Label of the start_date (Date) field in DocType 'LMS Batch'
#. Label of the start_date (Date) field in DocType 'LMS Batch Old'
#: frontend/src/pages/BatchForm.vue:116
#: frontend/src/pages/BatchForm.vue:117
#: lms/lms/doctype/education_detail/education_detail.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
@@ -4312,7 +4332,7 @@ msgid "Start Date"
msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:63
#: frontend/src/pages/Lesson.vue:25
#: frontend/src/pages/Lesson.vue:21
#: lms/templates/emails/lms_course_interest.html:9
msgid "Start Learning"
msgstr ""
@@ -4324,7 +4344,7 @@ msgstr ""
#. Label of the start_time (Time) field in DocType 'LMS Certificate Evaluation'
#. Label of the start_time (Time) field in DocType 'LMS Certificate Request'
#. Label of the start_time (Time) field in DocType 'Scheduled Flow'
#: frontend/src/pages/BatchForm.vue:130
#: frontend/src/pages/BatchForm.vue:131
#: frontend/src/pages/ProfileEvaluator.vue:15
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -4430,7 +4450,7 @@ msgstr ""
msgid "Student Reviews"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:46
#: lms/lms/doctype/lms_batch/lms_batch.py:47
msgid "Student {0} has already been added to this batch."
msgstr ""
@@ -4496,13 +4516,14 @@ msgstr ""
#: frontend/src/components/BatchOverlay.vue:135
#: frontend/src/components/BatchStudents.vue:157
#: frontend/src/components/CourseCardOverlay.vue:161
#: frontend/src/components/Modals/AnnouncementModal.vue:98
#: frontend/src/components/Modals/AssessmentModal.vue:73
#: frontend/src/components/Modals/Event.vue:255
#: frontend/src/components/Modals/Event.vue:310
#: frontend/src/components/Modals/Question.vue:261
#: frontend/src/components/Modals/Question.vue:312
#: frontend/src/pages/QuizForm.vue:342 frontend/src/pages/QuizForm.vue:361
#: frontend/src/pages/QuizForm.vue:430
#: frontend/src/pages/CourseForm.vue:457 frontend/src/pages/QuizForm.vue:342
#: frontend/src/pages/QuizForm.vue:361 frontend/src/pages/QuizForm.vue:430
msgid "Success"
msgstr ""
@@ -4569,7 +4590,7 @@ msgid "System Manager"
msgstr ""
#. Label of the tags (Data) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:112
#: frontend/src/pages/CourseForm.vue:120
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Tags"
msgstr "Oznake"
@@ -4661,7 +4682,7 @@ msgstr ""
msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:140
#: lms/lms/doctype/lms_batch/lms_batch.py:141
msgid "There are no seats available in this batch."
msgstr ""
@@ -4692,7 +4713,7 @@ msgstr ""
msgid "This course has:"
msgstr ""
#: lms/lms/utils.py:1572
#: lms/lms/utils.py:1570
msgid "This course is free."
msgstr ""
@@ -4761,7 +4782,7 @@ msgstr ""
#. Label of the timezone (Data) field in DocType 'LMS Certificate Request'
#. Label of the timezone (Data) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/LiveClassModal.vue:44
#: frontend/src/pages/BatchForm.vue:142
#: frontend/src/pages/BatchForm.vue:143
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -4790,9 +4811,9 @@ msgstr ""
#. Label of the title (Data) field in DocType 'Work Experience'
#: frontend/src/components/Modals/DiscussionModal.vue:18
#: frontend/src/components/Modals/LiveClassModal.vue:23
#: frontend/src/pages/BatchForm.vue:18 frontend/src/pages/CourseForm.vue:24
#: frontend/src/pages/BatchForm.vue:18 frontend/src/pages/CourseForm.vue:32
#: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/QuizForm.vue:48
#: frontend/src/pages/Quizzes.vue:98 lms/lms/doctype/cohort/cohort.json
#: frontend/src/pages/Quizzes.vue:114 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json
#: lms/lms/doctype/course_chapter/course_chapter.json
@@ -4827,7 +4848,7 @@ msgstr ""
msgid "To Date is mandatory in Work Experience."
msgstr ""
#: lms/lms/utils.py:1583
#: lms/lms/utils.py:1581
msgid "To join this batch, please contact the Administrator."
msgstr ""
@@ -4844,7 +4865,7 @@ msgid "Total"
msgstr ""
#. Label of the total_marks (Int) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:66 frontend/src/pages/Quizzes.vue:103
#: frontend/src/pages/QuizForm.vue:66 frontend/src/pages/Quizzes.vue:119
#: lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Total Marks"
msgstr ""
@@ -4944,7 +4965,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Cohort'
#. Label of the upcoming (Check) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:175 lms/lms/doctype/cohort/cohort.json
#: frontend/src/pages/CourseForm.vue:184 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Upcoming"
msgstr ""
@@ -4968,7 +4989,7 @@ msgstr ""
msgid "Update Password"
msgstr ""
#: frontend/src/pages/BatchForm.vue:51 frontend/src/pages/CourseForm.vue:72
#: frontend/src/pages/BatchForm.vue:51 frontend/src/pages/CourseForm.vue:80
msgid "Upload"
msgstr "Učitaj"
@@ -5237,6 +5258,10 @@ msgstr ""
msgid "You have been enrolled in this course"
msgstr ""
#: frontend/src/pages/Quizzes.vue:60
msgid "You have not created any quizzes yet. To create a new quiz, click on the \"New Quiz\" button above."
msgstr ""
#: lms/lms/widgets/NoPreviewModal.html:12 lms/public/js/common_functions.js:126
msgid "You have opted to be notified for this course. You will receive an email when the course becomes available."
msgstr ""
@@ -5315,7 +5340,7 @@ msgstr ""
msgid "cancel your application"
msgstr ""
#: frontend/src/pages/Lesson.vue:175
#: frontend/src/pages/Lesson.vue:170
msgid "completed"
msgstr "završeno"
@@ -5363,7 +5388,7 @@ msgstr ""
msgid "you can"
msgstr ""
#: lms/lms/api.py:732 lms/lms/api.py:740
#: lms/lms/api.py:740 lms/lms/api.py:748
msgid "{0} Settings not found"
msgstr ""
@@ -5399,7 +5424,7 @@ msgstr ""
msgid "{0} is your evaluator"
msgstr ""
#: lms/lms/utils.py:709
#: lms/lms/utils.py:704
msgid "{0} mentioned you in a comment"
msgstr ""
@@ -5407,7 +5432,7 @@ msgstr ""
msgid "{0} mentioned you in a comment in your batch."
msgstr ""
#: lms/lms/utils.py:662 lms/lms/utils.py:668
#: lms/lms/utils.py:657 lms/lms/utils.py:663
msgid "{0} mentioned you in a comment in {1}"
msgstr "{0} vas je spomenuo u komentaru u {1}"

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2024-11-01 16:04+0000\n"
"PO-Revision-Date: 2024-11-05 14:33\n"
"POT-Creation-Date: 2024-11-08 16:04+0000\n"
"PO-Revision-Date: 2024-11-11 15:23\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: German\n"
"MIME-Version: 1.0\n"
@@ -62,7 +62,7 @@ msgstr ""
msgid "<span style=\"font-size: 18px;\"><b>Statistics</b></span>"
msgstr ""
#: frontend/src/pages/CourseForm.vue:32
#: frontend/src/pages/CourseForm.vue:40
msgid "A one line introduction to the course that appears on the course card"
msgstr ""
@@ -228,7 +228,7 @@ msgstr "Bereits registriert"
#. Label of the amount (Currency) field in DocType 'Web Form'
#. Label of the amount (Currency) field in DocType 'LMS Batch'
#. Label of the amount (Currency) field in DocType 'LMS Payment'
#: frontend/src/pages/BatchForm.vue:208 lms/fixtures/custom_field.json
#: frontend/src/pages/BatchForm.vue:209 lms/fixtures/custom_field.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_payment/lms_payment.json
#: lms/public/js/common_functions.js:379
@@ -262,6 +262,10 @@ msgstr "Betrag inkl. MwSt."
msgid "Announcement"
msgstr "Ankündigung"
#: frontend/src/components/Modals/AnnouncementModal.vue:99
msgid "Announcement has been sent successfully"
msgstr ""
#. Label of the answer (Text Editor) field in DocType 'LMS Assignment'
#. Label of the answer (Text Editor) field in DocType 'LMS Assignment
#. Submission'
@@ -272,7 +276,7 @@ msgstr "Ankündigung"
msgid "Answer"
msgstr "Antwort"
#: frontend/src/pages/CourseForm.vue:76 frontend/src/pages/CourseForm.vue:94
#: frontend/src/pages/CourseForm.vue:84 frontend/src/pages/CourseForm.vue:102
msgid "Appears on the course card in the course list"
msgstr ""
@@ -346,7 +350,7 @@ msgstr "Prüfungstyp"
msgid "Assessment added successfully"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:74
#: lms/lms/doctype/lms_batch/lms_batch.py:75
msgid "Assessment {0} has already been added to this batch."
msgstr ""
@@ -426,7 +430,7 @@ msgstr ""
msgid "Average Rating"
msgstr "Durchschnittliche Bewertung"
#: frontend/src/pages/Lesson.vue:101
#: frontend/src/pages/Lesson.vue:96
msgid "Back to Course"
msgstr ""
@@ -478,7 +482,7 @@ msgid "Batch Description"
msgstr "Chargenbeschreibung"
#. Label of the batch_details (Text Editor) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:97 lms/lms/doctype/lms_batch/lms_batch.json
#: frontend/src/pages/BatchForm.vue:98 lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:349
#: lms/templates/emails/batch_confirmation.html:30
msgid "Batch Details"
@@ -539,7 +543,7 @@ msgstr ""
msgid "Batch Updated"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:39
#: lms/lms/doctype/lms_batch/lms_batch.py:40
msgid "Batch end date cannot be before the batch start date"
msgstr ""
@@ -645,8 +649,8 @@ msgstr ""
#. Label of the category (Link) field in DocType 'LMS Batch'
#. Label of the category (Data) field in DocType 'LMS Category'
#. Label of the category (Link) field in DocType 'LMS Course'
#: frontend/src/pages/BatchForm.vue:189 frontend/src/pages/Batches.vue:16
#: frontend/src/pages/CourseForm.vue:139 frontend/src/pages/Courses.vue:17
#: frontend/src/pages/BatchForm.vue:190 frontend/src/pages/Batches.vue:16
#: frontend/src/pages/CourseForm.vue:147 frontend/src/pages/Courses.vue:17
#: frontend/src/pages/JobDetail.vue:102
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_category/lms_category.json
@@ -947,7 +951,7 @@ msgstr ""
msgid "Completed"
msgstr "Abgeschlossen"
#: frontend/src/pages/CourseForm.vue:192
#: frontend/src/pages/CourseForm.vue:201
msgid "Completion Certificate"
msgstr ""
@@ -1118,7 +1122,7 @@ msgstr "Kursersteller"
msgid "Course Data"
msgstr "Kursdaten"
#: frontend/src/pages/CourseForm.vue:41
#: frontend/src/pages/CourseForm.vue:49
msgid "Course Description"
msgstr "Kursbeschreibung"
@@ -1127,7 +1131,7 @@ msgstr "Kursbeschreibung"
msgid "Course Evaluator"
msgstr "Kursbewerter"
#: frontend/src/pages/CourseForm.vue:54
#: frontend/src/pages/CourseForm.vue:62
msgid "Course Image"
msgstr "Kursbild"
@@ -1150,7 +1154,7 @@ msgid "Course Name"
msgstr "Kursname"
#. Label of the course_price (Currency) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:210
#: frontend/src/pages/CourseForm.vue:219
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Course Price"
msgstr "Kurspreis"
@@ -1179,15 +1183,15 @@ msgstr "Kurs-Statistiken"
msgid "Course Title"
msgstr "Kurstitel"
#: lms/lms/doctype/lms_batch/lms_batch.py:318
#: lms/lms/doctype/lms_batch/lms_batch.py:340
msgid "Course already added to the batch."
msgstr ""
#: frontend/src/pages/CourseForm.vue:457
msgid "Course price and currency are mandatory for paid courses"
msgid "Course deleted successfully"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:57
#: lms/lms/doctype/lms_batch/lms_batch.py:58
msgid "Course {0} has already been added to this batch."
msgstr ""
@@ -1253,7 +1257,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/pages/BatchForm.vue:216 frontend/src/pages/CourseForm.vue:217
#: frontend/src/pages/BatchForm.vue:217 frontend/src/pages/CourseForm.vue:226
#: lms/fixtures/custom_field.json lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_payment/lms_payment.json
@@ -1311,7 +1315,7 @@ msgstr "Datum"
#. Label of the section_break_glxh (Section Break) field in DocType 'LMS Live
#. Class'
#: frontend/src/pages/BatchForm.vue:110
#: frontend/src/pages/BatchForm.vue:111
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Date and Time"
msgstr "Datum und Uhrzeit"
@@ -1347,13 +1351,22 @@ msgid "Degree Type"
msgstr "Abschlussart"
#: frontend/src/components/CourseOutline.vue:212
#: frontend/src/pages/CourseForm.vue:15 frontend/src/pages/CourseForm.vue:470
msgid "Delete"
msgstr "Löschen"
#: frontend/src/pages/CourseForm.vue:464
msgid "Delete Course"
msgstr ""
#: frontend/src/components/CourseOutline.vue:208
msgid "Delete Lesson"
msgstr ""
#: frontend/src/pages/CourseForm.vue:465
msgid "Deleting the course will also delete all its chapters and lessons. Are you sure you want to delete this course?"
msgstr ""
#. Label of the description (Text Editor) field in DocType 'Job Opportunity'
#. Label of the description (Small Text) field in DocType 'Certification'
#. Label of the description (Markdown Editor) field in DocType 'Cohort'
@@ -1367,7 +1380,7 @@ msgstr ""
#. Label of the description (Text) field in DocType 'LMS Live Class'
#. Label of the description (Small Text) field in DocType 'Work Experience'
#: frontend/src/components/Modals/LiveClassModal.vue:73
#: frontend/src/pages/BatchForm.vue:90 frontend/src/pages/JobCreation.vue:43
#: frontend/src/pages/BatchForm.vue:91 frontend/src/pages/JobCreation.vue:43
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/cohort/cohort.json
@@ -1388,12 +1401,12 @@ msgid "Desk"
msgstr ""
#: frontend/src/components/Modals/DiscussionModal.vue:22
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:20
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:28
#: frontend/src/pages/QuizForm.vue:42
msgid "Details"
msgstr "Details"
#: frontend/src/pages/CourseForm.vue:187
#: frontend/src/pages/CourseForm.vue:196
msgid "Disable Self Enrollment"
msgstr "Selbstregistrierung deaktivieren"
@@ -1469,7 +1482,7 @@ msgstr "E-Mail"
#: frontend/src/components/BatchOverlay.vue:93
#: frontend/src/components/CourseCardOverlay.vue:86
#: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/pages/JobDetail.vue:31 frontend/src/pages/Lesson.vue:70
#: frontend/src/pages/JobDetail.vue:31 frontend/src/pages/Lesson.vue:65
#: frontend/src/pages/Profile.vue:32
msgid "Edit"
msgstr "Bearbeiten"
@@ -1551,7 +1564,7 @@ msgstr "Aktiviert"
#. Label of the end_date (Date) field in DocType 'Cohort'
#. Label of the end_date (Date) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:122 lms/lms/doctype/cohort/cohort.json
#: frontend/src/pages/BatchForm.vue:123 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:282
msgid "End Date"
@@ -1569,7 +1582,7 @@ msgstr "Enddatum (oder voraussichtlich)"
#. Label of the end_time (Time) field in DocType 'LMS Certificate Evaluation'
#. Label of the end_time (Time) field in DocType 'LMS Certificate Request'
#. Label of the end_time (Time) field in DocType 'Scheduled Flow'
#: frontend/src/pages/BatchForm.vue:136
#: frontend/src/pages/BatchForm.vue:137
#: frontend/src/pages/ProfileEvaluator.vue:18
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1596,7 +1609,7 @@ msgstr "Eingeschriebene Studenten"
msgid "Enrolled successfully"
msgstr "Erfolgreich eingeschrieben"
#: lms/lms/doctype/lms_batch/lms_batch.py:97
#: lms/lms/doctype/lms_batch/lms_batch.py:98
msgid "Enrollment Confirmation for the Next Training Batch"
msgstr ""
@@ -1605,7 +1618,7 @@ msgstr ""
msgid "Enrollment Count"
msgstr "Anzahl der Einschreibungen"
#: lms/lms/utils.py:1692
#: lms/lms/utils.py:1690
msgid "Enrollment Failed"
msgstr ""
@@ -1633,6 +1646,7 @@ msgstr ""
msgid "Enter the correct answer"
msgstr "Geben Sie die richtige Antwort ein"
#: frontend/src/components/Modals/AnnouncementModal.vue:104
#: frontend/src/components/Modals/Question.vue:246
#: frontend/src/components/Modals/Question.vue:266
#: frontend/src/components/Modals/Question.vue:323
@@ -1655,7 +1669,7 @@ msgid "Evaluation Details"
msgstr ""
#. Label of the evaluation_end_date (Date) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:165
#: frontend/src/pages/BatchForm.vue:166
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:333
msgid "Evaluation End Date"
@@ -1666,7 +1680,7 @@ msgstr ""
msgid "Evaluation Request"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:81
#: lms/lms/doctype/lms_batch/lms_batch.py:82
msgid "Evaluation end date cannot be less than the batch end date."
msgstr ""
@@ -1713,11 +1727,13 @@ msgid "Evaluator is Unavailable"
msgstr ""
#. Label of the event (Select) field in DocType 'LMS Badge'
#. Label of the event (Link) field in DocType 'LMS Live Class'
#: lms/lms/doctype/lms_badge/lms_badge.json
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Event"
msgstr "Ereignis"
#: frontend/src/pages/BatchForm.vue:144
#: frontend/src/pages/BatchForm.vue:145
msgid "Example: IST (+5:30)"
msgstr ""
@@ -1791,7 +1807,7 @@ msgstr "Fehler"
#. Label of the featured (Check) field in DocType 'LMS Course'
#: frontend/src/components/CourseCard.vue:16
#: frontend/src/pages/CourseForm.vue:180
#: frontend/src/pages/CourseForm.vue:189
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Featured"
msgstr "Vorgestellt"
@@ -2078,7 +2094,7 @@ msgstr "Wenn Sie Fragen haben oder Hilfe benötigen, können Sie uns gerne konta
msgid "If you set an amount here, then the USD equivalent setting will not get applied."
msgstr ""
#: lms/lms/doctype/lms_quiz/lms_quiz.py:62
#: lms/lms/doctype/lms_quiz/lms_quiz.py:63
msgid "If you want open ended questions then make sure each question in the quiz is of open ended type."
msgstr ""
@@ -2104,7 +2120,7 @@ msgstr "Bild"
msgid "Image search powered by"
msgstr "Bildsuche powered by"
#: lms/lms/doctype/lms_quiz/lms_quiz.py:221
#: lms/lms/doctype/lms_quiz/lms_quiz.py:222
msgid "Image: Corrupted Data Stream"
msgstr "Bild: Beschädigter Datenstrom"
@@ -2187,14 +2203,14 @@ msgstr ""
#. Label of the instructor_notes (Markdown Editor) field in DocType 'Course
#. Lesson'
#: frontend/src/pages/Lesson.vue:130 frontend/src/pages/LessonForm.vue:33
#: frontend/src/pages/Lesson.vue:125 frontend/src/pages/LessonForm.vue:33
#: lms/lms/doctype/course_lesson/course_lesson.json
msgid "Instructor Notes"
msgstr ""
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Batch'
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Course'
#: frontend/src/pages/BatchForm.vue:85 frontend/src/pages/CourseForm.vue:146
#: frontend/src/pages/BatchForm.vue:85 frontend/src/pages/CourseForm.vue:154
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Instructors"
@@ -2353,7 +2369,7 @@ msgstr ""
msgid "Join URL"
msgstr ""
#: frontend/src/pages/CourseForm.vue:128
#: frontend/src/pages/CourseForm.vue:136
msgid "Keywords for the course"
msgstr ""
@@ -2657,14 +2673,14 @@ msgstr ""
msgid "Links"
msgstr "Verknüpfungen"
#: frontend/src/pages/Quizzes.vue:131
#: frontend/src/pages/Quizzes.vue:147
msgid "List of quizzes"
msgstr "Quizliste"
msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Cohort'
#: lms/lms/doctype/cohort/cohort.json
msgid "Live"
msgstr "Live"
msgstr ""
#. Label of the show_live_class (Check) field in DocType 'LMS Settings'
#: frontend/src/components/LiveClass.vue:4
@@ -2707,7 +2723,7 @@ msgstr ""
#: frontend/src/components/NoPermission.vue:28
#: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:163
#: frontend/src/pages/Lesson.vue:29
#: frontend/src/pages/Lesson.vue:24
msgid "Login"
msgstr "Anmelden"
@@ -2765,7 +2781,7 @@ msgstr "Als gelesen markieren"
#: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json
#: lms/templates/quiz/quiz.html:59
msgid "Marks"
msgstr "Markierungen"
msgstr ""
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:19
msgid "Marks for question number {0} cannot be greater than the marks allotted for that question."
@@ -2784,10 +2800,10 @@ msgstr "Max. Versuche"
#: frontend/src/pages/QuizForm.vue:57
msgid "Maximun Attempts"
msgstr "Maximale Versuche"
msgstr ""
#. Label of the medium (Select) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:184
#: frontend/src/pages/BatchForm.vue:185
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:309
msgid "Medium"
@@ -2875,7 +2891,7 @@ msgstr ""
#. Label of the member_type (Select) field in DocType 'LMS Enrollment'
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
msgid "Member Type"
msgstr "Mitgliedstyp"
msgstr ""
#. Group in LMS Batch Old's connections
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
@@ -2885,12 +2901,12 @@ msgstr "Mitglieder"
#. Label of the membership (Select) field in DocType 'LMS Batch Old'
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
msgid "Membership"
msgstr "Mitgliedschaft"
msgstr ""
#. Label of the member_username (Data) field in DocType 'LMS Enrollment'
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
msgid "Memeber Username"
msgstr "Benutzername des Mitglieds"
msgstr ""
#. Option for the 'Required Role' (Select) field in DocType 'Cohort Web Page'
#. Label of the mentor (Link) field in DocType 'LMS Course Mentor Mapping'
@@ -2932,7 +2948,7 @@ msgstr ""
#. Group in LMS Course's connections
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Mentors"
msgstr "Mentoren"
msgstr ""
#. Label of the meta_image (Attach Image) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:36 lms/lms/doctype/lms_batch/lms_batch.json
@@ -2947,7 +2963,7 @@ msgstr "Ecktermin"
#: frontend/src/pages/Statistics.vue:71
msgid "Milestones"
msgstr "Meilensteine"
msgstr ""
#. Name of a role
#: frontend/src/pages/ProfileRoles.vue:10
@@ -2965,7 +2981,7 @@ msgstr "Meilensteine"
#: lms/lms/doctype/lms_source/lms_source.json
#: lms/lms/doctype/lms_timetable_template/lms_timetable_template.json
msgid "Moderator"
msgstr "Moderator"
msgstr ""
#: lms/lms/doctype/lms_badge/lms_badge.js:40
msgid "Modified By"
@@ -2973,11 +2989,11 @@ msgstr "Geändert von"
#: lms/lms/api.py:191
msgid "Module Name is incorrect or does not exist."
msgstr "Modulname ist inkorrekt oder existiert nicht."
msgstr ""
#: lms/lms/api.py:187
msgid "Module is incorrect."
msgstr "Modul ist inkorrekt."
msgstr ""
#. Option for the 'Day' (Select) field in DocType 'Evaluator Schedule'
#. Option for the 'Day' (Select) field in DocType 'LMS Certificate Request'
@@ -2993,7 +3009,7 @@ msgstr "Weiter"
#. Label of the multiple (Check) field in DocType 'LMS Question'
#: lms/lms/doctype/lms_question/lms_question.json
msgid "Multiple Correct Answers"
msgstr "Mehrere richtige Antworten"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:4
msgid "My availability"
@@ -3031,22 +3047,22 @@ msgstr ""
#: frontend/src/pages/QuizForm.vue:122
msgid "New Question"
msgstr "Neue Frage"
msgstr ""
#: frontend/src/pages/QuizForm.vue:453 frontend/src/pages/QuizForm.vue:461
#: frontend/src/pages/Quizzes.vue:18
msgid "New Quiz"
msgstr "Neues Quiz"
msgstr ""
#: lms/www/new-sign-up.html:3
msgid "New Sign Up"
msgstr ""
#: lms/lms/utils.py:632
#: lms/lms/utils.py:627
msgid "New comment in batch {0}"
msgstr ""
#: lms/lms/utils.py:625
#: lms/lms/utils.py:620
msgid "New reply on the topic {0} in course {1}"
msgstr ""
@@ -3055,7 +3071,7 @@ msgstr ""
msgid "New {0}"
msgstr "Neu {0}"
#: frontend/src/components/Quiz.vue:209 frontend/src/pages/Lesson.vue:89
#: frontend/src/components/Quiz.vue:209 frontend/src/pages/Lesson.vue:84
msgid "Next"
msgstr "Weiter"
@@ -3065,7 +3081,7 @@ msgstr "Nächste Frage"
#: frontend/src/components/Assessments.vue:63 lms/templates/assessments.html:58
msgid "No Assessments"
msgstr "Keine Prüfungen"
msgstr ""
#: lms/templates/notifications.html:26
msgid "No Notifications"
@@ -3116,6 +3132,10 @@ msgstr "Keine Stellen ausgeschrieben"
msgid "No live classes scheduled"
msgstr "Keine Live-Kurse geplant"
#: frontend/src/pages/Quizzes.vue:56
msgid "No quizzes found"
msgstr ""
#: frontend/src/components/Modals/EvaluationModal.vue:53
msgid "No slots available for this date."
msgstr "Für dieses Datum sind keine Plätze verfügbar."
@@ -3188,7 +3208,7 @@ msgstr "Benachrichtigungen"
msgid "Notify me when available"
msgstr "Benachrichtige mich, wenn verfügbar"
#: frontend/src/pages/BatchForm.vue:161
#: frontend/src/pages/BatchForm.vue:162
msgid "Number of seats available"
msgstr ""
@@ -3224,9 +3244,9 @@ msgstr "Online"
msgid "Only files of type {0} will be accepted."
msgstr "Es werden nur Dateien vom Typ {0} akzeptiert."
#: frontend/src/pages/CourseForm.vue:473 frontend/src/utils/index.js:518
#: frontend/src/pages/CourseForm.vue:494 frontend/src/utils/index.js:518
msgid "Only image file is allowed."
msgstr "Nur Bilddateien erlaubt."
msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Job Opportunity'
#. Option for the 'Membership' (Select) field in DocType 'LMS Batch Old'
@@ -3292,7 +3312,7 @@ msgstr ""
#: frontend/src/pages/JobDetail.vue:76
msgid "Organisation"
msgstr "Organisation"
msgstr ""
#. Label of the organization (Data) field in DocType 'Certification'
#: lms/lms/doctype/certification/certification.json
@@ -3332,14 +3352,14 @@ msgid "Pages"
msgstr "Seiten"
#. Label of the paid_batch (Check) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:204
#: frontend/src/pages/BatchForm.vue:205
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:373
msgid "Paid Batch"
msgstr "Bezahlte Charge"
#. Label of the paid_course (Check) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:205
#: frontend/src/pages/CourseForm.vue:214
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Paid Course"
msgstr "Kostenpflichtiger Kurs"
@@ -3370,7 +3390,7 @@ msgstr "Erfolgreich"
#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz'
#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/QuizForm.vue:71 frontend/src/pages/Quizzes.vue:109
#: frontend/src/pages/QuizForm.vue:71 frontend/src/pages/Quizzes.vue:125
#: lms/lms/doctype/lms_quiz/lms_quiz.json
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
msgid "Passing Percentage"
@@ -3381,13 +3401,13 @@ msgstr "Bestehensquote"
msgid "Password"
msgstr "Passwort"
#: frontend/src/pages/CourseForm.vue:104
#: frontend/src/pages/CourseForm.vue:112
msgid "Paste the youtube link of a short video introducing the course"
msgstr ""
#. Label of the payment (Link) field in DocType 'Batch Student'
#. Label of the payment (Link) field in DocType 'LMS Enrollment'
#: frontend/src/pages/BatchForm.vue:198
#: frontend/src/pages/BatchForm.vue:199
#: lms/lms/doctype/batch_student/batch_student.json
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
msgid "Payment"
@@ -3499,7 +3519,7 @@ msgstr "Bitte überprüfen Sie Ihren Posteingang. Wir haben Ihnen eine E-Mail mi
msgid "Please click on the following button to set your new password"
msgstr "Bitte klicken Sie auf die folgende Schaltfläche, um Ihr neues Passwort festzulegen"
#: lms/lms/doctype/lms_batch/lms_batch.py:229
#: lms/lms/doctype/lms_batch/lms_batch.py:251
msgid "Please enable Zoom Settings to use this feature."
msgstr "Bitte aktivieren Sie die Zoom-Einstellungen, um diese Funktion zu nutzen."
@@ -3520,7 +3540,7 @@ msgstr "Bitte geben Sie die URL zur Aufgabeneinreichung ein."
msgid "Please enter your answer"
msgstr "Bitte geben Sie Ihre Antwort ein"
#: lms/lms/doctype/lms_batch/lms_batch.py:64
#: lms/lms/doctype/lms_batch/lms_batch.py:65
msgid "Please install the Payments app to create a paid batches."
msgstr ""
@@ -3630,17 +3650,17 @@ msgstr ""
msgid "Preview Image"
msgstr "Vorschaubild"
#: frontend/src/pages/CourseForm.vue:102
#: frontend/src/pages/CourseForm.vue:110
msgid "Preview Video"
msgstr "Videovorschau"
#: frontend/src/pages/Lesson.vue:54
#: frontend/src/pages/Lesson.vue:49
msgid "Previous"
msgstr "Vorhergehende"
#. Label of the pricing_tab (Tab Break) field in DocType 'LMS Batch'
#. Label of the pricing_tab (Tab Break) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:199
#: frontend/src/pages/CourseForm.vue:208
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/public/js/common_functions.js:368
@@ -3710,7 +3730,7 @@ msgstr "Auf der Teilnehmerseite veröffentlichen"
#. Label of the published (Check) field in DocType 'LMS Batch'
#. Label of the published (Check) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:108
#: frontend/src/pages/BatchForm.vue:24 frontend/src/pages/CourseForm.vue:162
#: frontend/src/pages/BatchForm.vue:24 frontend/src/pages/CourseForm.vue:171
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/public/js/common_functions.js:266
@@ -3723,7 +3743,7 @@ msgid "Published Courses"
msgstr "Veröffentlichte Kurse"
#. Label of the published_on (Date) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:166
#: frontend/src/pages/CourseForm.vue:175
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Published On"
msgstr "Veröffentlicht am"
@@ -3838,8 +3858,8 @@ msgstr ""
msgid "Quiz will appear at the bottom of the lesson."
msgstr "Das Quiz wird am Ende der Lektion angezeigt."
#: frontend/src/pages/QuizForm.vue:441 frontend/src/pages/Quizzes.vue:120
#: frontend/src/pages/Quizzes.vue:130
#: frontend/src/pages/QuizForm.vue:441 frontend/src/pages/Quizzes.vue:136
#: frontend/src/pages/Quizzes.vue:146
msgid "Quizzes"
msgstr ""
@@ -3921,7 +3941,7 @@ msgstr "Abgelehnt"
msgid "Related Courses"
msgstr "Ähnliche Kurse"
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/CourseForm.vue:91
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/CourseForm.vue:99
msgid "Remove"
msgstr "Entfernen"
@@ -3995,19 +4015,19 @@ msgstr ""
msgid "Route"
msgstr "Pfad"
#: lms/lms/doctype/lms_batch/lms_batch.py:172
#: lms/lms/doctype/lms_batch/lms_batch.py:194
msgid "Row #{0} Date cannot be outside the batch duration."
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:167
#: lms/lms/doctype/lms_batch/lms_batch.py:189
msgid "Row #{0} End time cannot be outside the batch duration."
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:149
#: lms/lms/doctype/lms_batch/lms_batch.py:171
msgid "Row #{0} Start time cannot be greater than or equal to end time."
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:158
#: lms/lms/doctype/lms_batch/lms_batch.py:180
msgid "Row #{0} Start time cannot be outside the batch duration."
msgstr ""
@@ -4031,7 +4051,7 @@ msgstr "Samstag"
#: frontend/src/components/Modals/Event.vue:129
#: frontend/src/components/QuizPlugin.vue:23
#: frontend/src/pages/AssignmentSubmission.vue:7
#: frontend/src/pages/BatchForm.vue:8 frontend/src/pages/CourseForm.vue:12
#: frontend/src/pages/BatchForm.vue:8 frontend/src/pages/CourseForm.vue:20
#: frontend/src/pages/JobCreation.vue:8 frontend/src/pages/LessonForm.vue:10
#: frontend/src/pages/QuizForm.vue:34 frontend/src/pages/QuizSubmission.vue:14
#: lms/public/js/common_functions.js:405
@@ -4080,7 +4100,7 @@ msgid "Search for an icon"
msgstr ""
#. Label of the seat_count (Int) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:158
#: frontend/src/pages/BatchForm.vue:159
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:327
msgid "Seat Count"
@@ -4089,20 +4109,20 @@ msgstr ""
#: frontend/src/components/BatchCard.vue:16
#: frontend/src/components/BatchOverlay.vue:9
msgid "Seat Left"
msgstr "Platz übrig"
msgstr ""
#: frontend/src/components/BatchCard.vue:15
#: frontend/src/components/BatchOverlay.vue:8
msgid "Seats Left"
msgstr "Plätze übrig"
msgstr ""
#: frontend/src/components/Modals/Question.vue:91
msgid "Select a question"
msgstr "Wähle eine Frage"
msgstr ""
#: frontend/src/components/QuizPlugin.vue:17
msgid "Select a quiz"
msgstr "Wähle ein Quiz"
msgstr ""
#: frontend/src/components/Modals/EvaluationModal.vue:32
msgid "Select a slot"
@@ -4124,22 +4144,22 @@ msgid "Set your Password"
msgstr ""
#: frontend/src/components/Modals/Settings.vue:7
#: frontend/src/pages/BatchForm.vue:152 frontend/src/pages/CourseForm.vue:152
#: frontend/src/pages/BatchForm.vue:153 frontend/src/pages/CourseForm.vue:161
#: frontend/src/pages/ProfileRoles.vue:4 frontend/src/pages/QuizForm.vue:78
msgid "Settings"
msgstr "Einstellungen"
#: frontend/src/pages/ProfileAbout.vue:62
msgid "Share on"
msgstr "Teilen auf"
msgstr ""
#. Label of the short_introduction (Small Text) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:30
#: frontend/src/pages/CourseForm.vue:38
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Short Introduction"
msgstr ""
#: frontend/src/pages/BatchForm.vue:93
#: frontend/src/pages/BatchForm.vue:94
msgid "Short description of the batch"
msgstr ""
@@ -4303,7 +4323,7 @@ msgstr "Starten"
#. Label of the start_date (Date) field in DocType 'Education Detail'
#. Label of the start_date (Date) field in DocType 'LMS Batch'
#. Label of the start_date (Date) field in DocType 'LMS Batch Old'
#: frontend/src/pages/BatchForm.vue:116
#: frontend/src/pages/BatchForm.vue:117
#: lms/lms/doctype/education_detail/education_detail.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
@@ -4312,7 +4332,7 @@ msgid "Start Date"
msgstr "Startdatum"
#: frontend/src/components/CourseCardOverlay.vue:63
#: frontend/src/pages/Lesson.vue:25
#: frontend/src/pages/Lesson.vue:21
#: lms/templates/emails/lms_course_interest.html:9
msgid "Start Learning"
msgstr "Mit dem Lernen beginnen"
@@ -4324,7 +4344,7 @@ msgstr "Mit dem Lernen beginnen"
#. Label of the start_time (Time) field in DocType 'LMS Certificate Evaluation'
#. Label of the start_time (Time) field in DocType 'LMS Certificate Request'
#. Label of the start_time (Time) field in DocType 'Scheduled Flow'
#: frontend/src/pages/BatchForm.vue:130
#: frontend/src/pages/BatchForm.vue:131
#: frontend/src/pages/ProfileEvaluator.vue:15
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -4430,7 +4450,7 @@ msgstr ""
msgid "Student Reviews"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:46
#: lms/lms/doctype/lms_batch/lms_batch.py:47
msgid "Student {0} has already been added to this batch."
msgstr ""
@@ -4496,13 +4516,14 @@ msgstr ""
#: frontend/src/components/BatchOverlay.vue:135
#: frontend/src/components/BatchStudents.vue:157
#: frontend/src/components/CourseCardOverlay.vue:161
#: frontend/src/components/Modals/AnnouncementModal.vue:98
#: frontend/src/components/Modals/AssessmentModal.vue:73
#: frontend/src/components/Modals/Event.vue:255
#: frontend/src/components/Modals/Event.vue:310
#: frontend/src/components/Modals/Question.vue:261
#: frontend/src/components/Modals/Question.vue:312
#: frontend/src/pages/QuizForm.vue:342 frontend/src/pages/QuizForm.vue:361
#: frontend/src/pages/QuizForm.vue:430
#: frontend/src/pages/CourseForm.vue:457 frontend/src/pages/QuizForm.vue:342
#: frontend/src/pages/QuizForm.vue:361 frontend/src/pages/QuizForm.vue:430
msgid "Success"
msgstr "Erfolg"
@@ -4569,7 +4590,7 @@ msgid "System Manager"
msgstr "System-Manager"
#. Label of the tags (Data) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:112
#: frontend/src/pages/CourseForm.vue:120
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Tags"
msgstr "Schlagworte"
@@ -4661,7 +4682,7 @@ msgstr ""
msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:140
#: lms/lms/doctype/lms_batch/lms_batch.py:141
msgid "There are no seats available in this batch."
msgstr ""
@@ -4692,7 +4713,7 @@ msgstr "Dieses Zertifikat läuft nicht ab"
msgid "This course has:"
msgstr ""
#: lms/lms/utils.py:1572
#: lms/lms/utils.py:1570
msgid "This course is free."
msgstr "Dieser Kurs ist kostenlos."
@@ -4761,7 +4782,7 @@ msgstr "Stundenplan-Vorlage"
#. Label of the timezone (Data) field in DocType 'LMS Certificate Request'
#. Label of the timezone (Data) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/LiveClassModal.vue:44
#: frontend/src/pages/BatchForm.vue:142
#: frontend/src/pages/BatchForm.vue:143
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -4790,9 +4811,9 @@ msgstr ""
#. Label of the title (Data) field in DocType 'Work Experience'
#: frontend/src/components/Modals/DiscussionModal.vue:18
#: frontend/src/components/Modals/LiveClassModal.vue:23
#: frontend/src/pages/BatchForm.vue:18 frontend/src/pages/CourseForm.vue:24
#: frontend/src/pages/BatchForm.vue:18 frontend/src/pages/CourseForm.vue:32
#: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/QuizForm.vue:48
#: frontend/src/pages/Quizzes.vue:98 lms/lms/doctype/cohort/cohort.json
#: frontend/src/pages/Quizzes.vue:114 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json
#: lms/lms/doctype/course_chapter/course_chapter.json
@@ -4827,7 +4848,7 @@ msgstr "Bis-Datum"
msgid "To Date is mandatory in Work Experience."
msgstr ""
#: lms/lms/utils.py:1583
#: lms/lms/utils.py:1581
msgid "To join this batch, please contact the Administrator."
msgstr "Um dieser Gruppe beizutreten, wenden Sie sich bitte an den Administrator."
@@ -4844,7 +4865,7 @@ msgid "Total"
msgstr "Summe"
#. Label of the total_marks (Int) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:66 frontend/src/pages/Quizzes.vue:103
#: frontend/src/pages/QuizForm.vue:66 frontend/src/pages/Quizzes.vue:119
#: lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Total Marks"
msgstr ""
@@ -4944,7 +4965,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Cohort'
#. Label of the upcoming (Check) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:175 lms/lms/doctype/cohort/cohort.json
#: frontend/src/pages/CourseForm.vue:184 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Upcoming"
msgstr ""
@@ -4968,7 +4989,7 @@ msgstr "Aktualisieren"
msgid "Update Password"
msgstr "Passwort ändern"
#: frontend/src/pages/BatchForm.vue:51 frontend/src/pages/CourseForm.vue:72
#: frontend/src/pages/BatchForm.vue:51 frontend/src/pages/CourseForm.vue:80
msgid "Upload"
msgstr "Hochladen"
@@ -5237,6 +5258,10 @@ msgstr ""
msgid "You have been enrolled in this course"
msgstr ""
#: frontend/src/pages/Quizzes.vue:60
msgid "You have not created any quizzes yet. To create a new quiz, click on the \"New Quiz\" button above."
msgstr ""
#: lms/lms/widgets/NoPreviewModal.html:12 lms/public/js/common_functions.js:126
msgid "You have opted to be notified for this course. You will receive an email when the course becomes available."
msgstr "Sie haben sich für eine Benachrichtigung zu diesem Kurs entschieden. Sie erhalten eine E-Mail, sobald der Kurs verfügbar ist."
@@ -5315,7 +5340,7 @@ msgstr "Zoom-Einstellungen"
msgid "cancel your application"
msgstr "stornieren Sie Ihre Bewerbung"
#: frontend/src/pages/Lesson.vue:175
#: frontend/src/pages/Lesson.vue:170
msgid "completed"
msgstr "abgeschlossen"
@@ -5363,7 +5388,7 @@ msgstr ""
msgid "you can"
msgstr "Sie können"
#: lms/lms/api.py:732 lms/lms/api.py:740
#: lms/lms/api.py:740 lms/lms/api.py:748
msgid "{0} Settings not found"
msgstr ""
@@ -5399,7 +5424,7 @@ msgstr ""
msgid "{0} is your evaluator"
msgstr ""
#: lms/lms/utils.py:709
#: lms/lms/utils.py:704
msgid "{0} mentioned you in a comment"
msgstr "{0} hat Sie in einem Kommentar erwähnt"
@@ -5407,7 +5432,7 @@ msgstr "{0} hat Sie in einem Kommentar erwähnt"
msgid "{0} mentioned you in a comment in your batch."
msgstr ""
#: lms/lms/utils.py:662 lms/lms/utils.py:668
#: lms/lms/utils.py:657 lms/lms/utils.py:663
msgid "{0} mentioned you in a comment in {1}"
msgstr "{0} erwähnte Sie in einem Kommentar in {1}"

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2024-11-01 16:04+0000\n"
"PO-Revision-Date: 2024-11-05 14:34\n"
"POT-Creation-Date: 2024-11-08 16:04+0000\n"
"PO-Revision-Date: 2024-11-11 15:23\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Esperanto\n"
"MIME-Version: 1.0\n"
@@ -62,7 +62,7 @@ msgstr "crwdns149196:0crwdne149196:0"
msgid "<span style=\"font-size: 18px;\"><b>Statistics</b></span>"
msgstr "crwdns149198:0crwdne149198:0"
#: frontend/src/pages/CourseForm.vue:32
#: frontend/src/pages/CourseForm.vue:40
msgid "A one line introduction to the course that appears on the course card"
msgstr "crwdns151462:0crwdne151462:0"
@@ -228,7 +228,7 @@ msgstr "crwdns149266:0crwdne149266:0"
#. Label of the amount (Currency) field in DocType 'Web Form'
#. Label of the amount (Currency) field in DocType 'LMS Batch'
#. Label of the amount (Currency) field in DocType 'LMS Payment'
#: frontend/src/pages/BatchForm.vue:208 lms/fixtures/custom_field.json
#: frontend/src/pages/BatchForm.vue:209 lms/fixtures/custom_field.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_payment/lms_payment.json
#: lms/public/js/common_functions.js:379
@@ -262,6 +262,10 @@ msgstr "crwdns149276:0crwdne149276:0"
msgid "Announcement"
msgstr "crwdns149278:0crwdne149278:0"
#: frontend/src/components/Modals/AnnouncementModal.vue:99
msgid "Announcement has been sent successfully"
msgstr "crwdns151584:0crwdne151584:0"
#. Label of the answer (Text Editor) field in DocType 'LMS Assignment'
#. Label of the answer (Text Editor) field in DocType 'LMS Assignment
#. Submission'
@@ -272,7 +276,7 @@ msgstr "crwdns149278:0crwdne149278:0"
msgid "Answer"
msgstr "crwdns149280:0crwdne149280:0"
#: frontend/src/pages/CourseForm.vue:76 frontend/src/pages/CourseForm.vue:94
#: frontend/src/pages/CourseForm.vue:84 frontend/src/pages/CourseForm.vue:102
msgid "Appears on the course card in the course list"
msgstr "crwdns151464:0crwdne151464:0"
@@ -346,7 +350,7 @@ msgstr "crwdns149304:0crwdne149304:0"
msgid "Assessment added successfully"
msgstr "crwdns149306:0crwdne149306:0"
#: lms/lms/doctype/lms_batch/lms_batch.py:74
#: lms/lms/doctype/lms_batch/lms_batch.py:75
msgid "Assessment {0} has already been added to this batch."
msgstr "crwdns149308:0{0}crwdne149308:0"
@@ -426,7 +430,7 @@ msgstr "crwdns149334:0crwdne149334:0"
msgid "Average Rating"
msgstr "crwdns149336:0crwdne149336:0"
#: frontend/src/pages/Lesson.vue:101
#: frontend/src/pages/Lesson.vue:96
msgid "Back to Course"
msgstr "crwdns149338:0crwdne149338:0"
@@ -478,7 +482,7 @@ msgid "Batch Description"
msgstr "crwdns149354:0crwdne149354:0"
#. Label of the batch_details (Text Editor) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:97 lms/lms/doctype/lms_batch/lms_batch.json
#: frontend/src/pages/BatchForm.vue:98 lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:349
#: lms/templates/emails/batch_confirmation.html:30
msgid "Batch Details"
@@ -539,7 +543,7 @@ msgstr "crwdns149372:0crwdne149372:0"
msgid "Batch Updated"
msgstr "crwdns149374:0crwdne149374:0"
#: lms/lms/doctype/lms_batch/lms_batch.py:39
#: lms/lms/doctype/lms_batch/lms_batch.py:40
msgid "Batch end date cannot be before the batch start date"
msgstr "crwdns149376:0crwdne149376:0"
@@ -645,8 +649,8 @@ msgstr "crwdns149414:0crwdne149414:0"
#. Label of the category (Link) field in DocType 'LMS Batch'
#. Label of the category (Data) field in DocType 'LMS Category'
#. Label of the category (Link) field in DocType 'LMS Course'
#: frontend/src/pages/BatchForm.vue:189 frontend/src/pages/Batches.vue:16
#: frontend/src/pages/CourseForm.vue:139 frontend/src/pages/Courses.vue:17
#: frontend/src/pages/BatchForm.vue:190 frontend/src/pages/Batches.vue:16
#: frontend/src/pages/CourseForm.vue:147 frontend/src/pages/Courses.vue:17
#: frontend/src/pages/JobDetail.vue:102
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_category/lms_category.json
@@ -947,7 +951,7 @@ msgstr "crwdns149518:0crwdne149518:0"
msgid "Completed"
msgstr "crwdns149520:0crwdne149520:0"
#: frontend/src/pages/CourseForm.vue:192
#: frontend/src/pages/CourseForm.vue:201
msgid "Completion Certificate"
msgstr "crwdns149522:0crwdne149522:0"
@@ -1118,7 +1122,7 @@ msgstr "crwdns149564:0crwdne149564:0"
msgid "Course Data"
msgstr "crwdns149566:0crwdne149566:0"
#: frontend/src/pages/CourseForm.vue:41
#: frontend/src/pages/CourseForm.vue:49
msgid "Course Description"
msgstr "crwdns149568:0crwdne149568:0"
@@ -1127,7 +1131,7 @@ msgstr "crwdns149568:0crwdne149568:0"
msgid "Course Evaluator"
msgstr "crwdns149570:0crwdne149570:0"
#: frontend/src/pages/CourseForm.vue:54
#: frontend/src/pages/CourseForm.vue:62
msgid "Course Image"
msgstr "crwdns149572:0crwdne149572:0"
@@ -1150,7 +1154,7 @@ msgid "Course Name"
msgstr "crwdns149580:0crwdne149580:0"
#. Label of the course_price (Currency) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:210
#: frontend/src/pages/CourseForm.vue:219
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Course Price"
msgstr "crwdns149582:0crwdne149582:0"
@@ -1179,15 +1183,15 @@ msgstr "crwdns149588:0crwdne149588:0"
msgid "Course Title"
msgstr "crwdns149590:0crwdne149590:0"
#: lms/lms/doctype/lms_batch/lms_batch.py:318
#: lms/lms/doctype/lms_batch/lms_batch.py:340
msgid "Course already added to the batch."
msgstr "crwdns149592:0crwdne149592:0"
#: frontend/src/pages/CourseForm.vue:457
msgid "Course price and currency are mandatory for paid courses"
msgstr "crwdns149594:0crwdne149594:0"
msgid "Course deleted successfully"
msgstr "crwdns151586:0crwdne151586:0"
#: lms/lms/doctype/lms_batch/lms_batch.py:57
#: lms/lms/doctype/lms_batch/lms_batch.py:58
msgid "Course {0} has already been added to this batch."
msgstr "crwdns149596:0{0}crwdne149596:0"
@@ -1253,7 +1257,7 @@ msgstr "crwdns149616:0crwdne149616: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/pages/BatchForm.vue:216 frontend/src/pages/CourseForm.vue:217
#: frontend/src/pages/BatchForm.vue:217 frontend/src/pages/CourseForm.vue:226
#: lms/fixtures/custom_field.json lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_payment/lms_payment.json
@@ -1311,7 +1315,7 @@ msgstr "crwdns149632:0crwdne149632:0"
#. Label of the section_break_glxh (Section Break) field in DocType 'LMS Live
#. Class'
#: frontend/src/pages/BatchForm.vue:110
#: frontend/src/pages/BatchForm.vue:111
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Date and Time"
msgstr "crwdns149634:0crwdne149634:0"
@@ -1347,13 +1351,22 @@ msgid "Degree Type"
msgstr "crwdns149644:0crwdne149644:0"
#: frontend/src/components/CourseOutline.vue:212
#: frontend/src/pages/CourseForm.vue:15 frontend/src/pages/CourseForm.vue:470
msgid "Delete"
msgstr "crwdns149646:0crwdne149646:0"
#: frontend/src/pages/CourseForm.vue:464
msgid "Delete Course"
msgstr "crwdns151588:0crwdne151588:0"
#: frontend/src/components/CourseOutline.vue:208
msgid "Delete Lesson"
msgstr "crwdns149648:0crwdne149648:0"
#: frontend/src/pages/CourseForm.vue:465
msgid "Deleting the course will also delete all its chapters and lessons. Are you sure you want to delete this course?"
msgstr "crwdns151590:0crwdne151590:0"
#. Label of the description (Text Editor) field in DocType 'Job Opportunity'
#. Label of the description (Small Text) field in DocType 'Certification'
#. Label of the description (Markdown Editor) field in DocType 'Cohort'
@@ -1367,7 +1380,7 @@ msgstr "crwdns149648:0crwdne149648:0"
#. Label of the description (Text) field in DocType 'LMS Live Class'
#. Label of the description (Small Text) field in DocType 'Work Experience'
#: frontend/src/components/Modals/LiveClassModal.vue:73
#: frontend/src/pages/BatchForm.vue:90 frontend/src/pages/JobCreation.vue:43
#: frontend/src/pages/BatchForm.vue:91 frontend/src/pages/JobCreation.vue:43
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/cohort/cohort.json
@@ -1388,12 +1401,12 @@ msgid "Desk"
msgstr "crwdns149652:0crwdne149652:0"
#: frontend/src/components/Modals/DiscussionModal.vue:22
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:20
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:28
#: frontend/src/pages/QuizForm.vue:42
msgid "Details"
msgstr "crwdns149654:0crwdne149654:0"
#: frontend/src/pages/CourseForm.vue:187
#: frontend/src/pages/CourseForm.vue:196
msgid "Disable Self Enrollment"
msgstr "crwdns149656:0crwdne149656:0"
@@ -1469,7 +1482,7 @@ msgstr "crwdns149680:0crwdne149680:0"
#: frontend/src/components/BatchOverlay.vue:93
#: frontend/src/components/CourseCardOverlay.vue:86
#: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/pages/JobDetail.vue:31 frontend/src/pages/Lesson.vue:70
#: frontend/src/pages/JobDetail.vue:31 frontend/src/pages/Lesson.vue:65
#: frontend/src/pages/Profile.vue:32
msgid "Edit"
msgstr "crwdns149682:0crwdne149682:0"
@@ -1551,7 +1564,7 @@ msgstr "crwdns149714:0crwdne149714:0"
#. Label of the end_date (Date) field in DocType 'Cohort'
#. Label of the end_date (Date) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:122 lms/lms/doctype/cohort/cohort.json
#: frontend/src/pages/BatchForm.vue:123 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:282
msgid "End Date"
@@ -1569,7 +1582,7 @@ msgstr "crwdns149718:0crwdne149718:0"
#. Label of the end_time (Time) field in DocType 'LMS Certificate Evaluation'
#. Label of the end_time (Time) field in DocType 'LMS Certificate Request'
#. Label of the end_time (Time) field in DocType 'Scheduled Flow'
#: frontend/src/pages/BatchForm.vue:136
#: frontend/src/pages/BatchForm.vue:137
#: frontend/src/pages/ProfileEvaluator.vue:18
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1596,7 +1609,7 @@ msgstr "crwdns149724:0crwdne149724:0"
msgid "Enrolled successfully"
msgstr "crwdns149726:0crwdne149726:0"
#: lms/lms/doctype/lms_batch/lms_batch.py:97
#: lms/lms/doctype/lms_batch/lms_batch.py:98
msgid "Enrollment Confirmation for the Next Training Batch"
msgstr "crwdns149728:0crwdne149728:0"
@@ -1605,7 +1618,7 @@ msgstr "crwdns149728:0crwdne149728:0"
msgid "Enrollment Count"
msgstr "crwdns149730:0crwdne149730:0"
#: lms/lms/utils.py:1692
#: lms/lms/utils.py:1690
msgid "Enrollment Failed"
msgstr "crwdns149732:0crwdne149732:0"
@@ -1633,6 +1646,7 @@ msgstr "crwdns149740:0crwdne149740:0"
msgid "Enter the correct answer"
msgstr "crwdns149742:0crwdne149742:0"
#: frontend/src/components/Modals/AnnouncementModal.vue:104
#: frontend/src/components/Modals/Question.vue:246
#: frontend/src/components/Modals/Question.vue:266
#: frontend/src/components/Modals/Question.vue:323
@@ -1655,7 +1669,7 @@ msgid "Evaluation Details"
msgstr "crwdns149748:0crwdne149748:0"
#. Label of the evaluation_end_date (Date) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:165
#: frontend/src/pages/BatchForm.vue:166
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:333
msgid "Evaluation End Date"
@@ -1666,7 +1680,7 @@ msgstr "crwdns149750:0crwdne149750:0"
msgid "Evaluation Request"
msgstr "crwdns149752:0crwdne149752:0"
#: lms/lms/doctype/lms_batch/lms_batch.py:81
#: lms/lms/doctype/lms_batch/lms_batch.py:82
msgid "Evaluation end date cannot be less than the batch end date."
msgstr "crwdns149754:0crwdne149754:0"
@@ -1713,11 +1727,13 @@ msgid "Evaluator is Unavailable"
msgstr "crwdns149764:0crwdne149764:0"
#. Label of the event (Select) field in DocType 'LMS Badge'
#. Label of the event (Link) field in DocType 'LMS Live Class'
#: lms/lms/doctype/lms_badge/lms_badge.json
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Event"
msgstr "crwdns149766:0crwdne149766:0"
#: frontend/src/pages/BatchForm.vue:144
#: frontend/src/pages/BatchForm.vue:145
msgid "Example: IST (+5:30)"
msgstr "crwdns151472:0crwdne151472:0"
@@ -1791,7 +1807,7 @@ msgstr "crwdns149788:0crwdne149788:0"
#. Label of the featured (Check) field in DocType 'LMS Course'
#: frontend/src/components/CourseCard.vue:16
#: frontend/src/pages/CourseForm.vue:180
#: frontend/src/pages/CourseForm.vue:189
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Featured"
msgstr "crwdns149790:0crwdne149790:0"
@@ -2078,7 +2094,7 @@ msgstr "crwdns149904:0crwdne149904:0"
msgid "If you set an amount here, then the USD equivalent setting will not get applied."
msgstr "crwdns149906:0crwdne149906:0"
#: lms/lms/doctype/lms_quiz/lms_quiz.py:62
#: lms/lms/doctype/lms_quiz/lms_quiz.py:63
msgid "If you want open ended questions then make sure each question in the quiz is of open ended type."
msgstr "crwdns149908:0crwdne149908:0"
@@ -2104,7 +2120,7 @@ msgstr "crwdns149910:0crwdne149910:0"
msgid "Image search powered by"
msgstr "crwdns149912:0crwdne149912:0"
#: lms/lms/doctype/lms_quiz/lms_quiz.py:221
#: lms/lms/doctype/lms_quiz/lms_quiz.py:222
msgid "Image: Corrupted Data Stream"
msgstr "crwdns149914:0crwdne149914:0"
@@ -2187,14 +2203,14 @@ msgstr "crwdns149938:0crwdne149938:0"
#. Label of the instructor_notes (Markdown Editor) field in DocType 'Course
#. Lesson'
#: frontend/src/pages/Lesson.vue:130 frontend/src/pages/LessonForm.vue:33
#: frontend/src/pages/Lesson.vue:125 frontend/src/pages/LessonForm.vue:33
#: lms/lms/doctype/course_lesson/course_lesson.json
msgid "Instructor Notes"
msgstr "crwdns149940:0crwdne149940:0"
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Batch'
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Course'
#: frontend/src/pages/BatchForm.vue:85 frontend/src/pages/CourseForm.vue:146
#: frontend/src/pages/BatchForm.vue:85 frontend/src/pages/CourseForm.vue:154
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Instructors"
@@ -2353,7 +2369,7 @@ msgstr "crwdns149998:0crwdne149998:0"
msgid "Join URL"
msgstr "crwdns150000:0crwdne150000:0"
#: frontend/src/pages/CourseForm.vue:128
#: frontend/src/pages/CourseForm.vue:136
msgid "Keywords for the course"
msgstr "crwdns151476:0crwdne151476:0"
@@ -2657,7 +2673,7 @@ msgstr "crwdns150100:0crwdne150100:0"
msgid "Links"
msgstr "crwdns150102:0crwdne150102:0"
#: frontend/src/pages/Quizzes.vue:131
#: frontend/src/pages/Quizzes.vue:147
msgid "List of quizzes"
msgstr "crwdns150104:0crwdne150104:0"
@@ -2707,7 +2723,7 @@ msgstr "crwdns150120:0crwdne150120:0"
#: frontend/src/components/NoPermission.vue:28
#: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:163
#: frontend/src/pages/Lesson.vue:29
#: frontend/src/pages/Lesson.vue:24
msgid "Login"
msgstr "crwdns150122:0crwdne150122:0"
@@ -2787,7 +2803,7 @@ msgid "Maximun Attempts"
msgstr "crwdns150152:0crwdne150152:0"
#. Label of the medium (Select) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:184
#: frontend/src/pages/BatchForm.vue:185
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:309
msgid "Medium"
@@ -3042,11 +3058,11 @@ msgstr "crwdns150228:0crwdne150228:0"
msgid "New Sign Up"
msgstr "crwdns150230:0crwdne150230:0"
#: lms/lms/utils.py:632
#: lms/lms/utils.py:627
msgid "New comment in batch {0}"
msgstr "crwdns150232:0{0}crwdne150232:0"
#: lms/lms/utils.py:625
#: lms/lms/utils.py:620
msgid "New reply on the topic {0} in course {1}"
msgstr "crwdns150234:0{0}crwdnd150234:0{1}crwdne150234:0"
@@ -3055,7 +3071,7 @@ msgstr "crwdns150234:0{0}crwdnd150234:0{1}crwdne150234:0"
msgid "New {0}"
msgstr "crwdns150236:0{0}crwdne150236:0"
#: frontend/src/components/Quiz.vue:209 frontend/src/pages/Lesson.vue:89
#: frontend/src/components/Quiz.vue:209 frontend/src/pages/Lesson.vue:84
msgid "Next"
msgstr "crwdns150238:0crwdne150238:0"
@@ -3116,6 +3132,10 @@ msgstr "crwdns150260:0crwdne150260:0"
msgid "No live classes scheduled"
msgstr "crwdns150262:0crwdne150262:0"
#: frontend/src/pages/Quizzes.vue:56
msgid "No quizzes found"
msgstr "crwdns151592:0crwdne151592:0"
#: frontend/src/components/Modals/EvaluationModal.vue:53
msgid "No slots available for this date."
msgstr "crwdns150264:0crwdne150264:0"
@@ -3188,7 +3208,7 @@ msgstr "crwdns150292:0crwdne150292:0"
msgid "Notify me when available"
msgstr "crwdns150294:0crwdne150294:0"
#: frontend/src/pages/BatchForm.vue:161
#: frontend/src/pages/BatchForm.vue:162
msgid "Number of seats available"
msgstr "crwdns151486:0crwdne151486:0"
@@ -3224,7 +3244,7 @@ msgstr "crwdns150306:0crwdne150306:0"
msgid "Only files of type {0} will be accepted."
msgstr "crwdns150308:0{0}crwdne150308:0"
#: frontend/src/pages/CourseForm.vue:473 frontend/src/utils/index.js:518
#: frontend/src/pages/CourseForm.vue:494 frontend/src/utils/index.js:518
msgid "Only image file is allowed."
msgstr "crwdns150310:0crwdne150310:0"
@@ -3332,14 +3352,14 @@ msgid "Pages"
msgstr "crwdns150350:0crwdne150350:0"
#. Label of the paid_batch (Check) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:204
#: frontend/src/pages/BatchForm.vue:205
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:373
msgid "Paid Batch"
msgstr "crwdns150352:0crwdne150352:0"
#. Label of the paid_course (Check) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:205
#: frontend/src/pages/CourseForm.vue:214
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Paid Course"
msgstr "crwdns150354:0crwdne150354:0"
@@ -3370,7 +3390,7 @@ msgstr "crwdns150362:0crwdne150362:0"
#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz'
#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/QuizForm.vue:71 frontend/src/pages/Quizzes.vue:109
#: frontend/src/pages/QuizForm.vue:71 frontend/src/pages/Quizzes.vue:125
#: lms/lms/doctype/lms_quiz/lms_quiz.json
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
msgid "Passing Percentage"
@@ -3381,13 +3401,13 @@ msgstr "crwdns150364:0crwdne150364:0"
msgid "Password"
msgstr "crwdns150366:0crwdne150366:0"
#: frontend/src/pages/CourseForm.vue:104
#: frontend/src/pages/CourseForm.vue:112
msgid "Paste the youtube link of a short video introducing the course"
msgstr "crwdns151488:0crwdne151488:0"
#. Label of the payment (Link) field in DocType 'Batch Student'
#. Label of the payment (Link) field in DocType 'LMS Enrollment'
#: frontend/src/pages/BatchForm.vue:198
#: frontend/src/pages/BatchForm.vue:199
#: lms/lms/doctype/batch_student/batch_student.json
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
msgid "Payment"
@@ -3499,7 +3519,7 @@ msgstr "crwdns150404:0crwdne150404:0"
msgid "Please click on the following button to set your new password"
msgstr "crwdns150406:0crwdne150406:0"
#: lms/lms/doctype/lms_batch/lms_batch.py:229
#: lms/lms/doctype/lms_batch/lms_batch.py:251
msgid "Please enable Zoom Settings to use this feature."
msgstr "crwdns150408:0crwdne150408:0"
@@ -3520,7 +3540,7 @@ msgstr "crwdns150414:0crwdne150414:0"
msgid "Please enter your answer"
msgstr "crwdns150416:0crwdne150416:0"
#: lms/lms/doctype/lms_batch/lms_batch.py:64
#: lms/lms/doctype/lms_batch/lms_batch.py:65
msgid "Please install the Payments app to create a paid batches."
msgstr "crwdns150418:0crwdne150418:0"
@@ -3630,17 +3650,17 @@ msgstr "crwdns150462:0crwdne150462:0"
msgid "Preview Image"
msgstr "crwdns150464:0crwdne150464:0"
#: frontend/src/pages/CourseForm.vue:102
#: frontend/src/pages/CourseForm.vue:110
msgid "Preview Video"
msgstr "crwdns150466:0crwdne150466:0"
#: frontend/src/pages/Lesson.vue:54
#: frontend/src/pages/Lesson.vue:49
msgid "Previous"
msgstr "crwdns150468:0crwdne150468:0"
#. Label of the pricing_tab (Tab Break) field in DocType 'LMS Batch'
#. Label of the pricing_tab (Tab Break) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:199
#: frontend/src/pages/CourseForm.vue:208
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/public/js/common_functions.js:368
@@ -3710,7 +3730,7 @@ msgstr "crwdns150494:0crwdne150494:0"
#. Label of the published (Check) field in DocType 'LMS Batch'
#. Label of the published (Check) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:108
#: frontend/src/pages/BatchForm.vue:24 frontend/src/pages/CourseForm.vue:162
#: frontend/src/pages/BatchForm.vue:24 frontend/src/pages/CourseForm.vue:171
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/public/js/common_functions.js:266
@@ -3723,7 +3743,7 @@ msgid "Published Courses"
msgstr "crwdns150498:0crwdne150498:0"
#. Label of the published_on (Date) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:166
#: frontend/src/pages/CourseForm.vue:175
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Published On"
msgstr "crwdns150500:0crwdne150500:0"
@@ -3838,8 +3858,8 @@ msgstr "crwdns150538:0crwdne150538:0"
msgid "Quiz will appear at the bottom of the lesson."
msgstr "crwdns150540:0crwdne150540:0"
#: frontend/src/pages/QuizForm.vue:441 frontend/src/pages/Quizzes.vue:120
#: frontend/src/pages/Quizzes.vue:130
#: frontend/src/pages/QuizForm.vue:441 frontend/src/pages/Quizzes.vue:136
#: frontend/src/pages/Quizzes.vue:146
msgid "Quizzes"
msgstr "crwdns150542:0crwdne150542:0"
@@ -3921,7 +3941,7 @@ msgstr "crwdns150566:0crwdne150566:0"
msgid "Related Courses"
msgstr "crwdns150568:0crwdne150568:0"
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/CourseForm.vue:91
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/CourseForm.vue:99
msgid "Remove"
msgstr "crwdns151490:0crwdne151490:0"
@@ -3995,19 +4015,19 @@ msgstr "crwdns150594:0crwdne150594:0"
msgid "Route"
msgstr "crwdns150596:0crwdne150596:0"
#: lms/lms/doctype/lms_batch/lms_batch.py:172
#: lms/lms/doctype/lms_batch/lms_batch.py:194
msgid "Row #{0} Date cannot be outside the batch duration."
msgstr "crwdns150598:0#{0}crwdne150598:0"
#: lms/lms/doctype/lms_batch/lms_batch.py:167
#: lms/lms/doctype/lms_batch/lms_batch.py:189
msgid "Row #{0} End time cannot be outside the batch duration."
msgstr "crwdns150600:0#{0}crwdne150600:0"
#: lms/lms/doctype/lms_batch/lms_batch.py:149
#: lms/lms/doctype/lms_batch/lms_batch.py:171
msgid "Row #{0} Start time cannot be greater than or equal to end time."
msgstr "crwdns150602:0#{0}crwdne150602:0"
#: lms/lms/doctype/lms_batch/lms_batch.py:158
#: lms/lms/doctype/lms_batch/lms_batch.py:180
msgid "Row #{0} Start time cannot be outside the batch duration."
msgstr "crwdns150604:0#{0}crwdne150604:0"
@@ -4031,7 +4051,7 @@ msgstr "crwdns150610:0crwdne150610:0"
#: frontend/src/components/Modals/Event.vue:129
#: frontend/src/components/QuizPlugin.vue:23
#: frontend/src/pages/AssignmentSubmission.vue:7
#: frontend/src/pages/BatchForm.vue:8 frontend/src/pages/CourseForm.vue:12
#: frontend/src/pages/BatchForm.vue:8 frontend/src/pages/CourseForm.vue:20
#: frontend/src/pages/JobCreation.vue:8 frontend/src/pages/LessonForm.vue:10
#: frontend/src/pages/QuizForm.vue:34 frontend/src/pages/QuizSubmission.vue:14
#: lms/public/js/common_functions.js:405
@@ -4080,7 +4100,7 @@ msgid "Search for an icon"
msgstr "crwdns150628:0crwdne150628:0"
#. Label of the seat_count (Int) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:158
#: frontend/src/pages/BatchForm.vue:159
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:327
msgid "Seat Count"
@@ -4124,7 +4144,7 @@ msgid "Set your Password"
msgstr "crwdns150646:0crwdne150646:0"
#: frontend/src/components/Modals/Settings.vue:7
#: frontend/src/pages/BatchForm.vue:152 frontend/src/pages/CourseForm.vue:152
#: frontend/src/pages/BatchForm.vue:153 frontend/src/pages/CourseForm.vue:161
#: frontend/src/pages/ProfileRoles.vue:4 frontend/src/pages/QuizForm.vue:78
msgid "Settings"
msgstr "crwdns150648:0crwdne150648:0"
@@ -4134,12 +4154,12 @@ msgid "Share on"
msgstr "crwdns150650:0crwdne150650:0"
#. Label of the short_introduction (Small Text) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:30
#: frontend/src/pages/CourseForm.vue:38
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Short Introduction"
msgstr "crwdns150652:0crwdne150652:0"
#: frontend/src/pages/BatchForm.vue:93
#: frontend/src/pages/BatchForm.vue:94
msgid "Short description of the batch"
msgstr "crwdns151492:0crwdne151492:0"
@@ -4303,7 +4323,7 @@ msgstr "crwdns150712:0crwdne150712:0"
#. Label of the start_date (Date) field in DocType 'Education Detail'
#. Label of the start_date (Date) field in DocType 'LMS Batch'
#. Label of the start_date (Date) field in DocType 'LMS Batch Old'
#: frontend/src/pages/BatchForm.vue:116
#: frontend/src/pages/BatchForm.vue:117
#: lms/lms/doctype/education_detail/education_detail.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
@@ -4312,7 +4332,7 @@ msgid "Start Date"
msgstr "crwdns150714:0crwdne150714:0"
#: frontend/src/components/CourseCardOverlay.vue:63
#: frontend/src/pages/Lesson.vue:25
#: frontend/src/pages/Lesson.vue:21
#: lms/templates/emails/lms_course_interest.html:9
msgid "Start Learning"
msgstr "crwdns150716:0crwdne150716:0"
@@ -4324,7 +4344,7 @@ msgstr "crwdns150716:0crwdne150716:0"
#. Label of the start_time (Time) field in DocType 'LMS Certificate Evaluation'
#. Label of the start_time (Time) field in DocType 'LMS Certificate Request'
#. Label of the start_time (Time) field in DocType 'Scheduled Flow'
#: frontend/src/pages/BatchForm.vue:130
#: frontend/src/pages/BatchForm.vue:131
#: frontend/src/pages/ProfileEvaluator.vue:15
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -4430,7 +4450,7 @@ msgstr "crwdns150742:0crwdne150742:0"
msgid "Student Reviews"
msgstr "crwdns150744:0crwdne150744:0"
#: lms/lms/doctype/lms_batch/lms_batch.py:46
#: lms/lms/doctype/lms_batch/lms_batch.py:47
msgid "Student {0} has already been added to this batch."
msgstr "crwdns150746:0{0}crwdne150746:0"
@@ -4496,13 +4516,14 @@ msgstr "crwdns150766:0{0}crwdne150766:0"
#: frontend/src/components/BatchOverlay.vue:135
#: frontend/src/components/BatchStudents.vue:157
#: frontend/src/components/CourseCardOverlay.vue:161
#: frontend/src/components/Modals/AnnouncementModal.vue:98
#: frontend/src/components/Modals/AssessmentModal.vue:73
#: frontend/src/components/Modals/Event.vue:255
#: frontend/src/components/Modals/Event.vue:310
#: frontend/src/components/Modals/Question.vue:261
#: frontend/src/components/Modals/Question.vue:312
#: frontend/src/pages/QuizForm.vue:342 frontend/src/pages/QuizForm.vue:361
#: frontend/src/pages/QuizForm.vue:430
#: frontend/src/pages/CourseForm.vue:457 frontend/src/pages/QuizForm.vue:342
#: frontend/src/pages/QuizForm.vue:361 frontend/src/pages/QuizForm.vue:430
msgid "Success"
msgstr "crwdns150768:0crwdne150768:0"
@@ -4569,7 +4590,7 @@ msgid "System Manager"
msgstr "crwdns150774:0crwdne150774:0"
#. Label of the tags (Data) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:112
#: frontend/src/pages/CourseForm.vue:120
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Tags"
msgstr "crwdns150776:0crwdne150776:0"
@@ -4661,7 +4682,7 @@ msgstr "crwdns150806:0crwdne150806:0"
msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
msgstr "crwdns151496:0crwdne151496:0"
#: lms/lms/doctype/lms_batch/lms_batch.py:140
#: lms/lms/doctype/lms_batch/lms_batch.py:141
msgid "There are no seats available in this batch."
msgstr "crwdns150808:0crwdne150808:0"
@@ -4692,7 +4713,7 @@ msgstr "crwdns150818:0crwdne150818:0"
msgid "This course has:"
msgstr "crwdns150820:0crwdne150820:0"
#: lms/lms/utils.py:1572
#: lms/lms/utils.py:1570
msgid "This course is free."
msgstr "crwdns150822:0crwdne150822:0"
@@ -4761,7 +4782,7 @@ msgstr "crwdns150844:0crwdne150844:0"
#. Label of the timezone (Data) field in DocType 'LMS Certificate Request'
#. Label of the timezone (Data) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/LiveClassModal.vue:44
#: frontend/src/pages/BatchForm.vue:142
#: frontend/src/pages/BatchForm.vue:143
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -4790,9 +4811,9 @@ msgstr "crwdns150848:0crwdne150848:0"
#. Label of the title (Data) field in DocType 'Work Experience'
#: frontend/src/components/Modals/DiscussionModal.vue:18
#: frontend/src/components/Modals/LiveClassModal.vue:23
#: frontend/src/pages/BatchForm.vue:18 frontend/src/pages/CourseForm.vue:24
#: frontend/src/pages/BatchForm.vue:18 frontend/src/pages/CourseForm.vue:32
#: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/QuizForm.vue:48
#: frontend/src/pages/Quizzes.vue:98 lms/lms/doctype/cohort/cohort.json
#: frontend/src/pages/Quizzes.vue:114 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json
#: lms/lms/doctype/course_chapter/course_chapter.json
@@ -4827,7 +4848,7 @@ msgstr "crwdns150854:0crwdne150854:0"
msgid "To Date is mandatory in Work Experience."
msgstr "crwdns150856:0crwdne150856:0"
#: lms/lms/utils.py:1583
#: lms/lms/utils.py:1581
msgid "To join this batch, please contact the Administrator."
msgstr "crwdns150858:0crwdne150858:0"
@@ -4844,7 +4865,7 @@ msgid "Total"
msgstr "crwdns150864:0crwdne150864:0"
#. Label of the total_marks (Int) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:66 frontend/src/pages/Quizzes.vue:103
#: frontend/src/pages/QuizForm.vue:66 frontend/src/pages/Quizzes.vue:119
#: lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Total Marks"
msgstr "crwdns150866:0crwdne150866:0"
@@ -4944,7 +4965,7 @@ msgstr "crwdns150898:0crwdne150898:0"
#. Option for the 'Status' (Select) field in DocType 'Cohort'
#. Label of the upcoming (Check) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:175 lms/lms/doctype/cohort/cohort.json
#: frontend/src/pages/CourseForm.vue:184 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Upcoming"
msgstr "crwdns150900:0crwdne150900:0"
@@ -4968,7 +4989,7 @@ msgstr "crwdns150906:0crwdne150906:0"
msgid "Update Password"
msgstr "crwdns150908:0crwdne150908:0"
#: frontend/src/pages/BatchForm.vue:51 frontend/src/pages/CourseForm.vue:72
#: frontend/src/pages/BatchForm.vue:51 frontend/src/pages/CourseForm.vue:80
msgid "Upload"
msgstr "crwdns151498:0crwdne151498:0"
@@ -5237,6 +5258,10 @@ msgstr "crwdns151014:0crwdne151014:0"
msgid "You have been enrolled in this course"
msgstr "crwdns151016:0crwdne151016:0"
#: frontend/src/pages/Quizzes.vue:60
msgid "You have not created any quizzes yet. To create a new quiz, click on the \"New Quiz\" button above."
msgstr "crwdns151594:0crwdne151594:0"
#: lms/lms/widgets/NoPreviewModal.html:12 lms/public/js/common_functions.js:126
msgid "You have opted to be notified for this course. You will receive an email when the course becomes available."
msgstr "crwdns151018:0crwdne151018:0"
@@ -5315,7 +5340,7 @@ msgstr "crwdns151050:0crwdne151050:0"
msgid "cancel your application"
msgstr "crwdns151052:0crwdne151052:0"
#: frontend/src/pages/Lesson.vue:175
#: frontend/src/pages/Lesson.vue:170
msgid "completed"
msgstr "crwdns151054:0crwdne151054:0"
@@ -5363,7 +5388,7 @@ msgstr "crwdns151074:0crwdne151074:0"
msgid "you can"
msgstr "crwdns151076:0crwdne151076:0"
#: lms/lms/api.py:732 lms/lms/api.py:740
#: lms/lms/api.py:740 lms/lms/api.py:748
msgid "{0} Settings not found"
msgstr "crwdns151078:0{0}crwdne151078:0"
@@ -5399,7 +5424,7 @@ msgstr "crwdns151092:0{0}crwdnd151092:0{1}crwdne151092:0"
msgid "{0} is your evaluator"
msgstr "crwdns151094:0{0}crwdne151094:0"
#: lms/lms/utils.py:709
#: lms/lms/utils.py:704
msgid "{0} mentioned you in a comment"
msgstr "crwdns151096:0{0}crwdne151096:0"
@@ -5407,7 +5432,7 @@ msgstr "crwdns151096:0{0}crwdne151096:0"
msgid "{0} mentioned you in a comment in your batch."
msgstr "crwdns151098:0{0}crwdne151098:0"
#: lms/lms/utils.py:662 lms/lms/utils.py:668
#: lms/lms/utils.py:657 lms/lms/utils.py:663
msgid "{0} mentioned you in a comment in {1}"
msgstr "crwdns151100:0{0}crwdnd151100:0{1}crwdne151100:0"

File diff suppressed because it is too large Load Diff

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2024-11-01 16:04+0000\n"
"PO-Revision-Date: 2024-11-05 14:34\n"
"POT-Creation-Date: 2024-11-08 16:04+0000\n"
"PO-Revision-Date: 2024-11-11 15:23\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Persian\n"
"MIME-Version: 1.0\n"
@@ -62,7 +62,7 @@ msgstr ""
msgid "<span style=\"font-size: 18px;\"><b>Statistics</b></span>"
msgstr ""
#: frontend/src/pages/CourseForm.vue:32
#: frontend/src/pages/CourseForm.vue:40
msgid "A one line introduction to the course that appears on the course card"
msgstr ""
@@ -228,12 +228,12 @@ msgstr "قبلا ثبت شده است"
#. Label of the amount (Currency) field in DocType 'Web Form'
#. Label of the amount (Currency) field in DocType 'LMS Batch'
#. Label of the amount (Currency) field in DocType 'LMS Payment'
#: frontend/src/pages/BatchForm.vue:208 lms/fixtures/custom_field.json
#: frontend/src/pages/BatchForm.vue:209 lms/fixtures/custom_field.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_payment/lms_payment.json
#: lms/public/js/common_functions.js:379
msgid "Amount"
msgstr "میزان"
msgstr "مبلغ"
#. Label of the amount_usd (Currency) field in DocType 'LMS Batch'
#. Label of the amount_usd (Currency) field in DocType 'LMS Course'
@@ -262,6 +262,10 @@ msgstr "مبلغ با GST"
msgid "Announcement"
msgstr "اطلاعیه"
#: frontend/src/components/Modals/AnnouncementModal.vue:99
msgid "Announcement has been sent successfully"
msgstr ""
#. Label of the answer (Text Editor) field in DocType 'LMS Assignment'
#. Label of the answer (Text Editor) field in DocType 'LMS Assignment
#. Submission'
@@ -272,7 +276,7 @@ msgstr "اطلاعیه"
msgid "Answer"
msgstr "پاسخ"
#: frontend/src/pages/CourseForm.vue:76 frontend/src/pages/CourseForm.vue:94
#: frontend/src/pages/CourseForm.vue:84 frontend/src/pages/CourseForm.vue:102
msgid "Appears on the course card in the course list"
msgstr ""
@@ -346,7 +350,7 @@ msgstr "نوع ارزیابی"
msgid "Assessment added successfully"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:74
#: lms/lms/doctype/lms_batch/lms_batch.py:75
msgid "Assessment {0} has already been added to this batch."
msgstr "ارزیابی {0} قبلاً به این دسته اضافه شده است."
@@ -426,7 +430,7 @@ msgstr ""
msgid "Average Rating"
msgstr "میانگین امتیاز"
#: frontend/src/pages/Lesson.vue:101
#: frontend/src/pages/Lesson.vue:96
msgid "Back to Course"
msgstr ""
@@ -478,7 +482,7 @@ msgid "Batch Description"
msgstr "توضیحات دسته"
#. Label of the batch_details (Text Editor) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:97 lms/lms/doctype/lms_batch/lms_batch.json
#: frontend/src/pages/BatchForm.vue:98 lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:349
#: lms/templates/emails/batch_confirmation.html:30
msgid "Batch Details"
@@ -539,7 +543,7 @@ msgstr ""
msgid "Batch Updated"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:39
#: lms/lms/doctype/lms_batch/lms_batch.py:40
msgid "Batch end date cannot be before the batch start date"
msgstr ""
@@ -645,8 +649,8 @@ msgstr ""
#. Label of the category (Link) field in DocType 'LMS Batch'
#. Label of the category (Data) field in DocType 'LMS Category'
#. Label of the category (Link) field in DocType 'LMS Course'
#: frontend/src/pages/BatchForm.vue:189 frontend/src/pages/Batches.vue:16
#: frontend/src/pages/CourseForm.vue:139 frontend/src/pages/Courses.vue:17
#: frontend/src/pages/BatchForm.vue:190 frontend/src/pages/Batches.vue:16
#: frontend/src/pages/CourseForm.vue:147 frontend/src/pages/Courses.vue:17
#: frontend/src/pages/JobDetail.vue:102
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_category/lms_category.json
@@ -947,7 +951,7 @@ msgstr ""
msgid "Completed"
msgstr "تکمیل شد"
#: frontend/src/pages/CourseForm.vue:192
#: frontend/src/pages/CourseForm.vue:201
msgid "Completion Certificate"
msgstr ""
@@ -1118,7 +1122,7 @@ msgstr ""
msgid "Course Data"
msgstr ""
#: frontend/src/pages/CourseForm.vue:41
#: frontend/src/pages/CourseForm.vue:49
msgid "Course Description"
msgstr ""
@@ -1127,7 +1131,7 @@ msgstr ""
msgid "Course Evaluator"
msgstr "ارزیاب دوره"
#: frontend/src/pages/CourseForm.vue:54
#: frontend/src/pages/CourseForm.vue:62
msgid "Course Image"
msgstr "تصویر دوره"
@@ -1150,7 +1154,7 @@ msgid "Course Name"
msgstr "اسم دوره"
#. Label of the course_price (Currency) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:210
#: frontend/src/pages/CourseForm.vue:219
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Course Price"
msgstr "قیمت دوره"
@@ -1179,15 +1183,15 @@ msgstr ""
msgid "Course Title"
msgstr "عنوان دوره"
#: lms/lms/doctype/lms_batch/lms_batch.py:318
#: lms/lms/doctype/lms_batch/lms_batch.py:340
msgid "Course already added to the batch."
msgstr "دوره قبلاً به دسته اضافه شده است."
#: frontend/src/pages/CourseForm.vue:457
msgid "Course price and currency are mandatory for paid courses"
msgid "Course deleted successfully"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:57
#: lms/lms/doctype/lms_batch/lms_batch.py:58
msgid "Course {0} has already been added to this batch."
msgstr "دوره {0} قبلاً به این دسته اضافه شده است."
@@ -1253,7 +1257,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/pages/BatchForm.vue:216 frontend/src/pages/CourseForm.vue:217
#: frontend/src/pages/BatchForm.vue:217 frontend/src/pages/CourseForm.vue:226
#: lms/fixtures/custom_field.json lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_payment/lms_payment.json
@@ -1311,7 +1315,7 @@ msgstr "تاریخ"
#. Label of the section_break_glxh (Section Break) field in DocType 'LMS Live
#. Class'
#: frontend/src/pages/BatchForm.vue:110
#: frontend/src/pages/BatchForm.vue:111
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Date and Time"
msgstr "تاریخ و زمان"
@@ -1347,13 +1351,22 @@ msgid "Degree Type"
msgstr "نوع مدرک"
#: frontend/src/components/CourseOutline.vue:212
#: frontend/src/pages/CourseForm.vue:15 frontend/src/pages/CourseForm.vue:470
msgid "Delete"
msgstr "حذف"
#: frontend/src/pages/CourseForm.vue:464
msgid "Delete Course"
msgstr ""
#: frontend/src/components/CourseOutline.vue:208
msgid "Delete Lesson"
msgstr ""
#: frontend/src/pages/CourseForm.vue:465
msgid "Deleting the course will also delete all its chapters and lessons. Are you sure you want to delete this course?"
msgstr ""
#. Label of the description (Text Editor) field in DocType 'Job Opportunity'
#. Label of the description (Small Text) field in DocType 'Certification'
#. Label of the description (Markdown Editor) field in DocType 'Cohort'
@@ -1367,7 +1380,7 @@ msgstr ""
#. Label of the description (Text) field in DocType 'LMS Live Class'
#. Label of the description (Small Text) field in DocType 'Work Experience'
#: frontend/src/components/Modals/LiveClassModal.vue:73
#: frontend/src/pages/BatchForm.vue:90 frontend/src/pages/JobCreation.vue:43
#: frontend/src/pages/BatchForm.vue:91 frontend/src/pages/JobCreation.vue:43
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/cohort/cohort.json
@@ -1388,12 +1401,12 @@ msgid "Desk"
msgstr ""
#: frontend/src/components/Modals/DiscussionModal.vue:22
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:20
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:28
#: frontend/src/pages/QuizForm.vue:42
msgid "Details"
msgstr "جزئیات"
#: frontend/src/pages/CourseForm.vue:187
#: frontend/src/pages/CourseForm.vue:196
msgid "Disable Self Enrollment"
msgstr "غیرفعال کردن ثبت نام خود"
@@ -1469,7 +1482,7 @@ msgstr "ایمیل"
#: frontend/src/components/BatchOverlay.vue:93
#: frontend/src/components/CourseCardOverlay.vue:86
#: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/pages/JobDetail.vue:31 frontend/src/pages/Lesson.vue:70
#: frontend/src/pages/JobDetail.vue:31 frontend/src/pages/Lesson.vue:65
#: frontend/src/pages/Profile.vue:32
msgid "Edit"
msgstr "ویرایش"
@@ -1551,7 +1564,7 @@ msgstr "فعال"
#. Label of the end_date (Date) field in DocType 'Cohort'
#. Label of the end_date (Date) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:122 lms/lms/doctype/cohort/cohort.json
#: frontend/src/pages/BatchForm.vue:123 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:282
msgid "End Date"
@@ -1569,7 +1582,7 @@ msgstr "تاریخ پایان (یا مورد انتظار)"
#. Label of the end_time (Time) field in DocType 'LMS Certificate Evaluation'
#. Label of the end_time (Time) field in DocType 'LMS Certificate Request'
#. Label of the end_time (Time) field in DocType 'Scheduled Flow'
#: frontend/src/pages/BatchForm.vue:136
#: frontend/src/pages/BatchForm.vue:137
#: frontend/src/pages/ProfileEvaluator.vue:18
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1596,7 +1609,7 @@ msgstr "دانش آموزان ثبت نام شده"
msgid "Enrolled successfully"
msgstr "با موفقیت ثبت نام شد"
#: lms/lms/doctype/lms_batch/lms_batch.py:97
#: lms/lms/doctype/lms_batch/lms_batch.py:98
msgid "Enrollment Confirmation for the Next Training Batch"
msgstr ""
@@ -1605,7 +1618,7 @@ msgstr ""
msgid "Enrollment Count"
msgstr ""
#: lms/lms/utils.py:1692
#: lms/lms/utils.py:1690
msgid "Enrollment Failed"
msgstr ""
@@ -1633,6 +1646,7 @@ msgstr ""
msgid "Enter the correct answer"
msgstr "پاسخ صحیح را وارد کنید"
#: frontend/src/components/Modals/AnnouncementModal.vue:104
#: frontend/src/components/Modals/Question.vue:246
#: frontend/src/components/Modals/Question.vue:266
#: frontend/src/components/Modals/Question.vue:323
@@ -1655,7 +1669,7 @@ msgid "Evaluation Details"
msgstr ""
#. Label of the evaluation_end_date (Date) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:165
#: frontend/src/pages/BatchForm.vue:166
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:333
msgid "Evaluation End Date"
@@ -1666,7 +1680,7 @@ msgstr ""
msgid "Evaluation Request"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:81
#: lms/lms/doctype/lms_batch/lms_batch.py:82
msgid "Evaluation end date cannot be less than the batch end date."
msgstr ""
@@ -1713,11 +1727,13 @@ msgid "Evaluator is Unavailable"
msgstr ""
#. Label of the event (Select) field in DocType 'LMS Badge'
#. Label of the event (Link) field in DocType 'LMS Live Class'
#: lms/lms/doctype/lms_badge/lms_badge.json
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Event"
msgstr "رویداد"
#: frontend/src/pages/BatchForm.vue:144
#: frontend/src/pages/BatchForm.vue:145
msgid "Example: IST (+5:30)"
msgstr ""
@@ -1791,7 +1807,7 @@ msgstr ""
#. Label of the featured (Check) field in DocType 'LMS Course'
#: frontend/src/components/CourseCard.vue:16
#: frontend/src/pages/CourseForm.vue:180
#: frontend/src/pages/CourseForm.vue:189
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Featured"
msgstr "ویژه"
@@ -2078,7 +2094,7 @@ msgstr "اگر سوالی دارید یا نیاز به کمک دارید، با
msgid "If you set an amount here, then the USD equivalent setting will not get applied."
msgstr ""
#: lms/lms/doctype/lms_quiz/lms_quiz.py:62
#: lms/lms/doctype/lms_quiz/lms_quiz.py:63
msgid "If you want open ended questions then make sure each question in the quiz is of open ended type."
msgstr ""
@@ -2104,7 +2120,7 @@ msgstr "تصویر"
msgid "Image search powered by"
msgstr ""
#: lms/lms/doctype/lms_quiz/lms_quiz.py:221
#: lms/lms/doctype/lms_quiz/lms_quiz.py:222
msgid "Image: Corrupted Data Stream"
msgstr ""
@@ -2187,14 +2203,14 @@ msgstr ""
#. Label of the instructor_notes (Markdown Editor) field in DocType 'Course
#. Lesson'
#: frontend/src/pages/Lesson.vue:130 frontend/src/pages/LessonForm.vue:33
#: frontend/src/pages/Lesson.vue:125 frontend/src/pages/LessonForm.vue:33
#: lms/lms/doctype/course_lesson/course_lesson.json
msgid "Instructor Notes"
msgstr "یادداشت های مدرس"
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Batch'
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Course'
#: frontend/src/pages/BatchForm.vue:85 frontend/src/pages/CourseForm.vue:146
#: frontend/src/pages/BatchForm.vue:85 frontend/src/pages/CourseForm.vue:154
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Instructors"
@@ -2353,7 +2369,7 @@ msgstr ""
msgid "Join URL"
msgstr ""
#: frontend/src/pages/CourseForm.vue:128
#: frontend/src/pages/CourseForm.vue:136
msgid "Keywords for the course"
msgstr ""
@@ -2657,7 +2673,7 @@ msgstr ""
msgid "Links"
msgstr "پیوندها"
#: frontend/src/pages/Quizzes.vue:131
#: frontend/src/pages/Quizzes.vue:147
msgid "List of quizzes"
msgstr ""
@@ -2707,7 +2723,7 @@ msgstr ""
#: frontend/src/components/NoPermission.vue:28
#: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:163
#: frontend/src/pages/Lesson.vue:29
#: frontend/src/pages/Lesson.vue:24
msgid "Login"
msgstr "وارد شدن"
@@ -2787,7 +2803,7 @@ msgid "Maximun Attempts"
msgstr ""
#. Label of the medium (Select) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:184
#: frontend/src/pages/BatchForm.vue:185
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:309
msgid "Medium"
@@ -3042,11 +3058,11 @@ msgstr ""
msgid "New Sign Up"
msgstr ""
#: lms/lms/utils.py:632
#: lms/lms/utils.py:627
msgid "New comment in batch {0}"
msgstr ""
#: lms/lms/utils.py:625
#: lms/lms/utils.py:620
msgid "New reply on the topic {0} in course {1}"
msgstr ""
@@ -3055,7 +3071,7 @@ msgstr ""
msgid "New {0}"
msgstr "{0} جدید"
#: frontend/src/components/Quiz.vue:209 frontend/src/pages/Lesson.vue:89
#: frontend/src/components/Quiz.vue:209 frontend/src/pages/Lesson.vue:84
msgid "Next"
msgstr "بعد"
@@ -3116,6 +3132,10 @@ msgstr ""
msgid "No live classes scheduled"
msgstr ""
#: frontend/src/pages/Quizzes.vue:56
msgid "No quizzes found"
msgstr ""
#: frontend/src/components/Modals/EvaluationModal.vue:53
msgid "No slots available for this date."
msgstr ""
@@ -3188,7 +3208,7 @@ msgstr "اعلان‌ها"
msgid "Notify me when available"
msgstr ""
#: frontend/src/pages/BatchForm.vue:161
#: frontend/src/pages/BatchForm.vue:162
msgid "Number of seats available"
msgstr ""
@@ -3224,7 +3244,7 @@ msgstr "آنلاین"
msgid "Only files of type {0} will be accepted."
msgstr "فقط فایل هایی از نوع {0} پذیرفته می شوند."
#: frontend/src/pages/CourseForm.vue:473 frontend/src/utils/index.js:518
#: frontend/src/pages/CourseForm.vue:494 frontend/src/utils/index.js:518
msgid "Only image file is allowed."
msgstr ""
@@ -3332,14 +3352,14 @@ msgid "Pages"
msgstr "صفحات"
#. Label of the paid_batch (Check) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:204
#: frontend/src/pages/BatchForm.vue:205
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:373
msgid "Paid Batch"
msgstr ""
#. Label of the paid_course (Check) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:205
#: frontend/src/pages/CourseForm.vue:214
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Paid Course"
msgstr ""
@@ -3370,7 +3390,7 @@ msgstr ""
#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz'
#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/QuizForm.vue:71 frontend/src/pages/Quizzes.vue:109
#: frontend/src/pages/QuizForm.vue:71 frontend/src/pages/Quizzes.vue:125
#: lms/lms/doctype/lms_quiz/lms_quiz.json
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
msgid "Passing Percentage"
@@ -3381,13 +3401,13 @@ msgstr ""
msgid "Password"
msgstr "کلمه عبور"
#: frontend/src/pages/CourseForm.vue:104
#: frontend/src/pages/CourseForm.vue:112
msgid "Paste the youtube link of a short video introducing the course"
msgstr ""
#. Label of the payment (Link) field in DocType 'Batch Student'
#. Label of the payment (Link) field in DocType 'LMS Enrollment'
#: frontend/src/pages/BatchForm.vue:198
#: frontend/src/pages/BatchForm.vue:199
#: lms/lms/doctype/batch_student/batch_student.json
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
msgid "Payment"
@@ -3499,7 +3519,7 @@ msgstr "لطفا ایمیل خود را برای تایید بررسی کنید"
msgid "Please click on the following button to set your new password"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:229
#: lms/lms/doctype/lms_batch/lms_batch.py:251
msgid "Please enable Zoom Settings to use this feature."
msgstr ""
@@ -3520,7 +3540,7 @@ msgstr ""
msgid "Please enter your answer"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:64
#: lms/lms/doctype/lms_batch/lms_batch.py:65
msgid "Please install the Payments app to create a paid batches."
msgstr ""
@@ -3630,17 +3650,17 @@ msgstr ""
msgid "Preview Image"
msgstr "پیش نمایش تصویر"
#: frontend/src/pages/CourseForm.vue:102
#: frontend/src/pages/CourseForm.vue:110
msgid "Preview Video"
msgstr ""
#: frontend/src/pages/Lesson.vue:54
#: frontend/src/pages/Lesson.vue:49
msgid "Previous"
msgstr "قبلی"
#. Label of the pricing_tab (Tab Break) field in DocType 'LMS Batch'
#. Label of the pricing_tab (Tab Break) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:199
#: frontend/src/pages/CourseForm.vue:208
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/public/js/common_functions.js:368
@@ -3710,7 +3730,7 @@ msgstr ""
#. Label of the published (Check) field in DocType 'LMS Batch'
#. Label of the published (Check) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:108
#: frontend/src/pages/BatchForm.vue:24 frontend/src/pages/CourseForm.vue:162
#: frontend/src/pages/BatchForm.vue:24 frontend/src/pages/CourseForm.vue:171
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/public/js/common_functions.js:266
@@ -3723,7 +3743,7 @@ msgid "Published Courses"
msgstr ""
#. Label of the published_on (Date) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:166
#: frontend/src/pages/CourseForm.vue:175
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Published On"
msgstr "منتشر شده در"
@@ -3838,8 +3858,8 @@ msgstr ""
msgid "Quiz will appear at the bottom of the lesson."
msgstr "تکلیف زیر درس نشان داده می شود."
#: frontend/src/pages/QuizForm.vue:441 frontend/src/pages/Quizzes.vue:120
#: frontend/src/pages/Quizzes.vue:130
#: frontend/src/pages/QuizForm.vue:441 frontend/src/pages/Quizzes.vue:136
#: frontend/src/pages/Quizzes.vue:146
msgid "Quizzes"
msgstr ""
@@ -3921,7 +3941,7 @@ msgstr "رد شده"
msgid "Related Courses"
msgstr ""
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/CourseForm.vue:91
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/CourseForm.vue:99
msgid "Remove"
msgstr "برداشتن"
@@ -3995,19 +4015,19 @@ msgstr ""
msgid "Route"
msgstr "مسیر"
#: lms/lms/doctype/lms_batch/lms_batch.py:172
#: lms/lms/doctype/lms_batch/lms_batch.py:194
msgid "Row #{0} Date cannot be outside the batch duration."
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:167
#: lms/lms/doctype/lms_batch/lms_batch.py:189
msgid "Row #{0} End time cannot be outside the batch duration."
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:149
#: lms/lms/doctype/lms_batch/lms_batch.py:171
msgid "Row #{0} Start time cannot be greater than or equal to end time."
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:158
#: lms/lms/doctype/lms_batch/lms_batch.py:180
msgid "Row #{0} Start time cannot be outside the batch duration."
msgstr ""
@@ -4031,7 +4051,7 @@ msgstr "شنبه"
#: frontend/src/components/Modals/Event.vue:129
#: frontend/src/components/QuizPlugin.vue:23
#: frontend/src/pages/AssignmentSubmission.vue:7
#: frontend/src/pages/BatchForm.vue:8 frontend/src/pages/CourseForm.vue:12
#: frontend/src/pages/BatchForm.vue:8 frontend/src/pages/CourseForm.vue:20
#: frontend/src/pages/JobCreation.vue:8 frontend/src/pages/LessonForm.vue:10
#: frontend/src/pages/QuizForm.vue:34 frontend/src/pages/QuizSubmission.vue:14
#: lms/public/js/common_functions.js:405
@@ -4080,7 +4100,7 @@ msgid "Search for an icon"
msgstr ""
#. Label of the seat_count (Int) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:158
#: frontend/src/pages/BatchForm.vue:159
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:327
msgid "Seat Count"
@@ -4124,7 +4144,7 @@ msgid "Set your Password"
msgstr ""
#: frontend/src/components/Modals/Settings.vue:7
#: frontend/src/pages/BatchForm.vue:152 frontend/src/pages/CourseForm.vue:152
#: frontend/src/pages/BatchForm.vue:153 frontend/src/pages/CourseForm.vue:161
#: frontend/src/pages/ProfileRoles.vue:4 frontend/src/pages/QuizForm.vue:78
msgid "Settings"
msgstr "تنظیمات"
@@ -4134,12 +4154,12 @@ msgid "Share on"
msgstr ""
#. Label of the short_introduction (Small Text) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:30
#: frontend/src/pages/CourseForm.vue:38
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Short Introduction"
msgstr ""
#: frontend/src/pages/BatchForm.vue:93
#: frontend/src/pages/BatchForm.vue:94
msgid "Short description of the batch"
msgstr ""
@@ -4303,7 +4323,7 @@ msgstr "شروع"
#. Label of the start_date (Date) field in DocType 'Education Detail'
#. Label of the start_date (Date) field in DocType 'LMS Batch'
#. Label of the start_date (Date) field in DocType 'LMS Batch Old'
#: frontend/src/pages/BatchForm.vue:116
#: frontend/src/pages/BatchForm.vue:117
#: lms/lms/doctype/education_detail/education_detail.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
@@ -4312,7 +4332,7 @@ msgid "Start Date"
msgstr "تاریخ شروع"
#: frontend/src/components/CourseCardOverlay.vue:63
#: frontend/src/pages/Lesson.vue:25
#: frontend/src/pages/Lesson.vue:21
#: lms/templates/emails/lms_course_interest.html:9
msgid "Start Learning"
msgstr ""
@@ -4324,7 +4344,7 @@ msgstr ""
#. Label of the start_time (Time) field in DocType 'LMS Certificate Evaluation'
#. Label of the start_time (Time) field in DocType 'LMS Certificate Request'
#. Label of the start_time (Time) field in DocType 'Scheduled Flow'
#: frontend/src/pages/BatchForm.vue:130
#: frontend/src/pages/BatchForm.vue:131
#: frontend/src/pages/ProfileEvaluator.vue:15
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -4430,7 +4450,7 @@ msgstr "اسم دانش‌آموز"
msgid "Student Reviews"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:46
#: lms/lms/doctype/lms_batch/lms_batch.py:47
msgid "Student {0} has already been added to this batch."
msgstr "دانش‌آموز {0} قبلاً به این دسته اضافه شده است."
@@ -4496,13 +4516,14 @@ msgstr ""
#: frontend/src/components/BatchOverlay.vue:135
#: frontend/src/components/BatchStudents.vue:157
#: frontend/src/components/CourseCardOverlay.vue:161
#: frontend/src/components/Modals/AnnouncementModal.vue:98
#: frontend/src/components/Modals/AssessmentModal.vue:73
#: frontend/src/components/Modals/Event.vue:255
#: frontend/src/components/Modals/Event.vue:310
#: frontend/src/components/Modals/Question.vue:261
#: frontend/src/components/Modals/Question.vue:312
#: frontend/src/pages/QuizForm.vue:342 frontend/src/pages/QuizForm.vue:361
#: frontend/src/pages/QuizForm.vue:430
#: frontend/src/pages/CourseForm.vue:457 frontend/src/pages/QuizForm.vue:342
#: frontend/src/pages/QuizForm.vue:361 frontend/src/pages/QuizForm.vue:430
msgid "Success"
msgstr "موفقیت"
@@ -4569,7 +4590,7 @@ msgid "System Manager"
msgstr "مدیر سیستم"
#. Label of the tags (Data) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:112
#: frontend/src/pages/CourseForm.vue:120
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Tags"
msgstr "برچسب ها"
@@ -4661,7 +4682,7 @@ msgstr ""
msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:140
#: lms/lms/doctype/lms_batch/lms_batch.py:141
msgid "There are no seats available in this batch."
msgstr ""
@@ -4692,7 +4713,7 @@ msgstr ""
msgid "This course has:"
msgstr ""
#: lms/lms/utils.py:1572
#: lms/lms/utils.py:1570
msgid "This course is free."
msgstr ""
@@ -4761,7 +4782,7 @@ msgstr "الگوی جدول زمانی"
#. Label of the timezone (Data) field in DocType 'LMS Certificate Request'
#. Label of the timezone (Data) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/LiveClassModal.vue:44
#: frontend/src/pages/BatchForm.vue:142
#: frontend/src/pages/BatchForm.vue:143
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -4790,9 +4811,9 @@ msgstr ""
#. Label of the title (Data) field in DocType 'Work Experience'
#: frontend/src/components/Modals/DiscussionModal.vue:18
#: frontend/src/components/Modals/LiveClassModal.vue:23
#: frontend/src/pages/BatchForm.vue:18 frontend/src/pages/CourseForm.vue:24
#: frontend/src/pages/BatchForm.vue:18 frontend/src/pages/CourseForm.vue:32
#: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/QuizForm.vue:48
#: frontend/src/pages/Quizzes.vue:98 lms/lms/doctype/cohort/cohort.json
#: frontend/src/pages/Quizzes.vue:114 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json
#: lms/lms/doctype/course_chapter/course_chapter.json
@@ -4827,7 +4848,7 @@ msgstr "تا تاریخ"
msgid "To Date is mandatory in Work Experience."
msgstr ""
#: lms/lms/utils.py:1583
#: lms/lms/utils.py:1581
msgid "To join this batch, please contact the Administrator."
msgstr ""
@@ -4844,7 +4865,7 @@ msgid "Total"
msgstr "جمع"
#. Label of the total_marks (Int) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:66 frontend/src/pages/Quizzes.vue:103
#: frontend/src/pages/QuizForm.vue:66 frontend/src/pages/Quizzes.vue:119
#: lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Total Marks"
msgstr ""
@@ -4944,7 +4965,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Cohort'
#. Label of the upcoming (Check) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:175 lms/lms/doctype/cohort/cohort.json
#: frontend/src/pages/CourseForm.vue:184 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Upcoming"
msgstr ""
@@ -4968,7 +4989,7 @@ msgstr "به روز رسانی"
msgid "Update Password"
msgstr "به‌روزرسانی گذرواژه"
#: frontend/src/pages/BatchForm.vue:51 frontend/src/pages/CourseForm.vue:72
#: frontend/src/pages/BatchForm.vue:51 frontend/src/pages/CourseForm.vue:80
msgid "Upload"
msgstr "آپلود"
@@ -5237,6 +5258,10 @@ msgstr ""
msgid "You have been enrolled in this course"
msgstr ""
#: frontend/src/pages/Quizzes.vue:60
msgid "You have not created any quizzes yet. To create a new quiz, click on the \"New Quiz\" button above."
msgstr ""
#: lms/lms/widgets/NoPreviewModal.html:12 lms/public/js/common_functions.js:126
msgid "You have opted to be notified for this course. You will receive an email when the course becomes available."
msgstr ""
@@ -5315,7 +5340,7 @@ msgstr ""
msgid "cancel your application"
msgstr ""
#: frontend/src/pages/Lesson.vue:175
#: frontend/src/pages/Lesson.vue:170
msgid "completed"
msgstr "تکمیل شده"
@@ -5363,7 +5388,7 @@ msgstr "ستاره ها"
msgid "you can"
msgstr ""
#: lms/lms/api.py:732 lms/lms/api.py:740
#: lms/lms/api.py:740 lms/lms/api.py:748
msgid "{0} Settings not found"
msgstr ""
@@ -5399,7 +5424,7 @@ msgstr ""
msgid "{0} is your evaluator"
msgstr ""
#: lms/lms/utils.py:709
#: lms/lms/utils.py:704
msgid "{0} mentioned you in a comment"
msgstr ""
@@ -5407,7 +5432,7 @@ msgstr ""
msgid "{0} mentioned you in a comment in your batch."
msgstr ""
#: lms/lms/utils.py:662 lms/lms/utils.py:668
#: lms/lms/utils.py:657 lms/lms/utils.py:663
msgid "{0} mentioned you in a comment in {1}"
msgstr ""

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2024-11-01 16:04+0000\n"
"PO-Revision-Date: 2024-11-05 14:33\n"
"POT-Creation-Date: 2024-11-08 16:04+0000\n"
"PO-Revision-Date: 2024-11-11 15:23\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: French\n"
"MIME-Version: 1.0\n"
@@ -62,7 +62,7 @@ msgstr ""
msgid "<span style=\"font-size: 18px;\"><b>Statistics</b></span>"
msgstr ""
#: frontend/src/pages/CourseForm.vue:32
#: frontend/src/pages/CourseForm.vue:40
msgid "A one line introduction to the course that appears on the course card"
msgstr ""
@@ -228,7 +228,7 @@ msgstr "Déjà Inscrit"
#. Label of the amount (Currency) field in DocType 'Web Form'
#. Label of the amount (Currency) field in DocType 'LMS Batch'
#. Label of the amount (Currency) field in DocType 'LMS Payment'
#: frontend/src/pages/BatchForm.vue:208 lms/fixtures/custom_field.json
#: frontend/src/pages/BatchForm.vue:209 lms/fixtures/custom_field.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_payment/lms_payment.json
#: lms/public/js/common_functions.js:379
@@ -262,6 +262,10 @@ msgstr "Montant avec taxe"
msgid "Announcement"
msgstr "Information"
#: frontend/src/components/Modals/AnnouncementModal.vue:99
msgid "Announcement has been sent successfully"
msgstr ""
#. Label of the answer (Text Editor) field in DocType 'LMS Assignment'
#. Label of the answer (Text Editor) field in DocType 'LMS Assignment
#. Submission'
@@ -272,7 +276,7 @@ msgstr "Information"
msgid "Answer"
msgstr "Réponse"
#: frontend/src/pages/CourseForm.vue:76 frontend/src/pages/CourseForm.vue:94
#: frontend/src/pages/CourseForm.vue:84 frontend/src/pages/CourseForm.vue:102
msgid "Appears on the course card in the course list"
msgstr ""
@@ -346,7 +350,7 @@ msgstr "Type d'évaluation"
msgid "Assessment added successfully"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:74
#: lms/lms/doctype/lms_batch/lms_batch.py:75
msgid "Assessment {0} has already been added to this batch."
msgstr "L'évaluation {0} a déjà été ajoutée à ce lot."
@@ -426,7 +430,7 @@ msgstr "Enregistrement automatique"
msgid "Average Rating"
msgstr "Notation moyenne"
#: frontend/src/pages/Lesson.vue:101
#: frontend/src/pages/Lesson.vue:96
msgid "Back to Course"
msgstr ""
@@ -478,7 +482,7 @@ msgid "Batch Description"
msgstr "Description du Lot"
#. Label of the batch_details (Text Editor) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:97 lms/lms/doctype/lms_batch/lms_batch.json
#: frontend/src/pages/BatchForm.vue:98 lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:349
#: lms/templates/emails/batch_confirmation.html:30
msgid "Batch Details"
@@ -539,7 +543,7 @@ msgstr ""
msgid "Batch Updated"
msgstr "Lot mis à jour"
#: lms/lms/doctype/lms_batch/lms_batch.py:39
#: lms/lms/doctype/lms_batch/lms_batch.py:40
msgid "Batch end date cannot be before the batch start date"
msgstr ""
@@ -645,8 +649,8 @@ msgstr ""
#. Label of the category (Link) field in DocType 'LMS Batch'
#. Label of the category (Data) field in DocType 'LMS Category'
#. Label of the category (Link) field in DocType 'LMS Course'
#: frontend/src/pages/BatchForm.vue:189 frontend/src/pages/Batches.vue:16
#: frontend/src/pages/CourseForm.vue:139 frontend/src/pages/Courses.vue:17
#: frontend/src/pages/BatchForm.vue:190 frontend/src/pages/Batches.vue:16
#: frontend/src/pages/CourseForm.vue:147 frontend/src/pages/Courses.vue:17
#: frontend/src/pages/JobDetail.vue:102
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_category/lms_category.json
@@ -947,7 +951,7 @@ msgstr "Terminer l'inscription"
msgid "Completed"
msgstr "Terminé"
#: frontend/src/pages/CourseForm.vue:192
#: frontend/src/pages/CourseForm.vue:201
msgid "Completion Certificate"
msgstr ""
@@ -1118,7 +1122,7 @@ msgstr "Créateur de cours"
msgid "Course Data"
msgstr "Données du cours"
#: frontend/src/pages/CourseForm.vue:41
#: frontend/src/pages/CourseForm.vue:49
msgid "Course Description"
msgstr "Description du cours"
@@ -1127,7 +1131,7 @@ msgstr "Description du cours"
msgid "Course Evaluator"
msgstr "Évaluateur de cours"
#: frontend/src/pages/CourseForm.vue:54
#: frontend/src/pages/CourseForm.vue:62
msgid "Course Image"
msgstr "Image du cours"
@@ -1150,7 +1154,7 @@ msgid "Course Name"
msgstr "Nom du cours"
#. Label of the course_price (Currency) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:210
#: frontend/src/pages/CourseForm.vue:219
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Course Price"
msgstr "Prix du cours"
@@ -1179,15 +1183,15 @@ msgstr "Statistiques du cours"
msgid "Course Title"
msgstr "Titre du cours"
#: lms/lms/doctype/lms_batch/lms_batch.py:318
#: lms/lms/doctype/lms_batch/lms_batch.py:340
msgid "Course already added to the batch."
msgstr "Cours déjà ajouté au lot."
#: frontend/src/pages/CourseForm.vue:457
msgid "Course price and currency are mandatory for paid courses"
msgid "Course deleted successfully"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:57
#: lms/lms/doctype/lms_batch/lms_batch.py:58
msgid "Course {0} has already been added to this batch."
msgstr "Le cours {0} a déjà été ajouté à ce lot."
@@ -1253,7 +1257,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/pages/BatchForm.vue:216 frontend/src/pages/CourseForm.vue:217
#: frontend/src/pages/BatchForm.vue:217 frontend/src/pages/CourseForm.vue:226
#: lms/fixtures/custom_field.json lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_payment/lms_payment.json
@@ -1311,7 +1315,7 @@ msgstr ""
#. Label of the section_break_glxh (Section Break) field in DocType 'LMS Live
#. Class'
#: frontend/src/pages/BatchForm.vue:110
#: frontend/src/pages/BatchForm.vue:111
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Date and Time"
msgstr "Date et heure"
@@ -1347,13 +1351,22 @@ msgid "Degree Type"
msgstr "Type de diplôme"
#: frontend/src/components/CourseOutline.vue:212
#: frontend/src/pages/CourseForm.vue:15 frontend/src/pages/CourseForm.vue:470
msgid "Delete"
msgstr "Supprimer"
#: frontend/src/pages/CourseForm.vue:464
msgid "Delete Course"
msgstr ""
#: frontend/src/components/CourseOutline.vue:208
msgid "Delete Lesson"
msgstr ""
#: frontend/src/pages/CourseForm.vue:465
msgid "Deleting the course will also delete all its chapters and lessons. Are you sure you want to delete this course?"
msgstr ""
#. Label of the description (Text Editor) field in DocType 'Job Opportunity'
#. Label of the description (Small Text) field in DocType 'Certification'
#. Label of the description (Markdown Editor) field in DocType 'Cohort'
@@ -1367,7 +1380,7 @@ msgstr ""
#. Label of the description (Text) field in DocType 'LMS Live Class'
#. Label of the description (Small Text) field in DocType 'Work Experience'
#: frontend/src/components/Modals/LiveClassModal.vue:73
#: frontend/src/pages/BatchForm.vue:90 frontend/src/pages/JobCreation.vue:43
#: frontend/src/pages/BatchForm.vue:91 frontend/src/pages/JobCreation.vue:43
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/cohort/cohort.json
@@ -1388,12 +1401,12 @@ msgid "Desk"
msgstr ""
#: frontend/src/components/Modals/DiscussionModal.vue:22
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:20
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:28
#: frontend/src/pages/QuizForm.vue:42
msgid "Details"
msgstr "Détails"
#: frontend/src/pages/CourseForm.vue:187
#: frontend/src/pages/CourseForm.vue:196
msgid "Disable Self Enrollment"
msgstr "Désactiver l'auto-inscription"
@@ -1469,7 +1482,7 @@ msgstr ""
#: frontend/src/components/BatchOverlay.vue:93
#: frontend/src/components/CourseCardOverlay.vue:86
#: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/pages/JobDetail.vue:31 frontend/src/pages/Lesson.vue:70
#: frontend/src/pages/JobDetail.vue:31 frontend/src/pages/Lesson.vue:65
#: frontend/src/pages/Profile.vue:32
msgid "Edit"
msgstr "modifier"
@@ -1551,7 +1564,7 @@ msgstr "Activé"
#. Label of the end_date (Date) field in DocType 'Cohort'
#. Label of the end_date (Date) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:122 lms/lms/doctype/cohort/cohort.json
#: frontend/src/pages/BatchForm.vue:123 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:282
msgid "End Date"
@@ -1569,7 +1582,7 @@ msgstr ""
#. Label of the end_time (Time) field in DocType 'LMS Certificate Evaluation'
#. Label of the end_time (Time) field in DocType 'LMS Certificate Request'
#. Label of the end_time (Time) field in DocType 'Scheduled Flow'
#: frontend/src/pages/BatchForm.vue:136
#: frontend/src/pages/BatchForm.vue:137
#: frontend/src/pages/ProfileEvaluator.vue:18
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1596,7 +1609,7 @@ msgstr ""
msgid "Enrolled successfully"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:97
#: lms/lms/doctype/lms_batch/lms_batch.py:98
msgid "Enrollment Confirmation for the Next Training Batch"
msgstr ""
@@ -1605,7 +1618,7 @@ msgstr ""
msgid "Enrollment Count"
msgstr ""
#: lms/lms/utils.py:1692
#: lms/lms/utils.py:1690
msgid "Enrollment Failed"
msgstr ""
@@ -1633,6 +1646,7 @@ msgstr ""
msgid "Enter the correct answer"
msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:104
#: frontend/src/components/Modals/Question.vue:246
#: frontend/src/components/Modals/Question.vue:266
#: frontend/src/components/Modals/Question.vue:323
@@ -1655,7 +1669,7 @@ msgid "Evaluation Details"
msgstr ""
#. Label of the evaluation_end_date (Date) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:165
#: frontend/src/pages/BatchForm.vue:166
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:333
msgid "Evaluation End Date"
@@ -1666,7 +1680,7 @@ msgstr ""
msgid "Evaluation Request"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:81
#: lms/lms/doctype/lms_batch/lms_batch.py:82
msgid "Evaluation end date cannot be less than the batch end date."
msgstr ""
@@ -1713,11 +1727,13 @@ msgid "Evaluator is Unavailable"
msgstr ""
#. Label of the event (Select) field in DocType 'LMS Badge'
#. Label of the event (Link) field in DocType 'LMS Live Class'
#: lms/lms/doctype/lms_badge/lms_badge.json
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Event"
msgstr "Événement"
#: frontend/src/pages/BatchForm.vue:144
#: frontend/src/pages/BatchForm.vue:145
msgid "Example: IST (+5:30)"
msgstr ""
@@ -1791,7 +1807,7 @@ msgstr ""
#. Label of the featured (Check) field in DocType 'LMS Course'
#: frontend/src/components/CourseCard.vue:16
#: frontend/src/pages/CourseForm.vue:180
#: frontend/src/pages/CourseForm.vue:189
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Featured"
msgstr "En vedette"
@@ -2078,7 +2094,7 @@ msgstr ""
msgid "If you set an amount here, then the USD equivalent setting will not get applied."
msgstr ""
#: lms/lms/doctype/lms_quiz/lms_quiz.py:62
#: lms/lms/doctype/lms_quiz/lms_quiz.py:63
msgid "If you want open ended questions then make sure each question in the quiz is of open ended type."
msgstr ""
@@ -2104,7 +2120,7 @@ msgstr "Image"
msgid "Image search powered by"
msgstr ""
#: lms/lms/doctype/lms_quiz/lms_quiz.py:221
#: lms/lms/doctype/lms_quiz/lms_quiz.py:222
msgid "Image: Corrupted Data Stream"
msgstr ""
@@ -2187,14 +2203,14 @@ msgstr ""
#. Label of the instructor_notes (Markdown Editor) field in DocType 'Course
#. Lesson'
#: frontend/src/pages/Lesson.vue:130 frontend/src/pages/LessonForm.vue:33
#: frontend/src/pages/Lesson.vue:125 frontend/src/pages/LessonForm.vue:33
#: lms/lms/doctype/course_lesson/course_lesson.json
msgid "Instructor Notes"
msgstr ""
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Batch'
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Course'
#: frontend/src/pages/BatchForm.vue:85 frontend/src/pages/CourseForm.vue:146
#: frontend/src/pages/BatchForm.vue:85 frontend/src/pages/CourseForm.vue:154
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Instructors"
@@ -2353,7 +2369,7 @@ msgstr ""
msgid "Join URL"
msgstr ""
#: frontend/src/pages/CourseForm.vue:128
#: frontend/src/pages/CourseForm.vue:136
msgid "Keywords for the course"
msgstr ""
@@ -2657,7 +2673,7 @@ msgstr ""
msgid "Links"
msgstr "Liens"
#: frontend/src/pages/Quizzes.vue:131
#: frontend/src/pages/Quizzes.vue:147
msgid "List of quizzes"
msgstr ""
@@ -2707,7 +2723,7 @@ msgstr ""
#: frontend/src/components/NoPermission.vue:28
#: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:163
#: frontend/src/pages/Lesson.vue:29
#: frontend/src/pages/Lesson.vue:24
msgid "Login"
msgstr "Connexion"
@@ -2787,7 +2803,7 @@ msgid "Maximun Attempts"
msgstr ""
#. Label of the medium (Select) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:184
#: frontend/src/pages/BatchForm.vue:185
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:309
msgid "Medium"
@@ -3042,11 +3058,11 @@ msgstr ""
msgid "New Sign Up"
msgstr ""
#: lms/lms/utils.py:632
#: lms/lms/utils.py:627
msgid "New comment in batch {0}"
msgstr ""
#: lms/lms/utils.py:625
#: lms/lms/utils.py:620
msgid "New reply on the topic {0} in course {1}"
msgstr ""
@@ -3055,7 +3071,7 @@ msgstr ""
msgid "New {0}"
msgstr "Nouveau(elle) {0}"
#: frontend/src/components/Quiz.vue:209 frontend/src/pages/Lesson.vue:89
#: frontend/src/components/Quiz.vue:209 frontend/src/pages/Lesson.vue:84
msgid "Next"
msgstr "Suivant"
@@ -3116,6 +3132,10 @@ msgstr ""
msgid "No live classes scheduled"
msgstr ""
#: frontend/src/pages/Quizzes.vue:56
msgid "No quizzes found"
msgstr ""
#: frontend/src/components/Modals/EvaluationModal.vue:53
msgid "No slots available for this date."
msgstr ""
@@ -3188,7 +3208,7 @@ msgstr ""
msgid "Notify me when available"
msgstr "M'avertir si disponible"
#: frontend/src/pages/BatchForm.vue:161
#: frontend/src/pages/BatchForm.vue:162
msgid "Number of seats available"
msgstr ""
@@ -3224,7 +3244,7 @@ msgstr ""
msgid "Only files of type {0} will be accepted."
msgstr ""
#: frontend/src/pages/CourseForm.vue:473 frontend/src/utils/index.js:518
#: frontend/src/pages/CourseForm.vue:494 frontend/src/utils/index.js:518
msgid "Only image file is allowed."
msgstr ""
@@ -3332,14 +3352,14 @@ msgid "Pages"
msgstr ""
#. Label of the paid_batch (Check) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:204
#: frontend/src/pages/BatchForm.vue:205
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:373
msgid "Paid Batch"
msgstr ""
#. Label of the paid_course (Check) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:205
#: frontend/src/pages/CourseForm.vue:214
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Paid Course"
msgstr ""
@@ -3370,7 +3390,7 @@ msgstr ""
#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz'
#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/QuizForm.vue:71 frontend/src/pages/Quizzes.vue:109
#: frontend/src/pages/QuizForm.vue:71 frontend/src/pages/Quizzes.vue:125
#: lms/lms/doctype/lms_quiz/lms_quiz.json
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
msgid "Passing Percentage"
@@ -3381,13 +3401,13 @@ msgstr ""
msgid "Password"
msgstr "Mot de Passe"
#: frontend/src/pages/CourseForm.vue:104
#: frontend/src/pages/CourseForm.vue:112
msgid "Paste the youtube link of a short video introducing the course"
msgstr ""
#. Label of the payment (Link) field in DocType 'Batch Student'
#. Label of the payment (Link) field in DocType 'LMS Enrollment'
#: frontend/src/pages/BatchForm.vue:198
#: frontend/src/pages/BatchForm.vue:199
#: lms/lms/doctype/batch_student/batch_student.json
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
msgid "Payment"
@@ -3499,7 +3519,7 @@ msgstr "Veuillez vérifier votre email pour validation"
msgid "Please click on the following button to set your new password"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:229
#: lms/lms/doctype/lms_batch/lms_batch.py:251
msgid "Please enable Zoom Settings to use this feature."
msgstr ""
@@ -3520,7 +3540,7 @@ msgstr ""
msgid "Please enter your answer"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:64
#: lms/lms/doctype/lms_batch/lms_batch.py:65
msgid "Please install the Payments app to create a paid batches."
msgstr ""
@@ -3630,17 +3650,17 @@ msgstr ""
msgid "Preview Image"
msgstr ""
#: frontend/src/pages/CourseForm.vue:102
#: frontend/src/pages/CourseForm.vue:110
msgid "Preview Video"
msgstr ""
#: frontend/src/pages/Lesson.vue:54
#: frontend/src/pages/Lesson.vue:49
msgid "Previous"
msgstr "Précedent"
#. Label of the pricing_tab (Tab Break) field in DocType 'LMS Batch'
#. Label of the pricing_tab (Tab Break) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:199
#: frontend/src/pages/CourseForm.vue:208
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/public/js/common_functions.js:368
@@ -3710,7 +3730,7 @@ msgstr ""
#. Label of the published (Check) field in DocType 'LMS Batch'
#. Label of the published (Check) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:108
#: frontend/src/pages/BatchForm.vue:24 frontend/src/pages/CourseForm.vue:162
#: frontend/src/pages/BatchForm.vue:24 frontend/src/pages/CourseForm.vue:171
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/public/js/common_functions.js:266
@@ -3723,7 +3743,7 @@ msgid "Published Courses"
msgstr ""
#. Label of the published_on (Date) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:166
#: frontend/src/pages/CourseForm.vue:175
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Published On"
msgstr "Publié le"
@@ -3838,8 +3858,8 @@ msgstr ""
msgid "Quiz will appear at the bottom of the lesson."
msgstr ""
#: frontend/src/pages/QuizForm.vue:441 frontend/src/pages/Quizzes.vue:120
#: frontend/src/pages/Quizzes.vue:130
#: frontend/src/pages/QuizForm.vue:441 frontend/src/pages/Quizzes.vue:136
#: frontend/src/pages/Quizzes.vue:146
msgid "Quizzes"
msgstr ""
@@ -3921,7 +3941,7 @@ msgstr "Rejeté"
msgid "Related Courses"
msgstr ""
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/CourseForm.vue:91
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/CourseForm.vue:99
msgid "Remove"
msgstr ""
@@ -3995,19 +4015,19 @@ msgstr ""
msgid "Route"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:172
#: lms/lms/doctype/lms_batch/lms_batch.py:194
msgid "Row #{0} Date cannot be outside the batch duration."
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:167
#: lms/lms/doctype/lms_batch/lms_batch.py:189
msgid "Row #{0} End time cannot be outside the batch duration."
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:149
#: lms/lms/doctype/lms_batch/lms_batch.py:171
msgid "Row #{0} Start time cannot be greater than or equal to end time."
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:158
#: lms/lms/doctype/lms_batch/lms_batch.py:180
msgid "Row #{0} Start time cannot be outside the batch duration."
msgstr ""
@@ -4031,7 +4051,7 @@ msgstr "Samedi"
#: frontend/src/components/Modals/Event.vue:129
#: frontend/src/components/QuizPlugin.vue:23
#: frontend/src/pages/AssignmentSubmission.vue:7
#: frontend/src/pages/BatchForm.vue:8 frontend/src/pages/CourseForm.vue:12
#: frontend/src/pages/BatchForm.vue:8 frontend/src/pages/CourseForm.vue:20
#: frontend/src/pages/JobCreation.vue:8 frontend/src/pages/LessonForm.vue:10
#: frontend/src/pages/QuizForm.vue:34 frontend/src/pages/QuizSubmission.vue:14
#: lms/public/js/common_functions.js:405
@@ -4080,7 +4100,7 @@ msgid "Search for an icon"
msgstr ""
#. Label of the seat_count (Int) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:158
#: frontend/src/pages/BatchForm.vue:159
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:327
msgid "Seat Count"
@@ -4124,7 +4144,7 @@ msgid "Set your Password"
msgstr ""
#: frontend/src/components/Modals/Settings.vue:7
#: frontend/src/pages/BatchForm.vue:152 frontend/src/pages/CourseForm.vue:152
#: frontend/src/pages/BatchForm.vue:153 frontend/src/pages/CourseForm.vue:161
#: frontend/src/pages/ProfileRoles.vue:4 frontend/src/pages/QuizForm.vue:78
msgid "Settings"
msgstr "Paramètres"
@@ -4134,12 +4154,12 @@ msgid "Share on"
msgstr ""
#. Label of the short_introduction (Small Text) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:30
#: frontend/src/pages/CourseForm.vue:38
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Short Introduction"
msgstr ""
#: frontend/src/pages/BatchForm.vue:93
#: frontend/src/pages/BatchForm.vue:94
msgid "Short description of the batch"
msgstr ""
@@ -4303,7 +4323,7 @@ msgstr "Démarrer"
#. Label of the start_date (Date) field in DocType 'Education Detail'
#. Label of the start_date (Date) field in DocType 'LMS Batch'
#. Label of the start_date (Date) field in DocType 'LMS Batch Old'
#: frontend/src/pages/BatchForm.vue:116
#: frontend/src/pages/BatchForm.vue:117
#: lms/lms/doctype/education_detail/education_detail.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
@@ -4312,7 +4332,7 @@ msgid "Start Date"
msgstr "Date de Début"
#: frontend/src/components/CourseCardOverlay.vue:63
#: frontend/src/pages/Lesson.vue:25
#: frontend/src/pages/Lesson.vue:21
#: lms/templates/emails/lms_course_interest.html:9
msgid "Start Learning"
msgstr ""
@@ -4324,7 +4344,7 @@ msgstr ""
#. Label of the start_time (Time) field in DocType 'LMS Certificate Evaluation'
#. Label of the start_time (Time) field in DocType 'LMS Certificate Request'
#. Label of the start_time (Time) field in DocType 'Scheduled Flow'
#: frontend/src/pages/BatchForm.vue:130
#: frontend/src/pages/BatchForm.vue:131
#: frontend/src/pages/ProfileEvaluator.vue:15
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -4430,7 +4450,7 @@ msgstr ""
msgid "Student Reviews"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:46
#: lms/lms/doctype/lms_batch/lms_batch.py:47
msgid "Student {0} has already been added to this batch."
msgstr ""
@@ -4496,13 +4516,14 @@ msgstr ""
#: frontend/src/components/BatchOverlay.vue:135
#: frontend/src/components/BatchStudents.vue:157
#: frontend/src/components/CourseCardOverlay.vue:161
#: frontend/src/components/Modals/AnnouncementModal.vue:98
#: frontend/src/components/Modals/AssessmentModal.vue:73
#: frontend/src/components/Modals/Event.vue:255
#: frontend/src/components/Modals/Event.vue:310
#: frontend/src/components/Modals/Question.vue:261
#: frontend/src/components/Modals/Question.vue:312
#: frontend/src/pages/QuizForm.vue:342 frontend/src/pages/QuizForm.vue:361
#: frontend/src/pages/QuizForm.vue:430
#: frontend/src/pages/CourseForm.vue:457 frontend/src/pages/QuizForm.vue:342
#: frontend/src/pages/QuizForm.vue:361 frontend/src/pages/QuizForm.vue:430
msgid "Success"
msgstr "Succès"
@@ -4569,7 +4590,7 @@ msgid "System Manager"
msgstr "Responsable Système"
#. Label of the tags (Data) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:112
#: frontend/src/pages/CourseForm.vue:120
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Tags"
msgstr "Balises"
@@ -4661,7 +4682,7 @@ msgstr ""
msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:140
#: lms/lms/doctype/lms_batch/lms_batch.py:141
msgid "There are no seats available in this batch."
msgstr ""
@@ -4692,7 +4713,7 @@ msgstr ""
msgid "This course has:"
msgstr ""
#: lms/lms/utils.py:1572
#: lms/lms/utils.py:1570
msgid "This course is free."
msgstr ""
@@ -4761,7 +4782,7 @@ msgstr ""
#. Label of the timezone (Data) field in DocType 'LMS Certificate Request'
#. Label of the timezone (Data) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/LiveClassModal.vue:44
#: frontend/src/pages/BatchForm.vue:142
#: frontend/src/pages/BatchForm.vue:143
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -4790,9 +4811,9 @@ msgstr ""
#. Label of the title (Data) field in DocType 'Work Experience'
#: frontend/src/components/Modals/DiscussionModal.vue:18
#: frontend/src/components/Modals/LiveClassModal.vue:23
#: frontend/src/pages/BatchForm.vue:18 frontend/src/pages/CourseForm.vue:24
#: frontend/src/pages/BatchForm.vue:18 frontend/src/pages/CourseForm.vue:32
#: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/QuizForm.vue:48
#: frontend/src/pages/Quizzes.vue:98 lms/lms/doctype/cohort/cohort.json
#: frontend/src/pages/Quizzes.vue:114 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json
#: lms/lms/doctype/course_chapter/course_chapter.json
@@ -4827,7 +4848,7 @@ msgstr "Jusqu'au"
msgid "To Date is mandatory in Work Experience."
msgstr ""
#: lms/lms/utils.py:1583
#: lms/lms/utils.py:1581
msgid "To join this batch, please contact the Administrator."
msgstr ""
@@ -4844,7 +4865,7 @@ msgid "Total"
msgstr ""
#. Label of the total_marks (Int) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:66 frontend/src/pages/Quizzes.vue:103
#: frontend/src/pages/QuizForm.vue:66 frontend/src/pages/Quizzes.vue:119
#: lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Total Marks"
msgstr ""
@@ -4944,7 +4965,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Cohort'
#. Label of the upcoming (Check) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:175 lms/lms/doctype/cohort/cohort.json
#: frontend/src/pages/CourseForm.vue:184 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Upcoming"
msgstr ""
@@ -4968,7 +4989,7 @@ msgstr "Mettre à Jour"
msgid "Update Password"
msgstr ""
#: frontend/src/pages/BatchForm.vue:51 frontend/src/pages/CourseForm.vue:72
#: frontend/src/pages/BatchForm.vue:51 frontend/src/pages/CourseForm.vue:80
msgid "Upload"
msgstr "Charger"
@@ -5237,6 +5258,10 @@ msgstr ""
msgid "You have been enrolled in this course"
msgstr ""
#: frontend/src/pages/Quizzes.vue:60
msgid "You have not created any quizzes yet. To create a new quiz, click on the \"New Quiz\" button above."
msgstr ""
#: lms/lms/widgets/NoPreviewModal.html:12 lms/public/js/common_functions.js:126
msgid "You have opted to be notified for this course. You will receive an email when the course becomes available."
msgstr "Vous avez choisi d'être notifié pour ce cours. Vous recevrez un courriel lorsque le cours sera disponible."
@@ -5315,7 +5340,7 @@ msgstr ""
msgid "cancel your application"
msgstr ""
#: frontend/src/pages/Lesson.vue:175
#: frontend/src/pages/Lesson.vue:170
msgid "completed"
msgstr "complété"
@@ -5363,7 +5388,7 @@ msgstr ""
msgid "you can"
msgstr ""
#: lms/lms/api.py:732 lms/lms/api.py:740
#: lms/lms/api.py:740 lms/lms/api.py:748
msgid "{0} Settings not found"
msgstr ""
@@ -5399,7 +5424,7 @@ msgstr ""
msgid "{0} is your evaluator"
msgstr ""
#: lms/lms/utils.py:709
#: lms/lms/utils.py:704
msgid "{0} mentioned you in a comment"
msgstr ""
@@ -5407,7 +5432,7 @@ msgstr ""
msgid "{0} mentioned you in a comment in your batch."
msgstr ""
#: lms/lms/utils.py:662 lms/lms/utils.py:668
#: lms/lms/utils.py:657 lms/lms/utils.py:663
msgid "{0} mentioned you in a comment in {1}"
msgstr "{0} vous a mentionné dans un commentaire dans {1}"

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2024-11-01 16:04+0000\n"
"PO-Revision-Date: 2024-11-05 14:33\n"
"POT-Creation-Date: 2024-11-08 16:04+0000\n"
"PO-Revision-Date: 2024-11-11 15:23\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Hungarian\n"
"MIME-Version: 1.0\n"
@@ -62,7 +62,7 @@ msgstr ""
msgid "<span style=\"font-size: 18px;\"><b>Statistics</b></span>"
msgstr ""
#: frontend/src/pages/CourseForm.vue:32
#: frontend/src/pages/CourseForm.vue:40
msgid "A one line introduction to the course that appears on the course card"
msgstr ""
@@ -228,7 +228,7 @@ msgstr "Már regisztrált"
#. Label of the amount (Currency) field in DocType 'Web Form'
#. Label of the amount (Currency) field in DocType 'LMS Batch'
#. Label of the amount (Currency) field in DocType 'LMS Payment'
#: frontend/src/pages/BatchForm.vue:208 lms/fixtures/custom_field.json
#: frontend/src/pages/BatchForm.vue:209 lms/fixtures/custom_field.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_payment/lms_payment.json
#: lms/public/js/common_functions.js:379
@@ -262,6 +262,10 @@ msgstr ""
msgid "Announcement"
msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:99
msgid "Announcement has been sent successfully"
msgstr ""
#. Label of the answer (Text Editor) field in DocType 'LMS Assignment'
#. Label of the answer (Text Editor) field in DocType 'LMS Assignment
#. Submission'
@@ -272,7 +276,7 @@ msgstr ""
msgid "Answer"
msgstr ""
#: frontend/src/pages/CourseForm.vue:76 frontend/src/pages/CourseForm.vue:94
#: frontend/src/pages/CourseForm.vue:84 frontend/src/pages/CourseForm.vue:102
msgid "Appears on the course card in the course list"
msgstr ""
@@ -346,7 +350,7 @@ msgstr ""
msgid "Assessment added successfully"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:74
#: lms/lms/doctype/lms_batch/lms_batch.py:75
msgid "Assessment {0} has already been added to this batch."
msgstr ""
@@ -426,7 +430,7 @@ msgstr ""
msgid "Average Rating"
msgstr ""
#: frontend/src/pages/Lesson.vue:101
#: frontend/src/pages/Lesson.vue:96
msgid "Back to Course"
msgstr ""
@@ -478,7 +482,7 @@ msgid "Batch Description"
msgstr ""
#. Label of the batch_details (Text Editor) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:97 lms/lms/doctype/lms_batch/lms_batch.json
#: frontend/src/pages/BatchForm.vue:98 lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:349
#: lms/templates/emails/batch_confirmation.html:30
msgid "Batch Details"
@@ -539,7 +543,7 @@ msgstr ""
msgid "Batch Updated"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:39
#: lms/lms/doctype/lms_batch/lms_batch.py:40
msgid "Batch end date cannot be before the batch start date"
msgstr ""
@@ -645,8 +649,8 @@ msgstr ""
#. Label of the category (Link) field in DocType 'LMS Batch'
#. Label of the category (Data) field in DocType 'LMS Category'
#. Label of the category (Link) field in DocType 'LMS Course'
#: frontend/src/pages/BatchForm.vue:189 frontend/src/pages/Batches.vue:16
#: frontend/src/pages/CourseForm.vue:139 frontend/src/pages/Courses.vue:17
#: frontend/src/pages/BatchForm.vue:190 frontend/src/pages/Batches.vue:16
#: frontend/src/pages/CourseForm.vue:147 frontend/src/pages/Courses.vue:17
#: frontend/src/pages/JobDetail.vue:102
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_category/lms_category.json
@@ -947,7 +951,7 @@ msgstr ""
msgid "Completed"
msgstr ""
#: frontend/src/pages/CourseForm.vue:192
#: frontend/src/pages/CourseForm.vue:201
msgid "Completion Certificate"
msgstr ""
@@ -1118,7 +1122,7 @@ msgstr ""
msgid "Course Data"
msgstr ""
#: frontend/src/pages/CourseForm.vue:41
#: frontend/src/pages/CourseForm.vue:49
msgid "Course Description"
msgstr ""
@@ -1127,7 +1131,7 @@ msgstr ""
msgid "Course Evaluator"
msgstr ""
#: frontend/src/pages/CourseForm.vue:54
#: frontend/src/pages/CourseForm.vue:62
msgid "Course Image"
msgstr ""
@@ -1150,7 +1154,7 @@ msgid "Course Name"
msgstr ""
#. Label of the course_price (Currency) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:210
#: frontend/src/pages/CourseForm.vue:219
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Course Price"
msgstr ""
@@ -1179,15 +1183,15 @@ msgstr ""
msgid "Course Title"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:318
#: lms/lms/doctype/lms_batch/lms_batch.py:340
msgid "Course already added to the batch."
msgstr ""
#: frontend/src/pages/CourseForm.vue:457
msgid "Course price and currency are mandatory for paid courses"
msgid "Course deleted successfully"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:57
#: lms/lms/doctype/lms_batch/lms_batch.py:58
msgid "Course {0} has already been added to this batch."
msgstr ""
@@ -1253,7 +1257,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/pages/BatchForm.vue:216 frontend/src/pages/CourseForm.vue:217
#: frontend/src/pages/BatchForm.vue:217 frontend/src/pages/CourseForm.vue:226
#: lms/fixtures/custom_field.json lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_payment/lms_payment.json
@@ -1311,7 +1315,7 @@ msgstr ""
#. Label of the section_break_glxh (Section Break) field in DocType 'LMS Live
#. Class'
#: frontend/src/pages/BatchForm.vue:110
#: frontend/src/pages/BatchForm.vue:111
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Date and Time"
msgstr ""
@@ -1347,13 +1351,22 @@ msgid "Degree Type"
msgstr ""
#: frontend/src/components/CourseOutline.vue:212
#: frontend/src/pages/CourseForm.vue:15 frontend/src/pages/CourseForm.vue:470
msgid "Delete"
msgstr ""
#: frontend/src/pages/CourseForm.vue:464
msgid "Delete Course"
msgstr ""
#: frontend/src/components/CourseOutline.vue:208
msgid "Delete Lesson"
msgstr ""
#: frontend/src/pages/CourseForm.vue:465
msgid "Deleting the course will also delete all its chapters and lessons. Are you sure you want to delete this course?"
msgstr ""
#. Label of the description (Text Editor) field in DocType 'Job Opportunity'
#. Label of the description (Small Text) field in DocType 'Certification'
#. Label of the description (Markdown Editor) field in DocType 'Cohort'
@@ -1367,7 +1380,7 @@ msgstr ""
#. Label of the description (Text) field in DocType 'LMS Live Class'
#. Label of the description (Small Text) field in DocType 'Work Experience'
#: frontend/src/components/Modals/LiveClassModal.vue:73
#: frontend/src/pages/BatchForm.vue:90 frontend/src/pages/JobCreation.vue:43
#: frontend/src/pages/BatchForm.vue:91 frontend/src/pages/JobCreation.vue:43
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/cohort/cohort.json
@@ -1388,12 +1401,12 @@ msgid "Desk"
msgstr ""
#: frontend/src/components/Modals/DiscussionModal.vue:22
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:20
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:28
#: frontend/src/pages/QuizForm.vue:42
msgid "Details"
msgstr "Részletek"
#: frontend/src/pages/CourseForm.vue:187
#: frontend/src/pages/CourseForm.vue:196
msgid "Disable Self Enrollment"
msgstr ""
@@ -1469,7 +1482,7 @@ msgstr ""
#: frontend/src/components/BatchOverlay.vue:93
#: frontend/src/components/CourseCardOverlay.vue:86
#: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/pages/JobDetail.vue:31 frontend/src/pages/Lesson.vue:70
#: frontend/src/pages/JobDetail.vue:31 frontend/src/pages/Lesson.vue:65
#: frontend/src/pages/Profile.vue:32
msgid "Edit"
msgstr ""
@@ -1551,7 +1564,7 @@ msgstr "Engedélyezve"
#. Label of the end_date (Date) field in DocType 'Cohort'
#. Label of the end_date (Date) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:122 lms/lms/doctype/cohort/cohort.json
#: frontend/src/pages/BatchForm.vue:123 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:282
msgid "End Date"
@@ -1569,7 +1582,7 @@ msgstr ""
#. Label of the end_time (Time) field in DocType 'LMS Certificate Evaluation'
#. Label of the end_time (Time) field in DocType 'LMS Certificate Request'
#. Label of the end_time (Time) field in DocType 'Scheduled Flow'
#: frontend/src/pages/BatchForm.vue:136
#: frontend/src/pages/BatchForm.vue:137
#: frontend/src/pages/ProfileEvaluator.vue:18
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1596,7 +1609,7 @@ msgstr ""
msgid "Enrolled successfully"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:97
#: lms/lms/doctype/lms_batch/lms_batch.py:98
msgid "Enrollment Confirmation for the Next Training Batch"
msgstr ""
@@ -1605,7 +1618,7 @@ msgstr ""
msgid "Enrollment Count"
msgstr ""
#: lms/lms/utils.py:1692
#: lms/lms/utils.py:1690
msgid "Enrollment Failed"
msgstr ""
@@ -1633,6 +1646,7 @@ msgstr ""
msgid "Enter the correct answer"
msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:104
#: frontend/src/components/Modals/Question.vue:246
#: frontend/src/components/Modals/Question.vue:266
#: frontend/src/components/Modals/Question.vue:323
@@ -1655,7 +1669,7 @@ msgid "Evaluation Details"
msgstr ""
#. Label of the evaluation_end_date (Date) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:165
#: frontend/src/pages/BatchForm.vue:166
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:333
msgid "Evaluation End Date"
@@ -1666,7 +1680,7 @@ msgstr ""
msgid "Evaluation Request"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:81
#: lms/lms/doctype/lms_batch/lms_batch.py:82
msgid "Evaluation end date cannot be less than the batch end date."
msgstr ""
@@ -1713,11 +1727,13 @@ msgid "Evaluator is Unavailable"
msgstr ""
#. Label of the event (Select) field in DocType 'LMS Badge'
#. Label of the event (Link) field in DocType 'LMS Live Class'
#: lms/lms/doctype/lms_badge/lms_badge.json
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Event"
msgstr "Esemény"
#: frontend/src/pages/BatchForm.vue:144
#: frontend/src/pages/BatchForm.vue:145
msgid "Example: IST (+5:30)"
msgstr ""
@@ -1791,7 +1807,7 @@ msgstr "Nem sikerül"
#. Label of the featured (Check) field in DocType 'LMS Course'
#: frontend/src/components/CourseCard.vue:16
#: frontend/src/pages/CourseForm.vue:180
#: frontend/src/pages/CourseForm.vue:189
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Featured"
msgstr "Kiemelt"
@@ -2078,7 +2094,7 @@ msgstr ""
msgid "If you set an amount here, then the USD equivalent setting will not get applied."
msgstr ""
#: lms/lms/doctype/lms_quiz/lms_quiz.py:62
#: lms/lms/doctype/lms_quiz/lms_quiz.py:63
msgid "If you want open ended questions then make sure each question in the quiz is of open ended type."
msgstr ""
@@ -2104,7 +2120,7 @@ msgstr ""
msgid "Image search powered by"
msgstr ""
#: lms/lms/doctype/lms_quiz/lms_quiz.py:221
#: lms/lms/doctype/lms_quiz/lms_quiz.py:222
msgid "Image: Corrupted Data Stream"
msgstr ""
@@ -2187,14 +2203,14 @@ msgstr ""
#. Label of the instructor_notes (Markdown Editor) field in DocType 'Course
#. Lesson'
#: frontend/src/pages/Lesson.vue:130 frontend/src/pages/LessonForm.vue:33
#: frontend/src/pages/Lesson.vue:125 frontend/src/pages/LessonForm.vue:33
#: lms/lms/doctype/course_lesson/course_lesson.json
msgid "Instructor Notes"
msgstr ""
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Batch'
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Course'
#: frontend/src/pages/BatchForm.vue:85 frontend/src/pages/CourseForm.vue:146
#: frontend/src/pages/BatchForm.vue:85 frontend/src/pages/CourseForm.vue:154
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Instructors"
@@ -2353,7 +2369,7 @@ msgstr ""
msgid "Join URL"
msgstr ""
#: frontend/src/pages/CourseForm.vue:128
#: frontend/src/pages/CourseForm.vue:136
msgid "Keywords for the course"
msgstr ""
@@ -2657,7 +2673,7 @@ msgstr ""
msgid "Links"
msgstr "Összekapcsolások"
#: frontend/src/pages/Quizzes.vue:131
#: frontend/src/pages/Quizzes.vue:147
msgid "List of quizzes"
msgstr ""
@@ -2707,7 +2723,7 @@ msgstr ""
#: frontend/src/components/NoPermission.vue:28
#: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:163
#: frontend/src/pages/Lesson.vue:29
#: frontend/src/pages/Lesson.vue:24
msgid "Login"
msgstr "Bejelentkezés"
@@ -2787,7 +2803,7 @@ msgid "Maximun Attempts"
msgstr ""
#. Label of the medium (Select) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:184
#: frontend/src/pages/BatchForm.vue:185
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:309
msgid "Medium"
@@ -3042,11 +3058,11 @@ msgstr ""
msgid "New Sign Up"
msgstr ""
#: lms/lms/utils.py:632
#: lms/lms/utils.py:627
msgid "New comment in batch {0}"
msgstr ""
#: lms/lms/utils.py:625
#: lms/lms/utils.py:620
msgid "New reply on the topic {0} in course {1}"
msgstr ""
@@ -3055,7 +3071,7 @@ msgstr ""
msgid "New {0}"
msgstr "Új {0}"
#: frontend/src/components/Quiz.vue:209 frontend/src/pages/Lesson.vue:89
#: frontend/src/components/Quiz.vue:209 frontend/src/pages/Lesson.vue:84
msgid "Next"
msgstr ""
@@ -3116,6 +3132,10 @@ msgstr ""
msgid "No live classes scheduled"
msgstr ""
#: frontend/src/pages/Quizzes.vue:56
msgid "No quizzes found"
msgstr ""
#: frontend/src/components/Modals/EvaluationModal.vue:53
msgid "No slots available for this date."
msgstr ""
@@ -3188,7 +3208,7 @@ msgstr "Értesítések"
msgid "Notify me when available"
msgstr ""
#: frontend/src/pages/BatchForm.vue:161
#: frontend/src/pages/BatchForm.vue:162
msgid "Number of seats available"
msgstr ""
@@ -3224,7 +3244,7 @@ msgstr ""
msgid "Only files of type {0} will be accepted."
msgstr ""
#: frontend/src/pages/CourseForm.vue:473 frontend/src/utils/index.js:518
#: frontend/src/pages/CourseForm.vue:494 frontend/src/utils/index.js:518
msgid "Only image file is allowed."
msgstr ""
@@ -3332,14 +3352,14 @@ msgid "Pages"
msgstr ""
#. Label of the paid_batch (Check) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:204
#: frontend/src/pages/BatchForm.vue:205
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:373
msgid "Paid Batch"
msgstr ""
#. Label of the paid_course (Check) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:205
#: frontend/src/pages/CourseForm.vue:214
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Paid Course"
msgstr ""
@@ -3370,7 +3390,7 @@ msgstr ""
#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz'
#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/QuizForm.vue:71 frontend/src/pages/Quizzes.vue:109
#: frontend/src/pages/QuizForm.vue:71 frontend/src/pages/Quizzes.vue:125
#: lms/lms/doctype/lms_quiz/lms_quiz.json
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
msgid "Passing Percentage"
@@ -3381,13 +3401,13 @@ msgstr ""
msgid "Password"
msgstr "Jelszó"
#: frontend/src/pages/CourseForm.vue:104
#: frontend/src/pages/CourseForm.vue:112
msgid "Paste the youtube link of a short video introducing the course"
msgstr ""
#. Label of the payment (Link) field in DocType 'Batch Student'
#. Label of the payment (Link) field in DocType 'LMS Enrollment'
#: frontend/src/pages/BatchForm.vue:198
#: frontend/src/pages/BatchForm.vue:199
#: lms/lms/doctype/batch_student/batch_student.json
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
msgid "Payment"
@@ -3499,7 +3519,7 @@ msgstr "Kérjük, ellenőrizze e-mail a vizsgálathoz"
msgid "Please click on the following button to set your new password"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:229
#: lms/lms/doctype/lms_batch/lms_batch.py:251
msgid "Please enable Zoom Settings to use this feature."
msgstr ""
@@ -3520,7 +3540,7 @@ msgstr ""
msgid "Please enter your answer"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:64
#: lms/lms/doctype/lms_batch/lms_batch.py:65
msgid "Please install the Payments app to create a paid batches."
msgstr ""
@@ -3630,17 +3650,17 @@ msgstr ""
msgid "Preview Image"
msgstr ""
#: frontend/src/pages/CourseForm.vue:102
#: frontend/src/pages/CourseForm.vue:110
msgid "Preview Video"
msgstr ""
#: frontend/src/pages/Lesson.vue:54
#: frontend/src/pages/Lesson.vue:49
msgid "Previous"
msgstr "Előző"
#. Label of the pricing_tab (Tab Break) field in DocType 'LMS Batch'
#. Label of the pricing_tab (Tab Break) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:199
#: frontend/src/pages/CourseForm.vue:208
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/public/js/common_functions.js:368
@@ -3710,7 +3730,7 @@ msgstr ""
#. Label of the published (Check) field in DocType 'LMS Batch'
#. Label of the published (Check) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:108
#: frontend/src/pages/BatchForm.vue:24 frontend/src/pages/CourseForm.vue:162
#: frontend/src/pages/BatchForm.vue:24 frontend/src/pages/CourseForm.vue:171
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/public/js/common_functions.js:266
@@ -3723,7 +3743,7 @@ msgid "Published Courses"
msgstr ""
#. Label of the published_on (Date) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:166
#: frontend/src/pages/CourseForm.vue:175
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Published On"
msgstr ""
@@ -3838,8 +3858,8 @@ msgstr ""
msgid "Quiz will appear at the bottom of the lesson."
msgstr ""
#: frontend/src/pages/QuizForm.vue:441 frontend/src/pages/Quizzes.vue:120
#: frontend/src/pages/Quizzes.vue:130
#: frontend/src/pages/QuizForm.vue:441 frontend/src/pages/Quizzes.vue:136
#: frontend/src/pages/Quizzes.vue:146
msgid "Quizzes"
msgstr ""
@@ -3921,7 +3941,7 @@ msgstr "Elutasítva"
msgid "Related Courses"
msgstr ""
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/CourseForm.vue:91
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/CourseForm.vue:99
msgid "Remove"
msgstr "eltávolítás"
@@ -3995,19 +4015,19 @@ msgstr ""
msgid "Route"
msgstr "Útvonal"
#: lms/lms/doctype/lms_batch/lms_batch.py:172
#: lms/lms/doctype/lms_batch/lms_batch.py:194
msgid "Row #{0} Date cannot be outside the batch duration."
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:167
#: lms/lms/doctype/lms_batch/lms_batch.py:189
msgid "Row #{0} End time cannot be outside the batch duration."
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:149
#: lms/lms/doctype/lms_batch/lms_batch.py:171
msgid "Row #{0} Start time cannot be greater than or equal to end time."
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:158
#: lms/lms/doctype/lms_batch/lms_batch.py:180
msgid "Row #{0} Start time cannot be outside the batch duration."
msgstr ""
@@ -4031,7 +4051,7 @@ msgstr "Szombat"
#: frontend/src/components/Modals/Event.vue:129
#: frontend/src/components/QuizPlugin.vue:23
#: frontend/src/pages/AssignmentSubmission.vue:7
#: frontend/src/pages/BatchForm.vue:8 frontend/src/pages/CourseForm.vue:12
#: frontend/src/pages/BatchForm.vue:8 frontend/src/pages/CourseForm.vue:20
#: frontend/src/pages/JobCreation.vue:8 frontend/src/pages/LessonForm.vue:10
#: frontend/src/pages/QuizForm.vue:34 frontend/src/pages/QuizSubmission.vue:14
#: lms/public/js/common_functions.js:405
@@ -4080,7 +4100,7 @@ msgid "Search for an icon"
msgstr ""
#. Label of the seat_count (Int) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:158
#: frontend/src/pages/BatchForm.vue:159
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:327
msgid "Seat Count"
@@ -4124,7 +4144,7 @@ msgid "Set your Password"
msgstr ""
#: frontend/src/components/Modals/Settings.vue:7
#: frontend/src/pages/BatchForm.vue:152 frontend/src/pages/CourseForm.vue:152
#: frontend/src/pages/BatchForm.vue:153 frontend/src/pages/CourseForm.vue:161
#: frontend/src/pages/ProfileRoles.vue:4 frontend/src/pages/QuizForm.vue:78
msgid "Settings"
msgstr ""
@@ -4134,12 +4154,12 @@ msgid "Share on"
msgstr ""
#. Label of the short_introduction (Small Text) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:30
#: frontend/src/pages/CourseForm.vue:38
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Short Introduction"
msgstr ""
#: frontend/src/pages/BatchForm.vue:93
#: frontend/src/pages/BatchForm.vue:94
msgid "Short description of the batch"
msgstr ""
@@ -4303,7 +4323,7 @@ msgstr ""
#. Label of the start_date (Date) field in DocType 'Education Detail'
#. Label of the start_date (Date) field in DocType 'LMS Batch'
#. Label of the start_date (Date) field in DocType 'LMS Batch Old'
#: frontend/src/pages/BatchForm.vue:116
#: frontend/src/pages/BatchForm.vue:117
#: lms/lms/doctype/education_detail/education_detail.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
@@ -4312,7 +4332,7 @@ msgid "Start Date"
msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:63
#: frontend/src/pages/Lesson.vue:25
#: frontend/src/pages/Lesson.vue:21
#: lms/templates/emails/lms_course_interest.html:9
msgid "Start Learning"
msgstr ""
@@ -4324,7 +4344,7 @@ msgstr ""
#. Label of the start_time (Time) field in DocType 'LMS Certificate Evaluation'
#. Label of the start_time (Time) field in DocType 'LMS Certificate Request'
#. Label of the start_time (Time) field in DocType 'Scheduled Flow'
#: frontend/src/pages/BatchForm.vue:130
#: frontend/src/pages/BatchForm.vue:131
#: frontend/src/pages/ProfileEvaluator.vue:15
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -4430,7 +4450,7 @@ msgstr ""
msgid "Student Reviews"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:46
#: lms/lms/doctype/lms_batch/lms_batch.py:47
msgid "Student {0} has already been added to this batch."
msgstr ""
@@ -4496,13 +4516,14 @@ msgstr ""
#: frontend/src/components/BatchOverlay.vue:135
#: frontend/src/components/BatchStudents.vue:157
#: frontend/src/components/CourseCardOverlay.vue:161
#: frontend/src/components/Modals/AnnouncementModal.vue:98
#: frontend/src/components/Modals/AssessmentModal.vue:73
#: frontend/src/components/Modals/Event.vue:255
#: frontend/src/components/Modals/Event.vue:310
#: frontend/src/components/Modals/Question.vue:261
#: frontend/src/components/Modals/Question.vue:312
#: frontend/src/pages/QuizForm.vue:342 frontend/src/pages/QuizForm.vue:361
#: frontend/src/pages/QuizForm.vue:430
#: frontend/src/pages/CourseForm.vue:457 frontend/src/pages/QuizForm.vue:342
#: frontend/src/pages/QuizForm.vue:361 frontend/src/pages/QuizForm.vue:430
msgid "Success"
msgstr ""
@@ -4569,7 +4590,7 @@ msgid "System Manager"
msgstr ""
#. Label of the tags (Data) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:112
#: frontend/src/pages/CourseForm.vue:120
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Tags"
msgstr "Címkék"
@@ -4661,7 +4682,7 @@ msgstr ""
msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:140
#: lms/lms/doctype/lms_batch/lms_batch.py:141
msgid "There are no seats available in this batch."
msgstr ""
@@ -4692,7 +4713,7 @@ msgstr ""
msgid "This course has:"
msgstr ""
#: lms/lms/utils.py:1572
#: lms/lms/utils.py:1570
msgid "This course is free."
msgstr ""
@@ -4761,7 +4782,7 @@ msgstr ""
#. Label of the timezone (Data) field in DocType 'LMS Certificate Request'
#. Label of the timezone (Data) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/LiveClassModal.vue:44
#: frontend/src/pages/BatchForm.vue:142
#: frontend/src/pages/BatchForm.vue:143
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -4790,9 +4811,9 @@ msgstr ""
#. Label of the title (Data) field in DocType 'Work Experience'
#: frontend/src/components/Modals/DiscussionModal.vue:18
#: frontend/src/components/Modals/LiveClassModal.vue:23
#: frontend/src/pages/BatchForm.vue:18 frontend/src/pages/CourseForm.vue:24
#: frontend/src/pages/BatchForm.vue:18 frontend/src/pages/CourseForm.vue:32
#: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/QuizForm.vue:48
#: frontend/src/pages/Quizzes.vue:98 lms/lms/doctype/cohort/cohort.json
#: frontend/src/pages/Quizzes.vue:114 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json
#: lms/lms/doctype/course_chapter/course_chapter.json
@@ -4827,7 +4848,7 @@ msgstr ""
msgid "To Date is mandatory in Work Experience."
msgstr ""
#: lms/lms/utils.py:1583
#: lms/lms/utils.py:1581
msgid "To join this batch, please contact the Administrator."
msgstr ""
@@ -4844,7 +4865,7 @@ msgid "Total"
msgstr ""
#. Label of the total_marks (Int) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:66 frontend/src/pages/Quizzes.vue:103
#: frontend/src/pages/QuizForm.vue:66 frontend/src/pages/Quizzes.vue:119
#: lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Total Marks"
msgstr ""
@@ -4944,7 +4965,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Cohort'
#. Label of the upcoming (Check) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:175 lms/lms/doctype/cohort/cohort.json
#: frontend/src/pages/CourseForm.vue:184 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Upcoming"
msgstr ""
@@ -4968,7 +4989,7 @@ msgstr ""
msgid "Update Password"
msgstr ""
#: frontend/src/pages/BatchForm.vue:51 frontend/src/pages/CourseForm.vue:72
#: frontend/src/pages/BatchForm.vue:51 frontend/src/pages/CourseForm.vue:80
msgid "Upload"
msgstr "Feltöltés"
@@ -5237,6 +5258,10 @@ msgstr ""
msgid "You have been enrolled in this course"
msgstr ""
#: frontend/src/pages/Quizzes.vue:60
msgid "You have not created any quizzes yet. To create a new quiz, click on the \"New Quiz\" button above."
msgstr ""
#: lms/lms/widgets/NoPreviewModal.html:12 lms/public/js/common_functions.js:126
msgid "You have opted to be notified for this course. You will receive an email when the course becomes available."
msgstr ""
@@ -5315,7 +5340,7 @@ msgstr ""
msgid "cancel your application"
msgstr ""
#: frontend/src/pages/Lesson.vue:175
#: frontend/src/pages/Lesson.vue:170
msgid "completed"
msgstr "befejezve"
@@ -5363,7 +5388,7 @@ msgstr ""
msgid "you can"
msgstr ""
#: lms/lms/api.py:732 lms/lms/api.py:740
#: lms/lms/api.py:740 lms/lms/api.py:748
msgid "{0} Settings not found"
msgstr ""
@@ -5399,7 +5424,7 @@ msgstr ""
msgid "{0} is your evaluator"
msgstr ""
#: lms/lms/utils.py:709
#: lms/lms/utils.py:704
msgid "{0} mentioned you in a comment"
msgstr ""
@@ -5407,7 +5432,7 @@ msgstr ""
msgid "{0} mentioned you in a comment in your batch."
msgstr ""
#: lms/lms/utils.py:662 lms/lms/utils.py:668
#: lms/lms/utils.py:657 lms/lms/utils.py:663
msgid "{0} mentioned you in a comment in {1}"
msgstr ""

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: 2024-11-01 16:04+0000\n"
"PO-Revision-Date: 2024-11-01 16:04+0000\n"
"POT-Creation-Date: 2024-11-08 16:04+0000\n"
"PO-Revision-Date: 2024-11-08 16:04+0000\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: jannat@frappe.io\n"
"MIME-Version: 1.0\n"
@@ -60,7 +60,7 @@ msgstr ""
msgid "<span style=\"font-size: 18px;\"><b>Statistics</b></span>"
msgstr ""
#: frontend/src/pages/CourseForm.vue:32
#: frontend/src/pages/CourseForm.vue:40
msgid "A one line introduction to the course that appears on the course card"
msgstr ""
@@ -226,7 +226,7 @@ msgstr ""
#. Label of the amount (Currency) field in DocType 'Web Form'
#. Label of the amount (Currency) field in DocType 'LMS Batch'
#. Label of the amount (Currency) field in DocType 'LMS Payment'
#: frontend/src/pages/BatchForm.vue:208 lms/fixtures/custom_field.json
#: frontend/src/pages/BatchForm.vue:209 lms/fixtures/custom_field.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_payment/lms_payment.json
#: lms/public/js/common_functions.js:379
@@ -260,6 +260,10 @@ msgstr ""
msgid "Announcement"
msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:99
msgid "Announcement has been sent successfully"
msgstr ""
#. Label of the answer (Text Editor) field in DocType 'LMS Assignment'
#. Label of the answer (Text Editor) field in DocType 'LMS Assignment
#. Submission'
@@ -270,7 +274,7 @@ msgstr ""
msgid "Answer"
msgstr ""
#: frontend/src/pages/CourseForm.vue:76 frontend/src/pages/CourseForm.vue:94
#: frontend/src/pages/CourseForm.vue:84 frontend/src/pages/CourseForm.vue:102
msgid "Appears on the course card in the course list"
msgstr ""
@@ -344,7 +348,7 @@ msgstr ""
msgid "Assessment added successfully"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:74
#: lms/lms/doctype/lms_batch/lms_batch.py:75
msgid "Assessment {0} has already been added to this batch."
msgstr ""
@@ -424,7 +428,7 @@ msgstr ""
msgid "Average Rating"
msgstr ""
#: frontend/src/pages/Lesson.vue:101
#: frontend/src/pages/Lesson.vue:96
msgid "Back to Course"
msgstr ""
@@ -476,7 +480,7 @@ msgid "Batch Description"
msgstr ""
#. Label of the batch_details (Text Editor) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:97 lms/lms/doctype/lms_batch/lms_batch.json
#: frontend/src/pages/BatchForm.vue:98 lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:349
#: lms/templates/emails/batch_confirmation.html:30
msgid "Batch Details"
@@ -537,7 +541,7 @@ msgstr ""
msgid "Batch Updated"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:39
#: lms/lms/doctype/lms_batch/lms_batch.py:40
msgid "Batch end date cannot be before the batch start date"
msgstr ""
@@ -643,8 +647,8 @@ msgstr ""
#. Label of the category (Link) field in DocType 'LMS Batch'
#. Label of the category (Data) field in DocType 'LMS Category'
#. Label of the category (Link) field in DocType 'LMS Course'
#: frontend/src/pages/BatchForm.vue:189 frontend/src/pages/Batches.vue:16
#: frontend/src/pages/CourseForm.vue:139 frontend/src/pages/Courses.vue:17
#: frontend/src/pages/BatchForm.vue:190 frontend/src/pages/Batches.vue:16
#: frontend/src/pages/CourseForm.vue:147 frontend/src/pages/Courses.vue:17
#: frontend/src/pages/JobDetail.vue:102
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_category/lms_category.json
@@ -945,7 +949,7 @@ msgstr ""
msgid "Completed"
msgstr ""
#: frontend/src/pages/CourseForm.vue:192
#: frontend/src/pages/CourseForm.vue:201
msgid "Completion Certificate"
msgstr ""
@@ -1116,7 +1120,7 @@ msgstr ""
msgid "Course Data"
msgstr ""
#: frontend/src/pages/CourseForm.vue:41
#: frontend/src/pages/CourseForm.vue:49
msgid "Course Description"
msgstr ""
@@ -1125,7 +1129,7 @@ msgstr ""
msgid "Course Evaluator"
msgstr ""
#: frontend/src/pages/CourseForm.vue:54
#: frontend/src/pages/CourseForm.vue:62
msgid "Course Image"
msgstr ""
@@ -1148,7 +1152,7 @@ msgid "Course Name"
msgstr ""
#. Label of the course_price (Currency) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:210
#: frontend/src/pages/CourseForm.vue:219
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Course Price"
msgstr ""
@@ -1177,15 +1181,15 @@ msgstr ""
msgid "Course Title"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:318
#: lms/lms/doctype/lms_batch/lms_batch.py:340
msgid "Course already added to the batch."
msgstr ""
#: frontend/src/pages/CourseForm.vue:457
msgid "Course price and currency are mandatory for paid courses"
msgid "Course deleted successfully"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:57
#: lms/lms/doctype/lms_batch/lms_batch.py:58
msgid "Course {0} has already been added to this batch."
msgstr ""
@@ -1251,7 +1255,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/pages/BatchForm.vue:216 frontend/src/pages/CourseForm.vue:217
#: frontend/src/pages/BatchForm.vue:217 frontend/src/pages/CourseForm.vue:226
#: lms/fixtures/custom_field.json lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_payment/lms_payment.json
@@ -1309,7 +1313,7 @@ msgstr ""
#. Label of the section_break_glxh (Section Break) field in DocType 'LMS Live
#. Class'
#: frontend/src/pages/BatchForm.vue:110
#: frontend/src/pages/BatchForm.vue:111
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Date and Time"
msgstr ""
@@ -1345,13 +1349,22 @@ msgid "Degree Type"
msgstr ""
#: frontend/src/components/CourseOutline.vue:212
#: frontend/src/pages/CourseForm.vue:15 frontend/src/pages/CourseForm.vue:470
msgid "Delete"
msgstr ""
#: frontend/src/pages/CourseForm.vue:464
msgid "Delete Course"
msgstr ""
#: frontend/src/components/CourseOutline.vue:208
msgid "Delete Lesson"
msgstr ""
#: frontend/src/pages/CourseForm.vue:465
msgid "Deleting the course will also delete all its chapters and lessons. Are you sure you want to delete this course?"
msgstr ""
#. Label of the description (Text Editor) field in DocType 'Job Opportunity'
#. Label of the description (Small Text) field in DocType 'Certification'
#. Label of the description (Markdown Editor) field in DocType 'Cohort'
@@ -1365,7 +1378,7 @@ msgstr ""
#. Label of the description (Text) field in DocType 'LMS Live Class'
#. Label of the description (Small Text) field in DocType 'Work Experience'
#: frontend/src/components/Modals/LiveClassModal.vue:73
#: frontend/src/pages/BatchForm.vue:90 frontend/src/pages/JobCreation.vue:43
#: frontend/src/pages/BatchForm.vue:91 frontend/src/pages/JobCreation.vue:43
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/cohort/cohort.json
@@ -1386,12 +1399,12 @@ msgid "Desk"
msgstr ""
#: frontend/src/components/Modals/DiscussionModal.vue:22
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:20
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:28
#: frontend/src/pages/QuizForm.vue:42
msgid "Details"
msgstr ""
#: frontend/src/pages/CourseForm.vue:187
#: frontend/src/pages/CourseForm.vue:196
msgid "Disable Self Enrollment"
msgstr ""
@@ -1467,7 +1480,7 @@ msgstr ""
#: frontend/src/components/BatchOverlay.vue:93
#: frontend/src/components/CourseCardOverlay.vue:86
#: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/pages/JobDetail.vue:31 frontend/src/pages/Lesson.vue:70
#: frontend/src/pages/JobDetail.vue:31 frontend/src/pages/Lesson.vue:65
#: frontend/src/pages/Profile.vue:32
msgid "Edit"
msgstr ""
@@ -1549,7 +1562,7 @@ msgstr ""
#. Label of the end_date (Date) field in DocType 'Cohort'
#. Label of the end_date (Date) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:122 lms/lms/doctype/cohort/cohort.json
#: frontend/src/pages/BatchForm.vue:123 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:282
msgid "End Date"
@@ -1567,7 +1580,7 @@ msgstr ""
#. Label of the end_time (Time) field in DocType 'LMS Certificate Evaluation'
#. Label of the end_time (Time) field in DocType 'LMS Certificate Request'
#. Label of the end_time (Time) field in DocType 'Scheduled Flow'
#: frontend/src/pages/BatchForm.vue:136
#: frontend/src/pages/BatchForm.vue:137
#: frontend/src/pages/ProfileEvaluator.vue:18
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1594,7 +1607,7 @@ msgstr ""
msgid "Enrolled successfully"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:97
#: lms/lms/doctype/lms_batch/lms_batch.py:98
msgid "Enrollment Confirmation for the Next Training Batch"
msgstr ""
@@ -1603,7 +1616,7 @@ msgstr ""
msgid "Enrollment Count"
msgstr ""
#: lms/lms/utils.py:1692
#: lms/lms/utils.py:1690
msgid "Enrollment Failed"
msgstr ""
@@ -1631,6 +1644,7 @@ msgstr ""
msgid "Enter the correct answer"
msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:104
#: frontend/src/components/Modals/Question.vue:246
#: frontend/src/components/Modals/Question.vue:266
#: frontend/src/components/Modals/Question.vue:323
@@ -1653,7 +1667,7 @@ msgid "Evaluation Details"
msgstr ""
#. Label of the evaluation_end_date (Date) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:165
#: frontend/src/pages/BatchForm.vue:166
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:333
msgid "Evaluation End Date"
@@ -1664,7 +1678,7 @@ msgstr ""
msgid "Evaluation Request"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:81
#: lms/lms/doctype/lms_batch/lms_batch.py:82
msgid "Evaluation end date cannot be less than the batch end date."
msgstr ""
@@ -1711,11 +1725,13 @@ msgid "Evaluator is Unavailable"
msgstr ""
#. Label of the event (Select) field in DocType 'LMS Badge'
#. Label of the event (Link) field in DocType 'LMS Live Class'
#: lms/lms/doctype/lms_badge/lms_badge.json
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Event"
msgstr ""
#: frontend/src/pages/BatchForm.vue:144
#: frontend/src/pages/BatchForm.vue:145
msgid "Example: IST (+5:30)"
msgstr ""
@@ -1789,7 +1805,7 @@ msgstr ""
#. Label of the featured (Check) field in DocType 'LMS Course'
#: frontend/src/components/CourseCard.vue:16
#: frontend/src/pages/CourseForm.vue:180
#: frontend/src/pages/CourseForm.vue:189
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Featured"
msgstr ""
@@ -2076,7 +2092,7 @@ msgstr ""
msgid "If you set an amount here, then the USD equivalent setting will not get applied."
msgstr ""
#: lms/lms/doctype/lms_quiz/lms_quiz.py:62
#: lms/lms/doctype/lms_quiz/lms_quiz.py:63
msgid "If you want open ended questions then make sure each question in the quiz is of open ended type."
msgstr ""
@@ -2102,7 +2118,7 @@ msgstr ""
msgid "Image search powered by"
msgstr ""
#: lms/lms/doctype/lms_quiz/lms_quiz.py:221
#: lms/lms/doctype/lms_quiz/lms_quiz.py:222
msgid "Image: Corrupted Data Stream"
msgstr ""
@@ -2185,14 +2201,14 @@ msgstr ""
#. Label of the instructor_notes (Markdown Editor) field in DocType 'Course
#. Lesson'
#: frontend/src/pages/Lesson.vue:130 frontend/src/pages/LessonForm.vue:33
#: frontend/src/pages/Lesson.vue:125 frontend/src/pages/LessonForm.vue:33
#: lms/lms/doctype/course_lesson/course_lesson.json
msgid "Instructor Notes"
msgstr ""
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Batch'
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Course'
#: frontend/src/pages/BatchForm.vue:85 frontend/src/pages/CourseForm.vue:146
#: frontend/src/pages/BatchForm.vue:85 frontend/src/pages/CourseForm.vue:154
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Instructors"
@@ -2351,7 +2367,7 @@ msgstr ""
msgid "Join URL"
msgstr ""
#: frontend/src/pages/CourseForm.vue:128
#: frontend/src/pages/CourseForm.vue:136
msgid "Keywords for the course"
msgstr ""
@@ -2655,7 +2671,7 @@ msgstr ""
msgid "Links"
msgstr ""
#: frontend/src/pages/Quizzes.vue:131
#: frontend/src/pages/Quizzes.vue:147
msgid "List of quizzes"
msgstr ""
@@ -2705,7 +2721,7 @@ msgstr ""
#: frontend/src/components/NoPermission.vue:28
#: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:163
#: frontend/src/pages/Lesson.vue:29
#: frontend/src/pages/Lesson.vue:24
msgid "Login"
msgstr ""
@@ -2785,7 +2801,7 @@ msgid "Maximun Attempts"
msgstr ""
#. Label of the medium (Select) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:184
#: frontend/src/pages/BatchForm.vue:185
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:309
msgid "Medium"
@@ -3040,11 +3056,11 @@ msgstr ""
msgid "New Sign Up"
msgstr ""
#: lms/lms/utils.py:632
#: lms/lms/utils.py:627
msgid "New comment in batch {0}"
msgstr ""
#: lms/lms/utils.py:625
#: lms/lms/utils.py:620
msgid "New reply on the topic {0} in course {1}"
msgstr ""
@@ -3053,7 +3069,7 @@ msgstr ""
msgid "New {0}"
msgstr ""
#: frontend/src/components/Quiz.vue:209 frontend/src/pages/Lesson.vue:89
#: frontend/src/components/Quiz.vue:209 frontend/src/pages/Lesson.vue:84
msgid "Next"
msgstr ""
@@ -3114,6 +3130,10 @@ msgstr ""
msgid "No live classes scheduled"
msgstr ""
#: frontend/src/pages/Quizzes.vue:56
msgid "No quizzes found"
msgstr ""
#: frontend/src/components/Modals/EvaluationModal.vue:53
msgid "No slots available for this date."
msgstr ""
@@ -3186,7 +3206,7 @@ msgstr ""
msgid "Notify me when available"
msgstr ""
#: frontend/src/pages/BatchForm.vue:161
#: frontend/src/pages/BatchForm.vue:162
msgid "Number of seats available"
msgstr ""
@@ -3222,7 +3242,7 @@ msgstr ""
msgid "Only files of type {0} will be accepted."
msgstr ""
#: frontend/src/pages/CourseForm.vue:473 frontend/src/utils/index.js:518
#: frontend/src/pages/CourseForm.vue:494 frontend/src/utils/index.js:518
msgid "Only image file is allowed."
msgstr ""
@@ -3330,14 +3350,14 @@ msgid "Pages"
msgstr ""
#. Label of the paid_batch (Check) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:204
#: frontend/src/pages/BatchForm.vue:205
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:373
msgid "Paid Batch"
msgstr ""
#. Label of the paid_course (Check) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:205
#: frontend/src/pages/CourseForm.vue:214
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Paid Course"
msgstr ""
@@ -3368,7 +3388,7 @@ msgstr ""
#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz'
#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/QuizForm.vue:71 frontend/src/pages/Quizzes.vue:109
#: frontend/src/pages/QuizForm.vue:71 frontend/src/pages/Quizzes.vue:125
#: lms/lms/doctype/lms_quiz/lms_quiz.json
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
msgid "Passing Percentage"
@@ -3379,13 +3399,13 @@ msgstr ""
msgid "Password"
msgstr ""
#: frontend/src/pages/CourseForm.vue:104
#: frontend/src/pages/CourseForm.vue:112
msgid "Paste the youtube link of a short video introducing the course"
msgstr ""
#. Label of the payment (Link) field in DocType 'Batch Student'
#. Label of the payment (Link) field in DocType 'LMS Enrollment'
#: frontend/src/pages/BatchForm.vue:198
#: frontend/src/pages/BatchForm.vue:199
#: lms/lms/doctype/batch_student/batch_student.json
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
msgid "Payment"
@@ -3497,7 +3517,7 @@ msgstr ""
msgid "Please click on the following button to set your new password"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:229
#: lms/lms/doctype/lms_batch/lms_batch.py:251
msgid "Please enable Zoom Settings to use this feature."
msgstr ""
@@ -3518,7 +3538,7 @@ msgstr ""
msgid "Please enter your answer"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:64
#: lms/lms/doctype/lms_batch/lms_batch.py:65
msgid "Please install the Payments app to create a paid batches."
msgstr ""
@@ -3628,17 +3648,17 @@ msgstr ""
msgid "Preview Image"
msgstr ""
#: frontend/src/pages/CourseForm.vue:102
#: frontend/src/pages/CourseForm.vue:110
msgid "Preview Video"
msgstr ""
#: frontend/src/pages/Lesson.vue:54
#: frontend/src/pages/Lesson.vue:49
msgid "Previous"
msgstr ""
#. Label of the pricing_tab (Tab Break) field in DocType 'LMS Batch'
#. Label of the pricing_tab (Tab Break) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:199
#: frontend/src/pages/CourseForm.vue:208
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/public/js/common_functions.js:368
@@ -3708,7 +3728,7 @@ msgstr ""
#. Label of the published (Check) field in DocType 'LMS Batch'
#. Label of the published (Check) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:108
#: frontend/src/pages/BatchForm.vue:24 frontend/src/pages/CourseForm.vue:162
#: frontend/src/pages/BatchForm.vue:24 frontend/src/pages/CourseForm.vue:171
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/public/js/common_functions.js:266
@@ -3721,7 +3741,7 @@ msgid "Published Courses"
msgstr ""
#. Label of the published_on (Date) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:166
#: frontend/src/pages/CourseForm.vue:175
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Published On"
msgstr ""
@@ -3836,8 +3856,8 @@ msgstr ""
msgid "Quiz will appear at the bottom of the lesson."
msgstr ""
#: frontend/src/pages/QuizForm.vue:441 frontend/src/pages/Quizzes.vue:120
#: frontend/src/pages/Quizzes.vue:130
#: frontend/src/pages/QuizForm.vue:441 frontend/src/pages/Quizzes.vue:136
#: frontend/src/pages/Quizzes.vue:146
msgid "Quizzes"
msgstr ""
@@ -3919,7 +3939,7 @@ msgstr ""
msgid "Related Courses"
msgstr ""
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/CourseForm.vue:91
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/CourseForm.vue:99
msgid "Remove"
msgstr ""
@@ -3993,19 +4013,19 @@ msgstr ""
msgid "Route"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:172
#: lms/lms/doctype/lms_batch/lms_batch.py:194
msgid "Row #{0} Date cannot be outside the batch duration."
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:167
#: lms/lms/doctype/lms_batch/lms_batch.py:189
msgid "Row #{0} End time cannot be outside the batch duration."
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:149
#: lms/lms/doctype/lms_batch/lms_batch.py:171
msgid "Row #{0} Start time cannot be greater than or equal to end time."
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:158
#: lms/lms/doctype/lms_batch/lms_batch.py:180
msgid "Row #{0} Start time cannot be outside the batch duration."
msgstr ""
@@ -4029,7 +4049,7 @@ msgstr ""
#: frontend/src/components/Modals/Event.vue:129
#: frontend/src/components/QuizPlugin.vue:23
#: frontend/src/pages/AssignmentSubmission.vue:7
#: frontend/src/pages/BatchForm.vue:8 frontend/src/pages/CourseForm.vue:12
#: frontend/src/pages/BatchForm.vue:8 frontend/src/pages/CourseForm.vue:20
#: frontend/src/pages/JobCreation.vue:8 frontend/src/pages/LessonForm.vue:10
#: frontend/src/pages/QuizForm.vue:34 frontend/src/pages/QuizSubmission.vue:14
#: lms/public/js/common_functions.js:405
@@ -4078,7 +4098,7 @@ msgid "Search for an icon"
msgstr ""
#. Label of the seat_count (Int) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:158
#: frontend/src/pages/BatchForm.vue:159
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:327
msgid "Seat Count"
@@ -4122,7 +4142,7 @@ msgid "Set your Password"
msgstr ""
#: frontend/src/components/Modals/Settings.vue:7
#: frontend/src/pages/BatchForm.vue:152 frontend/src/pages/CourseForm.vue:152
#: frontend/src/pages/BatchForm.vue:153 frontend/src/pages/CourseForm.vue:161
#: frontend/src/pages/ProfileRoles.vue:4 frontend/src/pages/QuizForm.vue:78
msgid "Settings"
msgstr ""
@@ -4132,12 +4152,12 @@ msgid "Share on"
msgstr ""
#. Label of the short_introduction (Small Text) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:30
#: frontend/src/pages/CourseForm.vue:38
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Short Introduction"
msgstr ""
#: frontend/src/pages/BatchForm.vue:93
#: frontend/src/pages/BatchForm.vue:94
msgid "Short description of the batch"
msgstr ""
@@ -4301,7 +4321,7 @@ msgstr ""
#. Label of the start_date (Date) field in DocType 'Education Detail'
#. Label of the start_date (Date) field in DocType 'LMS Batch'
#. Label of the start_date (Date) field in DocType 'LMS Batch Old'
#: frontend/src/pages/BatchForm.vue:116
#: frontend/src/pages/BatchForm.vue:117
#: lms/lms/doctype/education_detail/education_detail.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
@@ -4310,7 +4330,7 @@ msgid "Start Date"
msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:63
#: frontend/src/pages/Lesson.vue:25
#: frontend/src/pages/Lesson.vue:21
#: lms/templates/emails/lms_course_interest.html:9
msgid "Start Learning"
msgstr ""
@@ -4322,7 +4342,7 @@ msgstr ""
#. Label of the start_time (Time) field in DocType 'LMS Certificate Evaluation'
#. Label of the start_time (Time) field in DocType 'LMS Certificate Request'
#. Label of the start_time (Time) field in DocType 'Scheduled Flow'
#: frontend/src/pages/BatchForm.vue:130
#: frontend/src/pages/BatchForm.vue:131
#: frontend/src/pages/ProfileEvaluator.vue:15
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -4428,7 +4448,7 @@ msgstr ""
msgid "Student Reviews"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:46
#: lms/lms/doctype/lms_batch/lms_batch.py:47
msgid "Student {0} has already been added to this batch."
msgstr ""
@@ -4494,13 +4514,14 @@ msgstr ""
#: frontend/src/components/BatchOverlay.vue:135
#: frontend/src/components/BatchStudents.vue:157
#: frontend/src/components/CourseCardOverlay.vue:161
#: frontend/src/components/Modals/AnnouncementModal.vue:98
#: frontend/src/components/Modals/AssessmentModal.vue:73
#: frontend/src/components/Modals/Event.vue:255
#: frontend/src/components/Modals/Event.vue:310
#: frontend/src/components/Modals/Question.vue:261
#: frontend/src/components/Modals/Question.vue:312
#: frontend/src/pages/QuizForm.vue:342 frontend/src/pages/QuizForm.vue:361
#: frontend/src/pages/QuizForm.vue:430
#: frontend/src/pages/CourseForm.vue:457 frontend/src/pages/QuizForm.vue:342
#: frontend/src/pages/QuizForm.vue:361 frontend/src/pages/QuizForm.vue:430
msgid "Success"
msgstr ""
@@ -4567,7 +4588,7 @@ msgid "System Manager"
msgstr ""
#. Label of the tags (Data) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:112
#: frontend/src/pages/CourseForm.vue:120
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Tags"
msgstr ""
@@ -4659,7 +4680,7 @@ msgstr ""
msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:140
#: lms/lms/doctype/lms_batch/lms_batch.py:141
msgid "There are no seats available in this batch."
msgstr ""
@@ -4690,7 +4711,7 @@ msgstr ""
msgid "This course has:"
msgstr ""
#: lms/lms/utils.py:1572
#: lms/lms/utils.py:1570
msgid "This course is free."
msgstr ""
@@ -4759,7 +4780,7 @@ msgstr ""
#. Label of the timezone (Data) field in DocType 'LMS Certificate Request'
#. Label of the timezone (Data) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/LiveClassModal.vue:44
#: frontend/src/pages/BatchForm.vue:142
#: frontend/src/pages/BatchForm.vue:143
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -4788,9 +4809,9 @@ msgstr ""
#. Label of the title (Data) field in DocType 'Work Experience'
#: frontend/src/components/Modals/DiscussionModal.vue:18
#: frontend/src/components/Modals/LiveClassModal.vue:23
#: frontend/src/pages/BatchForm.vue:18 frontend/src/pages/CourseForm.vue:24
#: frontend/src/pages/BatchForm.vue:18 frontend/src/pages/CourseForm.vue:32
#: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/QuizForm.vue:48
#: frontend/src/pages/Quizzes.vue:98 lms/lms/doctype/cohort/cohort.json
#: frontend/src/pages/Quizzes.vue:114 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json
#: lms/lms/doctype/course_chapter/course_chapter.json
@@ -4825,7 +4846,7 @@ msgstr ""
msgid "To Date is mandatory in Work Experience."
msgstr ""
#: lms/lms/utils.py:1583
#: lms/lms/utils.py:1581
msgid "To join this batch, please contact the Administrator."
msgstr ""
@@ -4842,7 +4863,7 @@ msgid "Total"
msgstr ""
#. Label of the total_marks (Int) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:66 frontend/src/pages/Quizzes.vue:103
#: frontend/src/pages/QuizForm.vue:66 frontend/src/pages/Quizzes.vue:119
#: lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Total Marks"
msgstr ""
@@ -4942,7 +4963,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Cohort'
#. Label of the upcoming (Check) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:175 lms/lms/doctype/cohort/cohort.json
#: frontend/src/pages/CourseForm.vue:184 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Upcoming"
msgstr ""
@@ -4966,7 +4987,7 @@ msgstr ""
msgid "Update Password"
msgstr ""
#: frontend/src/pages/BatchForm.vue:51 frontend/src/pages/CourseForm.vue:72
#: frontend/src/pages/BatchForm.vue:51 frontend/src/pages/CourseForm.vue:80
msgid "Upload"
msgstr ""
@@ -5235,6 +5256,10 @@ msgstr ""
msgid "You have been enrolled in this course"
msgstr ""
#: frontend/src/pages/Quizzes.vue:60
msgid "You have not created any quizzes yet. To create a new quiz, click on the \"New Quiz\" button above."
msgstr ""
#: lms/lms/widgets/NoPreviewModal.html:12 lms/public/js/common_functions.js:126
msgid "You have opted to be notified for this course. You will receive an email when the course becomes available."
msgstr ""
@@ -5313,7 +5338,7 @@ msgstr ""
msgid "cancel your application"
msgstr ""
#: frontend/src/pages/Lesson.vue:175
#: frontend/src/pages/Lesson.vue:170
msgid "completed"
msgstr ""
@@ -5361,7 +5386,7 @@ msgstr ""
msgid "you can"
msgstr ""
#: lms/lms/api.py:732 lms/lms/api.py:740
#: lms/lms/api.py:740 lms/lms/api.py:748
msgid "{0} Settings not found"
msgstr ""
@@ -5397,7 +5422,7 @@ msgstr ""
msgid "{0} is your evaluator"
msgstr ""
#: lms/lms/utils.py:709
#: lms/lms/utils.py:704
msgid "{0} mentioned you in a comment"
msgstr ""
@@ -5405,7 +5430,7 @@ msgstr ""
msgid "{0} mentioned you in a comment in your batch."
msgstr ""
#: lms/lms/utils.py:662 lms/lms/utils.py:668
#: lms/lms/utils.py:657 lms/lms/utils.py:663
msgid "{0} mentioned you in a comment in {1}"
msgstr ""

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2024-11-01 16:04+0000\n"
"PO-Revision-Date: 2024-11-05 14:34\n"
"POT-Creation-Date: 2024-11-08 16:04+0000\n"
"PO-Revision-Date: 2024-11-11 15:23\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Polish\n"
"MIME-Version: 1.0\n"
@@ -62,7 +62,7 @@ msgstr ""
msgid "<span style=\"font-size: 18px;\"><b>Statistics</b></span>"
msgstr ""
#: frontend/src/pages/CourseForm.vue:32
#: frontend/src/pages/CourseForm.vue:40
msgid "A one line introduction to the course that appears on the course card"
msgstr ""
@@ -228,7 +228,7 @@ msgstr ""
#. Label of the amount (Currency) field in DocType 'Web Form'
#. Label of the amount (Currency) field in DocType 'LMS Batch'
#. Label of the amount (Currency) field in DocType 'LMS Payment'
#: frontend/src/pages/BatchForm.vue:208 lms/fixtures/custom_field.json
#: frontend/src/pages/BatchForm.vue:209 lms/fixtures/custom_field.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_payment/lms_payment.json
#: lms/public/js/common_functions.js:379
@@ -262,6 +262,10 @@ msgstr ""
msgid "Announcement"
msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:99
msgid "Announcement has been sent successfully"
msgstr ""
#. Label of the answer (Text Editor) field in DocType 'LMS Assignment'
#. Label of the answer (Text Editor) field in DocType 'LMS Assignment
#. Submission'
@@ -272,7 +276,7 @@ msgstr ""
msgid "Answer"
msgstr ""
#: frontend/src/pages/CourseForm.vue:76 frontend/src/pages/CourseForm.vue:94
#: frontend/src/pages/CourseForm.vue:84 frontend/src/pages/CourseForm.vue:102
msgid "Appears on the course card in the course list"
msgstr ""
@@ -346,7 +350,7 @@ msgstr ""
msgid "Assessment added successfully"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:74
#: lms/lms/doctype/lms_batch/lms_batch.py:75
msgid "Assessment {0} has already been added to this batch."
msgstr ""
@@ -426,7 +430,7 @@ msgstr ""
msgid "Average Rating"
msgstr ""
#: frontend/src/pages/Lesson.vue:101
#: frontend/src/pages/Lesson.vue:96
msgid "Back to Course"
msgstr ""
@@ -478,7 +482,7 @@ msgid "Batch Description"
msgstr ""
#. Label of the batch_details (Text Editor) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:97 lms/lms/doctype/lms_batch/lms_batch.json
#: frontend/src/pages/BatchForm.vue:98 lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:349
#: lms/templates/emails/batch_confirmation.html:30
msgid "Batch Details"
@@ -539,7 +543,7 @@ msgstr ""
msgid "Batch Updated"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:39
#: lms/lms/doctype/lms_batch/lms_batch.py:40
msgid "Batch end date cannot be before the batch start date"
msgstr ""
@@ -645,8 +649,8 @@ msgstr ""
#. Label of the category (Link) field in DocType 'LMS Batch'
#. Label of the category (Data) field in DocType 'LMS Category'
#. Label of the category (Link) field in DocType 'LMS Course'
#: frontend/src/pages/BatchForm.vue:189 frontend/src/pages/Batches.vue:16
#: frontend/src/pages/CourseForm.vue:139 frontend/src/pages/Courses.vue:17
#: frontend/src/pages/BatchForm.vue:190 frontend/src/pages/Batches.vue:16
#: frontend/src/pages/CourseForm.vue:147 frontend/src/pages/Courses.vue:17
#: frontend/src/pages/JobDetail.vue:102
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_category/lms_category.json
@@ -947,7 +951,7 @@ msgstr ""
msgid "Completed"
msgstr ""
#: frontend/src/pages/CourseForm.vue:192
#: frontend/src/pages/CourseForm.vue:201
msgid "Completion Certificate"
msgstr ""
@@ -1118,7 +1122,7 @@ msgstr ""
msgid "Course Data"
msgstr ""
#: frontend/src/pages/CourseForm.vue:41
#: frontend/src/pages/CourseForm.vue:49
msgid "Course Description"
msgstr ""
@@ -1127,7 +1131,7 @@ msgstr ""
msgid "Course Evaluator"
msgstr ""
#: frontend/src/pages/CourseForm.vue:54
#: frontend/src/pages/CourseForm.vue:62
msgid "Course Image"
msgstr ""
@@ -1150,7 +1154,7 @@ msgid "Course Name"
msgstr ""
#. Label of the course_price (Currency) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:210
#: frontend/src/pages/CourseForm.vue:219
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Course Price"
msgstr ""
@@ -1179,15 +1183,15 @@ msgstr ""
msgid "Course Title"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:318
#: lms/lms/doctype/lms_batch/lms_batch.py:340
msgid "Course already added to the batch."
msgstr ""
#: frontend/src/pages/CourseForm.vue:457
msgid "Course price and currency are mandatory for paid courses"
msgid "Course deleted successfully"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:57
#: lms/lms/doctype/lms_batch/lms_batch.py:58
msgid "Course {0} has already been added to this batch."
msgstr ""
@@ -1253,7 +1257,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/pages/BatchForm.vue:216 frontend/src/pages/CourseForm.vue:217
#: frontend/src/pages/BatchForm.vue:217 frontend/src/pages/CourseForm.vue:226
#: lms/fixtures/custom_field.json lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_payment/lms_payment.json
@@ -1311,7 +1315,7 @@ msgstr ""
#. Label of the section_break_glxh (Section Break) field in DocType 'LMS Live
#. Class'
#: frontend/src/pages/BatchForm.vue:110
#: frontend/src/pages/BatchForm.vue:111
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Date and Time"
msgstr ""
@@ -1347,13 +1351,22 @@ msgid "Degree Type"
msgstr ""
#: frontend/src/components/CourseOutline.vue:212
#: frontend/src/pages/CourseForm.vue:15 frontend/src/pages/CourseForm.vue:470
msgid "Delete"
msgstr ""
#: frontend/src/pages/CourseForm.vue:464
msgid "Delete Course"
msgstr ""
#: frontend/src/components/CourseOutline.vue:208
msgid "Delete Lesson"
msgstr ""
#: frontend/src/pages/CourseForm.vue:465
msgid "Deleting the course will also delete all its chapters and lessons. Are you sure you want to delete this course?"
msgstr ""
#. Label of the description (Text Editor) field in DocType 'Job Opportunity'
#. Label of the description (Small Text) field in DocType 'Certification'
#. Label of the description (Markdown Editor) field in DocType 'Cohort'
@@ -1367,7 +1380,7 @@ msgstr ""
#. Label of the description (Text) field in DocType 'LMS Live Class'
#. Label of the description (Small Text) field in DocType 'Work Experience'
#: frontend/src/components/Modals/LiveClassModal.vue:73
#: frontend/src/pages/BatchForm.vue:90 frontend/src/pages/JobCreation.vue:43
#: frontend/src/pages/BatchForm.vue:91 frontend/src/pages/JobCreation.vue:43
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/cohort/cohort.json
@@ -1388,12 +1401,12 @@ msgid "Desk"
msgstr ""
#: frontend/src/components/Modals/DiscussionModal.vue:22
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:20
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:28
#: frontend/src/pages/QuizForm.vue:42
msgid "Details"
msgstr ""
#: frontend/src/pages/CourseForm.vue:187
#: frontend/src/pages/CourseForm.vue:196
msgid "Disable Self Enrollment"
msgstr ""
@@ -1469,7 +1482,7 @@ msgstr ""
#: frontend/src/components/BatchOverlay.vue:93
#: frontend/src/components/CourseCardOverlay.vue:86
#: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/pages/JobDetail.vue:31 frontend/src/pages/Lesson.vue:70
#: frontend/src/pages/JobDetail.vue:31 frontend/src/pages/Lesson.vue:65
#: frontend/src/pages/Profile.vue:32
msgid "Edit"
msgstr ""
@@ -1551,7 +1564,7 @@ msgstr ""
#. Label of the end_date (Date) field in DocType 'Cohort'
#. Label of the end_date (Date) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:122 lms/lms/doctype/cohort/cohort.json
#: frontend/src/pages/BatchForm.vue:123 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:282
msgid "End Date"
@@ -1569,7 +1582,7 @@ msgstr ""
#. Label of the end_time (Time) field in DocType 'LMS Certificate Evaluation'
#. Label of the end_time (Time) field in DocType 'LMS Certificate Request'
#. Label of the end_time (Time) field in DocType 'Scheduled Flow'
#: frontend/src/pages/BatchForm.vue:136
#: frontend/src/pages/BatchForm.vue:137
#: frontend/src/pages/ProfileEvaluator.vue:18
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1596,7 +1609,7 @@ msgstr ""
msgid "Enrolled successfully"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:97
#: lms/lms/doctype/lms_batch/lms_batch.py:98
msgid "Enrollment Confirmation for the Next Training Batch"
msgstr ""
@@ -1605,7 +1618,7 @@ msgstr ""
msgid "Enrollment Count"
msgstr ""
#: lms/lms/utils.py:1692
#: lms/lms/utils.py:1690
msgid "Enrollment Failed"
msgstr ""
@@ -1633,6 +1646,7 @@ msgstr ""
msgid "Enter the correct answer"
msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:104
#: frontend/src/components/Modals/Question.vue:246
#: frontend/src/components/Modals/Question.vue:266
#: frontend/src/components/Modals/Question.vue:323
@@ -1655,7 +1669,7 @@ msgid "Evaluation Details"
msgstr ""
#. Label of the evaluation_end_date (Date) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:165
#: frontend/src/pages/BatchForm.vue:166
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:333
msgid "Evaluation End Date"
@@ -1666,7 +1680,7 @@ msgstr ""
msgid "Evaluation Request"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:81
#: lms/lms/doctype/lms_batch/lms_batch.py:82
msgid "Evaluation end date cannot be less than the batch end date."
msgstr ""
@@ -1713,11 +1727,13 @@ msgid "Evaluator is Unavailable"
msgstr ""
#. Label of the event (Select) field in DocType 'LMS Badge'
#. Label of the event (Link) field in DocType 'LMS Live Class'
#: lms/lms/doctype/lms_badge/lms_badge.json
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Event"
msgstr ""
#: frontend/src/pages/BatchForm.vue:144
#: frontend/src/pages/BatchForm.vue:145
msgid "Example: IST (+5:30)"
msgstr ""
@@ -1791,7 +1807,7 @@ msgstr ""
#. Label of the featured (Check) field in DocType 'LMS Course'
#: frontend/src/components/CourseCard.vue:16
#: frontend/src/pages/CourseForm.vue:180
#: frontend/src/pages/CourseForm.vue:189
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Featured"
msgstr ""
@@ -2078,7 +2094,7 @@ msgstr ""
msgid "If you set an amount here, then the USD equivalent setting will not get applied."
msgstr ""
#: lms/lms/doctype/lms_quiz/lms_quiz.py:62
#: lms/lms/doctype/lms_quiz/lms_quiz.py:63
msgid "If you want open ended questions then make sure each question in the quiz is of open ended type."
msgstr ""
@@ -2104,7 +2120,7 @@ msgstr ""
msgid "Image search powered by"
msgstr ""
#: lms/lms/doctype/lms_quiz/lms_quiz.py:221
#: lms/lms/doctype/lms_quiz/lms_quiz.py:222
msgid "Image: Corrupted Data Stream"
msgstr ""
@@ -2187,14 +2203,14 @@ msgstr ""
#. Label of the instructor_notes (Markdown Editor) field in DocType 'Course
#. Lesson'
#: frontend/src/pages/Lesson.vue:130 frontend/src/pages/LessonForm.vue:33
#: frontend/src/pages/Lesson.vue:125 frontend/src/pages/LessonForm.vue:33
#: lms/lms/doctype/course_lesson/course_lesson.json
msgid "Instructor Notes"
msgstr ""
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Batch'
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Course'
#: frontend/src/pages/BatchForm.vue:85 frontend/src/pages/CourseForm.vue:146
#: frontend/src/pages/BatchForm.vue:85 frontend/src/pages/CourseForm.vue:154
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Instructors"
@@ -2353,7 +2369,7 @@ msgstr ""
msgid "Join URL"
msgstr ""
#: frontend/src/pages/CourseForm.vue:128
#: frontend/src/pages/CourseForm.vue:136
msgid "Keywords for the course"
msgstr ""
@@ -2657,7 +2673,7 @@ msgstr ""
msgid "Links"
msgstr ""
#: frontend/src/pages/Quizzes.vue:131
#: frontend/src/pages/Quizzes.vue:147
msgid "List of quizzes"
msgstr ""
@@ -2707,7 +2723,7 @@ msgstr ""
#: frontend/src/components/NoPermission.vue:28
#: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:163
#: frontend/src/pages/Lesson.vue:29
#: frontend/src/pages/Lesson.vue:24
msgid "Login"
msgstr ""
@@ -2787,7 +2803,7 @@ msgid "Maximun Attempts"
msgstr ""
#. Label of the medium (Select) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:184
#: frontend/src/pages/BatchForm.vue:185
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:309
msgid "Medium"
@@ -3042,11 +3058,11 @@ msgstr ""
msgid "New Sign Up"
msgstr ""
#: lms/lms/utils.py:632
#: lms/lms/utils.py:627
msgid "New comment in batch {0}"
msgstr ""
#: lms/lms/utils.py:625
#: lms/lms/utils.py:620
msgid "New reply on the topic {0} in course {1}"
msgstr ""
@@ -3055,7 +3071,7 @@ msgstr ""
msgid "New {0}"
msgstr ""
#: frontend/src/components/Quiz.vue:209 frontend/src/pages/Lesson.vue:89
#: frontend/src/components/Quiz.vue:209 frontend/src/pages/Lesson.vue:84
msgid "Next"
msgstr ""
@@ -3116,6 +3132,10 @@ msgstr ""
msgid "No live classes scheduled"
msgstr ""
#: frontend/src/pages/Quizzes.vue:56
msgid "No quizzes found"
msgstr ""
#: frontend/src/components/Modals/EvaluationModal.vue:53
msgid "No slots available for this date."
msgstr ""
@@ -3188,7 +3208,7 @@ msgstr ""
msgid "Notify me when available"
msgstr ""
#: frontend/src/pages/BatchForm.vue:161
#: frontend/src/pages/BatchForm.vue:162
msgid "Number of seats available"
msgstr ""
@@ -3224,7 +3244,7 @@ msgstr ""
msgid "Only files of type {0} will be accepted."
msgstr ""
#: frontend/src/pages/CourseForm.vue:473 frontend/src/utils/index.js:518
#: frontend/src/pages/CourseForm.vue:494 frontend/src/utils/index.js:518
msgid "Only image file is allowed."
msgstr ""
@@ -3332,14 +3352,14 @@ msgid "Pages"
msgstr ""
#. Label of the paid_batch (Check) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:204
#: frontend/src/pages/BatchForm.vue:205
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:373
msgid "Paid Batch"
msgstr ""
#. Label of the paid_course (Check) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:205
#: frontend/src/pages/CourseForm.vue:214
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Paid Course"
msgstr ""
@@ -3370,7 +3390,7 @@ msgstr ""
#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz'
#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/QuizForm.vue:71 frontend/src/pages/Quizzes.vue:109
#: frontend/src/pages/QuizForm.vue:71 frontend/src/pages/Quizzes.vue:125
#: lms/lms/doctype/lms_quiz/lms_quiz.json
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
msgid "Passing Percentage"
@@ -3381,13 +3401,13 @@ msgstr ""
msgid "Password"
msgstr ""
#: frontend/src/pages/CourseForm.vue:104
#: frontend/src/pages/CourseForm.vue:112
msgid "Paste the youtube link of a short video introducing the course"
msgstr ""
#. Label of the payment (Link) field in DocType 'Batch Student'
#. Label of the payment (Link) field in DocType 'LMS Enrollment'
#: frontend/src/pages/BatchForm.vue:198
#: frontend/src/pages/BatchForm.vue:199
#: lms/lms/doctype/batch_student/batch_student.json
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
msgid "Payment"
@@ -3499,7 +3519,7 @@ msgstr ""
msgid "Please click on the following button to set your new password"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:229
#: lms/lms/doctype/lms_batch/lms_batch.py:251
msgid "Please enable Zoom Settings to use this feature."
msgstr ""
@@ -3520,7 +3540,7 @@ msgstr ""
msgid "Please enter your answer"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:64
#: lms/lms/doctype/lms_batch/lms_batch.py:65
msgid "Please install the Payments app to create a paid batches."
msgstr ""
@@ -3630,17 +3650,17 @@ msgstr ""
msgid "Preview Image"
msgstr ""
#: frontend/src/pages/CourseForm.vue:102
#: frontend/src/pages/CourseForm.vue:110
msgid "Preview Video"
msgstr ""
#: frontend/src/pages/Lesson.vue:54
#: frontend/src/pages/Lesson.vue:49
msgid "Previous"
msgstr ""
#. Label of the pricing_tab (Tab Break) field in DocType 'LMS Batch'
#. Label of the pricing_tab (Tab Break) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:199
#: frontend/src/pages/CourseForm.vue:208
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/public/js/common_functions.js:368
@@ -3710,7 +3730,7 @@ msgstr ""
#. Label of the published (Check) field in DocType 'LMS Batch'
#. Label of the published (Check) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:108
#: frontend/src/pages/BatchForm.vue:24 frontend/src/pages/CourseForm.vue:162
#: frontend/src/pages/BatchForm.vue:24 frontend/src/pages/CourseForm.vue:171
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/public/js/common_functions.js:266
@@ -3723,7 +3743,7 @@ msgid "Published Courses"
msgstr ""
#. Label of the published_on (Date) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:166
#: frontend/src/pages/CourseForm.vue:175
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Published On"
msgstr ""
@@ -3838,8 +3858,8 @@ msgstr ""
msgid "Quiz will appear at the bottom of the lesson."
msgstr ""
#: frontend/src/pages/QuizForm.vue:441 frontend/src/pages/Quizzes.vue:120
#: frontend/src/pages/Quizzes.vue:130
#: frontend/src/pages/QuizForm.vue:441 frontend/src/pages/Quizzes.vue:136
#: frontend/src/pages/Quizzes.vue:146
msgid "Quizzes"
msgstr ""
@@ -3921,7 +3941,7 @@ msgstr ""
msgid "Related Courses"
msgstr ""
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/CourseForm.vue:91
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/CourseForm.vue:99
msgid "Remove"
msgstr ""
@@ -3995,19 +4015,19 @@ msgstr ""
msgid "Route"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:172
#: lms/lms/doctype/lms_batch/lms_batch.py:194
msgid "Row #{0} Date cannot be outside the batch duration."
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:167
#: lms/lms/doctype/lms_batch/lms_batch.py:189
msgid "Row #{0} End time cannot be outside the batch duration."
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:149
#: lms/lms/doctype/lms_batch/lms_batch.py:171
msgid "Row #{0} Start time cannot be greater than or equal to end time."
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:158
#: lms/lms/doctype/lms_batch/lms_batch.py:180
msgid "Row #{0} Start time cannot be outside the batch duration."
msgstr ""
@@ -4031,7 +4051,7 @@ msgstr ""
#: frontend/src/components/Modals/Event.vue:129
#: frontend/src/components/QuizPlugin.vue:23
#: frontend/src/pages/AssignmentSubmission.vue:7
#: frontend/src/pages/BatchForm.vue:8 frontend/src/pages/CourseForm.vue:12
#: frontend/src/pages/BatchForm.vue:8 frontend/src/pages/CourseForm.vue:20
#: frontend/src/pages/JobCreation.vue:8 frontend/src/pages/LessonForm.vue:10
#: frontend/src/pages/QuizForm.vue:34 frontend/src/pages/QuizSubmission.vue:14
#: lms/public/js/common_functions.js:405
@@ -4080,7 +4100,7 @@ msgid "Search for an icon"
msgstr ""
#. Label of the seat_count (Int) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:158
#: frontend/src/pages/BatchForm.vue:159
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:327
msgid "Seat Count"
@@ -4124,7 +4144,7 @@ msgid "Set your Password"
msgstr ""
#: frontend/src/components/Modals/Settings.vue:7
#: frontend/src/pages/BatchForm.vue:152 frontend/src/pages/CourseForm.vue:152
#: frontend/src/pages/BatchForm.vue:153 frontend/src/pages/CourseForm.vue:161
#: frontend/src/pages/ProfileRoles.vue:4 frontend/src/pages/QuizForm.vue:78
msgid "Settings"
msgstr ""
@@ -4134,12 +4154,12 @@ msgid "Share on"
msgstr ""
#. Label of the short_introduction (Small Text) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:30
#: frontend/src/pages/CourseForm.vue:38
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Short Introduction"
msgstr ""
#: frontend/src/pages/BatchForm.vue:93
#: frontend/src/pages/BatchForm.vue:94
msgid "Short description of the batch"
msgstr ""
@@ -4303,7 +4323,7 @@ msgstr ""
#. Label of the start_date (Date) field in DocType 'Education Detail'
#. Label of the start_date (Date) field in DocType 'LMS Batch'
#. Label of the start_date (Date) field in DocType 'LMS Batch Old'
#: frontend/src/pages/BatchForm.vue:116
#: frontend/src/pages/BatchForm.vue:117
#: lms/lms/doctype/education_detail/education_detail.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
@@ -4312,7 +4332,7 @@ msgid "Start Date"
msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:63
#: frontend/src/pages/Lesson.vue:25
#: frontend/src/pages/Lesson.vue:21
#: lms/templates/emails/lms_course_interest.html:9
msgid "Start Learning"
msgstr ""
@@ -4324,7 +4344,7 @@ msgstr ""
#. Label of the start_time (Time) field in DocType 'LMS Certificate Evaluation'
#. Label of the start_time (Time) field in DocType 'LMS Certificate Request'
#. Label of the start_time (Time) field in DocType 'Scheduled Flow'
#: frontend/src/pages/BatchForm.vue:130
#: frontend/src/pages/BatchForm.vue:131
#: frontend/src/pages/ProfileEvaluator.vue:15
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -4430,7 +4450,7 @@ msgstr ""
msgid "Student Reviews"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:46
#: lms/lms/doctype/lms_batch/lms_batch.py:47
msgid "Student {0} has already been added to this batch."
msgstr ""
@@ -4496,13 +4516,14 @@ msgstr ""
#: frontend/src/components/BatchOverlay.vue:135
#: frontend/src/components/BatchStudents.vue:157
#: frontend/src/components/CourseCardOverlay.vue:161
#: frontend/src/components/Modals/AnnouncementModal.vue:98
#: frontend/src/components/Modals/AssessmentModal.vue:73
#: frontend/src/components/Modals/Event.vue:255
#: frontend/src/components/Modals/Event.vue:310
#: frontend/src/components/Modals/Question.vue:261
#: frontend/src/components/Modals/Question.vue:312
#: frontend/src/pages/QuizForm.vue:342 frontend/src/pages/QuizForm.vue:361
#: frontend/src/pages/QuizForm.vue:430
#: frontend/src/pages/CourseForm.vue:457 frontend/src/pages/QuizForm.vue:342
#: frontend/src/pages/QuizForm.vue:361 frontend/src/pages/QuizForm.vue:430
msgid "Success"
msgstr ""
@@ -4569,7 +4590,7 @@ msgid "System Manager"
msgstr ""
#. Label of the tags (Data) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:112
#: frontend/src/pages/CourseForm.vue:120
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Tags"
msgstr ""
@@ -4661,7 +4682,7 @@ msgstr ""
msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:140
#: lms/lms/doctype/lms_batch/lms_batch.py:141
msgid "There are no seats available in this batch."
msgstr ""
@@ -4692,7 +4713,7 @@ msgstr ""
msgid "This course has:"
msgstr ""
#: lms/lms/utils.py:1572
#: lms/lms/utils.py:1570
msgid "This course is free."
msgstr ""
@@ -4761,7 +4782,7 @@ msgstr ""
#. Label of the timezone (Data) field in DocType 'LMS Certificate Request'
#. Label of the timezone (Data) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/LiveClassModal.vue:44
#: frontend/src/pages/BatchForm.vue:142
#: frontend/src/pages/BatchForm.vue:143
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -4790,9 +4811,9 @@ msgstr ""
#. Label of the title (Data) field in DocType 'Work Experience'
#: frontend/src/components/Modals/DiscussionModal.vue:18
#: frontend/src/components/Modals/LiveClassModal.vue:23
#: frontend/src/pages/BatchForm.vue:18 frontend/src/pages/CourseForm.vue:24
#: frontend/src/pages/BatchForm.vue:18 frontend/src/pages/CourseForm.vue:32
#: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/QuizForm.vue:48
#: frontend/src/pages/Quizzes.vue:98 lms/lms/doctype/cohort/cohort.json
#: frontend/src/pages/Quizzes.vue:114 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json
#: lms/lms/doctype/course_chapter/course_chapter.json
@@ -4827,7 +4848,7 @@ msgstr ""
msgid "To Date is mandatory in Work Experience."
msgstr ""
#: lms/lms/utils.py:1583
#: lms/lms/utils.py:1581
msgid "To join this batch, please contact the Administrator."
msgstr ""
@@ -4844,7 +4865,7 @@ msgid "Total"
msgstr ""
#. Label of the total_marks (Int) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:66 frontend/src/pages/Quizzes.vue:103
#: frontend/src/pages/QuizForm.vue:66 frontend/src/pages/Quizzes.vue:119
#: lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Total Marks"
msgstr ""
@@ -4944,7 +4965,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Cohort'
#. Label of the upcoming (Check) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:175 lms/lms/doctype/cohort/cohort.json
#: frontend/src/pages/CourseForm.vue:184 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Upcoming"
msgstr ""
@@ -4968,7 +4989,7 @@ msgstr ""
msgid "Update Password"
msgstr ""
#: frontend/src/pages/BatchForm.vue:51 frontend/src/pages/CourseForm.vue:72
#: frontend/src/pages/BatchForm.vue:51 frontend/src/pages/CourseForm.vue:80
msgid "Upload"
msgstr ""
@@ -5237,6 +5258,10 @@ msgstr ""
msgid "You have been enrolled in this course"
msgstr ""
#: frontend/src/pages/Quizzes.vue:60
msgid "You have not created any quizzes yet. To create a new quiz, click on the \"New Quiz\" button above."
msgstr ""
#: lms/lms/widgets/NoPreviewModal.html:12 lms/public/js/common_functions.js:126
msgid "You have opted to be notified for this course. You will receive an email when the course becomes available."
msgstr ""
@@ -5315,7 +5340,7 @@ msgstr ""
msgid "cancel your application"
msgstr ""
#: frontend/src/pages/Lesson.vue:175
#: frontend/src/pages/Lesson.vue:170
msgid "completed"
msgstr "zakończono"
@@ -5363,7 +5388,7 @@ msgstr ""
msgid "you can"
msgstr ""
#: lms/lms/api.py:732 lms/lms/api.py:740
#: lms/lms/api.py:740 lms/lms/api.py:748
msgid "{0} Settings not found"
msgstr ""
@@ -5399,7 +5424,7 @@ msgstr ""
msgid "{0} is your evaluator"
msgstr ""
#: lms/lms/utils.py:709
#: lms/lms/utils.py:704
msgid "{0} mentioned you in a comment"
msgstr ""
@@ -5407,7 +5432,7 @@ msgstr ""
msgid "{0} mentioned you in a comment in your batch."
msgstr ""
#: lms/lms/utils.py:662 lms/lms/utils.py:668
#: lms/lms/utils.py:657 lms/lms/utils.py:663
msgid "{0} mentioned you in a comment in {1}"
msgstr ""

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2024-11-01 16:04+0000\n"
"PO-Revision-Date: 2024-11-05 14:34\n"
"POT-Creation-Date: 2024-11-08 16:04+0000\n"
"PO-Revision-Date: 2024-11-11 15:23\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Russian\n"
"MIME-Version: 1.0\n"
@@ -62,7 +62,7 @@ msgstr ""
msgid "<span style=\"font-size: 18px;\"><b>Statistics</b></span>"
msgstr ""
#: frontend/src/pages/CourseForm.vue:32
#: frontend/src/pages/CourseForm.vue:40
msgid "A one line introduction to the course that appears on the course card"
msgstr ""
@@ -228,7 +228,7 @@ msgstr "Уже зарегистрирован"
#. Label of the amount (Currency) field in DocType 'Web Form'
#. Label of the amount (Currency) field in DocType 'LMS Batch'
#. Label of the amount (Currency) field in DocType 'LMS Payment'
#: frontend/src/pages/BatchForm.vue:208 lms/fixtures/custom_field.json
#: frontend/src/pages/BatchForm.vue:209 lms/fixtures/custom_field.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_payment/lms_payment.json
#: lms/public/js/common_functions.js:379
@@ -262,6 +262,10 @@ msgstr "Сумма с НДС"
msgid "Announcement"
msgstr "Объявление"
#: frontend/src/components/Modals/AnnouncementModal.vue:99
msgid "Announcement has been sent successfully"
msgstr ""
#. Label of the answer (Text Editor) field in DocType 'LMS Assignment'
#. Label of the answer (Text Editor) field in DocType 'LMS Assignment
#. Submission'
@@ -272,7 +276,7 @@ msgstr "Объявление"
msgid "Answer"
msgstr "Отвечать"
#: frontend/src/pages/CourseForm.vue:76 frontend/src/pages/CourseForm.vue:94
#: frontend/src/pages/CourseForm.vue:84 frontend/src/pages/CourseForm.vue:102
msgid "Appears on the course card in the course list"
msgstr ""
@@ -346,7 +350,7 @@ msgstr "Тип оценки"
msgid "Assessment added successfully"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:74
#: lms/lms/doctype/lms_batch/lms_batch.py:75
msgid "Assessment {0} has already been added to this batch."
msgstr "Оценка {0} уже добавлена в этот пакет."
@@ -426,7 +430,7 @@ msgstr "Авто. запись"
msgid "Average Rating"
msgstr "Средняя оценка"
#: frontend/src/pages/Lesson.vue:101
#: frontend/src/pages/Lesson.vue:96
msgid "Back to Course"
msgstr ""
@@ -478,7 +482,7 @@ msgid "Batch Description"
msgstr "Описание группы"
#. Label of the batch_details (Text Editor) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:97 lms/lms/doctype/lms_batch/lms_batch.json
#: frontend/src/pages/BatchForm.vue:98 lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:349
#: lms/templates/emails/batch_confirmation.html:30
msgid "Batch Details"
@@ -539,7 +543,7 @@ msgstr ""
msgid "Batch Updated"
msgstr "Группа обновлена"
#: lms/lms/doctype/lms_batch/lms_batch.py:39
#: lms/lms/doctype/lms_batch/lms_batch.py:40
msgid "Batch end date cannot be before the batch start date"
msgstr ""
@@ -645,8 +649,8 @@ msgstr ""
#. Label of the category (Link) field in DocType 'LMS Batch'
#. Label of the category (Data) field in DocType 'LMS Category'
#. Label of the category (Link) field in DocType 'LMS Course'
#: frontend/src/pages/BatchForm.vue:189 frontend/src/pages/Batches.vue:16
#: frontend/src/pages/CourseForm.vue:139 frontend/src/pages/Courses.vue:17
#: frontend/src/pages/BatchForm.vue:190 frontend/src/pages/Batches.vue:16
#: frontend/src/pages/CourseForm.vue:147 frontend/src/pages/Courses.vue:17
#: frontend/src/pages/JobDetail.vue:102
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_category/lms_category.json
@@ -947,7 +951,7 @@ msgstr "Завершить регистрацию"
msgid "Completed"
msgstr ""
#: frontend/src/pages/CourseForm.vue:192
#: frontend/src/pages/CourseForm.vue:201
msgid "Completion Certificate"
msgstr ""
@@ -1118,7 +1122,7 @@ msgstr "Создание курса"
msgid "Course Data"
msgstr "Данные курса"
#: frontend/src/pages/CourseForm.vue:41
#: frontend/src/pages/CourseForm.vue:49
msgid "Course Description"
msgstr "Описание курса"
@@ -1127,7 +1131,7 @@ msgstr "Описание курса"
msgid "Course Evaluator"
msgstr "Оценщик курса"
#: frontend/src/pages/CourseForm.vue:54
#: frontend/src/pages/CourseForm.vue:62
msgid "Course Image"
msgstr "Изображение курса"
@@ -1150,7 +1154,7 @@ msgid "Course Name"
msgstr "Название курса"
#. Label of the course_price (Currency) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:210
#: frontend/src/pages/CourseForm.vue:219
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Course Price"
msgstr "Стоимость курса"
@@ -1179,15 +1183,15 @@ msgstr "Статистика курса"
msgid "Course Title"
msgstr "Заголовок курса"
#: lms/lms/doctype/lms_batch/lms_batch.py:318
#: lms/lms/doctype/lms_batch/lms_batch.py:340
msgid "Course already added to the batch."
msgstr "Курс уже добавлен в группу."
#: frontend/src/pages/CourseForm.vue:457
msgid "Course price and currency are mandatory for paid courses"
msgid "Course deleted successfully"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:57
#: lms/lms/doctype/lms_batch/lms_batch.py:58
msgid "Course {0} has already been added to this batch."
msgstr "Курс {0} уже добавлен в группу."
@@ -1253,7 +1257,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/pages/BatchForm.vue:216 frontend/src/pages/CourseForm.vue:217
#: frontend/src/pages/BatchForm.vue:217 frontend/src/pages/CourseForm.vue:226
#: lms/fixtures/custom_field.json lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_payment/lms_payment.json
@@ -1311,7 +1315,7 @@ msgstr ""
#. Label of the section_break_glxh (Section Break) field in DocType 'LMS Live
#. Class'
#: frontend/src/pages/BatchForm.vue:110
#: frontend/src/pages/BatchForm.vue:111
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Date and Time"
msgstr "Дата и время"
@@ -1347,13 +1351,22 @@ msgid "Degree Type"
msgstr "Тип степени"
#: frontend/src/components/CourseOutline.vue:212
#: frontend/src/pages/CourseForm.vue:15 frontend/src/pages/CourseForm.vue:470
msgid "Delete"
msgstr ""
#: frontend/src/pages/CourseForm.vue:464
msgid "Delete Course"
msgstr ""
#: frontend/src/components/CourseOutline.vue:208
msgid "Delete Lesson"
msgstr ""
#: frontend/src/pages/CourseForm.vue:465
msgid "Deleting the course will also delete all its chapters and lessons. Are you sure you want to delete this course?"
msgstr ""
#. Label of the description (Text Editor) field in DocType 'Job Opportunity'
#. Label of the description (Small Text) field in DocType 'Certification'
#. Label of the description (Markdown Editor) field in DocType 'Cohort'
@@ -1367,7 +1380,7 @@ msgstr ""
#. Label of the description (Text) field in DocType 'LMS Live Class'
#. Label of the description (Small Text) field in DocType 'Work Experience'
#: frontend/src/components/Modals/LiveClassModal.vue:73
#: frontend/src/pages/BatchForm.vue:90 frontend/src/pages/JobCreation.vue:43
#: frontend/src/pages/BatchForm.vue:91 frontend/src/pages/JobCreation.vue:43
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/cohort/cohort.json
@@ -1388,12 +1401,12 @@ msgid "Desk"
msgstr ""
#: frontend/src/components/Modals/DiscussionModal.vue:22
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:20
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:28
#: frontend/src/pages/QuizForm.vue:42
msgid "Details"
msgstr "Детали"
#: frontend/src/pages/CourseForm.vue:187
#: frontend/src/pages/CourseForm.vue:196
msgid "Disable Self Enrollment"
msgstr "Отключить самостоятельную регистрацию"
@@ -1469,7 +1482,7 @@ msgstr "E-mail"
#: frontend/src/components/BatchOverlay.vue:93
#: frontend/src/components/CourseCardOverlay.vue:86
#: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/pages/JobDetail.vue:31 frontend/src/pages/Lesson.vue:70
#: frontend/src/pages/JobDetail.vue:31 frontend/src/pages/Lesson.vue:65
#: frontend/src/pages/Profile.vue:32
msgid "Edit"
msgstr ""
@@ -1551,7 +1564,7 @@ msgstr "Включено"
#. Label of the end_date (Date) field in DocType 'Cohort'
#. Label of the end_date (Date) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:122 lms/lms/doctype/cohort/cohort.json
#: frontend/src/pages/BatchForm.vue:123 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:282
msgid "End Date"
@@ -1569,7 +1582,7 @@ msgstr "Дата окончания (или ожидаемая)"
#. Label of the end_time (Time) field in DocType 'LMS Certificate Evaluation'
#. Label of the end_time (Time) field in DocType 'LMS Certificate Request'
#. Label of the end_time (Time) field in DocType 'Scheduled Flow'
#: frontend/src/pages/BatchForm.vue:136
#: frontend/src/pages/BatchForm.vue:137
#: frontend/src/pages/ProfileEvaluator.vue:18
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1596,7 +1609,7 @@ msgstr "Зачисленные студенты"
msgid "Enrolled successfully"
msgstr "Зачислен успешно"
#: lms/lms/doctype/lms_batch/lms_batch.py:97
#: lms/lms/doctype/lms_batch/lms_batch.py:98
msgid "Enrollment Confirmation for the Next Training Batch"
msgstr "Подтверждение регистрации на следующую группу обучения"
@@ -1605,7 +1618,7 @@ msgstr "Подтверждение регистрации на следующу
msgid "Enrollment Count"
msgstr "Количество регистраций"
#: lms/lms/utils.py:1692
#: lms/lms/utils.py:1690
msgid "Enrollment Failed"
msgstr ""
@@ -1633,6 +1646,7 @@ msgstr ""
msgid "Enter the correct answer"
msgstr "Введите правильный ответ"
#: frontend/src/components/Modals/AnnouncementModal.vue:104
#: frontend/src/components/Modals/Question.vue:246
#: frontend/src/components/Modals/Question.vue:266
#: frontend/src/components/Modals/Question.vue:323
@@ -1655,7 +1669,7 @@ msgid "Evaluation Details"
msgstr "Подробности оценки"
#. Label of the evaluation_end_date (Date) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:165
#: frontend/src/pages/BatchForm.vue:166
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:333
msgid "Evaluation End Date"
@@ -1666,7 +1680,7 @@ msgstr "Дата окончания оценки"
msgid "Evaluation Request"
msgstr "Запрос на оценку"
#: lms/lms/doctype/lms_batch/lms_batch.py:81
#: lms/lms/doctype/lms_batch/lms_batch.py:82
msgid "Evaluation end date cannot be less than the batch end date."
msgstr "Дата окончания оценки не может быть меньше даты окончания группы."
@@ -1713,11 +1727,13 @@ msgid "Evaluator is Unavailable"
msgstr ""
#. Label of the event (Select) field in DocType 'LMS Badge'
#. Label of the event (Link) field in DocType 'LMS Live Class'
#: lms/lms/doctype/lms_badge/lms_badge.json
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Event"
msgstr "Событие"
#: frontend/src/pages/BatchForm.vue:144
#: frontend/src/pages/BatchForm.vue:145
msgid "Example: IST (+5:30)"
msgstr ""
@@ -1791,7 +1807,7 @@ msgstr "Ошибка"
#. Label of the featured (Check) field in DocType 'LMS Course'
#: frontend/src/components/CourseCard.vue:16
#: frontend/src/pages/CourseForm.vue:180
#: frontend/src/pages/CourseForm.vue:189
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Featured"
msgstr "Популярные"
@@ -2078,7 +2094,7 @@ msgstr "Если у вас возникнут какие-либо вопросы
msgid "If you set an amount here, then the USD equivalent setting will not get applied."
msgstr "Если вы укажете здесь сумму, то настройка эквивалента в долларах США применена не будет."
#: lms/lms/doctype/lms_quiz/lms_quiz.py:62
#: lms/lms/doctype/lms_quiz/lms_quiz.py:63
msgid "If you want open ended questions then make sure each question in the quiz is of open ended type."
msgstr ""
@@ -2104,7 +2120,7 @@ msgstr "Изображение"
msgid "Image search powered by"
msgstr "Поиск изображений с помощью"
#: lms/lms/doctype/lms_quiz/lms_quiz.py:221
#: lms/lms/doctype/lms_quiz/lms_quiz.py:222
msgid "Image: Corrupted Data Stream"
msgstr ""
@@ -2187,14 +2203,14 @@ msgstr "Содержание инструктора"
#. Label of the instructor_notes (Markdown Editor) field in DocType 'Course
#. Lesson'
#: frontend/src/pages/Lesson.vue:130 frontend/src/pages/LessonForm.vue:33
#: frontend/src/pages/Lesson.vue:125 frontend/src/pages/LessonForm.vue:33
#: lms/lms/doctype/course_lesson/course_lesson.json
msgid "Instructor Notes"
msgstr "Заметки инструктора"
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Batch'
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Course'
#: frontend/src/pages/BatchForm.vue:85 frontend/src/pages/CourseForm.vue:146
#: frontend/src/pages/BatchForm.vue:85 frontend/src/pages/CourseForm.vue:154
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Instructors"
@@ -2353,7 +2369,7 @@ msgstr ""
msgid "Join URL"
msgstr "Присоединиться URL"
#: frontend/src/pages/CourseForm.vue:128
#: frontend/src/pages/CourseForm.vue:136
msgid "Keywords for the course"
msgstr ""
@@ -2657,7 +2673,7 @@ msgstr ""
msgid "Links"
msgstr "Ссылки"
#: frontend/src/pages/Quizzes.vue:131
#: frontend/src/pages/Quizzes.vue:147
msgid "List of quizzes"
msgstr ""
@@ -2707,7 +2723,7 @@ msgstr ""
#: frontend/src/components/NoPermission.vue:28
#: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:163
#: frontend/src/pages/Lesson.vue:29
#: frontend/src/pages/Lesson.vue:24
msgid "Login"
msgstr "Логин"
@@ -2787,7 +2803,7 @@ msgid "Maximun Attempts"
msgstr ""
#. Label of the medium (Select) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:184
#: frontend/src/pages/BatchForm.vue:185
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:309
msgid "Medium"
@@ -3042,11 +3058,11 @@ msgstr ""
msgid "New Sign Up"
msgstr "Новая регистрация"
#: lms/lms/utils.py:632
#: lms/lms/utils.py:627
msgid "New comment in batch {0}"
msgstr "Новый комментарий в группе {0}"
#: lms/lms/utils.py:625
#: lms/lms/utils.py:620
msgid "New reply on the topic {0} in course {1}"
msgstr "Новый ответ по теме {0} в курсе {1}"
@@ -3055,7 +3071,7 @@ msgstr "Новый ответ по теме {0} в курсе {1}"
msgid "New {0}"
msgstr "Новый {0}"
#: frontend/src/components/Quiz.vue:209 frontend/src/pages/Lesson.vue:89
#: frontend/src/components/Quiz.vue:209 frontend/src/pages/Lesson.vue:84
msgid "Next"
msgstr ""
@@ -3116,6 +3132,10 @@ msgstr "Вакансии не опубликованы"
msgid "No live classes scheduled"
msgstr "Не запланированы онлайн-курсы"
#: frontend/src/pages/Quizzes.vue:56
msgid "No quizzes found"
msgstr ""
#: frontend/src/components/Modals/EvaluationModal.vue:53
msgid "No slots available for this date."
msgstr "На эту дату свободных мест нет."
@@ -3188,7 +3208,7 @@ msgstr "Уведомления"
msgid "Notify me when available"
msgstr "Сообщите мне, когда появится"
#: frontend/src/pages/BatchForm.vue:161
#: frontend/src/pages/BatchForm.vue:162
msgid "Number of seats available"
msgstr ""
@@ -3224,7 +3244,7 @@ msgstr "Online"
msgid "Only files of type {0} will be accepted."
msgstr "Принимаются только файлы типа {0} ."
#: frontend/src/pages/CourseForm.vue:473 frontend/src/utils/index.js:518
#: frontend/src/pages/CourseForm.vue:494 frontend/src/utils/index.js:518
msgid "Only image file is allowed."
msgstr ""
@@ -3332,14 +3352,14 @@ msgid "Pages"
msgstr "Страницы"
#. Label of the paid_batch (Check) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:204
#: frontend/src/pages/BatchForm.vue:205
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:373
msgid "Paid Batch"
msgstr "Платная группа"
#. Label of the paid_course (Check) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:205
#: frontend/src/pages/CourseForm.vue:214
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Paid Course"
msgstr "Платный курс"
@@ -3370,7 +3390,7 @@ msgstr "Пропустить"
#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz'
#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/QuizForm.vue:71 frontend/src/pages/Quizzes.vue:109
#: frontend/src/pages/QuizForm.vue:71 frontend/src/pages/Quizzes.vue:125
#: lms/lms/doctype/lms_quiz/lms_quiz.json
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
msgid "Passing Percentage"
@@ -3381,13 +3401,13 @@ msgstr "Процент сдачи экзамена"
msgid "Password"
msgstr "Пароль"
#: frontend/src/pages/CourseForm.vue:104
#: frontend/src/pages/CourseForm.vue:112
msgid "Paste the youtube link of a short video introducing the course"
msgstr ""
#. Label of the payment (Link) field in DocType 'Batch Student'
#. Label of the payment (Link) field in DocType 'LMS Enrollment'
#: frontend/src/pages/BatchForm.vue:198
#: frontend/src/pages/BatchForm.vue:199
#: lms/lms/doctype/batch_student/batch_student.json
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
msgid "Payment"
@@ -3499,7 +3519,7 @@ msgstr "Пожалуйста, проверьте свой email для подт
msgid "Please click on the following button to set your new password"
msgstr "Нажмите на следующую кнопку, чтобы установить новый пароль."
#: lms/lms/doctype/lms_batch/lms_batch.py:229
#: lms/lms/doctype/lms_batch/lms_batch.py:251
msgid "Please enable Zoom Settings to use this feature."
msgstr "Чтобы использовать эту функцию, включите настройки Zoom."
@@ -3520,7 +3540,7 @@ msgstr "Введите URL для отправки задания."
msgid "Please enter your answer"
msgstr "Пожалуйста, введите ваш ответ"
#: lms/lms/doctype/lms_batch/lms_batch.py:64
#: lms/lms/doctype/lms_batch/lms_batch.py:65
msgid "Please install the Payments app to create a paid batches."
msgstr ""
@@ -3630,17 +3650,17 @@ msgstr ""
msgid "Preview Image"
msgstr "Просмотр изображения"
#: frontend/src/pages/CourseForm.vue:102
#: frontend/src/pages/CourseForm.vue:110
msgid "Preview Video"
msgstr "Предварительный просмотр видео"
#: frontend/src/pages/Lesson.vue:54
#: frontend/src/pages/Lesson.vue:49
msgid "Previous"
msgstr "Предыдущие"
#. Label of the pricing_tab (Tab Break) field in DocType 'LMS Batch'
#. Label of the pricing_tab (Tab Break) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:199
#: frontend/src/pages/CourseForm.vue:208
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/public/js/common_functions.js:368
@@ -3710,7 +3730,7 @@ msgstr "Опубликовать на странице участника"
#. Label of the published (Check) field in DocType 'LMS Batch'
#. Label of the published (Check) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:108
#: frontend/src/pages/BatchForm.vue:24 frontend/src/pages/CourseForm.vue:162
#: frontend/src/pages/BatchForm.vue:24 frontend/src/pages/CourseForm.vue:171
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/public/js/common_functions.js:266
@@ -3723,7 +3743,7 @@ msgid "Published Courses"
msgstr "Опубликованные курсы"
#. Label of the published_on (Date) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:166
#: frontend/src/pages/CourseForm.vue:175
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Published On"
msgstr "Опубликована"
@@ -3838,8 +3858,8 @@ msgstr ""
msgid "Quiz will appear at the bottom of the lesson."
msgstr "Тест появится в конце урока."
#: frontend/src/pages/QuizForm.vue:441 frontend/src/pages/Quizzes.vue:120
#: frontend/src/pages/Quizzes.vue:130
#: frontend/src/pages/QuizForm.vue:441 frontend/src/pages/Quizzes.vue:136
#: frontend/src/pages/Quizzes.vue:146
msgid "Quizzes"
msgstr ""
@@ -3921,7 +3941,7 @@ msgstr "Отклонено"
msgid "Related Courses"
msgstr "Похожие курсы"
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/CourseForm.vue:91
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/CourseForm.vue:99
msgid "Remove"
msgstr ""
@@ -3995,19 +4015,19 @@ msgstr ""
msgid "Route"
msgstr "Маршрут"
#: lms/lms/doctype/lms_batch/lms_batch.py:172
#: lms/lms/doctype/lms_batch/lms_batch.py:194
msgid "Row #{0} Date cannot be outside the batch duration."
msgstr "Строка #{0} Дата не может выходить за пределы длительности партии."
#: lms/lms/doctype/lms_batch/lms_batch.py:167
#: lms/lms/doctype/lms_batch/lms_batch.py:189
msgid "Row #{0} End time cannot be outside the batch duration."
msgstr "Строка #{0} Время окончания не может выходить за рамки длительности партии."
#: lms/lms/doctype/lms_batch/lms_batch.py:149
#: lms/lms/doctype/lms_batch/lms_batch.py:171
msgid "Row #{0} Start time cannot be greater than or equal to end time."
msgstr "Строка #{0} Время начала не может быть больше или равно времени окончания."
#: lms/lms/doctype/lms_batch/lms_batch.py:158
#: lms/lms/doctype/lms_batch/lms_batch.py:180
msgid "Row #{0} Start time cannot be outside the batch duration."
msgstr "Строка #{0} Время начала не может выходить за рамки длительности партии."
@@ -4031,7 +4051,7 @@ msgstr "Суббота"
#: frontend/src/components/Modals/Event.vue:129
#: frontend/src/components/QuizPlugin.vue:23
#: frontend/src/pages/AssignmentSubmission.vue:7
#: frontend/src/pages/BatchForm.vue:8 frontend/src/pages/CourseForm.vue:12
#: frontend/src/pages/BatchForm.vue:8 frontend/src/pages/CourseForm.vue:20
#: frontend/src/pages/JobCreation.vue:8 frontend/src/pages/LessonForm.vue:10
#: frontend/src/pages/QuizForm.vue:34 frontend/src/pages/QuizSubmission.vue:14
#: lms/public/js/common_functions.js:405
@@ -4080,7 +4100,7 @@ msgid "Search for an icon"
msgstr "Поиск значка"
#. Label of the seat_count (Int) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:158
#: frontend/src/pages/BatchForm.vue:159
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:327
msgid "Seat Count"
@@ -4124,7 +4144,7 @@ msgid "Set your Password"
msgstr "Введите свой пароль"
#: frontend/src/components/Modals/Settings.vue:7
#: frontend/src/pages/BatchForm.vue:152 frontend/src/pages/CourseForm.vue:152
#: frontend/src/pages/BatchForm.vue:153 frontend/src/pages/CourseForm.vue:161
#: frontend/src/pages/ProfileRoles.vue:4 frontend/src/pages/QuizForm.vue:78
msgid "Settings"
msgstr ""
@@ -4134,12 +4154,12 @@ msgid "Share on"
msgstr "Поделиться"
#. Label of the short_introduction (Small Text) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:30
#: frontend/src/pages/CourseForm.vue:38
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Short Introduction"
msgstr "Краткое введение"
#: frontend/src/pages/BatchForm.vue:93
#: frontend/src/pages/BatchForm.vue:94
msgid "Short description of the batch"
msgstr ""
@@ -4303,7 +4323,7 @@ msgstr ""
#. Label of the start_date (Date) field in DocType 'Education Detail'
#. Label of the start_date (Date) field in DocType 'LMS Batch'
#. Label of the start_date (Date) field in DocType 'LMS Batch Old'
#: frontend/src/pages/BatchForm.vue:116
#: frontend/src/pages/BatchForm.vue:117
#: lms/lms/doctype/education_detail/education_detail.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
@@ -4312,7 +4332,7 @@ msgid "Start Date"
msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:63
#: frontend/src/pages/Lesson.vue:25
#: frontend/src/pages/Lesson.vue:21
#: lms/templates/emails/lms_course_interest.html:9
msgid "Start Learning"
msgstr "Начать изучение"
@@ -4324,7 +4344,7 @@ msgstr "Начать изучение"
#. Label of the start_time (Time) field in DocType 'LMS Certificate Evaluation'
#. Label of the start_time (Time) field in DocType 'LMS Certificate Request'
#. Label of the start_time (Time) field in DocType 'Scheduled Flow'
#: frontend/src/pages/BatchForm.vue:130
#: frontend/src/pages/BatchForm.vue:131
#: frontend/src/pages/ProfileEvaluator.vue:15
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -4430,7 +4450,7 @@ msgstr "Имя студента"
msgid "Student Reviews"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:46
#: lms/lms/doctype/lms_batch/lms_batch.py:47
msgid "Student {0} has already been added to this batch."
msgstr "Курс {0} уже добавлен в группу."
@@ -4496,13 +4516,14 @@ msgstr "Отправлено {0}"
#: frontend/src/components/BatchOverlay.vue:135
#: frontend/src/components/BatchStudents.vue:157
#: frontend/src/components/CourseCardOverlay.vue:161
#: frontend/src/components/Modals/AnnouncementModal.vue:98
#: frontend/src/components/Modals/AssessmentModal.vue:73
#: frontend/src/components/Modals/Event.vue:255
#: frontend/src/components/Modals/Event.vue:310
#: frontend/src/components/Modals/Question.vue:261
#: frontend/src/components/Modals/Question.vue:312
#: frontend/src/pages/QuizForm.vue:342 frontend/src/pages/QuizForm.vue:361
#: frontend/src/pages/QuizForm.vue:430
#: frontend/src/pages/CourseForm.vue:457 frontend/src/pages/QuizForm.vue:342
#: frontend/src/pages/QuizForm.vue:361 frontend/src/pages/QuizForm.vue:430
msgid "Success"
msgstr ""
@@ -4569,7 +4590,7 @@ msgid "System Manager"
msgstr ""
#. Label of the tags (Data) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:112
#: frontend/src/pages/CourseForm.vue:120
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Tags"
msgstr "Теги"
@@ -4661,7 +4682,7 @@ msgstr ""
msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:140
#: lms/lms/doctype/lms_batch/lms_batch.py:141
msgid "There are no seats available in this batch."
msgstr "В этой группе нет свободных мест."
@@ -4692,7 +4713,7 @@ msgstr "Этот сертификат является бессрочным"
msgid "This course has:"
msgstr ""
#: lms/lms/utils.py:1572
#: lms/lms/utils.py:1570
msgid "This course is free."
msgstr "Этот курс бесплатный."
@@ -4761,7 +4782,7 @@ msgstr "Шаблон расписания"
#. Label of the timezone (Data) field in DocType 'LMS Certificate Request'
#. Label of the timezone (Data) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/LiveClassModal.vue:44
#: frontend/src/pages/BatchForm.vue:142
#: frontend/src/pages/BatchForm.vue:143
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -4790,9 +4811,9 @@ msgstr "Сроки:"
#. Label of the title (Data) field in DocType 'Work Experience'
#: frontend/src/components/Modals/DiscussionModal.vue:18
#: frontend/src/components/Modals/LiveClassModal.vue:23
#: frontend/src/pages/BatchForm.vue:18 frontend/src/pages/CourseForm.vue:24
#: frontend/src/pages/BatchForm.vue:18 frontend/src/pages/CourseForm.vue:32
#: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/QuizForm.vue:48
#: frontend/src/pages/Quizzes.vue:98 lms/lms/doctype/cohort/cohort.json
#: frontend/src/pages/Quizzes.vue:114 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json
#: lms/lms/doctype/course_chapter/course_chapter.json
@@ -4827,7 +4848,7 @@ msgstr ""
msgid "To Date is mandatory in Work Experience."
msgstr "В графе «Опыт работы» обязательно должно быть указано «На сегодняшний день»."
#: lms/lms/utils.py:1583
#: lms/lms/utils.py:1581
msgid "To join this batch, please contact the Administrator."
msgstr "Чтобы присоединиться к этой группе, свяжитесь с администратором."
@@ -4844,7 +4865,7 @@ msgid "Total"
msgstr ""
#. Label of the total_marks (Int) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:66 frontend/src/pages/Quizzes.vue:103
#: frontend/src/pages/QuizForm.vue:66 frontend/src/pages/Quizzes.vue:119
#: lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Total Marks"
msgstr "Всего задач"
@@ -4944,7 +4965,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Cohort'
#. Label of the upcoming (Check) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:175 lms/lms/doctype/cohort/cohort.json
#: frontend/src/pages/CourseForm.vue:184 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Upcoming"
msgstr "Предстоящие"
@@ -4968,7 +4989,7 @@ msgstr ""
msgid "Update Password"
msgstr ""
#: frontend/src/pages/BatchForm.vue:51 frontend/src/pages/CourseForm.vue:72
#: frontend/src/pages/BatchForm.vue:51 frontend/src/pages/CourseForm.vue:80
msgid "Upload"
msgstr ""
@@ -5237,6 +5258,10 @@ msgstr ""
msgid "You have been enrolled in this course"
msgstr ""
#: frontend/src/pages/Quizzes.vue:60
msgid "You have not created any quizzes yet. To create a new quiz, click on the \"New Quiz\" button above."
msgstr ""
#: lms/lms/widgets/NoPreviewModal.html:12 lms/public/js/common_functions.js:126
msgid "You have opted to be notified for this course. You will receive an email when the course becomes available."
msgstr "Вы выбрали получение уведомлений об этом курсе. Вы получите электронное письмо, когда курс станет доступен."
@@ -5315,7 +5340,7 @@ msgstr "Настройки Zoom"
msgid "cancel your application"
msgstr "отменить заявку"
#: frontend/src/pages/Lesson.vue:175
#: frontend/src/pages/Lesson.vue:170
msgid "completed"
msgstr "завершенно"
@@ -5363,7 +5388,7 @@ msgstr "звезды"
msgid "you can"
msgstr "вы можете"
#: lms/lms/api.py:732 lms/lms/api.py:740
#: lms/lms/api.py:740 lms/lms/api.py:748
msgid "{0} Settings not found"
msgstr ""
@@ -5399,7 +5424,7 @@ msgstr "{0} уже сертифицирован для курса {1}"
msgid "{0} is your evaluator"
msgstr ""
#: lms/lms/utils.py:709
#: lms/lms/utils.py:704
msgid "{0} mentioned you in a comment"
msgstr "{0} упомянул вас в комментарии"
@@ -5407,7 +5432,7 @@ msgstr "{0} упомянул вас в комментарии"
msgid "{0} mentioned you in a comment in your batch."
msgstr "{0} упомянул вас в комментарии в вашей группе."
#: lms/lms/utils.py:662 lms/lms/utils.py:668
#: lms/lms/utils.py:657 lms/lms/utils.py:663
msgid "{0} mentioned you in a comment in {1}"
msgstr "{0} упомянул вас в комментарии в {1}"

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2024-11-01 16:04+0000\n"
"PO-Revision-Date: 2024-11-05 14:34\n"
"POT-Creation-Date: 2024-11-08 16:04+0000\n"
"PO-Revision-Date: 2024-11-11 15:23\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Swedish\n"
"MIME-Version: 1.0\n"
@@ -62,7 +62,7 @@ msgstr "Inställningar"
msgid "<span style=\"font-size: 18px;\"><b>Statistics</b></span>"
msgstr "<span style=\"font-size: 18px;\"><b>Statistik</b></span>"
#: frontend/src/pages/CourseForm.vue:32
#: frontend/src/pages/CourseForm.vue:40
msgid "A one line introduction to the course that appears on the course card"
msgstr "En rad introduktion till kurs som finns på kurskortet"
@@ -228,7 +228,7 @@ msgstr "Redan Registrerad"
#. Label of the amount (Currency) field in DocType 'Web Form'
#. Label of the amount (Currency) field in DocType 'LMS Batch'
#. Label of the amount (Currency) field in DocType 'LMS Payment'
#: frontend/src/pages/BatchForm.vue:208 lms/fixtures/custom_field.json
#: frontend/src/pages/BatchForm.vue:209 lms/fixtures/custom_field.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_payment/lms_payment.json
#: lms/public/js/common_functions.js:379
@@ -262,6 +262,10 @@ msgstr "Belopp med Moms"
msgid "Announcement"
msgstr "Meddelande"
#: frontend/src/components/Modals/AnnouncementModal.vue:99
msgid "Announcement has been sent successfully"
msgstr "Tillkännagivande är skickad"
#. Label of the answer (Text Editor) field in DocType 'LMS Assignment'
#. Label of the answer (Text Editor) field in DocType 'LMS Assignment
#. Submission'
@@ -272,7 +276,7 @@ msgstr "Meddelande"
msgid "Answer"
msgstr "Svara"
#: frontend/src/pages/CourseForm.vue:76 frontend/src/pages/CourseForm.vue:94
#: frontend/src/pages/CourseForm.vue:84 frontend/src/pages/CourseForm.vue:102
msgid "Appears on the course card in the course list"
msgstr "Visas på kurskort i kurslista"
@@ -346,7 +350,7 @@ msgstr "Bedömning Typ"
msgid "Assessment added successfully"
msgstr "Bedömning tillagd"
#: lms/lms/doctype/lms_batch/lms_batch.py:74
#: lms/lms/doctype/lms_batch/lms_batch.py:75
msgid "Assessment {0} has already been added to this batch."
msgstr "Bedömning {0} har redan lagts till i denna omgång."
@@ -426,7 +430,7 @@ msgstr "Automatisk Inspelning"
msgid "Average Rating"
msgstr "Genomsnittlig Betyg"
#: frontend/src/pages/Lesson.vue:101
#: frontend/src/pages/Lesson.vue:96
msgid "Back to Course"
msgstr "Tillbaka till Kurs"
@@ -478,7 +482,7 @@ msgid "Batch Description"
msgstr "Parti Beskrivning"
#. Label of the batch_details (Text Editor) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:97 lms/lms/doctype/lms_batch/lms_batch.json
#: frontend/src/pages/BatchForm.vue:98 lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:349
#: lms/templates/emails/batch_confirmation.html:30
msgid "Batch Details"
@@ -539,7 +543,7 @@ msgstr "Omgång Titel"
msgid "Batch Updated"
msgstr "Grupp Uppdaterad"
#: lms/lms/doctype/lms_batch/lms_batch.py:39
#: lms/lms/doctype/lms_batch/lms_batch.py:40
msgid "Batch end date cannot be before the batch start date"
msgstr "Omgång slutdatum får inte vara före omgång startdatum"
@@ -645,8 +649,8 @@ msgstr "Fritidskläder"
#. Label of the category (Link) field in DocType 'LMS Batch'
#. Label of the category (Data) field in DocType 'LMS Category'
#. Label of the category (Link) field in DocType 'LMS Course'
#: frontend/src/pages/BatchForm.vue:189 frontend/src/pages/Batches.vue:16
#: frontend/src/pages/CourseForm.vue:139 frontend/src/pages/Courses.vue:17
#: frontend/src/pages/BatchForm.vue:190 frontend/src/pages/Batches.vue:16
#: frontend/src/pages/CourseForm.vue:147 frontend/src/pages/Courses.vue:17
#: frontend/src/pages/JobDetail.vue:102
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_category/lms_category.json
@@ -947,7 +951,7 @@ msgstr "Slutför Registrering"
msgid "Completed"
msgstr "Klar"
#: frontend/src/pages/CourseForm.vue:192
#: frontend/src/pages/CourseForm.vue:201
msgid "Completion Certificate"
msgstr "Kompletterande Certifikat"
@@ -1118,7 +1122,7 @@ msgstr "Kurs Skapare"
msgid "Course Data"
msgstr "Kursdata"
#: frontend/src/pages/CourseForm.vue:41
#: frontend/src/pages/CourseForm.vue:49
msgid "Course Description"
msgstr "Kursbeskrivning"
@@ -1127,7 +1131,7 @@ msgstr "Kursbeskrivning"
msgid "Course Evaluator"
msgstr "Kursutvärderare"
#: frontend/src/pages/CourseForm.vue:54
#: frontend/src/pages/CourseForm.vue:62
msgid "Course Image"
msgstr "Kursbild"
@@ -1150,7 +1154,7 @@ msgid "Course Name"
msgstr "Kursnamn"
#. Label of the course_price (Currency) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:210
#: frontend/src/pages/CourseForm.vue:219
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Course Price"
msgstr "Kurspris"
@@ -1179,15 +1183,15 @@ msgstr "Kursstatistik"
msgid "Course Title"
msgstr "Kurstitel"
#: lms/lms/doctype/lms_batch/lms_batch.py:318
#: lms/lms/doctype/lms_batch/lms_batch.py:340
msgid "Course already added to the batch."
msgstr "Kursen har redan lagts till i omgång."
#: frontend/src/pages/CourseForm.vue:457
msgid "Course price and currency are mandatory for paid courses"
msgstr "Kurs pris och valuta erfordras för betalda kurser"
msgid "Course deleted successfully"
msgstr "Kurs är borttagen"
#: lms/lms/doctype/lms_batch/lms_batch.py:57
#: lms/lms/doctype/lms_batch/lms_batch.py:58
msgid "Course {0} has already been added to this batch."
msgstr "Kurs {0} har redan lagts till i denna omgång."
@@ -1214,7 +1218,7 @@ msgstr "Kurser Mentorerade"
#: frontend/src/components/BatchCourses.vue:150
msgid "Courses deleted successfully"
msgstr "Kurser raderade"
msgstr "Kurser borttagna"
#. Label of the cover_image (Attach Image) field in DocType 'User'
#: lms/fixtures/custom_field.json
@@ -1253,7 +1257,7 @@ msgstr "Skapa ny fråga"
#. 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/pages/BatchForm.vue:216 frontend/src/pages/CourseForm.vue:217
#: frontend/src/pages/BatchForm.vue:217 frontend/src/pages/CourseForm.vue:226
#: lms/fixtures/custom_field.json lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_payment/lms_payment.json
@@ -1311,7 +1315,7 @@ msgstr "Datum"
#. Label of the section_break_glxh (Section Break) field in DocType 'LMS Live
#. Class'
#: frontend/src/pages/BatchForm.vue:110
#: frontend/src/pages/BatchForm.vue:111
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Date and Time"
msgstr "Datum och Tid"
@@ -1347,13 +1351,22 @@ msgid "Degree Type"
msgstr "Examen Typ"
#: frontend/src/components/CourseOutline.vue:212
#: frontend/src/pages/CourseForm.vue:15 frontend/src/pages/CourseForm.vue:470
msgid "Delete"
msgstr "Ta Bort"
msgstr "Ta bort"
#: frontend/src/pages/CourseForm.vue:464
msgid "Delete Course"
msgstr "Ta bort kurs"
#: frontend/src/components/CourseOutline.vue:208
msgid "Delete Lesson"
msgstr "Ta bort Lektion"
#: frontend/src/pages/CourseForm.vue:465
msgid "Deleting the course will also delete all its chapters and lessons. Are you sure you want to delete this course?"
msgstr "Om du tar bort kurs raderas också alla dess kapitel och lektioner. Är du säker på att du vill ta bort denna kurs?"
#. Label of the description (Text Editor) field in DocType 'Job Opportunity'
#. Label of the description (Small Text) field in DocType 'Certification'
#. Label of the description (Markdown Editor) field in DocType 'Cohort'
@@ -1367,7 +1380,7 @@ msgstr "Ta bort Lektion"
#. Label of the description (Text) field in DocType 'LMS Live Class'
#. Label of the description (Small Text) field in DocType 'Work Experience'
#: frontend/src/components/Modals/LiveClassModal.vue:73
#: frontend/src/pages/BatchForm.vue:90 frontend/src/pages/JobCreation.vue:43
#: frontend/src/pages/BatchForm.vue:91 frontend/src/pages/JobCreation.vue:43
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/cohort/cohort.json
@@ -1388,12 +1401,12 @@ msgid "Desk"
msgstr "Skrivbord"
#: frontend/src/components/Modals/DiscussionModal.vue:22
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:20
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:28
#: frontend/src/pages/QuizForm.vue:42
msgid "Details"
msgstr "Detaljer"
#: frontend/src/pages/CourseForm.vue:187
#: frontend/src/pages/CourseForm.vue:196
msgid "Disable Self Enrollment"
msgstr "Inaktivera självregistrering"
@@ -1469,7 +1482,7 @@ msgstr "E-post"
#: frontend/src/components/BatchOverlay.vue:93
#: frontend/src/components/CourseCardOverlay.vue:86
#: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/pages/JobDetail.vue:31 frontend/src/pages/Lesson.vue:70
#: frontend/src/pages/JobDetail.vue:31 frontend/src/pages/Lesson.vue:65
#: frontend/src/pages/Profile.vue:32
msgid "Edit"
msgstr "Redigera"
@@ -1551,7 +1564,7 @@ msgstr "Aktiverad"
#. Label of the end_date (Date) field in DocType 'Cohort'
#. Label of the end_date (Date) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:122 lms/lms/doctype/cohort/cohort.json
#: frontend/src/pages/BatchForm.vue:123 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:282
msgid "End Date"
@@ -1569,7 +1582,7 @@ msgstr "Slutdatum (eller förväntat)"
#. Label of the end_time (Time) field in DocType 'LMS Certificate Evaluation'
#. Label of the end_time (Time) field in DocType 'LMS Certificate Request'
#. Label of the end_time (Time) field in DocType 'Scheduled Flow'
#: frontend/src/pages/BatchForm.vue:136
#: frontend/src/pages/BatchForm.vue:137
#: frontend/src/pages/ProfileEvaluator.vue:18
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1596,7 +1609,7 @@ msgstr "Inskrivna Studenter"
msgid "Enrolled successfully"
msgstr "Inskriven"
#: lms/lms/doctype/lms_batch/lms_batch.py:97
#: lms/lms/doctype/lms_batch/lms_batch.py:98
msgid "Enrollment Confirmation for the Next Training Batch"
msgstr "Inskrivining bekräftelse för nästa omgång utbildning"
@@ -1605,7 +1618,7 @@ msgstr "Inskrivining bekräftelse för nästa omgång utbildning"
msgid "Enrollment Count"
msgstr "Antal Inskrivna"
#: lms/lms/utils.py:1692
#: lms/lms/utils.py:1690
msgid "Enrollment Failed"
msgstr "Registrering Misslyckad"
@@ -1633,6 +1646,7 @@ msgstr "Ange titel och spara frågesport för att fortsätta"
msgid "Enter the correct answer"
msgstr "Ange korrekt svar"
#: frontend/src/components/Modals/AnnouncementModal.vue:104
#: frontend/src/components/Modals/Question.vue:246
#: frontend/src/components/Modals/Question.vue:266
#: frontend/src/components/Modals/Question.vue:323
@@ -1655,7 +1669,7 @@ msgid "Evaluation Details"
msgstr "Utvärdering Detaljer"
#. Label of the evaluation_end_date (Date) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:165
#: frontend/src/pages/BatchForm.vue:166
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:333
msgid "Evaluation End Date"
@@ -1666,7 +1680,7 @@ msgstr "Utvärdering Slutdatum"
msgid "Evaluation Request"
msgstr "Utvärdering Begäran"
#: lms/lms/doctype/lms_batch/lms_batch.py:81
#: lms/lms/doctype/lms_batch/lms_batch.py:82
msgid "Evaluation end date cannot be less than the batch end date."
msgstr "Utvärdering slutdatum får inte vara tidigare än omgång slutdatum."
@@ -1713,11 +1727,13 @@ msgid "Evaluator is Unavailable"
msgstr "Utvärderare är inte tillgänglig"
#. Label of the event (Select) field in DocType 'LMS Badge'
#. Label of the event (Link) field in DocType 'LMS Live Class'
#: lms/lms/doctype/lms_badge/lms_badge.json
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Event"
msgstr "Händelse"
#: frontend/src/pages/BatchForm.vue:144
#: frontend/src/pages/BatchForm.vue:145
msgid "Example: IST (+5:30)"
msgstr "Exempel: IST (+5:30)"
@@ -1791,7 +1807,7 @@ msgstr "Misslyckad "
#. Label of the featured (Check) field in DocType 'LMS Course'
#: frontend/src/components/CourseCard.vue:16
#: frontend/src/pages/CourseForm.vue:180
#: frontend/src/pages/CourseForm.vue:189
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Featured"
msgstr "Utvald"
@@ -2078,7 +2094,7 @@ msgstr "Om du har några frågor eller behöver hjälp är du välkommen att kon
msgid "If you set an amount here, then the USD equivalent setting will not get applied."
msgstr "Om du anger belopp här kommer motsvarande USD inställning inte att tillämpas."
#: lms/lms/doctype/lms_quiz/lms_quiz.py:62
#: lms/lms/doctype/lms_quiz/lms_quiz.py:63
msgid "If you want open ended questions then make sure each question in the quiz is of open ended type."
msgstr "Om du vill ha öppna frågor ska du se till att varje fråga i frågesporten är av typen öppna frågor."
@@ -2104,7 +2120,7 @@ msgstr "Bild"
msgid "Image search powered by"
msgstr "Bildsökning drivs av"
#: lms/lms/doctype/lms_quiz/lms_quiz.py:221
#: lms/lms/doctype/lms_quiz/lms_quiz.py:222
msgid "Image: Corrupted Data Stream"
msgstr "Bild: Skadad Dataström"
@@ -2187,14 +2203,14 @@ msgstr "Lärares Innehåll"
#. Label of the instructor_notes (Markdown Editor) field in DocType 'Course
#. Lesson'
#: frontend/src/pages/Lesson.vue:130 frontend/src/pages/LessonForm.vue:33
#: frontend/src/pages/Lesson.vue:125 frontend/src/pages/LessonForm.vue:33
#: lms/lms/doctype/course_lesson/course_lesson.json
msgid "Instructor Notes"
msgstr "Lärare Anteckningar"
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Batch'
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Course'
#: frontend/src/pages/BatchForm.vue:85 frontend/src/pages/CourseForm.vue:146
#: frontend/src/pages/BatchForm.vue:85 frontend/src/pages/CourseForm.vue:154
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Instructors"
@@ -2353,7 +2369,7 @@ msgstr "Delta i Möte"
msgid "Join URL"
msgstr "Gå med URL"
#: frontend/src/pages/CourseForm.vue:128
#: frontend/src/pages/CourseForm.vue:136
msgid "Keywords for the course"
msgstr "Nyckelord för kurs"
@@ -2657,7 +2673,7 @@ msgstr "LinkedIn ID"
msgid "Links"
msgstr "Länkar"
#: frontend/src/pages/Quizzes.vue:131
#: frontend/src/pages/Quizzes.vue:147
msgid "List of quizzes"
msgstr "Lista över frågesporter"
@@ -2707,7 +2723,7 @@ msgstr "Platspreferens"
#: frontend/src/components/NoPermission.vue:28
#: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:163
#: frontend/src/pages/Lesson.vue:29
#: frontend/src/pages/Lesson.vue:24
msgid "Login"
msgstr "Logga In"
@@ -2787,7 +2803,7 @@ msgid "Maximun Attempts"
msgstr "Maximalt antal försök"
#. Label of the medium (Select) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:184
#: frontend/src/pages/BatchForm.vue:185
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:309
msgid "Medium"
@@ -3042,11 +3058,11 @@ msgstr "Nytt Frågesport"
msgid "New Sign Up"
msgstr "Ny Registrering"
#: lms/lms/utils.py:632
#: lms/lms/utils.py:627
msgid "New comment in batch {0}"
msgstr "Ny kommentar i omgång {0}"
#: lms/lms/utils.py:625
#: lms/lms/utils.py:620
msgid "New reply on the topic {0} in course {1}"
msgstr "Nytt svar i ämne {0} i kurs {1}"
@@ -3055,7 +3071,7 @@ msgstr "Nytt svar i ämne {0} i kurs {1}"
msgid "New {0}"
msgstr "Ny {0}"
#: frontend/src/components/Quiz.vue:209 frontend/src/pages/Lesson.vue:89
#: frontend/src/components/Quiz.vue:209 frontend/src/pages/Lesson.vue:84
msgid "Next"
msgstr "Nästa"
@@ -3116,6 +3132,10 @@ msgstr "Inga jobb utannonserade"
msgid "No live classes scheduled"
msgstr "Inga live lektioner schemalagda"
#: frontend/src/pages/Quizzes.vue:56
msgid "No quizzes found"
msgstr "Inga frågesporter hittades"
#: frontend/src/components/Modals/EvaluationModal.vue:53
msgid "No slots available for this date."
msgstr "Inga lediga tider för detta datum."
@@ -3188,7 +3208,7 @@ msgstr "Aviseringar"
msgid "Notify me when available"
msgstr "Meddela mig när den är tillgänglig"
#: frontend/src/pages/BatchForm.vue:161
#: frontend/src/pages/BatchForm.vue:162
msgid "Number of seats available"
msgstr "Antal platser tillgängliga"
@@ -3224,7 +3244,7 @@ msgstr "Uppkopplad"
msgid "Only files of type {0} will be accepted."
msgstr "Endast filer av typ {0} kommer att accepteras."
#: frontend/src/pages/CourseForm.vue:473 frontend/src/utils/index.js:518
#: frontend/src/pages/CourseForm.vue:494 frontend/src/utils/index.js:518
msgid "Only image file is allowed."
msgstr "Endast bildfiler är tillåtna."
@@ -3332,14 +3352,14 @@ msgid "Pages"
msgstr "Sidor"
#. Label of the paid_batch (Check) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:204
#: frontend/src/pages/BatchForm.vue:205
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:373
msgid "Paid Batch"
msgstr "Betald Parti"
#. Label of the paid_course (Check) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:205
#: frontend/src/pages/CourseForm.vue:214
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Paid Course"
msgstr "Betald Kurs"
@@ -3370,7 +3390,7 @@ msgstr "Lösenord"
#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz'
#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/QuizForm.vue:71 frontend/src/pages/Quizzes.vue:109
#: frontend/src/pages/QuizForm.vue:71 frontend/src/pages/Quizzes.vue:125
#: lms/lms/doctype/lms_quiz/lms_quiz.json
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
msgid "Passing Percentage"
@@ -3381,13 +3401,13 @@ msgstr "Passerande Procent"
msgid "Password"
msgstr "Lösenord"
#: frontend/src/pages/CourseForm.vue:104
#: frontend/src/pages/CourseForm.vue:112
msgid "Paste the youtube link of a short video introducing the course"
msgstr "Klistra in youtube länk i kort video för kursintroduktion"
#. Label of the payment (Link) field in DocType 'Batch Student'
#. Label of the payment (Link) field in DocType 'LMS Enrollment'
#: frontend/src/pages/BatchForm.vue:198
#: frontend/src/pages/BatchForm.vue:199
#: lms/lms/doctype/batch_student/batch_student.json
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
msgid "Payment"
@@ -3499,7 +3519,7 @@ msgstr "Kontrollera din E-post för verifiering"
msgid "Please click on the following button to set your new password"
msgstr "Klicka på följande knapp för att ange ditt nya lösenord"
#: lms/lms/doctype/lms_batch/lms_batch.py:229
#: lms/lms/doctype/lms_batch/lms_batch.py:251
msgid "Please enable Zoom Settings to use this feature."
msgstr "Aktivera Zoom Inställningar för att använda denna funktion."
@@ -3520,7 +3540,7 @@ msgstr "Ange URL för uppgift inlämning."
msgid "Please enter your answer"
msgstr "Ange ditt svar"
#: lms/lms/doctype/lms_batch/lms_batch.py:64
#: lms/lms/doctype/lms_batch/lms_batch.py:65
msgid "Please install the Payments app to create a paid batches."
msgstr "Installera Betalning App för att skapa betalda omgångar."
@@ -3630,17 +3650,17 @@ msgstr "Föredragen Plats"
msgid "Preview Image"
msgstr "Förhandsgranska Bild"
#: frontend/src/pages/CourseForm.vue:102
#: frontend/src/pages/CourseForm.vue:110
msgid "Preview Video"
msgstr "Förhandsgranska Video"
#: frontend/src/pages/Lesson.vue:54
#: frontend/src/pages/Lesson.vue:49
msgid "Previous"
msgstr "Föregående"
#. Label of the pricing_tab (Tab Break) field in DocType 'LMS Batch'
#. Label of the pricing_tab (Tab Break) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:199
#: frontend/src/pages/CourseForm.vue:208
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/public/js/common_functions.js:368
@@ -3710,7 +3730,7 @@ msgstr "Publicera på deltagarsidan"
#. Label of the published (Check) field in DocType 'LMS Batch'
#. Label of the published (Check) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:108
#: frontend/src/pages/BatchForm.vue:24 frontend/src/pages/CourseForm.vue:162
#: frontend/src/pages/BatchForm.vue:24 frontend/src/pages/CourseForm.vue:171
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/public/js/common_functions.js:266
@@ -3723,7 +3743,7 @@ msgid "Published Courses"
msgstr "Publicerade Kurser"
#. Label of the published_on (Date) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:166
#: frontend/src/pages/CourseForm.vue:175
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Published On"
msgstr "Publicerad"
@@ -3785,7 +3805,7 @@ msgstr "Frågor"
#: frontend/src/pages/QuizForm.vue:430
msgid "Questions deleted successfully"
msgstr "Frågor är raderade"
msgstr "Frågor är borttagna"
#. Label of the quiz (Link) field in DocType 'LMS Quiz Submission'
#. Label of a Link in the LMS Workspace
@@ -3838,8 +3858,8 @@ msgstr "Frågesport uppdaterad"
msgid "Quiz will appear at the bottom of the lesson."
msgstr "Frågesport kommer att visas längst ner i lektionen."
#: frontend/src/pages/QuizForm.vue:441 frontend/src/pages/Quizzes.vue:120
#: frontend/src/pages/Quizzes.vue:130
#: frontend/src/pages/QuizForm.vue:441 frontend/src/pages/Quizzes.vue:136
#: frontend/src/pages/Quizzes.vue:146
msgid "Quizzes"
msgstr "Frågesporter"
@@ -3921,7 +3941,7 @@ msgstr "Avvisad"
msgid "Related Courses"
msgstr "Relaterade Kurser"
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/CourseForm.vue:91
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/CourseForm.vue:99
msgid "Remove"
msgstr "Ta bort"
@@ -3995,19 +4015,19 @@ msgstr "Rollpreferens"
msgid "Route"
msgstr "Sökväg"
#: lms/lms/doctype/lms_batch/lms_batch.py:172
#: lms/lms/doctype/lms_batch/lms_batch.py:194
msgid "Row #{0} Date cannot be outside the batch duration."
msgstr "Rad #{0} Datum kan inte vara utanför omgång varaktighet."
#: lms/lms/doctype/lms_batch/lms_batch.py:167
#: lms/lms/doctype/lms_batch/lms_batch.py:189
msgid "Row #{0} End time cannot be outside the batch duration."
msgstr "Rad #{0} Sluttid kan inte vara utanför omgång varaktighet."
#: lms/lms/doctype/lms_batch/lms_batch.py:149
#: lms/lms/doctype/lms_batch/lms_batch.py:171
msgid "Row #{0} Start time cannot be greater than or equal to end time."
msgstr "Rad #{0} Starttid kan inte vara senare än eller lika med sluttid."
#: lms/lms/doctype/lms_batch/lms_batch.py:158
#: lms/lms/doctype/lms_batch/lms_batch.py:180
msgid "Row #{0} Start time cannot be outside the batch duration."
msgstr "Rad #{0} Starttid kan inte vara utanför omgång varaktighet."
@@ -4031,7 +4051,7 @@ msgstr "Lördag"
#: frontend/src/components/Modals/Event.vue:129
#: frontend/src/components/QuizPlugin.vue:23
#: frontend/src/pages/AssignmentSubmission.vue:7
#: frontend/src/pages/BatchForm.vue:8 frontend/src/pages/CourseForm.vue:12
#: frontend/src/pages/BatchForm.vue:8 frontend/src/pages/CourseForm.vue:20
#: frontend/src/pages/JobCreation.vue:8 frontend/src/pages/LessonForm.vue:10
#: frontend/src/pages/QuizForm.vue:34 frontend/src/pages/QuizSubmission.vue:14
#: lms/public/js/common_functions.js:405
@@ -4080,7 +4100,7 @@ msgid "Search for an icon"
msgstr "Sök efter ikon"
#. Label of the seat_count (Int) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:158
#: frontend/src/pages/BatchForm.vue:159
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:327
msgid "Seat Count"
@@ -4124,7 +4144,7 @@ msgid "Set your Password"
msgstr "Ange Lösenord"
#: frontend/src/components/Modals/Settings.vue:7
#: frontend/src/pages/BatchForm.vue:152 frontend/src/pages/CourseForm.vue:152
#: frontend/src/pages/BatchForm.vue:153 frontend/src/pages/CourseForm.vue:161
#: frontend/src/pages/ProfileRoles.vue:4 frontend/src/pages/QuizForm.vue:78
msgid "Settings"
msgstr "Inställningar"
@@ -4134,12 +4154,12 @@ msgid "Share on"
msgstr "Dela på"
#. Label of the short_introduction (Small Text) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:30
#: frontend/src/pages/CourseForm.vue:38
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Short Introduction"
msgstr "Kort Introduktion"
#: frontend/src/pages/BatchForm.vue:93
#: frontend/src/pages/BatchForm.vue:94
msgid "Short description of the batch"
msgstr "Kort beskrivning av omgång"
@@ -4303,7 +4323,7 @@ msgstr "Start"
#. Label of the start_date (Date) field in DocType 'Education Detail'
#. Label of the start_date (Date) field in DocType 'LMS Batch'
#. Label of the start_date (Date) field in DocType 'LMS Batch Old'
#: frontend/src/pages/BatchForm.vue:116
#: frontend/src/pages/BatchForm.vue:117
#: lms/lms/doctype/education_detail/education_detail.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
@@ -4312,7 +4332,7 @@ msgid "Start Date"
msgstr "Start Datum"
#: frontend/src/components/CourseCardOverlay.vue:63
#: frontend/src/pages/Lesson.vue:25
#: frontend/src/pages/Lesson.vue:21
#: lms/templates/emails/lms_course_interest.html:9
msgid "Start Learning"
msgstr "Börja lära dig"
@@ -4324,7 +4344,7 @@ msgstr "Börja lära dig"
#. Label of the start_time (Time) field in DocType 'LMS Certificate Evaluation'
#. Label of the start_time (Time) field in DocType 'LMS Certificate Request'
#. Label of the start_time (Time) field in DocType 'Scheduled Flow'
#: frontend/src/pages/BatchForm.vue:130
#: frontend/src/pages/BatchForm.vue:131
#: frontend/src/pages/ProfileEvaluator.vue:15
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -4430,7 +4450,7 @@ msgstr "Studerande Namn"
msgid "Student Reviews"
msgstr "Student Recensioner"
#: lms/lms/doctype/lms_batch/lms_batch.py:46
#: lms/lms/doctype/lms_batch/lms_batch.py:47
msgid "Student {0} has already been added to this batch."
msgstr "Student {0} har redan lagts till i denna omgång."
@@ -4496,13 +4516,14 @@ msgstr "Inskickad {0}"
#: frontend/src/components/BatchOverlay.vue:135
#: frontend/src/components/BatchStudents.vue:157
#: frontend/src/components/CourseCardOverlay.vue:161
#: frontend/src/components/Modals/AnnouncementModal.vue:98
#: frontend/src/components/Modals/AssessmentModal.vue:73
#: frontend/src/components/Modals/Event.vue:255
#: frontend/src/components/Modals/Event.vue:310
#: frontend/src/components/Modals/Question.vue:261
#: frontend/src/components/Modals/Question.vue:312
#: frontend/src/pages/QuizForm.vue:342 frontend/src/pages/QuizForm.vue:361
#: frontend/src/pages/QuizForm.vue:430
#: frontend/src/pages/CourseForm.vue:457 frontend/src/pages/QuizForm.vue:342
#: frontend/src/pages/QuizForm.vue:361 frontend/src/pages/QuizForm.vue:430
msgid "Success"
msgstr "Klar"
@@ -4569,7 +4590,7 @@ msgid "System Manager"
msgstr "System Ansvarig"
#. Label of the tags (Data) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:112
#: frontend/src/pages/CourseForm.vue:120
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Tags"
msgstr "Taggar"
@@ -4661,7 +4682,7 @@ msgstr "Det finns inga kapitel i denna kurs. Skapa och hantera kapitel härifrå
msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
msgstr "Det finns inga kurser tillgängliga just nu. Håll utkik, färska inlärningsupplevelser är på väg snart!"
#: lms/lms/doctype/lms_batch/lms_batch.py:140
#: lms/lms/doctype/lms_batch/lms_batch.py:141
msgid "There are no seats available in this batch."
msgstr "Det finns inga platser tillgängliga i denna omgång."
@@ -4692,7 +4713,7 @@ msgstr "Detta certifikat upphör inte att gälla"
msgid "This course has:"
msgstr "Denna kurs har:"
#: lms/lms/utils.py:1572
#: lms/lms/utils.py:1570
msgid "This course is free."
msgstr "Denna kurs är gratis."
@@ -4761,7 +4782,7 @@ msgstr "Tidtabell Mall"
#. Label of the timezone (Data) field in DocType 'LMS Certificate Request'
#. Label of the timezone (Data) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/LiveClassModal.vue:44
#: frontend/src/pages/BatchForm.vue:142
#: frontend/src/pages/BatchForm.vue:143
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -4790,9 +4811,9 @@ msgstr "Tidpunkter:"
#. Label of the title (Data) field in DocType 'Work Experience'
#: frontend/src/components/Modals/DiscussionModal.vue:18
#: frontend/src/components/Modals/LiveClassModal.vue:23
#: frontend/src/pages/BatchForm.vue:18 frontend/src/pages/CourseForm.vue:24
#: frontend/src/pages/BatchForm.vue:18 frontend/src/pages/CourseForm.vue:32
#: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/QuizForm.vue:48
#: frontend/src/pages/Quizzes.vue:98 lms/lms/doctype/cohort/cohort.json
#: frontend/src/pages/Quizzes.vue:114 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json
#: lms/lms/doctype/course_chapter/course_chapter.json
@@ -4827,7 +4848,7 @@ msgstr "Till Datum"
msgid "To Date is mandatory in Work Experience."
msgstr "Till Datum erfordras i Arbetslivserfarenhet."
#: lms/lms/utils.py:1583
#: lms/lms/utils.py:1581
msgid "To join this batch, please contact the Administrator."
msgstr "För att gå med i denna omgång, kontakta Administratör."
@@ -4844,7 +4865,7 @@ msgid "Total"
msgstr "Totalt"
#. Label of the total_marks (Int) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:66 frontend/src/pages/Quizzes.vue:103
#: frontend/src/pages/QuizForm.vue:66 frontend/src/pages/Quizzes.vue:119
#: lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Total Marks"
msgstr "Totalt antal markeringar"
@@ -4944,7 +4965,7 @@ msgstr "Ostrukturerad Roll"
#. Option for the 'Status' (Select) field in DocType 'Cohort'
#. Label of the upcoming (Check) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:175 lms/lms/doctype/cohort/cohort.json
#: frontend/src/pages/CourseForm.vue:184 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Upcoming"
msgstr "Kommande"
@@ -4968,7 +4989,7 @@ msgstr "Uppdatera"
msgid "Update Password"
msgstr "Uppdatera lösenord"
#: frontend/src/pages/BatchForm.vue:51 frontend/src/pages/CourseForm.vue:72
#: frontend/src/pages/BatchForm.vue:51 frontend/src/pages/CourseForm.vue:80
msgid "Upload"
msgstr "Ladda upp"
@@ -5237,6 +5258,10 @@ msgstr "Du har blivit registrerad i denna omgång"
msgid "You have been enrolled in this course"
msgstr "Du har blivit registrerad på denna kurs"
#: frontend/src/pages/Quizzes.vue:60
msgid "You have not created any quizzes yet. To create a new quiz, click on the \"New Quiz\" button above."
msgstr "Du har inte skapat några frågesporter än. För att skapa ny frågesport, klicka på knapp \"Nytt Frågesport\" ovan."
#: lms/lms/widgets/NoPreviewModal.html:12 lms/public/js/common_functions.js:126
msgid "You have opted to be notified for this course. You will receive an email when the course becomes available."
msgstr "Du har valt att bli meddelad om denna kurs. Du kommer att få ett e-post meddelande när kursen blir tillgänglig."
@@ -5315,7 +5340,7 @@ msgstr "Zoom Inställningar"
msgid "cancel your application"
msgstr "avbryt din ansökan"
#: frontend/src/pages/Lesson.vue:175
#: frontend/src/pages/Lesson.vue:170
msgid "completed"
msgstr "slutförd"
@@ -5363,7 +5388,7 @@ msgstr "stjärnor"
msgid "you can"
msgstr "du kan"
#: lms/lms/api.py:732 lms/lms/api.py:740
#: lms/lms/api.py:740 lms/lms/api.py:748
msgid "{0} Settings not found"
msgstr "{0} Inställningar hittades inte"
@@ -5399,7 +5424,7 @@ msgstr "{0} är redan certifierad för kurs {1}"
msgid "{0} is your evaluator"
msgstr "{0} är din utvärderare"
#: lms/lms/utils.py:709
#: lms/lms/utils.py:704
msgid "{0} mentioned you in a comment"
msgstr "{0} nämnde dig i en kommentar"
@@ -5407,7 +5432,7 @@ msgstr "{0} nämnde dig i en kommentar"
msgid "{0} mentioned you in a comment in your batch."
msgstr "{0} nämnde dig i en kommentar i din grupp."
#: lms/lms/utils.py:662 lms/lms/utils.py:668
#: lms/lms/utils.py:657 lms/lms/utils.py:663
msgid "{0} mentioned you in a comment in {1}"
msgstr "{0} hänvisade dig i kommentar i {1}"

File diff suppressed because it is too large Load Diff

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2024-11-01 16:04+0000\n"
"PO-Revision-Date: 2024-11-05 14:34\n"
"POT-Creation-Date: 2024-11-08 16:04+0000\n"
"PO-Revision-Date: 2024-11-11 15:23\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Chinese Simplified\n"
"MIME-Version: 1.0\n"
@@ -62,7 +62,7 @@ msgstr ""
msgid "<span style=\"font-size: 18px;\"><b>Statistics</b></span>"
msgstr ""
#: frontend/src/pages/CourseForm.vue:32
#: frontend/src/pages/CourseForm.vue:40
msgid "A one line introduction to the course that appears on the course card"
msgstr ""
@@ -228,7 +228,7 @@ msgstr "已注册"
#. Label of the amount (Currency) field in DocType 'Web Form'
#. Label of the amount (Currency) field in DocType 'LMS Batch'
#. Label of the amount (Currency) field in DocType 'LMS Payment'
#: frontend/src/pages/BatchForm.vue:208 lms/fixtures/custom_field.json
#: frontend/src/pages/BatchForm.vue:209 lms/fixtures/custom_field.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_payment/lms_payment.json
#: lms/public/js/common_functions.js:379
@@ -262,6 +262,10 @@ msgstr ""
msgid "Announcement"
msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:99
msgid "Announcement has been sent successfully"
msgstr ""
#. Label of the answer (Text Editor) field in DocType 'LMS Assignment'
#. Label of the answer (Text Editor) field in DocType 'LMS Assignment
#. Submission'
@@ -272,7 +276,7 @@ msgstr ""
msgid "Answer"
msgstr ""
#: frontend/src/pages/CourseForm.vue:76 frontend/src/pages/CourseForm.vue:94
#: frontend/src/pages/CourseForm.vue:84 frontend/src/pages/CourseForm.vue:102
msgid "Appears on the course card in the course list"
msgstr ""
@@ -346,7 +350,7 @@ msgstr ""
msgid "Assessment added successfully"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:74
#: lms/lms/doctype/lms_batch/lms_batch.py:75
msgid "Assessment {0} has already been added to this batch."
msgstr ""
@@ -426,7 +430,7 @@ msgstr ""
msgid "Average Rating"
msgstr ""
#: frontend/src/pages/Lesson.vue:101
#: frontend/src/pages/Lesson.vue:96
msgid "Back to Course"
msgstr ""
@@ -478,7 +482,7 @@ msgid "Batch Description"
msgstr ""
#. Label of the batch_details (Text Editor) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:97 lms/lms/doctype/lms_batch/lms_batch.json
#: frontend/src/pages/BatchForm.vue:98 lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:349
#: lms/templates/emails/batch_confirmation.html:30
msgid "Batch Details"
@@ -539,7 +543,7 @@ msgstr ""
msgid "Batch Updated"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:39
#: lms/lms/doctype/lms_batch/lms_batch.py:40
msgid "Batch end date cannot be before the batch start date"
msgstr ""
@@ -645,8 +649,8 @@ msgstr ""
#. Label of the category (Link) field in DocType 'LMS Batch'
#. Label of the category (Data) field in DocType 'LMS Category'
#. Label of the category (Link) field in DocType 'LMS Course'
#: frontend/src/pages/BatchForm.vue:189 frontend/src/pages/Batches.vue:16
#: frontend/src/pages/CourseForm.vue:139 frontend/src/pages/Courses.vue:17
#: frontend/src/pages/BatchForm.vue:190 frontend/src/pages/Batches.vue:16
#: frontend/src/pages/CourseForm.vue:147 frontend/src/pages/Courses.vue:17
#: frontend/src/pages/JobDetail.vue:102
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_category/lms_category.json
@@ -947,7 +951,7 @@ msgstr ""
msgid "Completed"
msgstr "已完成"
#: frontend/src/pages/CourseForm.vue:192
#: frontend/src/pages/CourseForm.vue:201
msgid "Completion Certificate"
msgstr ""
@@ -1118,7 +1122,7 @@ msgstr ""
msgid "Course Data"
msgstr ""
#: frontend/src/pages/CourseForm.vue:41
#: frontend/src/pages/CourseForm.vue:49
msgid "Course Description"
msgstr ""
@@ -1127,7 +1131,7 @@ msgstr ""
msgid "Course Evaluator"
msgstr ""
#: frontend/src/pages/CourseForm.vue:54
#: frontend/src/pages/CourseForm.vue:62
msgid "Course Image"
msgstr ""
@@ -1150,7 +1154,7 @@ msgid "Course Name"
msgstr ""
#. Label of the course_price (Currency) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:210
#: frontend/src/pages/CourseForm.vue:219
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Course Price"
msgstr ""
@@ -1179,15 +1183,15 @@ msgstr ""
msgid "Course Title"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:318
#: lms/lms/doctype/lms_batch/lms_batch.py:340
msgid "Course already added to the batch."
msgstr ""
#: frontend/src/pages/CourseForm.vue:457
msgid "Course price and currency are mandatory for paid courses"
msgid "Course deleted successfully"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:57
#: lms/lms/doctype/lms_batch/lms_batch.py:58
msgid "Course {0} has already been added to this batch."
msgstr ""
@@ -1253,7 +1257,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/pages/BatchForm.vue:216 frontend/src/pages/CourseForm.vue:217
#: frontend/src/pages/BatchForm.vue:217 frontend/src/pages/CourseForm.vue:226
#: lms/fixtures/custom_field.json lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_payment/lms_payment.json
@@ -1311,7 +1315,7 @@ msgstr "日期"
#. Label of the section_break_glxh (Section Break) field in DocType 'LMS Live
#. Class'
#: frontend/src/pages/BatchForm.vue:110
#: frontend/src/pages/BatchForm.vue:111
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Date and Time"
msgstr ""
@@ -1347,13 +1351,22 @@ msgid "Degree Type"
msgstr ""
#: frontend/src/components/CourseOutline.vue:212
#: frontend/src/pages/CourseForm.vue:15 frontend/src/pages/CourseForm.vue:470
msgid "Delete"
msgstr "删除"
#: frontend/src/pages/CourseForm.vue:464
msgid "Delete Course"
msgstr ""
#: frontend/src/components/CourseOutline.vue:208
msgid "Delete Lesson"
msgstr ""
#: frontend/src/pages/CourseForm.vue:465
msgid "Deleting the course will also delete all its chapters and lessons. Are you sure you want to delete this course?"
msgstr ""
#. Label of the description (Text Editor) field in DocType 'Job Opportunity'
#. Label of the description (Small Text) field in DocType 'Certification'
#. Label of the description (Markdown Editor) field in DocType 'Cohort'
@@ -1367,7 +1380,7 @@ msgstr ""
#. Label of the description (Text) field in DocType 'LMS Live Class'
#. Label of the description (Small Text) field in DocType 'Work Experience'
#: frontend/src/components/Modals/LiveClassModal.vue:73
#: frontend/src/pages/BatchForm.vue:90 frontend/src/pages/JobCreation.vue:43
#: frontend/src/pages/BatchForm.vue:91 frontend/src/pages/JobCreation.vue:43
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/cohort/cohort.json
@@ -1388,12 +1401,12 @@ msgid "Desk"
msgstr ""
#: frontend/src/components/Modals/DiscussionModal.vue:22
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:20
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:28
#: frontend/src/pages/QuizForm.vue:42
msgid "Details"
msgstr "详细信息"
#: frontend/src/pages/CourseForm.vue:187
#: frontend/src/pages/CourseForm.vue:196
msgid "Disable Self Enrollment"
msgstr ""
@@ -1469,7 +1482,7 @@ msgstr ""
#: frontend/src/components/BatchOverlay.vue:93
#: frontend/src/components/CourseCardOverlay.vue:86
#: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/pages/JobDetail.vue:31 frontend/src/pages/Lesson.vue:70
#: frontend/src/pages/JobDetail.vue:31 frontend/src/pages/Lesson.vue:65
#: frontend/src/pages/Profile.vue:32
msgid "Edit"
msgstr "编辑"
@@ -1551,7 +1564,7 @@ msgstr "已启用"
#. Label of the end_date (Date) field in DocType 'Cohort'
#. Label of the end_date (Date) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:122 lms/lms/doctype/cohort/cohort.json
#: frontend/src/pages/BatchForm.vue:123 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:282
msgid "End Date"
@@ -1569,7 +1582,7 @@ msgstr ""
#. Label of the end_time (Time) field in DocType 'LMS Certificate Evaluation'
#. Label of the end_time (Time) field in DocType 'LMS Certificate Request'
#. Label of the end_time (Time) field in DocType 'Scheduled Flow'
#: frontend/src/pages/BatchForm.vue:136
#: frontend/src/pages/BatchForm.vue:137
#: frontend/src/pages/ProfileEvaluator.vue:18
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1596,7 +1609,7 @@ msgstr ""
msgid "Enrolled successfully"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:97
#: lms/lms/doctype/lms_batch/lms_batch.py:98
msgid "Enrollment Confirmation for the Next Training Batch"
msgstr ""
@@ -1605,7 +1618,7 @@ msgstr ""
msgid "Enrollment Count"
msgstr ""
#: lms/lms/utils.py:1692
#: lms/lms/utils.py:1690
msgid "Enrollment Failed"
msgstr ""
@@ -1633,6 +1646,7 @@ msgstr ""
msgid "Enter the correct answer"
msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:104
#: frontend/src/components/Modals/Question.vue:246
#: frontend/src/components/Modals/Question.vue:266
#: frontend/src/components/Modals/Question.vue:323
@@ -1655,7 +1669,7 @@ msgid "Evaluation Details"
msgstr ""
#. Label of the evaluation_end_date (Date) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:165
#: frontend/src/pages/BatchForm.vue:166
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:333
msgid "Evaluation End Date"
@@ -1666,7 +1680,7 @@ msgstr ""
msgid "Evaluation Request"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:81
#: lms/lms/doctype/lms_batch/lms_batch.py:82
msgid "Evaluation end date cannot be less than the batch end date."
msgstr ""
@@ -1713,11 +1727,13 @@ msgid "Evaluator is Unavailable"
msgstr ""
#. Label of the event (Select) field in DocType 'LMS Badge'
#. Label of the event (Link) field in DocType 'LMS Live Class'
#: lms/lms/doctype/lms_badge/lms_badge.json
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Event"
msgstr "事件"
#: frontend/src/pages/BatchForm.vue:144
#: frontend/src/pages/BatchForm.vue:145
msgid "Example: IST (+5:30)"
msgstr ""
@@ -1791,7 +1807,7 @@ msgstr ""
#. Label of the featured (Check) field in DocType 'LMS Course'
#: frontend/src/components/CourseCard.vue:16
#: frontend/src/pages/CourseForm.vue:180
#: frontend/src/pages/CourseForm.vue:189
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Featured"
msgstr "精选"
@@ -2078,7 +2094,7 @@ msgstr ""
msgid "If you set an amount here, then the USD equivalent setting will not get applied."
msgstr ""
#: lms/lms/doctype/lms_quiz/lms_quiz.py:62
#: lms/lms/doctype/lms_quiz/lms_quiz.py:63
msgid "If you want open ended questions then make sure each question in the quiz is of open ended type."
msgstr ""
@@ -2104,7 +2120,7 @@ msgstr ""
msgid "Image search powered by"
msgstr ""
#: lms/lms/doctype/lms_quiz/lms_quiz.py:221
#: lms/lms/doctype/lms_quiz/lms_quiz.py:222
msgid "Image: Corrupted Data Stream"
msgstr ""
@@ -2187,14 +2203,14 @@ msgstr ""
#. Label of the instructor_notes (Markdown Editor) field in DocType 'Course
#. Lesson'
#: frontend/src/pages/Lesson.vue:130 frontend/src/pages/LessonForm.vue:33
#: frontend/src/pages/Lesson.vue:125 frontend/src/pages/LessonForm.vue:33
#: lms/lms/doctype/course_lesson/course_lesson.json
msgid "Instructor Notes"
msgstr ""
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Batch'
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Course'
#: frontend/src/pages/BatchForm.vue:85 frontend/src/pages/CourseForm.vue:146
#: frontend/src/pages/BatchForm.vue:85 frontend/src/pages/CourseForm.vue:154
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Instructors"
@@ -2353,7 +2369,7 @@ msgstr ""
msgid "Join URL"
msgstr ""
#: frontend/src/pages/CourseForm.vue:128
#: frontend/src/pages/CourseForm.vue:136
msgid "Keywords for the course"
msgstr ""
@@ -2657,7 +2673,7 @@ msgstr ""
msgid "Links"
msgstr "链接"
#: frontend/src/pages/Quizzes.vue:131
#: frontend/src/pages/Quizzes.vue:147
msgid "List of quizzes"
msgstr ""
@@ -2707,7 +2723,7 @@ msgstr ""
#: frontend/src/components/NoPermission.vue:28
#: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:163
#: frontend/src/pages/Lesson.vue:29
#: frontend/src/pages/Lesson.vue:24
msgid "Login"
msgstr "登录"
@@ -2787,7 +2803,7 @@ msgid "Maximun Attempts"
msgstr ""
#. Label of the medium (Select) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:184
#: frontend/src/pages/BatchForm.vue:185
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:309
msgid "Medium"
@@ -3042,11 +3058,11 @@ msgstr ""
msgid "New Sign Up"
msgstr ""
#: lms/lms/utils.py:632
#: lms/lms/utils.py:627
msgid "New comment in batch {0}"
msgstr ""
#: lms/lms/utils.py:625
#: lms/lms/utils.py:620
msgid "New reply on the topic {0} in course {1}"
msgstr ""
@@ -3055,7 +3071,7 @@ msgstr ""
msgid "New {0}"
msgstr "新建 {0}"
#: frontend/src/components/Quiz.vue:209 frontend/src/pages/Lesson.vue:89
#: frontend/src/components/Quiz.vue:209 frontend/src/pages/Lesson.vue:84
msgid "Next"
msgstr "下一个"
@@ -3116,6 +3132,10 @@ msgstr ""
msgid "No live classes scheduled"
msgstr ""
#: frontend/src/pages/Quizzes.vue:56
msgid "No quizzes found"
msgstr ""
#: frontend/src/components/Modals/EvaluationModal.vue:53
msgid "No slots available for this date."
msgstr ""
@@ -3188,7 +3208,7 @@ msgstr "通知"
msgid "Notify me when available"
msgstr ""
#: frontend/src/pages/BatchForm.vue:161
#: frontend/src/pages/BatchForm.vue:162
msgid "Number of seats available"
msgstr ""
@@ -3224,7 +3244,7 @@ msgstr ""
msgid "Only files of type {0} will be accepted."
msgstr ""
#: frontend/src/pages/CourseForm.vue:473 frontend/src/utils/index.js:518
#: frontend/src/pages/CourseForm.vue:494 frontend/src/utils/index.js:518
msgid "Only image file is allowed."
msgstr ""
@@ -3332,14 +3352,14 @@ msgid "Pages"
msgstr ""
#. Label of the paid_batch (Check) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:204
#: frontend/src/pages/BatchForm.vue:205
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:373
msgid "Paid Batch"
msgstr ""
#. Label of the paid_course (Check) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:205
#: frontend/src/pages/CourseForm.vue:214
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Paid Course"
msgstr ""
@@ -3370,7 +3390,7 @@ msgstr ""
#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz'
#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/QuizForm.vue:71 frontend/src/pages/Quizzes.vue:109
#: frontend/src/pages/QuizForm.vue:71 frontend/src/pages/Quizzes.vue:125
#: lms/lms/doctype/lms_quiz/lms_quiz.json
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
msgid "Passing Percentage"
@@ -3381,13 +3401,13 @@ msgstr ""
msgid "Password"
msgstr "密码"
#: frontend/src/pages/CourseForm.vue:104
#: frontend/src/pages/CourseForm.vue:112
msgid "Paste the youtube link of a short video introducing the course"
msgstr ""
#. Label of the payment (Link) field in DocType 'Batch Student'
#. Label of the payment (Link) field in DocType 'LMS Enrollment'
#: frontend/src/pages/BatchForm.vue:198
#: frontend/src/pages/BatchForm.vue:199
#: lms/lms/doctype/batch_student/batch_student.json
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
msgid "Payment"
@@ -3499,7 +3519,7 @@ msgstr "请检查您的电子邮件验证"
msgid "Please click on the following button to set your new password"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:229
#: lms/lms/doctype/lms_batch/lms_batch.py:251
msgid "Please enable Zoom Settings to use this feature."
msgstr ""
@@ -3520,7 +3540,7 @@ msgstr ""
msgid "Please enter your answer"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:64
#: lms/lms/doctype/lms_batch/lms_batch.py:65
msgid "Please install the Payments app to create a paid batches."
msgstr ""
@@ -3630,17 +3650,17 @@ msgstr ""
msgid "Preview Image"
msgstr ""
#: frontend/src/pages/CourseForm.vue:102
#: frontend/src/pages/CourseForm.vue:110
msgid "Preview Video"
msgstr ""
#: frontend/src/pages/Lesson.vue:54
#: frontend/src/pages/Lesson.vue:49
msgid "Previous"
msgstr "以前"
#. Label of the pricing_tab (Tab Break) field in DocType 'LMS Batch'
#. Label of the pricing_tab (Tab Break) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:199
#: frontend/src/pages/CourseForm.vue:208
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/public/js/common_functions.js:368
@@ -3710,7 +3730,7 @@ msgstr ""
#. Label of the published (Check) field in DocType 'LMS Batch'
#. Label of the published (Check) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:108
#: frontend/src/pages/BatchForm.vue:24 frontend/src/pages/CourseForm.vue:162
#: frontend/src/pages/BatchForm.vue:24 frontend/src/pages/CourseForm.vue:171
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/public/js/common_functions.js:266
@@ -3723,7 +3743,7 @@ msgid "Published Courses"
msgstr ""
#. Label of the published_on (Date) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:166
#: frontend/src/pages/CourseForm.vue:175
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Published On"
msgstr ""
@@ -3838,8 +3858,8 @@ msgstr ""
msgid "Quiz will appear at the bottom of the lesson."
msgstr ""
#: frontend/src/pages/QuizForm.vue:441 frontend/src/pages/Quizzes.vue:120
#: frontend/src/pages/Quizzes.vue:130
#: frontend/src/pages/QuizForm.vue:441 frontend/src/pages/Quizzes.vue:136
#: frontend/src/pages/Quizzes.vue:146
msgid "Quizzes"
msgstr ""
@@ -3921,7 +3941,7 @@ msgstr ""
msgid "Related Courses"
msgstr ""
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/CourseForm.vue:91
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/CourseForm.vue:99
msgid "Remove"
msgstr ""
@@ -3995,19 +4015,19 @@ msgstr ""
msgid "Route"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:172
#: lms/lms/doctype/lms_batch/lms_batch.py:194
msgid "Row #{0} Date cannot be outside the batch duration."
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:167
#: lms/lms/doctype/lms_batch/lms_batch.py:189
msgid "Row #{0} End time cannot be outside the batch duration."
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:149
#: lms/lms/doctype/lms_batch/lms_batch.py:171
msgid "Row #{0} Start time cannot be greater than or equal to end time."
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:158
#: lms/lms/doctype/lms_batch/lms_batch.py:180
msgid "Row #{0} Start time cannot be outside the batch duration."
msgstr ""
@@ -4031,7 +4051,7 @@ msgstr ""
#: frontend/src/components/Modals/Event.vue:129
#: frontend/src/components/QuizPlugin.vue:23
#: frontend/src/pages/AssignmentSubmission.vue:7
#: frontend/src/pages/BatchForm.vue:8 frontend/src/pages/CourseForm.vue:12
#: frontend/src/pages/BatchForm.vue:8 frontend/src/pages/CourseForm.vue:20
#: frontend/src/pages/JobCreation.vue:8 frontend/src/pages/LessonForm.vue:10
#: frontend/src/pages/QuizForm.vue:34 frontend/src/pages/QuizSubmission.vue:14
#: lms/public/js/common_functions.js:405
@@ -4080,7 +4100,7 @@ msgid "Search for an icon"
msgstr ""
#. Label of the seat_count (Int) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:158
#: frontend/src/pages/BatchForm.vue:159
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:327
msgid "Seat Count"
@@ -4124,7 +4144,7 @@ msgid "Set your Password"
msgstr ""
#: frontend/src/components/Modals/Settings.vue:7
#: frontend/src/pages/BatchForm.vue:152 frontend/src/pages/CourseForm.vue:152
#: frontend/src/pages/BatchForm.vue:153 frontend/src/pages/CourseForm.vue:161
#: frontend/src/pages/ProfileRoles.vue:4 frontend/src/pages/QuizForm.vue:78
msgid "Settings"
msgstr "设置"
@@ -4134,12 +4154,12 @@ msgid "Share on"
msgstr ""
#. Label of the short_introduction (Small Text) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:30
#: frontend/src/pages/CourseForm.vue:38
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Short Introduction"
msgstr ""
#: frontend/src/pages/BatchForm.vue:93
#: frontend/src/pages/BatchForm.vue:94
msgid "Short description of the batch"
msgstr ""
@@ -4303,7 +4323,7 @@ msgstr "开始"
#. Label of the start_date (Date) field in DocType 'Education Detail'
#. Label of the start_date (Date) field in DocType 'LMS Batch'
#. Label of the start_date (Date) field in DocType 'LMS Batch Old'
#: frontend/src/pages/BatchForm.vue:116
#: frontend/src/pages/BatchForm.vue:117
#: lms/lms/doctype/education_detail/education_detail.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
@@ -4312,7 +4332,7 @@ msgid "Start Date"
msgstr "开始日期"
#: frontend/src/components/CourseCardOverlay.vue:63
#: frontend/src/pages/Lesson.vue:25
#: frontend/src/pages/Lesson.vue:21
#: lms/templates/emails/lms_course_interest.html:9
msgid "Start Learning"
msgstr ""
@@ -4324,7 +4344,7 @@ msgstr ""
#. Label of the start_time (Time) field in DocType 'LMS Certificate Evaluation'
#. Label of the start_time (Time) field in DocType 'LMS Certificate Request'
#. Label of the start_time (Time) field in DocType 'Scheduled Flow'
#: frontend/src/pages/BatchForm.vue:130
#: frontend/src/pages/BatchForm.vue:131
#: frontend/src/pages/ProfileEvaluator.vue:15
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -4430,7 +4450,7 @@ msgstr ""
msgid "Student Reviews"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:46
#: lms/lms/doctype/lms_batch/lms_batch.py:47
msgid "Student {0} has already been added to this batch."
msgstr ""
@@ -4496,13 +4516,14 @@ msgstr ""
#: frontend/src/components/BatchOverlay.vue:135
#: frontend/src/components/BatchStudents.vue:157
#: frontend/src/components/CourseCardOverlay.vue:161
#: frontend/src/components/Modals/AnnouncementModal.vue:98
#: frontend/src/components/Modals/AssessmentModal.vue:73
#: frontend/src/components/Modals/Event.vue:255
#: frontend/src/components/Modals/Event.vue:310
#: frontend/src/components/Modals/Question.vue:261
#: frontend/src/components/Modals/Question.vue:312
#: frontend/src/pages/QuizForm.vue:342 frontend/src/pages/QuizForm.vue:361
#: frontend/src/pages/QuizForm.vue:430
#: frontend/src/pages/CourseForm.vue:457 frontend/src/pages/QuizForm.vue:342
#: frontend/src/pages/QuizForm.vue:361 frontend/src/pages/QuizForm.vue:430
msgid "Success"
msgstr "成功"
@@ -4569,7 +4590,7 @@ msgid "System Manager"
msgstr "系统管理员"
#. Label of the tags (Data) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:112
#: frontend/src/pages/CourseForm.vue:120
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Tags"
msgstr "标签"
@@ -4661,7 +4682,7 @@ msgstr ""
msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:140
#: lms/lms/doctype/lms_batch/lms_batch.py:141
msgid "There are no seats available in this batch."
msgstr ""
@@ -4692,7 +4713,7 @@ msgstr ""
msgid "This course has:"
msgstr ""
#: lms/lms/utils.py:1572
#: lms/lms/utils.py:1570
msgid "This course is free."
msgstr ""
@@ -4761,7 +4782,7 @@ msgstr ""
#. Label of the timezone (Data) field in DocType 'LMS Certificate Request'
#. Label of the timezone (Data) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/LiveClassModal.vue:44
#: frontend/src/pages/BatchForm.vue:142
#: frontend/src/pages/BatchForm.vue:143
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -4790,9 +4811,9 @@ msgstr ""
#. Label of the title (Data) field in DocType 'Work Experience'
#: frontend/src/components/Modals/DiscussionModal.vue:18
#: frontend/src/components/Modals/LiveClassModal.vue:23
#: frontend/src/pages/BatchForm.vue:18 frontend/src/pages/CourseForm.vue:24
#: frontend/src/pages/BatchForm.vue:18 frontend/src/pages/CourseForm.vue:32
#: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/QuizForm.vue:48
#: frontend/src/pages/Quizzes.vue:98 lms/lms/doctype/cohort/cohort.json
#: frontend/src/pages/Quizzes.vue:114 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json
#: lms/lms/doctype/course_chapter/course_chapter.json
@@ -4827,7 +4848,7 @@ msgstr "至今"
msgid "To Date is mandatory in Work Experience."
msgstr ""
#: lms/lms/utils.py:1583
#: lms/lms/utils.py:1581
msgid "To join this batch, please contact the Administrator."
msgstr ""
@@ -4844,7 +4865,7 @@ msgid "Total"
msgstr "总"
#. Label of the total_marks (Int) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:66 frontend/src/pages/Quizzes.vue:103
#: frontend/src/pages/QuizForm.vue:66 frontend/src/pages/Quizzes.vue:119
#: lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Total Marks"
msgstr ""
@@ -4944,7 +4965,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Cohort'
#. Label of the upcoming (Check) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:175 lms/lms/doctype/cohort/cohort.json
#: frontend/src/pages/CourseForm.vue:184 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Upcoming"
msgstr ""
@@ -4968,7 +4989,7 @@ msgstr "更新"
msgid "Update Password"
msgstr ""
#: frontend/src/pages/BatchForm.vue:51 frontend/src/pages/CourseForm.vue:72
#: frontend/src/pages/BatchForm.vue:51 frontend/src/pages/CourseForm.vue:80
msgid "Upload"
msgstr "上传"
@@ -5237,6 +5258,10 @@ msgstr ""
msgid "You have been enrolled in this course"
msgstr ""
#: frontend/src/pages/Quizzes.vue:60
msgid "You have not created any quizzes yet. To create a new quiz, click on the \"New Quiz\" button above."
msgstr ""
#: lms/lms/widgets/NoPreviewModal.html:12 lms/public/js/common_functions.js:126
msgid "You have opted to be notified for this course. You will receive an email when the course becomes available."
msgstr ""
@@ -5315,7 +5340,7 @@ msgstr ""
msgid "cancel your application"
msgstr ""
#: frontend/src/pages/Lesson.vue:175
#: frontend/src/pages/Lesson.vue:170
msgid "completed"
msgstr "已完成"
@@ -5363,7 +5388,7 @@ msgstr ""
msgid "you can"
msgstr ""
#: lms/lms/api.py:732 lms/lms/api.py:740
#: lms/lms/api.py:740 lms/lms/api.py:748
msgid "{0} Settings not found"
msgstr ""
@@ -5399,7 +5424,7 @@ msgstr ""
msgid "{0} is your evaluator"
msgstr ""
#: lms/lms/utils.py:709
#: lms/lms/utils.py:704
msgid "{0} mentioned you in a comment"
msgstr ""
@@ -5407,7 +5432,7 @@ msgstr ""
msgid "{0} mentioned you in a comment in your batch."
msgstr ""
#: lms/lms/utils.py:662 lms/lms/utils.py:668
#: lms/lms/utils.py:657 lms/lms/utils.py:663
msgid "{0} mentioned you in a comment in {1}"
msgstr ""

View File

@@ -92,4 +92,5 @@ lms.patches.v2_0.add_discussion_topic_titles
lms.patches.v2_0.sidebar_settings
lms.patches.v2_0.delete_certificate_request_notification #18-09-2024
lms.patches.v2_0.add_course_statistics #21-10-2024
lms.patches.v2_0.give_discussions_permissions
lms.patches.v2_0.give_discussions_permissions
lms.patches.v2_0.delete_web_forms

View File

@@ -0,0 +1,5 @@
import frappe
def execute():
frappe.db.delete("Web Form", {"module": "LMS"})