chore: resolved conflicts

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

View File

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

View File

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

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

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2025-10-31 16:04+0000\n"
"PO-Revision-Date: 2025-11-02 19:07\n"
"POT-Creation-Date: 2025-11-07 16:04+0000\n"
"PO-Revision-Date: 2025-11-11 11:49\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Czech\n"
"MIME-Version: 1.0\n"
@@ -176,7 +176,7 @@ msgstr ""
msgid "Add Row"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:89
#: frontend/src/pages/ProfileEvaluator.vue:96
msgid "Add Slot"
msgstr ""
@@ -426,12 +426,25 @@ msgstr ""
msgid "Appears when the batch URL is shared on socials"
msgstr ""
#: frontend/src/pages/JobApplications.vue:24
msgid "Application"
msgstr ""
#. Label of a field in the job-opportunity Web Form
#: lms/job/web_form/job_opportunity/job_opportunity.json
msgid "Application Form Link"
msgstr ""
#: frontend/src/pages/JobDetail.vue:51
#: frontend/src/pages/JobApplications.vue:14
#: frontend/src/pages/JobApplications.vue:25
msgid "Applications"
msgstr ""
#: frontend/src/pages/JobApplications.vue:290
msgid "Applied On"
msgstr ""
#: frontend/src/pages/JobDetail.vue:62
msgid "Apply"
msgstr ""
@@ -483,7 +496,7 @@ msgstr ""
#. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch'
#. Label of the assessment (Table) field in DocType 'LMS Batch'
#: frontend/src/components/Modals/AssessmentModal.vue:27
#: frontend/src/components/Modals/BatchStudentProgress.vue:41
#: frontend/src/components/Modals/BatchStudentProgress.vue:43
#: lms/lms/doctype/lms_batch/lms_batch.json lms/templates/assessments.html:11
msgid "Assessment"
msgstr ""
@@ -569,7 +582,7 @@ msgstr ""
msgid "Assignment Title"
msgstr ""
#: frontend/src/components/Modals/AssignmentForm.vue:125
#: frontend/src/components/Modals/AssignmentForm.vue:133
msgid "Assignment created successfully"
msgstr ""
@@ -581,7 +594,7 @@ msgstr ""
msgid "Assignment submitted successfully"
msgstr ""
#: frontend/src/components/Modals/AssignmentForm.vue:138
#: frontend/src/components/Modals/AssignmentForm.vue:146
msgid "Assignment updated successfully"
msgstr ""
@@ -622,7 +635,7 @@ msgstr ""
msgid "Attire Preference"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:137
#: frontend/src/pages/ProfileEvaluator.vue:146
msgid "Authorize Google Calendar Access"
msgstr ""
@@ -637,7 +650,7 @@ msgstr ""
msgid "Auto Recording"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:224
#: frontend/src/pages/ProfileEvaluator.vue:241
msgid "Availability updated successfully"
msgstr ""
@@ -768,6 +781,7 @@ msgstr ""
#. Name of a role
#: lms/lms/doctype/course_evaluator/course_evaluator.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_category/lms_category.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -998,7 +1012,7 @@ msgstr ""
msgid "Certificate of Completion"
msgstr ""
#: frontend/src/components/Modals/Event.vue:317
#: frontend/src/components/Modals/Event.vue:348
msgid "Certificate saved successfully"
msgstr ""
@@ -1018,7 +1032,7 @@ msgstr ""
#. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace
#: frontend/src/components/AppSidebar.vue:626
#: frontend/src/components/Modals/Event.vue:381
#: frontend/src/components/Modals/Event.vue:412
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58
#: frontend/src/pages/CourseCertification.vue:10
#: frontend/src/pages/CourseCertification.vue:135
@@ -1640,6 +1654,7 @@ msgstr ""
#: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/course_lesson/course_lesson.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
#: lms/lms/doctype/lms_category/lms_category.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json
@@ -1757,7 +1772,7 @@ msgstr ""
#: frontend/src/components/BatchCourses.vue:5
#: frontend/src/components/BatchOverlay.vue:37
#: frontend/src/components/BatchStudents.vue:25
#: frontend/src/components/Modals/BatchStudentProgress.vue:91
#: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127
#: frontend/src/pages/Courses.vue:333 frontend/src/pages/Courses.vue:340
@@ -2169,7 +2184,7 @@ msgstr ""
#: frontend/src/components/DiscussionReplies.vue:35
#: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/components/Settings/Badges.vue:156
#: frontend/src/pages/JobDetail.vue:34 frontend/src/pages/Lesson.vue:42
#: frontend/src/pages/JobDetail.vue:45 frontend/src/pages/Lesson.vue:42
#: frontend/src/pages/Lesson.vue:178 frontend/src/pages/Profile.vue:36
msgid "Edit"
msgstr ""
@@ -2236,7 +2251,7 @@ msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:105
#: frontend/src/components/Settings/Members.vue:103
#: lms/templates/signup-form.html:10
#: frontend/src/pages/JobApplications.vue:284 lms/templates/signup-form.html:10
msgid "Email"
msgstr ""
@@ -2272,6 +2287,7 @@ msgid "Email Templates deleted successfully"
msgstr ""
#: frontend/src/components/ContactUsEmail.vue:57
#: frontend/src/pages/JobApplications.vue:244
msgid "Email sent successfully"
msgstr ""
@@ -2414,6 +2430,14 @@ msgstr ""
msgid "Enter a URL"
msgstr ""
#: frontend/src/pages/JobApplications.vue:122
msgid "Enter email subject"
msgstr ""
#: frontend/src/pages/JobApplications.vue:128
msgid "Enter reply to email"
msgstr ""
#: frontend/src/components/Modals/ZoomAccountModal.vue:169
msgid "Error creating Zoom Account"
msgstr ""
@@ -2453,7 +2477,7 @@ msgstr ""
#. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:374 lms/lms/workspace/lms/lms.json
#: frontend/src/components/Modals/Event.vue:405 lms/lms/workspace/lms/lms.json
msgid "Evaluation"
msgstr ""
@@ -2478,7 +2502,7 @@ msgstr ""
msgid "Evaluation end date cannot be less than the batch end date."
msgstr ""
#: frontend/src/components/Modals/Event.vue:256
#: frontend/src/components/Modals/Event.vue:287
msgid "Evaluation saved successfully"
msgstr ""
@@ -2586,7 +2610,7 @@ msgstr ""
#. Label of the expected_output (Data) field in DocType 'LMS Test Case'
#. Label of the expected_output (Data) field in DocType 'LMS Test Case
#. Submission'
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:127
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:129
#: lms/lms/doctype/lms_test_case/lms_test_case.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Expected Output"
@@ -2599,7 +2623,7 @@ msgstr ""
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33
#: frontend/src/components/Modals/Event.vue:126
#: frontend/src/components/Modals/Event.vue:144
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date"
msgstr ""
@@ -2626,7 +2650,7 @@ msgstr ""
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:366
#: frontend/src/components/Modals/Event.vue:397
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail"
@@ -2657,7 +2681,7 @@ msgstr ""
msgid "Failed to send email"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:358
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:364
msgid "Failed to submit. Please try again. {0}"
msgstr ""
@@ -2770,7 +2794,7 @@ msgid "Friday"
msgstr ""
#. Label of the unavailable_from (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:99
#: frontend/src/pages/ProfileEvaluator.vue:106
#: lms/lms/doctype/course_evaluator/course_evaluator.json
msgid "From"
msgstr ""
@@ -2782,6 +2806,7 @@ msgstr ""
#. Label of the full_name (Data) field in DocType 'Course Evaluator'
#. Label of the full_name (Data) field in DocType 'LMS Program Member'
#: frontend/src/pages/JobApplications.vue:278
#: lms/lms/doctype/course_evaluator/course_evaluator.json
#: lms/lms/doctype/lms_program_member/lms_program_member.json
#: lms/templates/signup-form.html:5
@@ -3019,7 +3044,7 @@ msgstr ""
msgid "I am looking for a job"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:94
#: frontend/src/pages/ProfileEvaluator.vue:101
msgid "I am unavailable"
msgstr ""
@@ -3105,7 +3130,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:358
#: frontend/src/components/Modals/Event.vue:389
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -3161,7 +3186,7 @@ msgstr ""
#. Label of the input (Data) field in DocType 'LMS Test Case'
#. Label of the input (Data) field in DocType 'LMS Test Case Submission'
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:113
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:115
#: lms/lms/doctype/lms_test_case/lms_test_case.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Input"
@@ -3273,7 +3298,7 @@ msgstr ""
#. Label of the issue_date (Date) field in DocType 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28
#: frontend/src/components/Modals/Event.vue:121
#: frontend/src/components/Modals/Event.vue:138
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date"
@@ -3358,8 +3383,8 @@ msgid "Job Title"
msgstr ""
#. Label of the jobs (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/JobDetail.vue:10 frontend/src/pages/Jobs.vue:8
#: frontend/src/pages/Jobs.vue:212
#: frontend/src/pages/JobApplications.vue:9 frontend/src/pages/JobDetail.vue:10
#: frontend/src/pages/Jobs.vue:8 frontend/src/pages/Jobs.vue:212
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Jobs"
msgstr ""
@@ -3375,7 +3400,7 @@ msgstr ""
msgid "Join Call"
msgstr ""
#: frontend/src/components/Modals/Event.vue:74
#: frontend/src/components/Modals/Event.vue:78
msgid "Join Meeting"
msgstr ""
@@ -3883,7 +3908,7 @@ msgstr ""
msgid "Login to Frappe Cloud?"
msgstr ""
#: frontend/src/pages/JobDetail.vue:63
#: frontend/src/pages/JobDetail.vue:74
msgid "Login to apply"
msgstr ""
@@ -4228,9 +4253,14 @@ msgid "Mentor Request Status Update Template"
msgstr ""
#: frontend/src/components/ContactUsEmail.vue:19
#: frontend/src/pages/JobApplications.vue:132
msgid "Message"
msgstr "Zpráva"
#: frontend/src/pages/JobApplications.vue:240
msgid "Message is required"
msgstr ""
#. Label of the meta_description (Small Text) field in DocType 'LMS Settings'
#: frontend/src/pages/BatchForm.vue:297 frontend/src/pages/CourseForm.vue:303
#: lms/lms/doctype/lms_settings/lms_settings.json
@@ -4351,7 +4381,7 @@ msgstr ""
msgid "My availability"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:127
#: frontend/src/pages/ProfileEvaluator.vue:136
msgid "My calendar"
msgstr ""
@@ -4390,7 +4420,7 @@ msgstr ""
msgid "New Job"
msgstr ""
#: lms/job/doctype/lms_job_application/lms_job_application.py:27
#: lms/job/doctype/lms_job_application/lms_job_application.py:31
msgid "New Job Applicant"
msgstr ""
@@ -4818,7 +4848,7 @@ msgstr ""
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:362
#: frontend/src/components/Modals/Event.vue:393
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass"
@@ -4945,7 +4975,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:354
#: frontend/src/components/Modals/Event.vue:385
#: lms/lms/doctype/cohort_join_request/cohort_join_request.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
@@ -4964,7 +4994,7 @@ msgstr ""
msgid "Percentage (e.g. 70%)"
msgstr ""
#: frontend/src/components/Modals/BatchStudentProgress.vue:44
#: frontend/src/components/Modals/BatchStudentProgress.vue:46
msgid "Percentage/Status"
msgstr ""
@@ -5080,7 +5110,7 @@ msgstr ""
msgid "Please prepare well and be on time for the evaluations."
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:135
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:139
msgid "Please run the code to execute the test cases."
msgstr ""
@@ -5317,11 +5347,11 @@ msgstr ""
#: frontend/src/components/Settings/BadgeForm.vue:200
#: frontend/src/components/Settings/Badges.vue:205
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:420
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:426
msgid "Programming Exercise Submission"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:411
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:417
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:298
msgid "Programming Exercise Submissions"
msgstr ""
@@ -5355,7 +5385,7 @@ msgstr ""
#. Label of the progress (Float) field in DocType 'LMS Enrollment'
#. Label of the progress (Int) field in DocType 'LMS Program Member'
#: frontend/src/components/Modals/BatchStudentProgress.vue:94
#: frontend/src/components/Modals/BatchStudentProgress.vue:98
#: frontend/src/components/Modals/CourseProgressSummary.vue:224
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
#: lms/lms/doctype/lms_program_member/lms_program_member.json
@@ -5401,7 +5431,7 @@ msgstr ""
#. Label of the published (Check) field in DocType 'LMS Course'
#. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51
#: frontend/src/components/Modals/Event.vue:108
#: frontend/src/components/Modals/Event.vue:122
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:152
#: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100
@@ -5569,7 +5599,7 @@ msgstr ""
#. Label of the rating (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147
#: frontend/src/components/Modals/Event.vue:86
#: frontend/src/components/Modals/Event.vue:92
#: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -5656,6 +5686,7 @@ msgid "Remove Highlight"
msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:27
#: frontend/src/pages/JobApplications.vue:127
msgid "Reply To"
msgstr ""
@@ -5815,8 +5846,8 @@ msgstr ""
#: frontend/src/components/Controls/CodeEditor.vue:25
#: frontend/src/components/Modals/AssignmentForm.vue:59
#: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:101
#: frontend/src/components/Modals/Event.vue:129
#: frontend/src/components/Modals/Event.vue:115
#: frontend/src/components/Modals/Event.vue:151
#: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
@@ -5955,6 +5986,7 @@ msgid "Select an assignment"
msgstr ""
#: frontend/src/components/ContactUsEmail.vue:33
#: frontend/src/pages/JobApplications.vue:110
msgid "Send"
msgstr "Odeslat"
@@ -5962,6 +5994,14 @@ msgstr "Odeslat"
msgid "Send Confirmation Email"
msgstr ""
#: frontend/src/pages/JobApplications.vue:268
msgid "Send Email"
msgstr ""
#: frontend/src/pages/JobApplications.vue:106
msgid "Send Email to {0}"
msgstr ""
#. Label of the send_calendar_invite_for_evaluations (Check) field in DocType
#. 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
@@ -6122,11 +6162,11 @@ msgstr ""
msgid "Slot Times are overlapping for some schedules."
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:201
#: frontend/src/pages/ProfileEvaluator.vue:218
msgid "Slot added successfully"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:240
#: frontend/src/pages/ProfileEvaluator.vue:257
msgid "Slot deleted successfully"
msgstr ""
@@ -6265,7 +6305,7 @@ msgstr ""
#. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case Submission'
#: frontend/src/components/Modals/Event.vue:91
#: frontend/src/components/Modals/Event.vue:99
#: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6336,10 +6376,12 @@ msgstr ""
#: frontend/src/components/ContactUsEmail.vue:13
#: frontend/src/components/Modals/AnnouncementModal.vue:20
#: frontend/src/components/Modals/EmailTemplateModal.vue:31
#: frontend/src/pages/JobApplications.vue:121
msgid "Subject"
msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:94
#: frontend/src/pages/JobApplications.vue:237
msgid "Subject is required"
msgstr ""
@@ -6356,7 +6398,7 @@ msgstr ""
msgid "Submission by"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:353
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:359
msgid "Submission saved!"
msgstr ""
@@ -6396,7 +6438,7 @@ msgstr ""
#. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:97
#: frontend/src/components/Modals/Event.vue:106
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary"
msgstr ""
@@ -6501,7 +6543,7 @@ msgstr ""
#. Label of the template (Link) field in DocType 'Cohort Web Page'
#. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43
#: frontend/src/components/Modals/Event.vue:112
#: frontend/src/components/Modals/Event.vue:127
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template"
@@ -6542,7 +6584,7 @@ msgstr ""
msgid "Test this Exercise"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:92
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:93
msgid "Test {0}"
msgstr ""
@@ -6840,7 +6882,7 @@ msgid "Title is required"
msgstr ""
#. Label of the unavailable_to (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:112
#: frontend/src/pages/ProfileEvaluator.vue:120
#: lms/lms/doctype/course_evaluator/course_evaluator.json
msgid "To"
msgstr ""
@@ -6953,7 +6995,7 @@ msgstr ""
msgid "Unavailability"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:259
#: frontend/src/pages/ProfileEvaluator.vue:276
msgid "Unavailability updated successfully"
msgstr ""
@@ -7123,11 +7165,19 @@ msgstr ""
msgid "View"
msgstr ""
#: frontend/src/pages/JobDetail.vue:31
msgid "View Applications"
msgstr ""
#: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67
msgid "View Certificate"
msgstr ""
#: frontend/src/pages/JobApplications.vue:262
msgid "View Resume"
msgstr ""
#: frontend/src/components/BatchFeedback.vue:56
msgid "View all feedback"
msgstr ""
@@ -7146,7 +7196,7 @@ msgstr ""
msgid "Visit Batch"
msgstr ""
#: frontend/src/pages/JobDetail.vue:41
#: frontend/src/pages/JobDetail.vue:52
msgid "Visit Website"
msgstr ""
@@ -7355,7 +7405,7 @@ msgstr ""
msgid "You have a live class scheduled tomorrow. Please be prepared and be on time for the session."
msgstr ""
#: lms/job/doctype/lms_job_application/lms_job_application.py:22
#: lms/job/doctype/lms_job_application/lms_job_application.py:26
msgid "You have already applied for this job."
msgstr ""
@@ -7371,7 +7421,7 @@ msgstr ""
msgid "You have already reviewed this course"
msgstr ""
#: frontend/src/pages/JobDetail.vue:57
#: frontend/src/pages/JobDetail.vue:68
msgid "You have applied"
msgstr ""
@@ -7451,7 +7501,7 @@ msgstr ""
msgid "Your Account has been successfully created!"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:119
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:121
msgid "Your Output"
msgstr ""
@@ -7459,7 +7509,7 @@ msgstr ""
msgid "Your batch {0} is starting tomorrow"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:134
#: frontend/src/pages/ProfileEvaluator.vue:143
msgid "Your calendar is set."
msgstr ""
@@ -7538,11 +7588,11 @@ msgstr "a"
msgid "and then 'Add to Home Screen'"
msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125
msgid "applicant"
msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125
msgid "applicants"
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: 2025-10-31 16:04+0000\n"
"PO-Revision-Date: 2025-11-02 19:07\n"
"POT-Creation-Date: 2025-11-07 16:04+0000\n"
"PO-Revision-Date: 2025-11-11 11:49\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Danish\n"
"MIME-Version: 1.0\n"
@@ -176,7 +176,7 @@ msgstr "Tilføj Quiz til Video"
msgid "Add Row"
msgstr "Tilføj Række"
#: frontend/src/pages/ProfileEvaluator.vue:89
#: frontend/src/pages/ProfileEvaluator.vue:96
msgid "Add Slot"
msgstr "Tilføj Slot"
@@ -304,7 +304,7 @@ msgstr ""
#. Name of a role
#: frontend/src/pages/Batches.vue:275 lms/lms/doctype/lms_badge/lms_badge.json
msgid "All"
msgstr ""
msgstr "Alle"
#: frontend/src/pages/Batches.vue:26
msgid "All Batches"
@@ -426,12 +426,25 @@ msgstr ""
msgid "Appears when the batch URL is shared on socials"
msgstr ""
#: frontend/src/pages/JobApplications.vue:24
msgid "Application"
msgstr ""
#. Label of a field in the job-opportunity Web Form
#: lms/job/web_form/job_opportunity/job_opportunity.json
msgid "Application Form Link"
msgstr ""
#: frontend/src/pages/JobDetail.vue:51
#: frontend/src/pages/JobApplications.vue:14
#: frontend/src/pages/JobApplications.vue:25
msgid "Applications"
msgstr ""
#: frontend/src/pages/JobApplications.vue:290
msgid "Applied On"
msgstr ""
#: frontend/src/pages/JobDetail.vue:62
msgid "Apply"
msgstr ""
@@ -483,7 +496,7 @@ msgstr ""
#. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch'
#. Label of the assessment (Table) field in DocType 'LMS Batch'
#: frontend/src/components/Modals/AssessmentModal.vue:27
#: frontend/src/components/Modals/BatchStudentProgress.vue:41
#: frontend/src/components/Modals/BatchStudentProgress.vue:43
#: lms/lms/doctype/lms_batch/lms_batch.json lms/templates/assessments.html:11
msgid "Assessment"
msgstr "Bedømmelse"
@@ -546,7 +559,7 @@ msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/templates/assignment.html:3
msgid "Assignment"
msgstr ""
msgstr "Opgave"
#. Label of the assignment_attachment (Attach) field in DocType 'LMS Assignment
#. Submission'
@@ -569,7 +582,7 @@ msgstr ""
msgid "Assignment Title"
msgstr ""
#: frontend/src/components/Modals/AssignmentForm.vue:125
#: frontend/src/components/Modals/AssignmentForm.vue:133
msgid "Assignment created successfully"
msgstr ""
@@ -581,7 +594,7 @@ msgstr ""
msgid "Assignment submitted successfully"
msgstr ""
#: frontend/src/components/Modals/AssignmentForm.vue:138
#: frontend/src/components/Modals/AssignmentForm.vue:146
msgid "Assignment updated successfully"
msgstr ""
@@ -622,7 +635,7 @@ msgstr "Deltagere"
msgid "Attire Preference"
msgstr "Påklædning Præference"
#: frontend/src/pages/ProfileEvaluator.vue:137
#: frontend/src/pages/ProfileEvaluator.vue:146
msgid "Authorize Google Calendar Access"
msgstr ""
@@ -637,7 +650,7 @@ msgstr "Automatisk Tildeling"
msgid "Auto Recording"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:224
#: frontend/src/pages/ProfileEvaluator.vue:241
msgid "Availability updated successfully"
msgstr ""
@@ -768,6 +781,7 @@ msgstr ""
#. Name of a role
#: lms/lms/doctype/course_evaluator/course_evaluator.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_category/lms_category.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -998,7 +1012,7 @@ msgstr ""
msgid "Certificate of Completion"
msgstr ""
#: frontend/src/components/Modals/Event.vue:317
#: frontend/src/components/Modals/Event.vue:348
msgid "Certificate saved successfully"
msgstr ""
@@ -1018,7 +1032,7 @@ msgstr ""
#. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace
#: frontend/src/components/AppSidebar.vue:626
#: frontend/src/components/Modals/Event.vue:381
#: frontend/src/components/Modals/Event.vue:412
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58
#: frontend/src/pages/CourseCertification.vue:10
#: frontend/src/pages/CourseCertification.vue:135
@@ -1640,6 +1654,7 @@ msgstr ""
#: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/course_lesson/course_lesson.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
#: lms/lms/doctype/lms_category/lms_category.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json
@@ -1757,7 +1772,7 @@ msgstr ""
#: frontend/src/components/BatchCourses.vue:5
#: frontend/src/components/BatchOverlay.vue:37
#: frontend/src/components/BatchStudents.vue:25
#: frontend/src/components/Modals/BatchStudentProgress.vue:91
#: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127
#: frontend/src/pages/Courses.vue:333 frontend/src/pages/Courses.vue:340
@@ -2169,7 +2184,7 @@ msgstr ""
#: frontend/src/components/DiscussionReplies.vue:35
#: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/components/Settings/Badges.vue:156
#: frontend/src/pages/JobDetail.vue:34 frontend/src/pages/Lesson.vue:42
#: frontend/src/pages/JobDetail.vue:45 frontend/src/pages/Lesson.vue:42
#: frontend/src/pages/Lesson.vue:178 frontend/src/pages/Profile.vue:36
msgid "Edit"
msgstr "Redigere"
@@ -2236,7 +2251,7 @@ msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:105
#: frontend/src/components/Settings/Members.vue:103
#: lms/templates/signup-form.html:10
#: frontend/src/pages/JobApplications.vue:284 lms/templates/signup-form.html:10
msgid "Email"
msgstr "E-mail"
@@ -2272,6 +2287,7 @@ msgid "Email Templates deleted successfully"
msgstr ""
#: frontend/src/components/ContactUsEmail.vue:57
#: frontend/src/pages/JobApplications.vue:244
msgid "Email sent successfully"
msgstr ""
@@ -2414,6 +2430,14 @@ msgstr ""
msgid "Enter a URL"
msgstr ""
#: frontend/src/pages/JobApplications.vue:122
msgid "Enter email subject"
msgstr ""
#: frontend/src/pages/JobApplications.vue:128
msgid "Enter reply to email"
msgstr ""
#: frontend/src/components/Modals/ZoomAccountModal.vue:169
msgid "Error creating Zoom Account"
msgstr ""
@@ -2453,7 +2477,7 @@ msgstr ""
#. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:374 lms/lms/workspace/lms/lms.json
#: frontend/src/components/Modals/Event.vue:405 lms/lms/workspace/lms/lms.json
msgid "Evaluation"
msgstr ""
@@ -2478,7 +2502,7 @@ msgstr ""
msgid "Evaluation end date cannot be less than the batch end date."
msgstr ""
#: frontend/src/components/Modals/Event.vue:256
#: frontend/src/components/Modals/Event.vue:287
msgid "Evaluation saved successfully"
msgstr ""
@@ -2586,7 +2610,7 @@ msgstr ""
#. Label of the expected_output (Data) field in DocType 'LMS Test Case'
#. Label of the expected_output (Data) field in DocType 'LMS Test Case
#. Submission'
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:127
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:129
#: lms/lms/doctype/lms_test_case/lms_test_case.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Expected Output"
@@ -2599,7 +2623,7 @@ msgstr ""
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33
#: frontend/src/components/Modals/Event.vue:126
#: frontend/src/components/Modals/Event.vue:144
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date"
msgstr ""
@@ -2626,7 +2650,7 @@ msgstr ""
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:366
#: frontend/src/components/Modals/Event.vue:397
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail"
@@ -2657,7 +2681,7 @@ msgstr ""
msgid "Failed to send email"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:358
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:364
msgid "Failed to submit. Please try again. {0}"
msgstr ""
@@ -2770,7 +2794,7 @@ msgid "Friday"
msgstr ""
#. Label of the unavailable_from (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:99
#: frontend/src/pages/ProfileEvaluator.vue:106
#: lms/lms/doctype/course_evaluator/course_evaluator.json
msgid "From"
msgstr ""
@@ -2782,6 +2806,7 @@ msgstr ""
#. Label of the full_name (Data) field in DocType 'Course Evaluator'
#. Label of the full_name (Data) field in DocType 'LMS Program Member'
#: frontend/src/pages/JobApplications.vue:278
#: lms/lms/doctype/course_evaluator/course_evaluator.json
#: lms/lms/doctype/lms_program_member/lms_program_member.json
#: lms/templates/signup-form.html:5
@@ -3019,7 +3044,7 @@ msgstr ""
msgid "I am looking for a job"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:94
#: frontend/src/pages/ProfileEvaluator.vue:101
msgid "I am unavailable"
msgstr ""
@@ -3105,7 +3130,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:358
#: frontend/src/components/Modals/Event.vue:389
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -3161,7 +3186,7 @@ msgstr ""
#. Label of the input (Data) field in DocType 'LMS Test Case'
#. Label of the input (Data) field in DocType 'LMS Test Case Submission'
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:113
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:115
#: lms/lms/doctype/lms_test_case/lms_test_case.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Input"
@@ -3273,7 +3298,7 @@ msgstr ""
#. Label of the issue_date (Date) field in DocType 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28
#: frontend/src/components/Modals/Event.vue:121
#: frontend/src/components/Modals/Event.vue:138
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date"
@@ -3358,8 +3383,8 @@ msgid "Job Title"
msgstr ""
#. Label of the jobs (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/JobDetail.vue:10 frontend/src/pages/Jobs.vue:8
#: frontend/src/pages/Jobs.vue:212
#: frontend/src/pages/JobApplications.vue:9 frontend/src/pages/JobDetail.vue:10
#: frontend/src/pages/Jobs.vue:8 frontend/src/pages/Jobs.vue:212
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Jobs"
msgstr ""
@@ -3375,7 +3400,7 @@ msgstr ""
msgid "Join Call"
msgstr ""
#: frontend/src/components/Modals/Event.vue:74
#: frontend/src/components/Modals/Event.vue:78
msgid "Join Meeting"
msgstr ""
@@ -3883,7 +3908,7 @@ msgstr ""
msgid "Login to Frappe Cloud?"
msgstr ""
#: frontend/src/pages/JobDetail.vue:63
#: frontend/src/pages/JobDetail.vue:74
msgid "Login to apply"
msgstr ""
@@ -4228,9 +4253,14 @@ msgid "Mentor Request Status Update Template"
msgstr ""
#: frontend/src/components/ContactUsEmail.vue:19
#: frontend/src/pages/JobApplications.vue:132
msgid "Message"
msgstr "Meddelelse"
#: frontend/src/pages/JobApplications.vue:240
msgid "Message is required"
msgstr ""
#. Label of the meta_description (Small Text) field in DocType 'LMS Settings'
#: frontend/src/pages/BatchForm.vue:297 frontend/src/pages/CourseForm.vue:303
#: lms/lms/doctype/lms_settings/lms_settings.json
@@ -4351,7 +4381,7 @@ msgstr ""
msgid "My availability"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:127
#: frontend/src/pages/ProfileEvaluator.vue:136
msgid "My calendar"
msgstr ""
@@ -4390,7 +4420,7 @@ msgstr ""
msgid "New Job"
msgstr ""
#: lms/job/doctype/lms_job_application/lms_job_application.py:27
#: lms/job/doctype/lms_job_application/lms_job_application.py:31
msgid "New Job Applicant"
msgstr ""
@@ -4818,7 +4848,7 @@ msgstr ""
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:362
#: frontend/src/components/Modals/Event.vue:393
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass"
@@ -4945,7 +4975,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:354
#: frontend/src/components/Modals/Event.vue:385
#: lms/lms/doctype/cohort_join_request/cohort_join_request.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
@@ -4964,7 +4994,7 @@ msgstr ""
msgid "Percentage (e.g. 70%)"
msgstr ""
#: frontend/src/components/Modals/BatchStudentProgress.vue:44
#: frontend/src/components/Modals/BatchStudentProgress.vue:46
msgid "Percentage/Status"
msgstr ""
@@ -5080,7 +5110,7 @@ msgstr ""
msgid "Please prepare well and be on time for the evaluations."
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:135
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:139
msgid "Please run the code to execute the test cases."
msgstr ""
@@ -5317,11 +5347,11 @@ msgstr ""
#: frontend/src/components/Settings/BadgeForm.vue:200
#: frontend/src/components/Settings/Badges.vue:205
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:420
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:426
msgid "Programming Exercise Submission"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:411
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:417
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:298
msgid "Programming Exercise Submissions"
msgstr ""
@@ -5355,7 +5385,7 @@ msgstr ""
#. Label of the progress (Float) field in DocType 'LMS Enrollment'
#. Label of the progress (Int) field in DocType 'LMS Program Member'
#: frontend/src/components/Modals/BatchStudentProgress.vue:94
#: frontend/src/components/Modals/BatchStudentProgress.vue:98
#: frontend/src/components/Modals/CourseProgressSummary.vue:224
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
#: lms/lms/doctype/lms_program_member/lms_program_member.json
@@ -5401,7 +5431,7 @@ msgstr ""
#. Label of the published (Check) field in DocType 'LMS Course'
#. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51
#: frontend/src/components/Modals/Event.vue:108
#: frontend/src/components/Modals/Event.vue:122
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:152
#: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100
@@ -5569,7 +5599,7 @@ msgstr ""
#. Label of the rating (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147
#: frontend/src/components/Modals/Event.vue:86
#: frontend/src/components/Modals/Event.vue:92
#: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -5656,6 +5686,7 @@ msgid "Remove Highlight"
msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:27
#: frontend/src/pages/JobApplications.vue:127
msgid "Reply To"
msgstr ""
@@ -5815,8 +5846,8 @@ msgstr ""
#: frontend/src/components/Controls/CodeEditor.vue:25
#: frontend/src/components/Modals/AssignmentForm.vue:59
#: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:101
#: frontend/src/components/Modals/Event.vue:129
#: frontend/src/components/Modals/Event.vue:115
#: frontend/src/components/Modals/Event.vue:151
#: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
@@ -5955,6 +5986,7 @@ msgid "Select an assignment"
msgstr ""
#: frontend/src/components/ContactUsEmail.vue:33
#: frontend/src/pages/JobApplications.vue:110
msgid "Send"
msgstr ""
@@ -5962,6 +5994,14 @@ msgstr ""
msgid "Send Confirmation Email"
msgstr ""
#: frontend/src/pages/JobApplications.vue:268
msgid "Send Email"
msgstr ""
#: frontend/src/pages/JobApplications.vue:106
msgid "Send Email to {0}"
msgstr ""
#. Label of the send_calendar_invite_for_evaluations (Check) field in DocType
#. 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
@@ -6122,11 +6162,11 @@ msgstr ""
msgid "Slot Times are overlapping for some schedules."
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:201
#: frontend/src/pages/ProfileEvaluator.vue:218
msgid "Slot added successfully"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:240
#: frontend/src/pages/ProfileEvaluator.vue:257
msgid "Slot deleted successfully"
msgstr ""
@@ -6265,7 +6305,7 @@ msgstr ""
#. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case Submission'
#: frontend/src/components/Modals/Event.vue:91
#: frontend/src/components/Modals/Event.vue:99
#: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6336,10 +6376,12 @@ msgstr ""
#: frontend/src/components/ContactUsEmail.vue:13
#: frontend/src/components/Modals/AnnouncementModal.vue:20
#: frontend/src/components/Modals/EmailTemplateModal.vue:31
#: frontend/src/pages/JobApplications.vue:121
msgid "Subject"
msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:94
#: frontend/src/pages/JobApplications.vue:237
msgid "Subject is required"
msgstr ""
@@ -6356,7 +6398,7 @@ msgstr ""
msgid "Submission by"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:353
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:359
msgid "Submission saved!"
msgstr ""
@@ -6396,7 +6438,7 @@ msgstr ""
#. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:97
#: frontend/src/components/Modals/Event.vue:106
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary"
msgstr ""
@@ -6501,7 +6543,7 @@ msgstr ""
#. Label of the template (Link) field in DocType 'Cohort Web Page'
#. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43
#: frontend/src/components/Modals/Event.vue:112
#: frontend/src/components/Modals/Event.vue:127
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template"
@@ -6542,7 +6584,7 @@ msgstr ""
msgid "Test this Exercise"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:92
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:93
msgid "Test {0}"
msgstr ""
@@ -6840,7 +6882,7 @@ msgid "Title is required"
msgstr ""
#. Label of the unavailable_to (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:112
#: frontend/src/pages/ProfileEvaluator.vue:120
#: lms/lms/doctype/course_evaluator/course_evaluator.json
msgid "To"
msgstr ""
@@ -6953,7 +6995,7 @@ msgstr ""
msgid "Unavailability"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:259
#: frontend/src/pages/ProfileEvaluator.vue:276
msgid "Unavailability updated successfully"
msgstr ""
@@ -7123,11 +7165,19 @@ msgstr ""
msgid "View"
msgstr ""
#: frontend/src/pages/JobDetail.vue:31
msgid "View Applications"
msgstr ""
#: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67
msgid "View Certificate"
msgstr ""
#: frontend/src/pages/JobApplications.vue:262
msgid "View Resume"
msgstr ""
#: frontend/src/components/BatchFeedback.vue:56
msgid "View all feedback"
msgstr ""
@@ -7146,7 +7196,7 @@ msgstr ""
msgid "Visit Batch"
msgstr ""
#: frontend/src/pages/JobDetail.vue:41
#: frontend/src/pages/JobDetail.vue:52
msgid "Visit Website"
msgstr ""
@@ -7355,7 +7405,7 @@ msgstr ""
msgid "You have a live class scheduled tomorrow. Please be prepared and be on time for the session."
msgstr ""
#: lms/job/doctype/lms_job_application/lms_job_application.py:22
#: lms/job/doctype/lms_job_application/lms_job_application.py:26
msgid "You have already applied for this job."
msgstr ""
@@ -7371,7 +7421,7 @@ msgstr ""
msgid "You have already reviewed this course"
msgstr ""
#: frontend/src/pages/JobDetail.vue:57
#: frontend/src/pages/JobDetail.vue:68
msgid "You have applied"
msgstr ""
@@ -7451,7 +7501,7 @@ msgstr ""
msgid "Your Account has been successfully created!"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:119
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:121
msgid "Your Output"
msgstr ""
@@ -7459,7 +7509,7 @@ msgstr ""
msgid "Your batch {0} is starting tomorrow"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:134
#: frontend/src/pages/ProfileEvaluator.vue:143
msgid "Your calendar is set."
msgstr ""
@@ -7538,11 +7588,11 @@ msgstr ""
msgid "and then 'Add to Home Screen'"
msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125
msgid "applicant"
msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125
msgid "applicants"
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: 2025-10-31 16:04+0000\n"
"PO-Revision-Date: 2025-11-02 19:07\n"
"POT-Creation-Date: 2025-11-07 16:04+0000\n"
"PO-Revision-Date: 2025-11-13 11:41\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: German\n"
"MIME-Version: 1.0\n"
@@ -176,7 +176,7 @@ msgstr ""
msgid "Add Row"
msgstr "Zeile hinzufügen"
#: frontend/src/pages/ProfileEvaluator.vue:89
#: frontend/src/pages/ProfileEvaluator.vue:96
msgid "Add Slot"
msgstr "Slot hinzufügen"
@@ -426,12 +426,25 @@ msgstr ""
msgid "Appears when the batch URL is shared on socials"
msgstr ""
#: frontend/src/pages/JobApplications.vue:24
msgid "Application"
msgstr "Antrag"
#. Label of a field in the job-opportunity Web Form
#: lms/job/web_form/job_opportunity/job_opportunity.json
msgid "Application Form Link"
msgstr ""
#: frontend/src/pages/JobDetail.vue:51
#: frontend/src/pages/JobApplications.vue:14
#: frontend/src/pages/JobApplications.vue:25
msgid "Applications"
msgstr ""
#: frontend/src/pages/JobApplications.vue:290
msgid "Applied On"
msgstr "Aufgetragen auf"
#: frontend/src/pages/JobDetail.vue:62
msgid "Apply"
msgstr "Anwenden"
@@ -483,7 +496,7 @@ msgstr ""
#. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch'
#. Label of the assessment (Table) field in DocType 'LMS Batch'
#: frontend/src/components/Modals/AssessmentModal.vue:27
#: frontend/src/components/Modals/BatchStudentProgress.vue:41
#: frontend/src/components/Modals/BatchStudentProgress.vue:43
#: lms/lms/doctype/lms_batch/lms_batch.json lms/templates/assessments.html:11
msgid "Assessment"
msgstr "Prüfung"
@@ -526,7 +539,7 @@ msgstr ""
#: frontend/src/components/Settings/BadgeForm.vue:58
msgid "Assign To"
msgstr "Zuweisen an"
msgstr "Zuweisen zu"
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:7
msgid "Assign a Badge"
@@ -546,7 +559,7 @@ msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/templates/assignment.html:3
msgid "Assignment"
msgstr "Zuordnung"
msgstr "Zuweisung"
#. Label of the assignment_attachment (Attach) field in DocType 'LMS Assignment
#. Submission'
@@ -569,7 +582,7 @@ msgstr ""
msgid "Assignment Title"
msgstr "Aufgabentitel"
#: frontend/src/components/Modals/AssignmentForm.vue:125
#: frontend/src/components/Modals/AssignmentForm.vue:133
msgid "Assignment created successfully"
msgstr ""
@@ -581,7 +594,7 @@ msgstr "Die Aufgabe für Lektion {0} von {1} existiert bereits."
msgid "Assignment submitted successfully"
msgstr ""
#: frontend/src/components/Modals/AssignmentForm.vue:138
#: frontend/src/components/Modals/AssignmentForm.vue:146
msgid "Assignment updated successfully"
msgstr ""
@@ -594,7 +607,7 @@ msgstr "Die Aufgabe wird unten in der Lektion angezeigt."
#: frontend/src/components/Settings/Badges.vue:163
#: frontend/src/pages/Assignments.vue:208 lms/www/lms.py:271
msgid "Assignments"
msgstr "Zuordnungen"
msgstr "Zuweisungen"
#: lms/lms/doctype/lms_question/lms_question.py:44
msgid "At least one option must be correct for this question."
@@ -622,7 +635,7 @@ msgstr "Teilnehmer"
msgid "Attire Preference"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:137
#: frontend/src/pages/ProfileEvaluator.vue:146
msgid "Authorize Google Calendar Access"
msgstr "Autorisieren Sie den Zugriff auf Google Kalender"
@@ -637,7 +650,7 @@ msgstr "Automatische Zuweisung"
msgid "Auto Recording"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:224
#: frontend/src/pages/ProfileEvaluator.vue:241
msgid "Availability updated successfully"
msgstr ""
@@ -768,6 +781,7 @@ msgstr ""
#. Name of a role
#: lms/lms/doctype/course_evaluator/course_evaluator.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_category/lms_category.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -937,7 +951,7 @@ msgstr ""
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
msgid "Cancelled"
msgstr "Abgesagt"
msgstr "Storniert"
#. Label of the carrer_preference_details (Section Break) field in DocType
#. 'User'
@@ -998,7 +1012,7 @@ msgstr "Zertifikatslink"
msgid "Certificate of Completion"
msgstr ""
#: frontend/src/components/Modals/Event.vue:317
#: frontend/src/components/Modals/Event.vue:348
msgid "Certificate saved successfully"
msgstr ""
@@ -1018,7 +1032,7 @@ msgstr ""
#. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace
#: frontend/src/components/AppSidebar.vue:626
#: frontend/src/components/Modals/Event.vue:381
#: frontend/src/components/Modals/Event.vue:412
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58
#: frontend/src/pages/CourseCertification.vue:10
#: frontend/src/pages/CourseCertification.vue:135
@@ -1168,7 +1182,7 @@ msgstr "Wählen Sie eine Antwort"
#: lms/fixtures/custom_field.json
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "City"
msgstr "Ort"
msgstr "Stadt"
#: lms/templates/emails/live_class_reminder.html:10
msgid "Class:"
@@ -1361,7 +1375,7 @@ msgstr "Logo des Unternehmens"
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/job/web_form/job_opportunity/job_opportunity.json
msgid "Company Name"
msgstr "Firma"
msgstr "Firmenname"
#. Label of the company_type (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
@@ -1385,7 +1399,7 @@ msgstr ""
#: lms/lms/doctype/lms_course_progress/lms_course_progress.json
#: lms/lms/widgets/CourseCard.html:75 lms/templates/reviews.html:48
msgid "Complete"
msgstr "Komplett"
msgstr "Vollständig"
#: lms/templates/emails/lms_invite_request_approved.html:7
msgid "Complete Sign Up"
@@ -1640,6 +1654,7 @@ msgstr ""
#: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/course_lesson/course_lesson.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
#: lms/lms/doctype/lms_category/lms_category.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json
@@ -1757,7 +1772,7 @@ msgstr ""
#: frontend/src/components/BatchCourses.vue:5
#: frontend/src/components/BatchOverlay.vue:37
#: frontend/src/components/BatchStudents.vue:25
#: frontend/src/components/Modals/BatchStudentProgress.vue:91
#: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127
#: frontend/src/pages/Courses.vue:333 frontend/src/pages/Courses.vue:340
@@ -1971,7 +1986,7 @@ msgstr "Tag"
#: lms/templates/emails/mentor_request_creation_email.html:2
#: lms/templates/emails/mentor_request_status_update_email.html:2
msgid "Dear"
msgstr "Hallo"
msgstr "Liebe"
#: lms/templates/emails/batch_confirmation.html:2
#: lms/templates/emails/batch_start_reminder.html:2
@@ -2169,7 +2184,7 @@ msgstr "E-Mail"
#: frontend/src/components/DiscussionReplies.vue:35
#: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/components/Settings/Badges.vue:156
#: frontend/src/pages/JobDetail.vue:34 frontend/src/pages/Lesson.vue:42
#: frontend/src/pages/JobDetail.vue:45 frontend/src/pages/Lesson.vue:42
#: frontend/src/pages/Lesson.vue:178 frontend/src/pages/Profile.vue:36
msgid "Edit"
msgstr "Bearbeiten"
@@ -2236,7 +2251,7 @@ msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:105
#: frontend/src/components/Settings/Members.vue:103
#: lms/templates/signup-form.html:10
#: frontend/src/pages/JobApplications.vue:284 lms/templates/signup-form.html:10
msgid "Email"
msgstr "E-Mail"
@@ -2272,6 +2287,7 @@ msgid "Email Templates deleted successfully"
msgstr ""
#: frontend/src/components/ContactUsEmail.vue:57
#: frontend/src/pages/JobApplications.vue:244
msgid "Email sent successfully"
msgstr "Email wurde erfolgreich Versendet"
@@ -2414,6 +2430,14 @@ msgstr "Geben Sie die Client-Id und das Client-Geheimnis in den Google-Einstellu
msgid "Enter a URL"
msgstr "Gib eine URL ein"
#: frontend/src/pages/JobApplications.vue:122
msgid "Enter email subject"
msgstr ""
#: frontend/src/pages/JobApplications.vue:128
msgid "Enter reply to email"
msgstr ""
#: frontend/src/components/Modals/ZoomAccountModal.vue:169
msgid "Error creating Zoom Account"
msgstr ""
@@ -2453,7 +2477,7 @@ msgstr ""
#. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:374 lms/lms/workspace/lms/lms.json
#: frontend/src/components/Modals/Event.vue:405 lms/lms/workspace/lms/lms.json
msgid "Evaluation"
msgstr "Beurteilung"
@@ -2478,7 +2502,7 @@ msgstr ""
msgid "Evaluation end date cannot be less than the batch end date."
msgstr ""
#: frontend/src/components/Modals/Event.vue:256
#: frontend/src/components/Modals/Event.vue:287
msgid "Evaluation saved successfully"
msgstr ""
@@ -2586,7 +2610,7 @@ msgstr "Erweitern"
#. Label of the expected_output (Data) field in DocType 'LMS Test Case'
#. Label of the expected_output (Data) field in DocType 'LMS Test Case
#. Submission'
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:127
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:129
#: lms/lms/doctype/lms_test_case/lms_test_case.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Expected Output"
@@ -2599,7 +2623,7 @@ msgstr "Ablaufdatum"
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33
#: frontend/src/components/Modals/Event.vue:126
#: frontend/src/components/Modals/Event.vue:144
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date"
msgstr "Verfallsdatum"
@@ -2626,7 +2650,7 @@ msgstr "Mehr entdecken"
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:366
#: frontend/src/components/Modals/Event.vue:397
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail"
@@ -2657,7 +2681,7 @@ msgstr ""
msgid "Failed to send email"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:358
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:364
msgid "Failed to submit. Please try again. {0}"
msgstr ""
@@ -2770,7 +2794,7 @@ msgid "Friday"
msgstr "Freitag"
#. Label of the unavailable_from (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:99
#: frontend/src/pages/ProfileEvaluator.vue:106
#: lms/lms/doctype/course_evaluator/course_evaluator.json
msgid "From"
msgstr "Von"
@@ -2782,6 +2806,7 @@ msgstr "Von-Datum"
#. Label of the full_name (Data) field in DocType 'Course Evaluator'
#. Label of the full_name (Data) field in DocType 'LMS Program Member'
#: frontend/src/pages/JobApplications.vue:278
#: lms/lms/doctype/course_evaluator/course_evaluator.json
#: lms/lms/doctype/lms_program_member/lms_program_member.json
#: lms/templates/signup-form.html:5
@@ -2993,7 +3018,7 @@ msgstr "Hinweise"
#: frontend/src/pages/Home/Home.vue:5 frontend/src/pages/Home/Home.vue:154
msgid "Home"
msgstr "Startseite"
msgstr "Start"
#. Label of the host (Link) field in DocType 'LMS Live Class'
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -3019,7 +3044,7 @@ msgstr "Ich freue mich, Ihnen mitteilen zu können, dass Sie Ihr Zertifikat für
msgid "I am looking for a job"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:94
#: frontend/src/pages/ProfileEvaluator.vue:101
msgid "I am unavailable"
msgstr "Ich bin nicht verfügbar"
@@ -3105,7 +3130,7 @@ msgstr "Bild: Beschädigter Datenstrom"
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:358
#: frontend/src/components/Modals/Event.vue:389
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -3139,7 +3164,7 @@ msgstr "Falsch"
#. Label of the index_ (Int) field in DocType 'LMS Exercise'
#: lms/lms/doctype/lms_exercise/lms_exercise.json
msgid "Index"
msgstr "Pos"
msgstr "Index"
#. Label of the index_label (Data) field in DocType 'LMS Exercise'
#: lms/lms/doctype/lms_exercise/lms_exercise.json
@@ -3161,7 +3186,7 @@ msgstr "Industrie"
#. Label of the input (Data) field in DocType 'LMS Test Case'
#. Label of the input (Data) field in DocType 'LMS Test Case Submission'
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:113
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:115
#: lms/lms/doctype/lms_test_case/lms_test_case.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Input"
@@ -3273,7 +3298,7 @@ msgstr ""
#. Label of the issue_date (Date) field in DocType 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28
#: frontend/src/components/Modals/Event.vue:121
#: frontend/src/components/Modals/Event.vue:138
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date"
@@ -3358,8 +3383,8 @@ msgid "Job Title"
msgstr "Stellenbezeichnung"
#. Label of the jobs (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/JobDetail.vue:10 frontend/src/pages/Jobs.vue:8
#: frontend/src/pages/Jobs.vue:212
#: frontend/src/pages/JobApplications.vue:9 frontend/src/pages/JobDetail.vue:10
#: frontend/src/pages/Jobs.vue:8 frontend/src/pages/Jobs.vue:212
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Jobs"
msgstr "freie Stellen"
@@ -3375,7 +3400,7 @@ msgstr "Beitreten"
msgid "Join Call"
msgstr ""
#: frontend/src/components/Modals/Event.vue:74
#: frontend/src/components/Modals/Event.vue:78
msgid "Join Meeting"
msgstr ""
@@ -3866,7 +3891,7 @@ msgstr "Lokal"
#: lms/lms/doctype/education_detail/education_detail.json
#: lms/lms/doctype/work_experience/work_experience.json
msgid "Location"
msgstr "Ort"
msgstr ""
#. Label of the location_preference (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
@@ -3883,7 +3908,7 @@ msgstr "Anmelden"
msgid "Login to Frappe Cloud?"
msgstr "Melden Sie sich bei Frappe Cloud an?"
#: frontend/src/pages/JobDetail.vue:63
#: frontend/src/pages/JobDetail.vue:74
msgid "Login to apply"
msgstr ""
@@ -4228,14 +4253,19 @@ msgid "Mentor Request Status Update Template"
msgstr ""
#: frontend/src/components/ContactUsEmail.vue:19
#: frontend/src/pages/JobApplications.vue:132
msgid "Message"
msgstr "Nachricht"
#: frontend/src/pages/JobApplications.vue:240
msgid "Message is required"
msgstr ""
#. Label of the meta_description (Small Text) field in DocType 'LMS Settings'
#: frontend/src/pages/BatchForm.vue:297 frontend/src/pages/CourseForm.vue:303
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Meta Description"
msgstr "Meta Beschreibung"
msgstr "Meta-Beschreibung"
#. Label of the meta_image (Attach Image) field in DocType 'LMS Batch'
#. Label of the meta_image (Attach Image) field in DocType 'LMS Settings'
@@ -4328,7 +4358,7 @@ msgstr ""
#: frontend/src/components/AppSidebar.vue:39
msgid "More"
msgstr "Weiter"
msgstr "Mehr"
#. Label of the multiple (Check) field in DocType 'LMS Question'
#: lms/lms/doctype/lms_question/lms_question.json
@@ -4351,7 +4381,7 @@ msgstr ""
msgid "My availability"
msgstr "Meine Verfügbarkeit"
#: frontend/src/pages/ProfileEvaluator.vue:127
#: frontend/src/pages/ProfileEvaluator.vue:136
msgid "My calendar"
msgstr "Mein Kalender"
@@ -4390,7 +4420,7 @@ msgstr ""
msgid "New Job"
msgstr ""
#: lms/job/doctype/lms_job_application/lms_job_application.py:27
#: lms/job/doctype/lms_job_application/lms_job_application.py:31
msgid "New Job Applicant"
msgstr ""
@@ -4818,7 +4848,7 @@ msgstr "Teilweise abgeschlossen"
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:362
#: frontend/src/components/Modals/Event.vue:393
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass"
@@ -4945,7 +4975,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:354
#: frontend/src/components/Modals/Event.vue:385
#: lms/lms/doctype/cohort_join_request/cohort_join_request.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
@@ -4964,7 +4994,7 @@ msgstr "Prozentsatz"
msgid "Percentage (e.g. 70%)"
msgstr "Prozentsatz (z. B. 70 %)"
#: frontend/src/components/Modals/BatchStudentProgress.vue:44
#: frontend/src/components/Modals/BatchStudentProgress.vue:46
msgid "Percentage/Status"
msgstr ""
@@ -5080,7 +5110,7 @@ msgstr ""
msgid "Please prepare well and be on time for the evaluations."
msgstr "Bitte bereiten Sie sich gut vor und erscheinen Sie pünktlich zu den Prüfungen."
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:135
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:139
msgid "Please run the code to execute the test cases."
msgstr ""
@@ -5168,7 +5198,7 @@ msgstr "Mögliche Antwort 4"
#: frontend/src/components/DiscussionReplies.vue:54
#: frontend/src/components/DiscussionReplies.vue:89
msgid "Post"
msgstr "Absenden"
msgstr "Posten"
#: frontend/src/pages/Billing.vue:95
msgid "Postal Code"
@@ -5220,7 +5250,7 @@ msgstr "Videovorschau"
#: frontend/src/pages/Lesson.vue:26 frontend/src/pages/Lesson.vue:162
msgid "Previous"
msgstr "Vorhergehende"
msgstr "Zurück"
#. Label of the pricing_tab (Tab Break) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:265
@@ -5317,11 +5347,11 @@ msgstr ""
#: frontend/src/components/Settings/BadgeForm.vue:200
#: frontend/src/components/Settings/Badges.vue:205
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:420
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:426
msgid "Programming Exercise Submission"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:411
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:417
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:298
msgid "Programming Exercise Submissions"
msgstr ""
@@ -5355,7 +5385,7 @@ msgstr ""
#. Label of the progress (Float) field in DocType 'LMS Enrollment'
#. Label of the progress (Int) field in DocType 'LMS Program Member'
#: frontend/src/components/Modals/BatchStudentProgress.vue:94
#: frontend/src/components/Modals/BatchStudentProgress.vue:98
#: frontend/src/components/Modals/CourseProgressSummary.vue:224
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
#: lms/lms/doctype/lms_program_member/lms_program_member.json
@@ -5401,7 +5431,7 @@ msgstr "Auf der Teilnehmerseite veröffentlichen"
#. Label of the published (Check) field in DocType 'LMS Course'
#. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51
#: frontend/src/components/Modals/Event.vue:108
#: frontend/src/components/Modals/Event.vue:122
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:152
#: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100
@@ -5569,7 +5599,7 @@ msgstr ""
#. Label of the rating (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147
#: frontend/src/components/Modals/Event.vue:86
#: frontend/src/components/Modals/Event.vue:92
#: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -5656,6 +5686,7 @@ msgid "Remove Highlight"
msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:27
#: frontend/src/pages/JobApplications.vue:127
msgid "Reply To"
msgstr "Antworten auf"
@@ -5815,8 +5846,8 @@ msgstr "Samstag"
#: frontend/src/components/Controls/CodeEditor.vue:25
#: frontend/src/components/Modals/AssignmentForm.vue:59
#: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:101
#: frontend/src/components/Modals/Event.vue:129
#: frontend/src/components/Modals/Event.vue:115
#: frontend/src/components/Modals/Event.vue:151
#: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
@@ -5955,6 +5986,7 @@ msgid "Select an assignment"
msgstr ""
#: frontend/src/components/ContactUsEmail.vue:33
#: frontend/src/pages/JobApplications.vue:110
msgid "Send"
msgstr "Absenden"
@@ -5962,6 +5994,14 @@ msgstr "Absenden"
msgid "Send Confirmation Email"
msgstr ""
#: frontend/src/pages/JobApplications.vue:268
msgid "Send Email"
msgstr "E-Mail absenden"
#: frontend/src/pages/JobApplications.vue:106
msgid "Send Email to {0}"
msgstr ""
#. Label of the send_calendar_invite_for_evaluations (Check) field in DocType
#. 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
@@ -6122,11 +6162,11 @@ msgstr "Überspringen"
msgid "Slot Times are overlapping for some schedules."
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:201
#: frontend/src/pages/ProfileEvaluator.vue:218
msgid "Slot added successfully"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:240
#: frontend/src/pages/ProfileEvaluator.vue:257
msgid "Slot deleted successfully"
msgstr ""
@@ -6265,7 +6305,7 @@ msgstr "Statistiken"
#. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case Submission'
#: frontend/src/components/Modals/Event.vue:91
#: frontend/src/components/Modals/Event.vue:99
#: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6336,10 +6376,12 @@ msgstr "Untergruppe"
#: frontend/src/components/ContactUsEmail.vue:13
#: frontend/src/components/Modals/AnnouncementModal.vue:20
#: frontend/src/components/Modals/EmailTemplateModal.vue:31
#: frontend/src/pages/JobApplications.vue:121
msgid "Subject"
msgstr "Betreff"
#: frontend/src/components/Modals/AnnouncementModal.vue:94
#: frontend/src/pages/JobApplications.vue:237
msgid "Subject is required"
msgstr ""
@@ -6356,7 +6398,7 @@ msgstr ""
msgid "Submission by"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:353
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:359
msgid "Submission saved!"
msgstr ""
@@ -6396,7 +6438,7 @@ msgstr ""
#. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:97
#: frontend/src/components/Modals/Event.vue:106
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary"
msgstr "Zusammenfassung"
@@ -6501,7 +6543,7 @@ msgstr ""
#. Label of the template (Link) field in DocType 'Cohort Web Page'
#. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43
#: frontend/src/components/Modals/Event.vue:112
#: frontend/src/components/Modals/Event.vue:127
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template"
@@ -6542,7 +6584,7 @@ msgstr ""
msgid "Test this Exercise"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:92
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:93
msgid "Test {0}"
msgstr ""
@@ -6833,14 +6875,14 @@ msgstr ""
#: lms/lms/doctype/lms_timetable_template/lms_timetable_template.json
#: lms/lms/doctype/work_experience/work_experience.json
msgid "Title"
msgstr "Bezeichnung"
msgstr "Titel"
#: frontend/src/components/Modals/ChapterModal.vue:172
msgid "Title is required"
msgstr ""
#. Label of the unavailable_to (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:112
#: frontend/src/pages/ProfileEvaluator.vue:120
#: lms/lms/doctype/course_evaluator/course_evaluator.json
msgid "To"
msgstr "An"
@@ -6856,7 +6898,7 @@ msgstr "Um dieser Gruppe beizutreten, wenden Sie sich bitte an den Administrator
#: lms/lms/user.py:41
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
msgstr "Zu viele Benutzer unterzeichnete vor kurzem, also die Registrierung ist deaktiviert. Bitte versuchen Sie es in einer Stunde zurück"
msgstr "Zu viele Benutzer haben sich kürzlich registriert. Die Registrierung ist daher deaktiviert. Bitte versuchen Sie es in einer Stunde erneut."
#: frontend/src/pages/Billing.vue:53
msgid "Total"
@@ -6953,7 +6995,7 @@ msgstr "UUID"
msgid "Unavailability"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:259
#: frontend/src/pages/ProfileEvaluator.vue:276
msgid "Unavailability updated successfully"
msgstr ""
@@ -7048,7 +7090,7 @@ msgstr "HTML verwenden"
#: lms/lms/doctype/cohort_staff/cohort_staff.json
#: lms/lms/doctype/lms_course_interest/lms_course_interest.json
msgid "User"
msgstr "Nutzer"
msgstr "Benutzer"
#. Label of the user_category (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json lms/templates/signup-form.html:17
@@ -7123,11 +7165,19 @@ msgstr ""
msgid "View"
msgstr "Ansicht"
#: frontend/src/pages/JobDetail.vue:31
msgid "View Applications"
msgstr ""
#: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67
msgid "View Certificate"
msgstr ""
#: frontend/src/pages/JobApplications.vue:262
msgid "View Resume"
msgstr ""
#: frontend/src/components/BatchFeedback.vue:56
msgid "View all feedback"
msgstr ""
@@ -7146,7 +7196,7 @@ msgstr "Sichtbarkeit"
msgid "Visit Batch"
msgstr ""
#: frontend/src/pages/JobDetail.vue:41
#: frontend/src/pages/JobDetail.vue:52
msgid "Visit Website"
msgstr ""
@@ -7355,7 +7405,7 @@ msgstr "Sie haben {0}% richtige Antworten mit einer Punktzahl von {1} von {2}"
msgid "You have a live class scheduled tomorrow. Please be prepared and be on time for the session."
msgstr ""
#: lms/job/doctype/lms_job_application/lms_job_application.py:22
#: lms/job/doctype/lms_job_application/lms_job_application.py:26
msgid "You have already applied for this job."
msgstr "Sie haben sich bereits auf diese Stelle beworben."
@@ -7371,7 +7421,7 @@ msgstr ""
msgid "You have already reviewed this course"
msgstr "Sie haben diesen Kurs bereits bewertet"
#: frontend/src/pages/JobDetail.vue:57
#: frontend/src/pages/JobDetail.vue:68
msgid "You have applied"
msgstr ""
@@ -7451,7 +7501,7 @@ msgstr "Das YouTube-Video wird oben in der Lektion angezeigt."
msgid "Your Account has been successfully created!"
msgstr "Ihr Konto wurde erfolgreich erstellt!"
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:119
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:121
msgid "Your Output"
msgstr ""
@@ -7459,7 +7509,7 @@ msgstr ""
msgid "Your batch {0} is starting tomorrow"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:134
#: frontend/src/pages/ProfileEvaluator.vue:143
msgid "Your calendar is set."
msgstr "Ihr Kalender ist eingestellt."
@@ -7538,11 +7588,11 @@ msgstr "und"
msgid "and then 'Add to Home Screen'"
msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125
msgid "applicant"
msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125
msgid "applicants"
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: 2025-10-31 16:04+0000\n"
"PO-Revision-Date: 2025-10-31 17:33\n"
"POT-Creation-Date: 2025-11-07 16:04+0000\n"
"PO-Revision-Date: 2025-11-11 11:49\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Esperanto\n"
"MIME-Version: 1.0\n"
@@ -176,7 +176,7 @@ msgstr "crwdns155288:0crwdne155288:0"
msgid "Add Row"
msgstr "crwdns155686:0crwdne155686:0"
#: frontend/src/pages/ProfileEvaluator.vue:89
#: frontend/src/pages/ProfileEvaluator.vue:96
msgid "Add Slot"
msgstr "crwdns149218:0crwdne149218:0"
@@ -426,12 +426,25 @@ msgstr "crwdns151466:0crwdne151466:0"
msgid "Appears when the batch URL is shared on socials"
msgstr "crwdns155070:0crwdne155070:0"
#: frontend/src/pages/JobApplications.vue:24
msgid "Application"
msgstr "crwdns160722:0crwdne160722:0"
#. Label of a field in the job-opportunity Web Form
#: lms/job/web_form/job_opportunity/job_opportunity.json
msgid "Application Form Link"
msgstr "crwdns160124:0crwdne160124:0"
#: frontend/src/pages/JobDetail.vue:51
#: frontend/src/pages/JobApplications.vue:14
#: frontend/src/pages/JobApplications.vue:25
msgid "Applications"
msgstr "crwdns160724:0crwdne160724:0"
#: frontend/src/pages/JobApplications.vue:290
msgid "Applied On"
msgstr "crwdns160726:0crwdne160726:0"
#: frontend/src/pages/JobDetail.vue:62
msgid "Apply"
msgstr "crwdns149284:0crwdne149284:0"
@@ -483,7 +496,7 @@ msgstr "crwdns157410:0crwdne157410:0"
#. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch'
#. Label of the assessment (Table) field in DocType 'LMS Batch'
#: frontend/src/components/Modals/AssessmentModal.vue:27
#: frontend/src/components/Modals/BatchStudentProgress.vue:41
#: frontend/src/components/Modals/BatchStudentProgress.vue:43
#: lms/lms/doctype/lms_batch/lms_batch.json lms/templates/assessments.html:11
msgid "Assessment"
msgstr "crwdns149300:0crwdne149300:0"
@@ -569,7 +582,7 @@ msgstr "crwdns154518:0crwdne154518:0"
msgid "Assignment Title"
msgstr "crwdns149320:0crwdne149320:0"
#: frontend/src/components/Modals/AssignmentForm.vue:125
#: frontend/src/components/Modals/AssignmentForm.vue:133
msgid "Assignment created successfully"
msgstr "crwdns154596:0crwdne154596:0"
@@ -581,7 +594,7 @@ msgstr "crwdns149322:0{0}crwdnd149322:0{1}crwdne149322:0"
msgid "Assignment submitted successfully"
msgstr "crwdns155072:0crwdne155072:0"
#: frontend/src/components/Modals/AssignmentForm.vue:138
#: frontend/src/components/Modals/AssignmentForm.vue:146
msgid "Assignment updated successfully"
msgstr "crwdns154598:0crwdne154598:0"
@@ -622,7 +635,7 @@ msgstr "crwdns155228:0crwdne155228:0"
msgid "Attire Preference"
msgstr "crwdns149328:0crwdne149328:0"
#: frontend/src/pages/ProfileEvaluator.vue:137
#: frontend/src/pages/ProfileEvaluator.vue:146
msgid "Authorize Google Calendar Access"
msgstr "crwdns149330:0crwdne149330:0"
@@ -637,7 +650,7 @@ msgstr "crwdns149332:0crwdne149332:0"
msgid "Auto Recording"
msgstr "crwdns149334:0crwdne149334:0"
#: frontend/src/pages/ProfileEvaluator.vue:224
#: frontend/src/pages/ProfileEvaluator.vue:241
msgid "Availability updated successfully"
msgstr "crwdns155074:0crwdne155074:0"
@@ -768,6 +781,7 @@ msgstr "crwdns155170:0crwdne155170:0"
#. Name of a role
#: lms/lms/doctype/course_evaluator/course_evaluator.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_category/lms_category.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -998,7 +1012,7 @@ msgstr "crwdns149424:0crwdne149424:0"
msgid "Certificate of Completion"
msgstr "crwdns152601:0crwdne152601:0"
#: frontend/src/components/Modals/Event.vue:317
#: frontend/src/components/Modals/Event.vue:348
msgid "Certificate saved successfully"
msgstr "crwdns149426:0crwdne149426:0"
@@ -1018,7 +1032,7 @@ msgstr "crwdns151924:0crwdne151924:0"
#. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace
#: frontend/src/components/AppSidebar.vue:626
#: frontend/src/components/Modals/Event.vue:381
#: frontend/src/components/Modals/Event.vue:412
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58
#: frontend/src/pages/CourseCertification.vue:10
#: frontend/src/pages/CourseCertification.vue:135
@@ -1640,6 +1654,7 @@ msgstr "crwdns158494:0crwdne158494:0"
#: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/course_lesson/course_lesson.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
#: lms/lms/doctype/lms_category/lms_category.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json
@@ -1757,7 +1772,7 @@ msgstr "crwdns149596:0{0}crwdne149596:0"
#: frontend/src/components/BatchCourses.vue:5
#: frontend/src/components/BatchOverlay.vue:37
#: frontend/src/components/BatchStudents.vue:25
#: frontend/src/components/Modals/BatchStudentProgress.vue:91
#: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127
#: frontend/src/pages/Courses.vue:333 frontend/src/pages/Courses.vue:340
@@ -2169,7 +2184,7 @@ msgstr "crwdns149680:0crwdne149680:0"
#: frontend/src/components/DiscussionReplies.vue:35
#: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/components/Settings/Badges.vue:156
#: frontend/src/pages/JobDetail.vue:34 frontend/src/pages/Lesson.vue:42
#: frontend/src/pages/JobDetail.vue:45 frontend/src/pages/Lesson.vue:42
#: frontend/src/pages/Lesson.vue:178 frontend/src/pages/Profile.vue:36
msgid "Edit"
msgstr "crwdns149682:0crwdne149682:0"
@@ -2236,7 +2251,7 @@ msgstr "crwdns149694:0crwdne149694:0"
#: frontend/src/components/Settings/Evaluators.vue:105
#: frontend/src/components/Settings/Members.vue:103
#: lms/templates/signup-form.html:10
#: frontend/src/pages/JobApplications.vue:284 lms/templates/signup-form.html:10
msgid "Email"
msgstr "crwdns149696:0crwdne149696:0"
@@ -2272,6 +2287,7 @@ msgid "Email Templates deleted successfully"
msgstr "crwdns155188:0crwdne155188:0"
#: frontend/src/components/ContactUsEmail.vue:57
#: frontend/src/pages/JobApplications.vue:244
msgid "Email sent successfully"
msgstr "crwdns160426:0crwdne160426:0"
@@ -2414,6 +2430,14 @@ msgstr "crwdns149736:0crwdne149736:0"
msgid "Enter a URL"
msgstr "crwdns149738:0crwdne149738:0"
#: frontend/src/pages/JobApplications.vue:122
msgid "Enter email subject"
msgstr "crwdns160728:0crwdne160728:0"
#: frontend/src/pages/JobApplications.vue:128
msgid "Enter reply to email"
msgstr "crwdns160730:0crwdne160730:0"
#: frontend/src/components/Modals/ZoomAccountModal.vue:169
msgid "Error creating Zoom Account"
msgstr "crwdns155238:0crwdne155238:0"
@@ -2453,7 +2477,7 @@ msgstr "crwdns155194:0crwdne155194:0"
#. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:374 lms/lms/workspace/lms/lms.json
#: frontend/src/components/Modals/Event.vue:405 lms/lms/workspace/lms/lms.json
msgid "Evaluation"
msgstr "crwdns149746:0crwdne149746:0"
@@ -2478,7 +2502,7 @@ msgstr "crwdns149752:0crwdne149752:0"
msgid "Evaluation end date cannot be less than the batch end date."
msgstr "crwdns149754:0crwdne149754:0"
#: frontend/src/components/Modals/Event.vue:256
#: frontend/src/components/Modals/Event.vue:287
msgid "Evaluation saved successfully"
msgstr "crwdns149756:0crwdne149756:0"
@@ -2586,7 +2610,7 @@ msgstr "crwdns154608:0crwdne154608:0"
#. Label of the expected_output (Data) field in DocType 'LMS Test Case'
#. Label of the expected_output (Data) field in DocType 'LMS Test Case
#. Submission'
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:127
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:129
#: lms/lms/doctype/lms_test_case/lms_test_case.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Expected Output"
@@ -2599,7 +2623,7 @@ msgstr "crwdns149778:0crwdne149778:0"
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33
#: frontend/src/components/Modals/Event.vue:126
#: frontend/src/components/Modals/Event.vue:144
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date"
msgstr "crwdns149780:0crwdne149780:0"
@@ -2626,7 +2650,7 @@ msgstr "crwdns149786:0crwdne149786:0"
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:366
#: frontend/src/components/Modals/Event.vue:397
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail"
@@ -2657,7 +2681,7 @@ msgstr "crwdns155242:0{0}crwdnd155242:0{1}crwdne155242:0"
msgid "Failed to send email"
msgstr "crwdns160428:0crwdne160428:0"
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:358
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:364
msgid "Failed to submit. Please try again. {0}"
msgstr "crwdns155708:0{0}crwdne155708:0"
@@ -2770,7 +2794,7 @@ msgid "Friday"
msgstr "crwdns149818:0crwdne149818:0"
#. Label of the unavailable_from (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:99
#: frontend/src/pages/ProfileEvaluator.vue:106
#: lms/lms/doctype/course_evaluator/course_evaluator.json
msgid "From"
msgstr "crwdns149820:0crwdne149820:0"
@@ -2782,6 +2806,7 @@ msgstr "crwdns149822:0crwdne149822:0"
#. Label of the full_name (Data) field in DocType 'Course Evaluator'
#. Label of the full_name (Data) field in DocType 'LMS Program Member'
#: frontend/src/pages/JobApplications.vue:278
#: lms/lms/doctype/course_evaluator/course_evaluator.json
#: lms/lms/doctype/lms_program_member/lms_program_member.json
#: lms/templates/signup-form.html:5
@@ -3019,7 +3044,7 @@ msgstr "crwdns149890:0{0}crwdne149890:0"
msgid "I am looking for a job"
msgstr "crwdns149892:0crwdne149892:0"
#: frontend/src/pages/ProfileEvaluator.vue:94
#: frontend/src/pages/ProfileEvaluator.vue:101
msgid "I am unavailable"
msgstr "crwdns149894:0crwdne149894:0"
@@ -3105,7 +3130,7 @@ msgstr "crwdns149914:0crwdne149914:0"
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:358
#: frontend/src/components/Modals/Event.vue:389
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -3161,7 +3186,7 @@ msgstr "crwdns149932:0crwdne149932:0"
#. Label of the input (Data) field in DocType 'LMS Test Case'
#. Label of the input (Data) field in DocType 'LMS Test Case Submission'
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:113
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:115
#: lms/lms/doctype/lms_test_case/lms_test_case.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Input"
@@ -3273,7 +3298,7 @@ msgstr "crwdns151636:0crwdne151636:0"
#. Label of the issue_date (Date) field in DocType 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28
#: frontend/src/components/Modals/Event.vue:121
#: frontend/src/components/Modals/Event.vue:138
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date"
@@ -3358,8 +3383,8 @@ msgid "Job Title"
msgstr "crwdns149992:0crwdne149992:0"
#. Label of the jobs (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/JobDetail.vue:10 frontend/src/pages/Jobs.vue:8
#: frontend/src/pages/Jobs.vue:212
#: frontend/src/pages/JobApplications.vue:9 frontend/src/pages/JobDetail.vue:10
#: frontend/src/pages/Jobs.vue:8 frontend/src/pages/Jobs.vue:212
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Jobs"
msgstr "crwdns149994:0crwdne149994:0"
@@ -3375,7 +3400,7 @@ msgstr "crwdns149996:0crwdne149996:0"
msgid "Join Call"
msgstr "crwdns152499:0crwdne152499:0"
#: frontend/src/components/Modals/Event.vue:74
#: frontend/src/components/Modals/Event.vue:78
msgid "Join Meeting"
msgstr "crwdns149998:0crwdne149998:0"
@@ -3883,7 +3908,7 @@ msgstr "crwdns150122:0crwdne150122:0"
msgid "Login to Frappe Cloud?"
msgstr "crwdns152505:0crwdne152505:0"
#: frontend/src/pages/JobDetail.vue:63
#: frontend/src/pages/JobDetail.vue:74
msgid "Login to apply"
msgstr "crwdns150124:0crwdne150124:0"
@@ -4228,9 +4253,14 @@ msgid "Mentor Request Status Update Template"
msgstr "crwdns150186:0crwdne150186:0"
#: frontend/src/components/ContactUsEmail.vue:19
#: frontend/src/pages/JobApplications.vue:132
msgid "Message"
msgstr "crwdns160430:0crwdne160430:0"
#: frontend/src/pages/JobApplications.vue:240
msgid "Message is required"
msgstr "crwdns160732:0crwdne160732:0"
#. Label of the meta_description (Small Text) field in DocType 'LMS Settings'
#: frontend/src/pages/BatchForm.vue:297 frontend/src/pages/CourseForm.vue:303
#: lms/lms/doctype/lms_settings/lms_settings.json
@@ -4351,7 +4381,7 @@ msgstr "crwdns157424:0crwdne157424:0"
msgid "My availability"
msgstr "crwdns150210:0crwdne150210:0"
#: frontend/src/pages/ProfileEvaluator.vue:127
#: frontend/src/pages/ProfileEvaluator.vue:136
msgid "My calendar"
msgstr "crwdns150212:0crwdne150212:0"
@@ -4390,7 +4420,7 @@ msgstr "crwdns155200:0crwdne155200:0"
msgid "New Job"
msgstr "crwdns150222:0crwdne150222:0"
#: lms/job/doctype/lms_job_application/lms_job_application.py:27
#: lms/job/doctype/lms_job_application/lms_job_application.py:31
msgid "New Job Applicant"
msgstr "crwdns150224:0crwdne150224:0"
@@ -4818,7 +4848,7 @@ msgstr "crwdns150360:0crwdne150360:0"
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:362
#: frontend/src/components/Modals/Event.vue:393
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass"
@@ -4945,7 +4975,7 @@ msgstr "crwdns150388:0crwdne150388:0"
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:354
#: frontend/src/components/Modals/Event.vue:385
#: lms/lms/doctype/cohort_join_request/cohort_join_request.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
@@ -4964,7 +4994,7 @@ msgstr "crwdns150392:0crwdne150392:0"
msgid "Percentage (e.g. 70%)"
msgstr "crwdns150394:0crwdne150394:0"
#: frontend/src/components/Modals/BatchStudentProgress.vue:44
#: frontend/src/components/Modals/BatchStudentProgress.vue:46
msgid "Percentage/Status"
msgstr "crwdns152448:0crwdne152448:0"
@@ -5080,7 +5110,7 @@ msgstr "crwdns158528:0crwdne158528:0"
msgid "Please prepare well and be on time for the evaluations."
msgstr "crwdns150430:0crwdne150430:0"
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:135
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:139
msgid "Please run the code to execute the test cases."
msgstr "crwdns155738:0crwdne155738:0"
@@ -5317,11 +5347,11 @@ msgstr "crwdns155742:0crwdne155742:0"
#: frontend/src/components/Settings/BadgeForm.vue:200
#: frontend/src/components/Settings/Badges.vue:205
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:420
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:426
msgid "Programming Exercise Submission"
msgstr "crwdns155744:0crwdne155744:0"
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:411
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:417
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:298
msgid "Programming Exercise Submissions"
msgstr "crwdns155746:0crwdne155746:0"
@@ -5355,7 +5385,7 @@ msgstr "crwdns154532:0crwdne154532:0"
#. Label of the progress (Float) field in DocType 'LMS Enrollment'
#. Label of the progress (Int) field in DocType 'LMS Program Member'
#: frontend/src/components/Modals/BatchStudentProgress.vue:94
#: frontend/src/components/Modals/BatchStudentProgress.vue:98
#: frontend/src/components/Modals/CourseProgressSummary.vue:224
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
#: lms/lms/doctype/lms_program_member/lms_program_member.json
@@ -5401,7 +5431,7 @@ msgstr "crwdns150494:0crwdne150494:0"
#. Label of the published (Check) field in DocType 'LMS Course'
#. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51
#: frontend/src/components/Modals/Event.vue:108
#: frontend/src/components/Modals/Event.vue:122
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:152
#: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100
@@ -5569,7 +5599,7 @@ msgstr "crwdns155298:0crwdne155298:0"
#. Label of the rating (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147
#: frontend/src/components/Modals/Event.vue:86
#: frontend/src/components/Modals/Event.vue:92
#: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -5656,6 +5686,7 @@ msgid "Remove Highlight"
msgstr "crwdns157430:0crwdne157430:0"
#: frontend/src/components/Modals/AnnouncementModal.vue:27
#: frontend/src/pages/JobApplications.vue:127
msgid "Reply To"
msgstr "crwdns150570:0crwdne150570:0"
@@ -5815,8 +5846,8 @@ msgstr "crwdns150610:0crwdne150610:0"
#: frontend/src/components/Controls/CodeEditor.vue:25
#: frontend/src/components/Modals/AssignmentForm.vue:59
#: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:101
#: frontend/src/components/Modals/Event.vue:129
#: frontend/src/components/Modals/Event.vue:115
#: frontend/src/components/Modals/Event.vue:151
#: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
@@ -5955,6 +5986,7 @@ msgid "Select an assignment"
msgstr "crwdns152134:0crwdne152134:0"
#: frontend/src/components/ContactUsEmail.vue:33
#: frontend/src/pages/JobApplications.vue:110
msgid "Send"
msgstr "crwdns160432:0crwdne160432:0"
@@ -5962,6 +5994,14 @@ msgstr "crwdns160432:0crwdne160432:0"
msgid "Send Confirmation Email"
msgstr "crwdns152450:0crwdne152450:0"
#: frontend/src/pages/JobApplications.vue:268
msgid "Send Email"
msgstr "crwdns160734:0crwdne160734:0"
#: frontend/src/pages/JobApplications.vue:106
msgid "Send Email to {0}"
msgstr "crwdns160736:0{0}crwdne160736:0"
#. Label of the send_calendar_invite_for_evaluations (Check) field in DocType
#. 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
@@ -6122,11 +6162,11 @@ msgstr "crwdns150696:0crwdne150696:0"
msgid "Slot Times are overlapping for some schedules."
msgstr "crwdns150698:0crwdne150698:0"
#: frontend/src/pages/ProfileEvaluator.vue:201
#: frontend/src/pages/ProfileEvaluator.vue:218
msgid "Slot added successfully"
msgstr "crwdns155108:0crwdne155108:0"
#: frontend/src/pages/ProfileEvaluator.vue:240
#: frontend/src/pages/ProfileEvaluator.vue:257
msgid "Slot deleted successfully"
msgstr "crwdns155110:0crwdne155110:0"
@@ -6265,7 +6305,7 @@ msgstr "crwdns150732:0crwdne150732:0"
#. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case Submission'
#: frontend/src/components/Modals/Event.vue:91
#: frontend/src/components/Modals/Event.vue:99
#: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6336,10 +6376,12 @@ msgstr "crwdns150754:0crwdne150754:0"
#: frontend/src/components/ContactUsEmail.vue:13
#: frontend/src/components/Modals/AnnouncementModal.vue:20
#: frontend/src/components/Modals/EmailTemplateModal.vue:31
#: frontend/src/pages/JobApplications.vue:121
msgid "Subject"
msgstr "crwdns150756:0crwdne150756:0"
#: frontend/src/components/Modals/AnnouncementModal.vue:94
#: frontend/src/pages/JobApplications.vue:237
msgid "Subject is required"
msgstr "crwdns155112:0crwdne155112:0"
@@ -6356,7 +6398,7 @@ msgstr "crwdns154620:0crwdne154620:0"
msgid "Submission by"
msgstr "crwdns152136:0crwdne152136:0"
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:353
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:359
msgid "Submission saved!"
msgstr "crwdns155760:0crwdne155760:0"
@@ -6396,7 +6438,7 @@ msgstr "crwdns158542:0crwdne158542:0"
#. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:97
#: frontend/src/components/Modals/Event.vue:106
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary"
msgstr "crwdns150770:0crwdne150770:0"
@@ -6501,7 +6543,7 @@ msgstr "crwdns150780:0crwdne150780:0"
#. Label of the template (Link) field in DocType 'Cohort Web Page'
#. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43
#: frontend/src/components/Modals/Event.vue:112
#: frontend/src/components/Modals/Event.vue:127
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template"
@@ -6542,7 +6584,7 @@ msgstr "crwdns150788:0crwdne150788:0"
msgid "Test this Exercise"
msgstr "crwdns155766:0crwdne155766:0"
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:92
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:93
msgid "Test {0}"
msgstr "crwdns155768:0{0}crwdne155768:0"
@@ -6840,7 +6882,7 @@ msgid "Title is required"
msgstr "crwdns151656:0crwdne151656:0"
#. Label of the unavailable_to (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:112
#: frontend/src/pages/ProfileEvaluator.vue:120
#: lms/lms/doctype/course_evaluator/course_evaluator.json
msgid "To"
msgstr "crwdns150852:0crwdne150852:0"
@@ -6953,7 +6995,7 @@ msgstr "crwdns155270:0crwdne155270:0"
msgid "Unavailability"
msgstr "crwdns150886:0crwdne150886:0"
#: frontend/src/pages/ProfileEvaluator.vue:259
#: frontend/src/pages/ProfileEvaluator.vue:276
msgid "Unavailability updated successfully"
msgstr "crwdns155116:0crwdne155116:0"
@@ -7123,11 +7165,19 @@ msgstr "crwdns155844:0{0}crwdne155844:0"
msgid "View"
msgstr "crwdns150938:0crwdne150938:0"
#: frontend/src/pages/JobDetail.vue:31
msgid "View Applications"
msgstr "crwdns160738:0crwdne160738:0"
#: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67
msgid "View Certificate"
msgstr "crwdns150940:0crwdne150940:0"
#: frontend/src/pages/JobApplications.vue:262
msgid "View Resume"
msgstr "crwdns160740:0crwdne160740:0"
#: frontend/src/components/BatchFeedback.vue:56
msgid "View all feedback"
msgstr "crwdns155210:0crwdne155210:0"
@@ -7146,7 +7196,7 @@ msgstr "crwdns150942:0crwdne150942:0"
msgid "Visit Batch"
msgstr "crwdns150944:0crwdne150944:0"
#: frontend/src/pages/JobDetail.vue:41
#: frontend/src/pages/JobDetail.vue:52
msgid "Visit Website"
msgstr "crwdns154540:0crwdne154540:0"
@@ -7355,7 +7405,7 @@ msgstr "crwdns151006:0{0}crwdnd151006:0{1}crwdnd151006:0{2}crwdne151006:0"
msgid "You have a live class scheduled tomorrow. Please be prepared and be on time for the session."
msgstr "crwdns152525:0crwdne152525:0"
#: lms/job/doctype/lms_job_application/lms_job_application.py:22
#: lms/job/doctype/lms_job_application/lms_job_application.py:26
msgid "You have already applied for this job."
msgstr "crwdns151008:0crwdne151008:0"
@@ -7371,7 +7421,7 @@ msgstr "crwdns152623:0crwdne152623:0"
msgid "You have already reviewed this course"
msgstr "crwdns151012:0crwdne151012:0"
#: frontend/src/pages/JobDetail.vue:57
#: frontend/src/pages/JobDetail.vue:68
msgid "You have applied"
msgstr "crwdns154718:0crwdne154718:0"
@@ -7451,7 +7501,7 @@ msgstr "crwdns151032:0crwdne151032:0"
msgid "Your Account has been successfully created!"
msgstr "crwdns151034:0crwdne151034:0"
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:119
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:121
msgid "Your Output"
msgstr "crwdns155772:0crwdne155772:0"
@@ -7459,7 +7509,7 @@ msgstr "crwdns155772:0crwdne155772:0"
msgid "Your batch {0} is starting tomorrow"
msgstr "crwdns154222:0{0}crwdne154222:0"
#: frontend/src/pages/ProfileEvaluator.vue:134
#: frontend/src/pages/ProfileEvaluator.vue:143
msgid "Your calendar is set."
msgstr "crwdns151036:0crwdne151036:0"
@@ -7538,11 +7588,11 @@ msgstr "crwdns157186:0crwdne157186:0"
msgid "and then 'Add to Home Screen'"
msgstr "crwdns158326:0crwdne158326:0"
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125
msgid "applicant"
msgstr "crwdns154722:0crwdne154722:0"
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125
msgid "applicants"
msgstr "crwdns154724:0crwdne154724: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: 2025-10-31 16:04+0000\n"
"PO-Revision-Date: 2025-11-02 19:07\n"
"POT-Creation-Date: 2025-11-07 16:04+0000\n"
"PO-Revision-Date: 2025-11-12 11:45\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Persian\n"
"MIME-Version: 1.0\n"
@@ -32,7 +32,7 @@ msgstr ""
#: frontend/src/pages/Home/Streak.vue:21
msgid " you are on a"
msgstr ""
msgstr " شما در حال حاضر در یک"
#. Paragraph text in the LMS Workspace
#: lms/lms/workspace/lms/lms.json
@@ -176,7 +176,7 @@ msgstr ""
msgid "Add Row"
msgstr "افزودن ردیف"
#: frontend/src/pages/ProfileEvaluator.vue:89
#: frontend/src/pages/ProfileEvaluator.vue:96
msgid "Add Slot"
msgstr ""
@@ -426,12 +426,25 @@ msgstr ""
msgid "Appears when the batch URL is shared on socials"
msgstr ""
#: frontend/src/pages/JobApplications.vue:24
msgid "Application"
msgstr "درخواست"
#. Label of a field in the job-opportunity Web Form
#: lms/job/web_form/job_opportunity/job_opportunity.json
msgid "Application Form Link"
msgstr ""
#: frontend/src/pages/JobDetail.vue:51
#: frontend/src/pages/JobApplications.vue:14
#: frontend/src/pages/JobApplications.vue:25
msgid "Applications"
msgstr "درخواست‌ها"
#: frontend/src/pages/JobApplications.vue:290
msgid "Applied On"
msgstr "اعمال شد"
#: frontend/src/pages/JobDetail.vue:62
msgid "Apply"
msgstr "درخواست دادن"
@@ -483,7 +496,7 @@ msgstr ""
#. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch'
#. Label of the assessment (Table) field in DocType 'LMS Batch'
#: frontend/src/components/Modals/AssessmentModal.vue:27
#: frontend/src/components/Modals/BatchStudentProgress.vue:41
#: frontend/src/components/Modals/BatchStudentProgress.vue:43
#: lms/lms/doctype/lms_batch/lms_batch.json lms/templates/assessments.html:11
msgid "Assessment"
msgstr "ارزیابی"
@@ -546,7 +559,7 @@ msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/templates/assignment.html:3
msgid "Assignment"
msgstr "تخصیص"
msgstr ""
#. Label of the assignment_attachment (Attach) field in DocType 'LMS Assignment
#. Submission'
@@ -569,7 +582,7 @@ msgstr ""
msgid "Assignment Title"
msgstr "عنوان تکلیف"
#: frontend/src/components/Modals/AssignmentForm.vue:125
#: frontend/src/components/Modals/AssignmentForm.vue:133
msgid "Assignment created successfully"
msgstr ""
@@ -581,7 +594,7 @@ msgstr "تکلیف برای درس {0} توسط {1} از قبل وجود دار
msgid "Assignment submitted successfully"
msgstr ""
#: frontend/src/components/Modals/AssignmentForm.vue:138
#: frontend/src/components/Modals/AssignmentForm.vue:146
msgid "Assignment updated successfully"
msgstr ""
@@ -622,7 +635,7 @@ msgstr "شرکت کنندگان"
msgid "Attire Preference"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:137
#: frontend/src/pages/ProfileEvaluator.vue:146
msgid "Authorize Google Calendar Access"
msgstr "مجوز دسترسی به تقویم Google"
@@ -637,7 +650,7 @@ msgstr ""
msgid "Auto Recording"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:224
#: frontend/src/pages/ProfileEvaluator.vue:241
msgid "Availability updated successfully"
msgstr ""
@@ -768,6 +781,7 @@ msgstr ""
#. Name of a role
#: lms/lms/doctype/course_evaluator/course_evaluator.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_category/lms_category.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -998,7 +1012,7 @@ msgstr "لینک گواهی"
msgid "Certificate of Completion"
msgstr ""
#: frontend/src/components/Modals/Event.vue:317
#: frontend/src/components/Modals/Event.vue:348
msgid "Certificate saved successfully"
msgstr ""
@@ -1018,7 +1032,7 @@ msgstr ""
#. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace
#: frontend/src/components/AppSidebar.vue:626
#: frontend/src/components/Modals/Event.vue:381
#: frontend/src/components/Modals/Event.vue:412
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58
#: frontend/src/pages/CourseCertification.vue:10
#: frontend/src/pages/CourseCertification.vue:135
@@ -1214,7 +1228,7 @@ msgstr "بستن"
#: lms/job/web_form/job_opportunity/job_opportunity.json
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
msgid "Closed"
msgstr "بسته شده"
msgstr ""
#. Option for the 'Auto Recording' (Select) field in DocType 'LMS Live Class'
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -1640,6 +1654,7 @@ msgstr ""
#: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/course_lesson/course_lesson.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
#: lms/lms/doctype/lms_category/lms_category.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json
@@ -1757,7 +1772,7 @@ msgstr "دوره {0} قبلاً به این دسته اضافه شده است."
#: frontend/src/components/BatchCourses.vue:5
#: frontend/src/components/BatchOverlay.vue:37
#: frontend/src/components/BatchStudents.vue:25
#: frontend/src/components/Modals/BatchStudentProgress.vue:91
#: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127
#: frontend/src/pages/Courses.vue:333 frontend/src/pages/Courses.vue:340
@@ -2143,7 +2158,7 @@ msgstr "گزینه‌های تکراری برای این سوال پیدا شد.
#: lms/lms/doctype/lms_live_class/lms_live_class.json
#: lms/lms/doctype/lms_live_class_participant/lms_live_class_participant.json
msgid "Duration"
msgstr "مدت زمان"
msgstr ""
#. Label of the duration (Data) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:67 lms/lms/doctype/lms_quiz/lms_quiz.json
@@ -2169,7 +2184,7 @@ msgstr "ایمیل"
#: frontend/src/components/DiscussionReplies.vue:35
#: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/components/Settings/Badges.vue:156
#: frontend/src/pages/JobDetail.vue:34 frontend/src/pages/Lesson.vue:42
#: frontend/src/pages/JobDetail.vue:45 frontend/src/pages/Lesson.vue:42
#: frontend/src/pages/Lesson.vue:178 frontend/src/pages/Profile.vue:36
msgid "Edit"
msgstr "ویرایش"
@@ -2236,7 +2251,7 @@ msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:105
#: frontend/src/components/Settings/Members.vue:103
#: lms/templates/signup-form.html:10
#: frontend/src/pages/JobApplications.vue:284 lms/templates/signup-form.html:10
msgid "Email"
msgstr "ایمیل"
@@ -2272,6 +2287,7 @@ msgid "Email Templates deleted successfully"
msgstr ""
#: frontend/src/components/ContactUsEmail.vue:57
#: frontend/src/pages/JobApplications.vue:244
msgid "Email sent successfully"
msgstr "ایمیل با موفقیت ارسال شد"
@@ -2414,6 +2430,14 @@ msgstr ""
msgid "Enter a URL"
msgstr ""
#: frontend/src/pages/JobApplications.vue:122
msgid "Enter email subject"
msgstr "موضوع ایمیل را وارد کنید"
#: frontend/src/pages/JobApplications.vue:128
msgid "Enter reply to email"
msgstr "پاسخ به ایمیل را وارد کنید"
#: frontend/src/components/Modals/ZoomAccountModal.vue:169
msgid "Error creating Zoom Account"
msgstr ""
@@ -2453,7 +2477,7 @@ msgstr ""
#. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:374 lms/lms/workspace/lms/lms.json
#: frontend/src/components/Modals/Event.vue:405 lms/lms/workspace/lms/lms.json
msgid "Evaluation"
msgstr "ارزیابی"
@@ -2478,7 +2502,7 @@ msgstr ""
msgid "Evaluation end date cannot be less than the batch end date."
msgstr ""
#: frontend/src/components/Modals/Event.vue:256
#: frontend/src/components/Modals/Event.vue:287
msgid "Evaluation saved successfully"
msgstr ""
@@ -2586,7 +2610,7 @@ msgstr "بسط دادن"
#. Label of the expected_output (Data) field in DocType 'LMS Test Case'
#. Label of the expected_output (Data) field in DocType 'LMS Test Case
#. Submission'
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:127
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:129
#: lms/lms/doctype/lms_test_case/lms_test_case.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Expected Output"
@@ -2599,7 +2623,7 @@ msgstr ""
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33
#: frontend/src/components/Modals/Event.vue:126
#: frontend/src/components/Modals/Event.vue:144
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date"
msgstr "تاریخ انقضا"
@@ -2626,7 +2650,7 @@ msgstr ""
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:366
#: frontend/src/components/Modals/Event.vue:397
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail"
@@ -2639,7 +2663,7 @@ msgstr ""
#: lms/lms/doctype/lms_programming_exercise_submission/lms_programming_exercise_submission.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Failed"
msgstr "ناموفق"
msgstr ""
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:136
msgid "Failed to create badge assignment: "
@@ -2657,7 +2681,7 @@ msgstr ""
msgid "Failed to send email"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:358
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:364
msgid "Failed to submit. Please try again. {0}"
msgstr ""
@@ -2770,7 +2794,7 @@ msgid "Friday"
msgstr "جمعه"
#. Label of the unavailable_from (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:99
#: frontend/src/pages/ProfileEvaluator.vue:106
#: lms/lms/doctype/course_evaluator/course_evaluator.json
msgid "From"
msgstr "از"
@@ -2782,6 +2806,7 @@ msgstr "از تاریخ"
#. Label of the full_name (Data) field in DocType 'Course Evaluator'
#. Label of the full_name (Data) field in DocType 'LMS Program Member'
#: frontend/src/pages/JobApplications.vue:278
#: lms/lms/doctype/course_evaluator/course_evaluator.json
#: lms/lms/doctype/lms_program_member/lms_program_member.json
#: lms/templates/signup-form.html:5
@@ -3019,7 +3044,7 @@ msgstr "خوشحالم که به شما اطلاع دهم که با موفقیت
msgid "I am looking for a job"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:94
#: frontend/src/pages/ProfileEvaluator.vue:101
msgid "I am unavailable"
msgstr "من در دسترس نیستم"
@@ -3105,7 +3130,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:358
#: frontend/src/components/Modals/Event.vue:389
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -3161,7 +3186,7 @@ msgstr "صنعت"
#. Label of the input (Data) field in DocType 'LMS Test Case'
#. Label of the input (Data) field in DocType 'LMS Test Case Submission'
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:113
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:115
#: lms/lms/doctype/lms_test_case/lms_test_case.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Input"
@@ -3273,7 +3298,7 @@ msgstr ""
#. Label of the issue_date (Date) field in DocType 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28
#: frontend/src/components/Modals/Event.vue:121
#: frontend/src/components/Modals/Event.vue:138
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date"
@@ -3358,8 +3383,8 @@ msgid "Job Title"
msgstr "عنوان شغلی"
#. Label of the jobs (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/JobDetail.vue:10 frontend/src/pages/Jobs.vue:8
#: frontend/src/pages/Jobs.vue:212
#: frontend/src/pages/JobApplications.vue:9 frontend/src/pages/JobDetail.vue:10
#: frontend/src/pages/Jobs.vue:8 frontend/src/pages/Jobs.vue:212
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Jobs"
msgstr "شغل ها"
@@ -3375,7 +3400,7 @@ msgstr "پیوستن"
msgid "Join Call"
msgstr "پیوستن به تماس"
#: frontend/src/components/Modals/Event.vue:74
#: frontend/src/components/Modals/Event.vue:78
msgid "Join Meeting"
msgstr ""
@@ -3883,7 +3908,7 @@ msgstr "وارد شدن"
msgid "Login to Frappe Cloud?"
msgstr "ورود به Frappe Cloud?"
#: frontend/src/pages/JobDetail.vue:63
#: frontend/src/pages/JobDetail.vue:74
msgid "Login to apply"
msgstr ""
@@ -4228,9 +4253,14 @@ msgid "Mentor Request Status Update Template"
msgstr ""
#: frontend/src/components/ContactUsEmail.vue:19
#: frontend/src/pages/JobApplications.vue:132
msgid "Message"
msgstr "پیام"
#: frontend/src/pages/JobApplications.vue:240
msgid "Message is required"
msgstr "پیام الزامی است"
#. Label of the meta_description (Small Text) field in DocType 'LMS Settings'
#: frontend/src/pages/BatchForm.vue:297 frontend/src/pages/CourseForm.vue:303
#: lms/lms/doctype/lms_settings/lms_settings.json
@@ -4351,7 +4381,7 @@ msgstr "یادداشت‌های من"
msgid "My availability"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:127
#: frontend/src/pages/ProfileEvaluator.vue:136
msgid "My calendar"
msgstr "تقویم من"
@@ -4390,7 +4420,7 @@ msgstr ""
msgid "New Job"
msgstr "شغل جدید"
#: lms/job/doctype/lms_job_application/lms_job_application.py:27
#: lms/job/doctype/lms_job_application/lms_job_application.py:31
msgid "New Job Applicant"
msgstr ""
@@ -4818,7 +4848,7 @@ msgstr ""
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:362
#: frontend/src/components/Modals/Event.vue:393
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass"
@@ -4945,7 +4975,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:354
#: frontend/src/components/Modals/Event.vue:385
#: lms/lms/doctype/cohort_join_request/cohort_join_request.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
@@ -4964,7 +4994,7 @@ msgstr "درصد"
msgid "Percentage (e.g. 70%)"
msgstr "درصد (به عنوان مثال 70%)"
#: frontend/src/components/Modals/BatchStudentProgress.vue:44
#: frontend/src/components/Modals/BatchStudentProgress.vue:46
msgid "Percentage/Status"
msgstr "درصد/وضعیت"
@@ -5080,7 +5110,7 @@ msgstr ""
msgid "Please prepare well and be on time for the evaluations."
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:135
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:139
msgid "Please run the code to execute the test cases."
msgstr ""
@@ -5317,11 +5347,11 @@ msgstr "تمرین برنامه‌نویسی"
#: frontend/src/components/Settings/BadgeForm.vue:200
#: frontend/src/components/Settings/Badges.vue:205
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:420
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:426
msgid "Programming Exercise Submission"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:411
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:417
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:298
msgid "Programming Exercise Submissions"
msgstr ""
@@ -5355,7 +5385,7 @@ msgstr ""
#. Label of the progress (Float) field in DocType 'LMS Enrollment'
#. Label of the progress (Int) field in DocType 'LMS Program Member'
#: frontend/src/components/Modals/BatchStudentProgress.vue:94
#: frontend/src/components/Modals/BatchStudentProgress.vue:98
#: frontend/src/components/Modals/CourseProgressSummary.vue:224
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
#: lms/lms/doctype/lms_program_member/lms_program_member.json
@@ -5401,7 +5431,7 @@ msgstr ""
#. Label of the published (Check) field in DocType 'LMS Course'
#. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51
#: frontend/src/components/Modals/Event.vue:108
#: frontend/src/components/Modals/Event.vue:122
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:152
#: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100
@@ -5569,7 +5599,7 @@ msgstr ""
#. Label of the rating (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147
#: frontend/src/components/Modals/Event.vue:86
#: frontend/src/components/Modals/Event.vue:92
#: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -5656,6 +5686,7 @@ msgid "Remove Highlight"
msgstr "حذف هایلایت"
#: frontend/src/components/Modals/AnnouncementModal.vue:27
#: frontend/src/pages/JobApplications.vue:127
msgid "Reply To"
msgstr ""
@@ -5815,8 +5846,8 @@ msgstr "شنبه"
#: frontend/src/components/Controls/CodeEditor.vue:25
#: frontend/src/components/Modals/AssignmentForm.vue:59
#: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:101
#: frontend/src/components/Modals/Event.vue:129
#: frontend/src/components/Modals/Event.vue:115
#: frontend/src/components/Modals/Event.vue:151
#: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
@@ -5955,6 +5986,7 @@ msgid "Select an assignment"
msgstr ""
#: frontend/src/components/ContactUsEmail.vue:33
#: frontend/src/pages/JobApplications.vue:110
msgid "Send"
msgstr "ارسال"
@@ -5962,6 +5994,14 @@ msgstr "ارسال"
msgid "Send Confirmation Email"
msgstr "ارسال ایمیل تأیید"
#: frontend/src/pages/JobApplications.vue:268
msgid "Send Email"
msgstr "ایمیل بفرست"
#: frontend/src/pages/JobApplications.vue:106
msgid "Send Email to {0}"
msgstr "ارسال ایمیل به {0}"
#. Label of the send_calendar_invite_for_evaluations (Check) field in DocType
#. 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
@@ -6122,11 +6162,11 @@ msgstr "پرش کنید"
msgid "Slot Times are overlapping for some schedules."
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:201
#: frontend/src/pages/ProfileEvaluator.vue:218
msgid "Slot added successfully"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:240
#: frontend/src/pages/ProfileEvaluator.vue:257
msgid "Slot deleted successfully"
msgstr ""
@@ -6265,7 +6305,7 @@ msgstr "آمار"
#. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case Submission'
#: frontend/src/components/Modals/Event.vue:91
#: frontend/src/components/Modals/Event.vue:99
#: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6336,10 +6376,12 @@ msgstr "زیر گروه"
#: frontend/src/components/ContactUsEmail.vue:13
#: frontend/src/components/Modals/AnnouncementModal.vue:20
#: frontend/src/components/Modals/EmailTemplateModal.vue:31
#: frontend/src/pages/JobApplications.vue:121
msgid "Subject"
msgstr "موضوع"
#: frontend/src/components/Modals/AnnouncementModal.vue:94
#: frontend/src/pages/JobApplications.vue:237
msgid "Subject is required"
msgstr "موضوع الزامی است"
@@ -6356,7 +6398,7 @@ msgstr ""
msgid "Submission by"
msgstr "ارسال توسط"
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:353
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:359
msgid "Submission saved!"
msgstr ""
@@ -6396,7 +6438,7 @@ msgstr ""
#. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:97
#: frontend/src/components/Modals/Event.vue:106
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary"
msgstr "خلاصه"
@@ -6501,7 +6543,7 @@ msgstr ""
#. Label of the template (Link) field in DocType 'Cohort Web Page'
#. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43
#: frontend/src/components/Modals/Event.vue:112
#: frontend/src/components/Modals/Event.vue:127
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template"
@@ -6542,7 +6584,7 @@ msgstr ""
msgid "Test this Exercise"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:92
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:93
msgid "Test {0}"
msgstr ""
@@ -6840,7 +6882,7 @@ msgid "Title is required"
msgstr "عنوان الزامی است"
#. Label of the unavailable_to (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:112
#: frontend/src/pages/ProfileEvaluator.vue:120
#: lms/lms/doctype/course_evaluator/course_evaluator.json
msgid "To"
msgstr "به"
@@ -6953,7 +6995,7 @@ msgstr "UUID"
msgid "Unavailability"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:259
#: frontend/src/pages/ProfileEvaluator.vue:276
msgid "Unavailability updated successfully"
msgstr ""
@@ -7108,7 +7150,7 @@ msgstr "مقدار"
#. Option for the 'Event' (Select) field in DocType 'LMS Badge'
#: lms/lms/doctype/lms_badge/lms_badge.json
msgid "Value Change"
msgstr "تغییر ارزش"
msgstr ""
#. Label of the video_link (Data) field in DocType 'LMS Course'
#: lms/lms/doctype/lms_course/lms_course.json
@@ -7123,11 +7165,19 @@ msgstr ""
msgid "View"
msgstr "نما"
#: frontend/src/pages/JobDetail.vue:31
msgid "View Applications"
msgstr "مشاهده درخواست‌ها"
#: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67
msgid "View Certificate"
msgstr ""
#: frontend/src/pages/JobApplications.vue:262
msgid "View Resume"
msgstr "مشاهده رزومه"
#: frontend/src/components/BatchFeedback.vue:56
msgid "View all feedback"
msgstr ""
@@ -7146,7 +7196,7 @@ msgstr "دید"
msgid "Visit Batch"
msgstr ""
#: frontend/src/pages/JobDetail.vue:41
#: frontend/src/pages/JobDetail.vue:52
msgid "Visit Website"
msgstr ""
@@ -7355,7 +7405,7 @@ msgstr ""
msgid "You have a live class scheduled tomorrow. Please be prepared and be on time for the session."
msgstr ""
#: lms/job/doctype/lms_job_application/lms_job_application.py:22
#: lms/job/doctype/lms_job_application/lms_job_application.py:26
msgid "You have already applied for this job."
msgstr ""
@@ -7371,7 +7421,7 @@ msgstr ""
msgid "You have already reviewed this course"
msgstr ""
#: frontend/src/pages/JobDetail.vue:57
#: frontend/src/pages/JobDetail.vue:68
msgid "You have applied"
msgstr "شما درخواست داده‌اید"
@@ -7451,7 +7501,7 @@ msgstr ""
msgid "Your Account has been successfully created!"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:119
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:121
msgid "Your Output"
msgstr ""
@@ -7459,7 +7509,7 @@ msgstr ""
msgid "Your batch {0} is starting tomorrow"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:134
#: frontend/src/pages/ProfileEvaluator.vue:143
msgid "Your calendar is set."
msgstr ""
@@ -7538,11 +7588,11 @@ msgstr "و"
msgid "and then 'Add to Home Screen'"
msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125
msgid "applicant"
msgstr "متقاضی"
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125
msgid "applicants"
msgstr "متقاضیان"
@@ -7603,7 +7653,7 @@ msgstr "ارزیابی"
#: frontend/src/pages/Home/Home.vue:101 frontend/src/pages/Home/Home.vue:124
msgid "evaluations"
msgstr ""
msgstr "ارزیابی‌ها"
#: lms/templates/emails/mentor_request_status_update_email.html:4
msgid "has been"
@@ -7623,11 +7673,11 @@ msgstr "درس ها"
#: frontend/src/pages/Home/Home.vue:99 frontend/src/pages/Home/Home.vue:123
msgid "live class"
msgstr ""
msgstr "کلاس زنده"
#: frontend/src/pages/Home/Home.vue:99 frontend/src/pages/Home/Home.vue:123
msgid "live classes"
msgstr ""
msgstr "کلاس‌های زنده"
#: frontend/src/pages/Programs/Programs.vue:42
#: frontend/src/pages/Programs/StudentPrograms.vue:36

File diff suppressed because it is too large Load Diff

View File

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

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2025-10-31 16:04+0000\n"
"PO-Revision-Date: 2025-11-02 19:07\n"
"POT-Creation-Date: 2025-11-07 16:04+0000\n"
"PO-Revision-Date: 2025-11-11 11:49\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Hungarian\n"
"MIME-Version: 1.0\n"
@@ -176,7 +176,7 @@ msgstr ""
msgid "Add Row"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:89
#: frontend/src/pages/ProfileEvaluator.vue:96
msgid "Add Slot"
msgstr ""
@@ -426,12 +426,25 @@ msgstr ""
msgid "Appears when the batch URL is shared on socials"
msgstr ""
#: frontend/src/pages/JobApplications.vue:24
msgid "Application"
msgstr ""
#. Label of a field in the job-opportunity Web Form
#: lms/job/web_form/job_opportunity/job_opportunity.json
msgid "Application Form Link"
msgstr ""
#: frontend/src/pages/JobDetail.vue:51
#: frontend/src/pages/JobApplications.vue:14
#: frontend/src/pages/JobApplications.vue:25
msgid "Applications"
msgstr ""
#: frontend/src/pages/JobApplications.vue:290
msgid "Applied On"
msgstr "Alkalmazva"
#: frontend/src/pages/JobDetail.vue:62
msgid "Apply"
msgstr "Alkalmaz"
@@ -483,7 +496,7 @@ msgstr ""
#. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch'
#. Label of the assessment (Table) field in DocType 'LMS Batch'
#: frontend/src/components/Modals/AssessmentModal.vue:27
#: frontend/src/components/Modals/BatchStudentProgress.vue:41
#: frontend/src/components/Modals/BatchStudentProgress.vue:43
#: lms/lms/doctype/lms_batch/lms_batch.json lms/templates/assessments.html:11
msgid "Assessment"
msgstr ""
@@ -569,7 +582,7 @@ msgstr ""
msgid "Assignment Title"
msgstr ""
#: frontend/src/components/Modals/AssignmentForm.vue:125
#: frontend/src/components/Modals/AssignmentForm.vue:133
msgid "Assignment created successfully"
msgstr ""
@@ -581,7 +594,7 @@ msgstr ""
msgid "Assignment submitted successfully"
msgstr ""
#: frontend/src/components/Modals/AssignmentForm.vue:138
#: frontend/src/components/Modals/AssignmentForm.vue:146
msgid "Assignment updated successfully"
msgstr ""
@@ -622,7 +635,7 @@ msgstr ""
msgid "Attire Preference"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:137
#: frontend/src/pages/ProfileEvaluator.vue:146
msgid "Authorize Google Calendar Access"
msgstr ""
@@ -637,7 +650,7 @@ msgstr ""
msgid "Auto Recording"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:224
#: frontend/src/pages/ProfileEvaluator.vue:241
msgid "Availability updated successfully"
msgstr ""
@@ -768,6 +781,7 @@ msgstr ""
#. Name of a role
#: lms/lms/doctype/course_evaluator/course_evaluator.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_category/lms_category.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -998,7 +1012,7 @@ msgstr ""
msgid "Certificate of Completion"
msgstr ""
#: frontend/src/components/Modals/Event.vue:317
#: frontend/src/components/Modals/Event.vue:348
msgid "Certificate saved successfully"
msgstr ""
@@ -1018,7 +1032,7 @@ msgstr ""
#. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace
#: frontend/src/components/AppSidebar.vue:626
#: frontend/src/components/Modals/Event.vue:381
#: frontend/src/components/Modals/Event.vue:412
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58
#: frontend/src/pages/CourseCertification.vue:10
#: frontend/src/pages/CourseCertification.vue:135
@@ -1640,6 +1654,7 @@ msgstr ""
#: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/course_lesson/course_lesson.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
#: lms/lms/doctype/lms_category/lms_category.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json
@@ -1757,7 +1772,7 @@ msgstr ""
#: frontend/src/components/BatchCourses.vue:5
#: frontend/src/components/BatchOverlay.vue:37
#: frontend/src/components/BatchStudents.vue:25
#: frontend/src/components/Modals/BatchStudentProgress.vue:91
#: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127
#: frontend/src/pages/Courses.vue:333 frontend/src/pages/Courses.vue:340
@@ -2169,7 +2184,7 @@ msgstr ""
#: frontend/src/components/DiscussionReplies.vue:35
#: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/components/Settings/Badges.vue:156
#: frontend/src/pages/JobDetail.vue:34 frontend/src/pages/Lesson.vue:42
#: frontend/src/pages/JobDetail.vue:45 frontend/src/pages/Lesson.vue:42
#: frontend/src/pages/Lesson.vue:178 frontend/src/pages/Profile.vue:36
msgid "Edit"
msgstr ""
@@ -2236,7 +2251,7 @@ msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:105
#: frontend/src/components/Settings/Members.vue:103
#: lms/templates/signup-form.html:10
#: frontend/src/pages/JobApplications.vue:284 lms/templates/signup-form.html:10
msgid "Email"
msgstr "E-mail"
@@ -2272,6 +2287,7 @@ msgid "Email Templates deleted successfully"
msgstr ""
#: frontend/src/components/ContactUsEmail.vue:57
#: frontend/src/pages/JobApplications.vue:244
msgid "Email sent successfully"
msgstr "Az e-mail sikeresen elküldve"
@@ -2414,6 +2430,14 @@ msgstr ""
msgid "Enter a URL"
msgstr ""
#: frontend/src/pages/JobApplications.vue:122
msgid "Enter email subject"
msgstr ""
#: frontend/src/pages/JobApplications.vue:128
msgid "Enter reply to email"
msgstr ""
#: frontend/src/components/Modals/ZoomAccountModal.vue:169
msgid "Error creating Zoom Account"
msgstr ""
@@ -2453,7 +2477,7 @@ msgstr ""
#. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:374 lms/lms/workspace/lms/lms.json
#: frontend/src/components/Modals/Event.vue:405 lms/lms/workspace/lms/lms.json
msgid "Evaluation"
msgstr ""
@@ -2478,7 +2502,7 @@ msgstr ""
msgid "Evaluation end date cannot be less than the batch end date."
msgstr ""
#: frontend/src/components/Modals/Event.vue:256
#: frontend/src/components/Modals/Event.vue:287
msgid "Evaluation saved successfully"
msgstr ""
@@ -2586,7 +2610,7 @@ msgstr "Kiterjed"
#. Label of the expected_output (Data) field in DocType 'LMS Test Case'
#. Label of the expected_output (Data) field in DocType 'LMS Test Case
#. Submission'
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:127
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:129
#: lms/lms/doctype/lms_test_case/lms_test_case.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Expected Output"
@@ -2599,7 +2623,7 @@ msgstr ""
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33
#: frontend/src/components/Modals/Event.vue:126
#: frontend/src/components/Modals/Event.vue:144
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date"
msgstr ""
@@ -2626,7 +2650,7 @@ msgstr ""
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:366
#: frontend/src/components/Modals/Event.vue:397
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail"
@@ -2657,7 +2681,7 @@ msgstr ""
msgid "Failed to send email"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:358
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:364
msgid "Failed to submit. Please try again. {0}"
msgstr ""
@@ -2770,7 +2794,7 @@ msgid "Friday"
msgstr "Péntek"
#. Label of the unavailable_from (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:99
#: frontend/src/pages/ProfileEvaluator.vue:106
#: lms/lms/doctype/course_evaluator/course_evaluator.json
msgid "From"
msgstr ""
@@ -2782,6 +2806,7 @@ msgstr ""
#. Label of the full_name (Data) field in DocType 'Course Evaluator'
#. Label of the full_name (Data) field in DocType 'LMS Program Member'
#: frontend/src/pages/JobApplications.vue:278
#: lms/lms/doctype/course_evaluator/course_evaluator.json
#: lms/lms/doctype/lms_program_member/lms_program_member.json
#: lms/templates/signup-form.html:5
@@ -3019,7 +3044,7 @@ msgstr ""
msgid "I am looking for a job"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:94
#: frontend/src/pages/ProfileEvaluator.vue:101
msgid "I am unavailable"
msgstr ""
@@ -3105,7 +3130,7 @@ msgstr "Kép: Sérült adatfolyam"
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:358
#: frontend/src/components/Modals/Event.vue:389
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -3161,7 +3186,7 @@ msgstr ""
#. Label of the input (Data) field in DocType 'LMS Test Case'
#. Label of the input (Data) field in DocType 'LMS Test Case Submission'
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:113
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:115
#: lms/lms/doctype/lms_test_case/lms_test_case.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Input"
@@ -3273,7 +3298,7 @@ msgstr ""
#. Label of the issue_date (Date) field in DocType 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28
#: frontend/src/components/Modals/Event.vue:121
#: frontend/src/components/Modals/Event.vue:138
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date"
@@ -3358,8 +3383,8 @@ msgid "Job Title"
msgstr "Beosztás"
#. Label of the jobs (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/JobDetail.vue:10 frontend/src/pages/Jobs.vue:8
#: frontend/src/pages/Jobs.vue:212
#: frontend/src/pages/JobApplications.vue:9 frontend/src/pages/JobDetail.vue:10
#: frontend/src/pages/Jobs.vue:8 frontend/src/pages/Jobs.vue:212
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Jobs"
msgstr ""
@@ -3375,7 +3400,7 @@ msgstr ""
msgid "Join Call"
msgstr ""
#: frontend/src/components/Modals/Event.vue:74
#: frontend/src/components/Modals/Event.vue:78
msgid "Join Meeting"
msgstr ""
@@ -3883,7 +3908,7 @@ msgstr "Bejelentkezés"
msgid "Login to Frappe Cloud?"
msgstr "Bejelentkezés a Frappe Cloudba?"
#: frontend/src/pages/JobDetail.vue:63
#: frontend/src/pages/JobDetail.vue:74
msgid "Login to apply"
msgstr ""
@@ -4228,9 +4253,14 @@ msgid "Mentor Request Status Update Template"
msgstr ""
#: frontend/src/components/ContactUsEmail.vue:19
#: frontend/src/pages/JobApplications.vue:132
msgid "Message"
msgstr "Üzenet"
#: frontend/src/pages/JobApplications.vue:240
msgid "Message is required"
msgstr ""
#. Label of the meta_description (Small Text) field in DocType 'LMS Settings'
#: frontend/src/pages/BatchForm.vue:297 frontend/src/pages/CourseForm.vue:303
#: lms/lms/doctype/lms_settings/lms_settings.json
@@ -4351,7 +4381,7 @@ msgstr ""
msgid "My availability"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:127
#: frontend/src/pages/ProfileEvaluator.vue:136
msgid "My calendar"
msgstr ""
@@ -4390,7 +4420,7 @@ msgstr ""
msgid "New Job"
msgstr ""
#: lms/job/doctype/lms_job_application/lms_job_application.py:27
#: lms/job/doctype/lms_job_application/lms_job_application.py:31
msgid "New Job Applicant"
msgstr ""
@@ -4818,7 +4848,7 @@ msgstr ""
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:362
#: frontend/src/components/Modals/Event.vue:393
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass"
@@ -4945,7 +4975,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:354
#: frontend/src/components/Modals/Event.vue:385
#: lms/lms/doctype/cohort_join_request/cohort_join_request.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
@@ -4964,7 +4994,7 @@ msgstr ""
msgid "Percentage (e.g. 70%)"
msgstr ""
#: frontend/src/components/Modals/BatchStudentProgress.vue:44
#: frontend/src/components/Modals/BatchStudentProgress.vue:46
msgid "Percentage/Status"
msgstr ""
@@ -5080,7 +5110,7 @@ msgstr ""
msgid "Please prepare well and be on time for the evaluations."
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:135
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:139
msgid "Please run the code to execute the test cases."
msgstr ""
@@ -5317,11 +5347,11 @@ msgstr ""
#: frontend/src/components/Settings/BadgeForm.vue:200
#: frontend/src/components/Settings/Badges.vue:205
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:420
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:426
msgid "Programming Exercise Submission"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:411
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:417
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:298
msgid "Programming Exercise Submissions"
msgstr ""
@@ -5355,7 +5385,7 @@ msgstr ""
#. Label of the progress (Float) field in DocType 'LMS Enrollment'
#. Label of the progress (Int) field in DocType 'LMS Program Member'
#: frontend/src/components/Modals/BatchStudentProgress.vue:94
#: frontend/src/components/Modals/BatchStudentProgress.vue:98
#: frontend/src/components/Modals/CourseProgressSummary.vue:224
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
#: lms/lms/doctype/lms_program_member/lms_program_member.json
@@ -5401,7 +5431,7 @@ msgstr ""
#. Label of the published (Check) field in DocType 'LMS Course'
#. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51
#: frontend/src/components/Modals/Event.vue:108
#: frontend/src/components/Modals/Event.vue:122
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:152
#: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100
@@ -5569,7 +5599,7 @@ msgstr ""
#. Label of the rating (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147
#: frontend/src/components/Modals/Event.vue:86
#: frontend/src/components/Modals/Event.vue:92
#: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -5656,6 +5686,7 @@ msgid "Remove Highlight"
msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:27
#: frontend/src/pages/JobApplications.vue:127
msgid "Reply To"
msgstr ""
@@ -5815,8 +5846,8 @@ msgstr "Szombat"
#: frontend/src/components/Controls/CodeEditor.vue:25
#: frontend/src/components/Modals/AssignmentForm.vue:59
#: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:101
#: frontend/src/components/Modals/Event.vue:129
#: frontend/src/components/Modals/Event.vue:115
#: frontend/src/components/Modals/Event.vue:151
#: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
@@ -5955,6 +5986,7 @@ msgid "Select an assignment"
msgstr ""
#: frontend/src/components/ContactUsEmail.vue:33
#: frontend/src/pages/JobApplications.vue:110
msgid "Send"
msgstr ""
@@ -5962,6 +5994,14 @@ msgstr ""
msgid "Send Confirmation Email"
msgstr ""
#: frontend/src/pages/JobApplications.vue:268
msgid "Send Email"
msgstr ""
#: frontend/src/pages/JobApplications.vue:106
msgid "Send Email to {0}"
msgstr ""
#. Label of the send_calendar_invite_for_evaluations (Check) field in DocType
#. 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
@@ -6122,11 +6162,11 @@ msgstr "Ugrás"
msgid "Slot Times are overlapping for some schedules."
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:201
#: frontend/src/pages/ProfileEvaluator.vue:218
msgid "Slot added successfully"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:240
#: frontend/src/pages/ProfileEvaluator.vue:257
msgid "Slot deleted successfully"
msgstr ""
@@ -6265,7 +6305,7 @@ msgstr "Statisztikák"
#. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case Submission'
#: frontend/src/components/Modals/Event.vue:91
#: frontend/src/components/Modals/Event.vue:99
#: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6336,10 +6376,12 @@ msgstr ""
#: frontend/src/components/ContactUsEmail.vue:13
#: frontend/src/components/Modals/AnnouncementModal.vue:20
#: frontend/src/components/Modals/EmailTemplateModal.vue:31
#: frontend/src/pages/JobApplications.vue:121
msgid "Subject"
msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:94
#: frontend/src/pages/JobApplications.vue:237
msgid "Subject is required"
msgstr ""
@@ -6356,7 +6398,7 @@ msgstr ""
msgid "Submission by"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:353
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:359
msgid "Submission saved!"
msgstr ""
@@ -6396,7 +6438,7 @@ msgstr ""
#. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:97
#: frontend/src/components/Modals/Event.vue:106
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary"
msgstr "Összefoglalás"
@@ -6501,7 +6543,7 @@ msgstr ""
#. Label of the template (Link) field in DocType 'Cohort Web Page'
#. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43
#: frontend/src/components/Modals/Event.vue:112
#: frontend/src/components/Modals/Event.vue:127
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template"
@@ -6542,7 +6584,7 @@ msgstr ""
msgid "Test this Exercise"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:92
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:93
msgid "Test {0}"
msgstr ""
@@ -6840,7 +6882,7 @@ msgid "Title is required"
msgstr ""
#. Label of the unavailable_to (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:112
#: frontend/src/pages/ProfileEvaluator.vue:120
#: lms/lms/doctype/course_evaluator/course_evaluator.json
msgid "To"
msgstr ""
@@ -6953,7 +6995,7 @@ msgstr ""
msgid "Unavailability"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:259
#: frontend/src/pages/ProfileEvaluator.vue:276
msgid "Unavailability updated successfully"
msgstr ""
@@ -7123,11 +7165,19 @@ msgstr ""
msgid "View"
msgstr ""
#: frontend/src/pages/JobDetail.vue:31
msgid "View Applications"
msgstr ""
#: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67
msgid "View Certificate"
msgstr ""
#: frontend/src/pages/JobApplications.vue:262
msgid "View Resume"
msgstr ""
#: frontend/src/components/BatchFeedback.vue:56
msgid "View all feedback"
msgstr ""
@@ -7146,7 +7196,7 @@ msgstr "Láthatóság"
msgid "Visit Batch"
msgstr ""
#: frontend/src/pages/JobDetail.vue:41
#: frontend/src/pages/JobDetail.vue:52
msgid "Visit Website"
msgstr ""
@@ -7355,7 +7405,7 @@ msgstr ""
msgid "You have a live class scheduled tomorrow. Please be prepared and be on time for the session."
msgstr ""
#: lms/job/doctype/lms_job_application/lms_job_application.py:22
#: lms/job/doctype/lms_job_application/lms_job_application.py:26
msgid "You have already applied for this job."
msgstr ""
@@ -7371,7 +7421,7 @@ msgstr ""
msgid "You have already reviewed this course"
msgstr ""
#: frontend/src/pages/JobDetail.vue:57
#: frontend/src/pages/JobDetail.vue:68
msgid "You have applied"
msgstr ""
@@ -7451,7 +7501,7 @@ msgstr ""
msgid "Your Account has been successfully created!"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:119
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:121
msgid "Your Output"
msgstr ""
@@ -7459,7 +7509,7 @@ msgstr ""
msgid "Your batch {0} is starting tomorrow"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:134
#: frontend/src/pages/ProfileEvaluator.vue:143
msgid "Your calendar is set."
msgstr ""
@@ -7538,11 +7588,11 @@ msgstr ""
msgid "and then 'Add to Home Screen'"
msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125
msgid "applicant"
msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125
msgid "applicants"
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: 2025-10-31 16:04+0000\n"
"PO-Revision-Date: 2025-11-08 08:35\n"
"POT-Creation-Date: 2025-11-07 16:04+0000\n"
"PO-Revision-Date: 2025-11-11 11:49\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Indonesian\n"
"MIME-Version: 1.0\n"
@@ -148,7 +148,7 @@ msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:131
#: frontend/src/pages/Programs/ProgramForm.vue:180
msgid "Add"
msgstr "Tambah"
msgstr "Tambahkan"
#: frontend/src/components/CourseOutline.vue:18
#: frontend/src/components/CreateOutline.vue:18
@@ -176,7 +176,7 @@ msgstr ""
msgid "Add Row"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:89
#: frontend/src/pages/ProfileEvaluator.vue:96
msgid "Add Slot"
msgstr ""
@@ -286,11 +286,11 @@ msgstr "Alamat"
#: frontend/src/pages/Billing.vue:74
msgid "Address Line 1"
msgstr "Baris Alamat 1"
msgstr ""
#: frontend/src/pages/Billing.vue:78
msgid "Address Line 2"
msgstr "Baris Alamat 2"
msgstr ""
#. Option for the 'Role' (Select) field in DocType 'Cohort Staff'
#. Option for the 'Required Role' (Select) field in DocType 'Cohort Web Page'
@@ -426,12 +426,25 @@ msgstr ""
msgid "Appears when the batch URL is shared on socials"
msgstr ""
#: frontend/src/pages/JobApplications.vue:24
msgid "Application"
msgstr ""
#. Label of a field in the job-opportunity Web Form
#: lms/job/web_form/job_opportunity/job_opportunity.json
msgid "Application Form Link"
msgstr ""
#: frontend/src/pages/JobDetail.vue:51
#: frontend/src/pages/JobApplications.vue:14
#: frontend/src/pages/JobApplications.vue:25
msgid "Applications"
msgstr ""
#: frontend/src/pages/JobApplications.vue:290
msgid "Applied On"
msgstr ""
#: frontend/src/pages/JobDetail.vue:62
msgid "Apply"
msgstr ""
@@ -483,7 +496,7 @@ msgstr ""
#. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch'
#. Label of the assessment (Table) field in DocType 'LMS Batch'
#: frontend/src/components/Modals/AssessmentModal.vue:27
#: frontend/src/components/Modals/BatchStudentProgress.vue:41
#: frontend/src/components/Modals/BatchStudentProgress.vue:43
#: lms/lms/doctype/lms_batch/lms_batch.json lms/templates/assessments.html:11
msgid "Assessment"
msgstr ""
@@ -569,7 +582,7 @@ msgstr ""
msgid "Assignment Title"
msgstr ""
#: frontend/src/components/Modals/AssignmentForm.vue:125
#: frontend/src/components/Modals/AssignmentForm.vue:133
msgid "Assignment created successfully"
msgstr ""
@@ -581,7 +594,7 @@ msgstr ""
msgid "Assignment submitted successfully"
msgstr ""
#: frontend/src/components/Modals/AssignmentForm.vue:138
#: frontend/src/components/Modals/AssignmentForm.vue:146
msgid "Assignment updated successfully"
msgstr ""
@@ -622,7 +635,7 @@ msgstr "Peserta"
msgid "Attire Preference"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:137
#: frontend/src/pages/ProfileEvaluator.vue:146
msgid "Authorize Google Calendar Access"
msgstr ""
@@ -637,7 +650,7 @@ msgstr ""
msgid "Auto Recording"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:224
#: frontend/src/pages/ProfileEvaluator.vue:241
msgid "Availability updated successfully"
msgstr ""
@@ -768,6 +781,7 @@ msgstr ""
#. Name of a role
#: lms/lms/doctype/course_evaluator/course_evaluator.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_category/lms_category.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -886,7 +900,7 @@ msgstr ""
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json
msgid "Blue"
msgstr "Biru"
msgstr ""
#. Label of the body (Markdown Editor) field in DocType 'Course Lesson'
#: lms/lms/doctype/course_lesson/course_lesson.json
@@ -998,7 +1012,7 @@ msgstr ""
msgid "Certificate of Completion"
msgstr ""
#: frontend/src/components/Modals/Event.vue:317
#: frontend/src/components/Modals/Event.vue:348
msgid "Certificate saved successfully"
msgstr ""
@@ -1018,7 +1032,7 @@ msgstr ""
#. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace
#: frontend/src/components/AppSidebar.vue:626
#: frontend/src/components/Modals/Event.vue:381
#: frontend/src/components/Modals/Event.vue:412
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58
#: frontend/src/pages/CourseCertification.vue:10
#: frontend/src/pages/CourseCertification.vue:135
@@ -1168,7 +1182,7 @@ msgstr ""
#: lms/fixtures/custom_field.json
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "City"
msgstr "Kota"
msgstr ""
#: lms/templates/emails/live_class_reminder.html:10
msgid "Class:"
@@ -1214,7 +1228,7 @@ msgstr "Tutup"
#: lms/job/web_form/job_opportunity/job_opportunity.json
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
msgid "Closed"
msgstr "Tertutup"
msgstr ""
#. Option for the 'Auto Recording' (Select) field in DocType 'LMS Live Class'
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -1361,7 +1375,7 @@ msgstr ""
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/job/web_form/job_opportunity/job_opportunity.json
msgid "Company Name"
msgstr "Nama Perusahaan"
msgstr ""
#. Label of the company_type (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
@@ -1385,7 +1399,7 @@ msgstr ""
#: lms/lms/doctype/lms_course_progress/lms_course_progress.json
#: lms/lms/widgets/CourseCard.html:75 lms/templates/reviews.html:48
msgid "Complete"
msgstr "Selesai"
msgstr "Lengkap"
#: lms/templates/emails/lms_invite_request_approved.html:7
msgid "Complete Sign Up"
@@ -1640,6 +1654,7 @@ msgstr ""
#: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/course_lesson/course_lesson.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
#: lms/lms/doctype/lms_category/lms_category.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json
@@ -1757,7 +1772,7 @@ msgstr ""
#: frontend/src/components/BatchCourses.vue:5
#: frontend/src/components/BatchOverlay.vue:37
#: frontend/src/components/BatchStudents.vue:25
#: frontend/src/components/Modals/BatchStudentProgress.vue:91
#: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127
#: frontend/src/pages/Courses.vue:333 frontend/src/pages/Courses.vue:340
@@ -1888,7 +1903,7 @@ msgstr ""
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Currency"
msgstr "Mata Uang"
msgstr "Mata uang"
#. Label of the current_lesson (Link) field in DocType 'LMS Enrollment'
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
@@ -1932,7 +1947,7 @@ msgstr "Cyan"
#. Label of the show_dashboard (Check) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Dashboard"
msgstr ""
msgstr "Dasbor"
#. Label of the date (Date) field in DocType 'LMS Batch Timetable'
#. Label of the date (Date) field in DocType 'LMS Certificate Evaluation'
@@ -1971,7 +1986,7 @@ msgstr "Hari"
#: lms/templates/emails/mentor_request_creation_email.html:2
#: lms/templates/emails/mentor_request_status_update_email.html:2
msgid "Dear"
msgstr "Yth."
msgstr "Kepada Yth."
#: lms/templates/emails/batch_confirmation.html:2
#: lms/templates/emails/batch_start_reminder.html:2
@@ -2143,7 +2158,7 @@ msgstr ""
#: lms/lms/doctype/lms_live_class/lms_live_class.json
#: lms/lms/doctype/lms_live_class_participant/lms_live_class_participant.json
msgid "Duration"
msgstr "Lamanya"
msgstr ""
#. Label of the duration (Data) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:67 lms/lms/doctype/lms_quiz/lms_quiz.json
@@ -2169,7 +2184,7 @@ msgstr ""
#: frontend/src/components/DiscussionReplies.vue:35
#: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/components/Settings/Badges.vue:156
#: frontend/src/pages/JobDetail.vue:34 frontend/src/pages/Lesson.vue:42
#: frontend/src/pages/JobDetail.vue:45 frontend/src/pages/Lesson.vue:42
#: frontend/src/pages/Lesson.vue:178 frontend/src/pages/Profile.vue:36
msgid "Edit"
msgstr ""
@@ -2236,7 +2251,7 @@ msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:105
#: frontend/src/components/Settings/Members.vue:103
#: lms/templates/signup-form.html:10
#: frontend/src/pages/JobApplications.vue:284 lms/templates/signup-form.html:10
msgid "Email"
msgstr "Surel"
@@ -2272,6 +2287,7 @@ msgid "Email Templates deleted successfully"
msgstr ""
#: frontend/src/components/ContactUsEmail.vue:57
#: frontend/src/pages/JobApplications.vue:244
msgid "Email sent successfully"
msgstr "Email berhasil dikirim"
@@ -2323,7 +2339,7 @@ msgstr ""
#. Label of the end_date (Date) field in DocType 'LMS Batch'
#: lms/lms/doctype/cohort/cohort.json lms/lms/doctype/lms_batch/lms_batch.json
msgid "End Date"
msgstr "Tanggal Akhir"
msgstr "Tanggal Berakhir"
#. Label of the end_date (Date) field in DocType 'Education Detail'
#: lms/lms/doctype/education_detail/education_detail.json
@@ -2414,6 +2430,14 @@ msgstr ""
msgid "Enter a URL"
msgstr ""
#: frontend/src/pages/JobApplications.vue:122
msgid "Enter email subject"
msgstr ""
#: frontend/src/pages/JobApplications.vue:128
msgid "Enter reply to email"
msgstr ""
#: frontend/src/components/Modals/ZoomAccountModal.vue:169
msgid "Error creating Zoom Account"
msgstr ""
@@ -2453,7 +2477,7 @@ msgstr ""
#. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:374 lms/lms/workspace/lms/lms.json
#: frontend/src/components/Modals/Event.vue:405 lms/lms/workspace/lms/lms.json
msgid "Evaluation"
msgstr "Evaluasi"
@@ -2478,7 +2502,7 @@ msgstr ""
msgid "Evaluation end date cannot be less than the batch end date."
msgstr ""
#: frontend/src/components/Modals/Event.vue:256
#: frontend/src/components/Modals/Event.vue:287
msgid "Evaluation saved successfully"
msgstr ""
@@ -2586,7 +2610,7 @@ msgstr "Memperluas"
#. Label of the expected_output (Data) field in DocType 'LMS Test Case'
#. Label of the expected_output (Data) field in DocType 'LMS Test Case
#. Submission'
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:127
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:129
#: lms/lms/doctype/lms_test_case/lms_test_case.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Expected Output"
@@ -2599,7 +2623,7 @@ msgstr ""
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33
#: frontend/src/components/Modals/Event.vue:126
#: frontend/src/components/Modals/Event.vue:144
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date"
msgstr ""
@@ -2626,7 +2650,7 @@ msgstr ""
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:366
#: frontend/src/components/Modals/Event.vue:397
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail"
@@ -2639,7 +2663,7 @@ msgstr ""
#: lms/lms/doctype/lms_programming_exercise_submission/lms_programming_exercise_submission.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Failed"
msgstr "Gagal"
msgstr ""
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:136
msgid "Failed to create badge assignment: "
@@ -2657,7 +2681,7 @@ msgstr ""
msgid "Failed to send email"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:358
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:364
msgid "Failed to submit. Please try again. {0}"
msgstr ""
@@ -2682,7 +2706,7 @@ msgstr "Unggulan"
#: frontend/src/pages/Batch.vue:146
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
msgid "Feedback"
msgstr "Umpan balik"
msgstr ""
#: frontend/src/components/Assignment.vue:64
msgid "Feel free to make edits to your submission if needed."
@@ -2770,7 +2794,7 @@ msgid "Friday"
msgstr ""
#. Label of the unavailable_from (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:99
#: frontend/src/pages/ProfileEvaluator.vue:106
#: lms/lms/doctype/course_evaluator/course_evaluator.json
msgid "From"
msgstr "Dari"
@@ -2782,6 +2806,7 @@ msgstr "Dari Tanggal"
#. Label of the full_name (Data) field in DocType 'Course Evaluator'
#. Label of the full_name (Data) field in DocType 'LMS Program Member'
#: frontend/src/pages/JobApplications.vue:278
#: lms/lms/doctype/course_evaluator/course_evaluator.json
#: lms/lms/doctype/lms_program_member/lms_program_member.json
#: lms/templates/signup-form.html:5
@@ -2910,7 +2935,7 @@ msgstr "Abu-abu"
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json
msgid "Green"
msgstr "Hijau"
msgstr ""
#: lms/templates/signup-form.html:56
msgid "Have an account? Login"
@@ -3019,7 +3044,7 @@ msgstr ""
msgid "I am looking for a job"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:94
#: frontend/src/pages/ProfileEvaluator.vue:101
msgid "I am unavailable"
msgstr ""
@@ -3105,7 +3130,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:358
#: frontend/src/components/Modals/Event.vue:389
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -3161,7 +3186,7 @@ msgstr ""
#. Label of the input (Data) field in DocType 'LMS Test Case'
#. Label of the input (Data) field in DocType 'LMS Test Case Submission'
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:113
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:115
#: lms/lms/doctype/lms_test_case/lms_test_case.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Input"
@@ -3273,7 +3298,7 @@ msgstr ""
#. Label of the issue_date (Date) field in DocType 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28
#: frontend/src/components/Modals/Event.vue:121
#: frontend/src/components/Modals/Event.vue:138
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date"
@@ -3358,8 +3383,8 @@ msgid "Job Title"
msgstr ""
#. Label of the jobs (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/JobDetail.vue:10 frontend/src/pages/Jobs.vue:8
#: frontend/src/pages/Jobs.vue:212
#: frontend/src/pages/JobApplications.vue:9 frontend/src/pages/JobDetail.vue:10
#: frontend/src/pages/Jobs.vue:8 frontend/src/pages/Jobs.vue:212
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Jobs"
msgstr "Pekerjaan"
@@ -3375,7 +3400,7 @@ msgstr ""
msgid "Join Call"
msgstr ""
#: frontend/src/components/Modals/Event.vue:74
#: frontend/src/components/Modals/Event.vue:78
msgid "Join Meeting"
msgstr ""
@@ -3866,7 +3891,7 @@ msgstr "[Daerah"
#: lms/lms/doctype/education_detail/education_detail.json
#: lms/lms/doctype/work_experience/work_experience.json
msgid "Location"
msgstr "Lokasi"
msgstr ""
#. Label of the location_preference (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
@@ -3883,7 +3908,7 @@ msgstr "Masuk"
msgid "Login to Frappe Cloud?"
msgstr ""
#: frontend/src/pages/JobDetail.vue:63
#: frontend/src/pages/JobDetail.vue:74
msgid "Login to apply"
msgstr ""
@@ -4228,9 +4253,14 @@ msgid "Mentor Request Status Update Template"
msgstr ""
#: frontend/src/components/ContactUsEmail.vue:19
#: frontend/src/pages/JobApplications.vue:132
msgid "Message"
msgstr "Pesan"
#: frontend/src/pages/JobApplications.vue:240
msgid "Message is required"
msgstr ""
#. Label of the meta_description (Small Text) field in DocType 'LMS Settings'
#: frontend/src/pages/BatchForm.vue:297 frontend/src/pages/CourseForm.vue:303
#: lms/lms/doctype/lms_settings/lms_settings.json
@@ -4351,7 +4381,7 @@ msgstr ""
msgid "My availability"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:127
#: frontend/src/pages/ProfileEvaluator.vue:136
msgid "My calendar"
msgstr ""
@@ -4390,7 +4420,7 @@ msgstr ""
msgid "New Job"
msgstr ""
#: lms/job/doctype/lms_job_application/lms_job_application.py:27
#: lms/job/doctype/lms_job_application/lms_job_application.py:31
msgid "New Job Applicant"
msgstr ""
@@ -4818,7 +4848,7 @@ msgstr ""
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:362
#: frontend/src/components/Modals/Event.vue:393
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass"
@@ -4945,12 +4975,12 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:354
#: frontend/src/components/Modals/Event.vue:385
#: lms/lms/doctype/cohort_join_request/cohort_join_request.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
msgid "Pending"
msgstr "Menunggu"
msgstr ""
#. Label of the percentage (Int) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/QuizSubmission.vue:44
@@ -4964,7 +4994,7 @@ msgstr ""
msgid "Percentage (e.g. 70%)"
msgstr ""
#: frontend/src/components/Modals/BatchStudentProgress.vue:44
#: frontend/src/components/Modals/BatchStudentProgress.vue:46
msgid "Percentage/Status"
msgstr ""
@@ -5080,7 +5110,7 @@ msgstr ""
msgid "Please prepare well and be on time for the evaluations."
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:135
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:139
msgid "Please run the code to execute the test cases."
msgstr ""
@@ -5172,7 +5202,7 @@ msgstr ""
#: frontend/src/pages/Billing.vue:95
msgid "Postal Code"
msgstr "kode Pos"
msgstr ""
#: frontend/src/components/AppSidebar.vue:125
msgid "Powered by Learning"
@@ -5317,11 +5347,11 @@ msgstr ""
#: frontend/src/components/Settings/BadgeForm.vue:200
#: frontend/src/components/Settings/Badges.vue:205
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:420
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:426
msgid "Programming Exercise Submission"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:411
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:417
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:298
msgid "Programming Exercise Submissions"
msgstr ""
@@ -5355,12 +5385,12 @@ msgstr ""
#. Label of the progress (Float) field in DocType 'LMS Enrollment'
#. Label of the progress (Int) field in DocType 'LMS Program Member'
#: frontend/src/components/Modals/BatchStudentProgress.vue:94
#: frontend/src/components/Modals/BatchStudentProgress.vue:98
#: frontend/src/components/Modals/CourseProgressSummary.vue:224
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
#: lms/lms/doctype/lms_program_member/lms_program_member.json
msgid "Progress"
msgstr ""
msgstr "Kemajuan"
#: frontend/src/pages/Programs/ProgramProgressSummary.vue:131
#: lms/lms/report/course_progress_summary/course_progress_summary.py:77
@@ -5401,7 +5431,7 @@ msgstr ""
#. Label of the published (Check) field in DocType 'LMS Course'
#. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51
#: frontend/src/components/Modals/Event.vue:108
#: frontend/src/components/Modals/Event.vue:122
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:152
#: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100
@@ -5569,7 +5599,7 @@ msgstr ""
#. Label of the rating (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147
#: frontend/src/components/Modals/Event.vue:86
#: frontend/src/components/Modals/Event.vue:92
#: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -5592,7 +5622,7 @@ msgstr ""
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json
msgid "Red"
msgstr "Merah"
msgstr ""
#. Label of the reference_docname (Dynamic Link) field in DocType 'LMS Batch
#. Timetable'
@@ -5611,7 +5641,7 @@ msgstr ""
#. Label of the reference_doctype (Link) field in DocType 'LMS Badge'
#: lms/lms/doctype/lms_badge/lms_badge.json
msgid "Reference Document Type"
msgstr "Tipe Dokumen Referensi"
msgstr ""
#: lms/templates/emails/community_course_membership.html:17
msgid "Regards"
@@ -5656,6 +5686,7 @@ msgid "Remove Highlight"
msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:27
#: frontend/src/pages/JobApplications.vue:127
msgid "Reply To"
msgstr ""
@@ -5815,8 +5846,8 @@ msgstr ""
#: frontend/src/components/Controls/CodeEditor.vue:25
#: frontend/src/components/Modals/AssignmentForm.vue:59
#: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:101
#: frontend/src/components/Modals/Event.vue:129
#: frontend/src/components/Modals/Event.vue:115
#: frontend/src/components/Modals/Event.vue:151
#: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
@@ -5955,6 +5986,7 @@ msgid "Select an assignment"
msgstr ""
#: frontend/src/components/ContactUsEmail.vue:33
#: frontend/src/pages/JobApplications.vue:110
msgid "Send"
msgstr "Kirim"
@@ -5962,6 +5994,14 @@ msgstr "Kirim"
msgid "Send Confirmation Email"
msgstr ""
#: frontend/src/pages/JobApplications.vue:268
msgid "Send Email"
msgstr ""
#: frontend/src/pages/JobApplications.vue:106
msgid "Send Email to {0}"
msgstr ""
#. Label of the send_calendar_invite_for_evaluations (Check) field in DocType
#. 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
@@ -6122,11 +6162,11 @@ msgstr "Melewatkan"
msgid "Slot Times are overlapping for some schedules."
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:201
#: frontend/src/pages/ProfileEvaluator.vue:218
msgid "Slot added successfully"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:240
#: frontend/src/pages/ProfileEvaluator.vue:257
msgid "Slot deleted successfully"
msgstr ""
@@ -6265,7 +6305,7 @@ msgstr ""
#. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case Submission'
#: frontend/src/components/Modals/Event.vue:91
#: frontend/src/components/Modals/Event.vue:99
#: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6336,10 +6376,12 @@ msgstr ""
#: frontend/src/components/ContactUsEmail.vue:13
#: frontend/src/components/Modals/AnnouncementModal.vue:20
#: frontend/src/components/Modals/EmailTemplateModal.vue:31
#: frontend/src/pages/JobApplications.vue:121
msgid "Subject"
msgstr "Perihal"
#: frontend/src/components/Modals/AnnouncementModal.vue:94
#: frontend/src/pages/JobApplications.vue:237
msgid "Subject is required"
msgstr ""
@@ -6356,7 +6398,7 @@ msgstr ""
msgid "Submission by"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:353
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:359
msgid "Submission saved!"
msgstr ""
@@ -6396,7 +6438,7 @@ msgstr ""
#. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:97
#: frontend/src/components/Modals/Event.vue:106
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary"
msgstr "Ringkasan"
@@ -6501,11 +6543,11 @@ msgstr ""
#. Label of the template (Link) field in DocType 'Cohort Web Page'
#. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43
#: frontend/src/components/Modals/Event.vue:112
#: frontend/src/components/Modals/Event.vue:127
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template"
msgstr "Contoh"
msgstr ""
#: lms/lms/user.py:40
msgid "Temporarily Disabled"
@@ -6542,7 +6584,7 @@ msgstr ""
msgid "Test this Exercise"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:92
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:93
msgid "Test {0}"
msgstr ""
@@ -6840,7 +6882,7 @@ msgid "Title is required"
msgstr ""
#. Label of the unavailable_to (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:112
#: frontend/src/pages/ProfileEvaluator.vue:120
#: lms/lms/doctype/course_evaluator/course_evaluator.json
msgid "To"
msgstr "Untuk"
@@ -6920,7 +6962,7 @@ msgstr ""
#: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json
#: lms/templates/assessments.html:14
msgid "Type"
msgstr "Jenis"
msgstr ""
#: frontend/src/utils/markdownParser.js:11
msgid "Type '/' for commands or select text to format"
@@ -6953,7 +6995,7 @@ msgstr ""
msgid "Unavailability"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:259
#: frontend/src/pages/ProfileEvaluator.vue:276
msgid "Unavailability updated successfully"
msgstr ""
@@ -7121,13 +7163,21 @@ msgstr ""
#: frontend/src/pages/Notifications.vue:39
msgid "View"
msgstr "Melihat"
msgstr ""
#: frontend/src/pages/JobDetail.vue:31
msgid "View Applications"
msgstr ""
#: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67
msgid "View Certificate"
msgstr ""
#: frontend/src/pages/JobApplications.vue:262
msgid "View Resume"
msgstr ""
#: frontend/src/components/BatchFeedback.vue:56
msgid "View all feedback"
msgstr ""
@@ -7146,7 +7196,7 @@ msgstr ""
msgid "Visit Batch"
msgstr ""
#: frontend/src/pages/JobDetail.vue:41
#: frontend/src/pages/JobDetail.vue:52
msgid "Visit Website"
msgstr ""
@@ -7355,7 +7405,7 @@ msgstr ""
msgid "You have a live class scheduled tomorrow. Please be prepared and be on time for the session."
msgstr ""
#: lms/job/doctype/lms_job_application/lms_job_application.py:22
#: lms/job/doctype/lms_job_application/lms_job_application.py:26
msgid "You have already applied for this job."
msgstr ""
@@ -7371,7 +7421,7 @@ msgstr ""
msgid "You have already reviewed this course"
msgstr ""
#: frontend/src/pages/JobDetail.vue:57
#: frontend/src/pages/JobDetail.vue:68
msgid "You have applied"
msgstr ""
@@ -7451,7 +7501,7 @@ msgstr ""
msgid "Your Account has been successfully created!"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:119
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:121
msgid "Your Output"
msgstr ""
@@ -7459,7 +7509,7 @@ msgstr ""
msgid "Your batch {0} is starting tomorrow"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:134
#: frontend/src/pages/ProfileEvaluator.vue:143
msgid "Your calendar is set."
msgstr ""
@@ -7538,11 +7588,11 @@ msgstr "dan"
msgid "and then 'Add to Home Screen'"
msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125
msgid "applicant"
msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125
msgid "applicants"
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: 2025-10-31 16:04+0000\n"
"PO-Revision-Date: 2025-11-02 19:07\n"
"POT-Creation-Date: 2025-11-07 16:04+0000\n"
"PO-Revision-Date: 2025-11-11 11:49\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Italian\n"
"MIME-Version: 1.0\n"
@@ -130,7 +130,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Batch Old'
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
msgid "Active"
msgstr "Attivo"
msgstr ""
#: frontend/src/pages/Statistics.vue:16
msgid "Active Members"
@@ -148,7 +148,7 @@ msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:131
#: frontend/src/pages/Programs/ProgramForm.vue:180
msgid "Add"
msgstr ""
msgstr "Aggiungi"
#: frontend/src/components/CourseOutline.vue:18
#: frontend/src/components/CreateOutline.vue:18
@@ -176,7 +176,7 @@ msgstr ""
msgid "Add Row"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:89
#: frontend/src/pages/ProfileEvaluator.vue:96
msgid "Add Slot"
msgstr ""
@@ -286,11 +286,11 @@ msgstr ""
#: frontend/src/pages/Billing.vue:74
msgid "Address Line 1"
msgstr ""
msgstr "Indirizzo"
#: frontend/src/pages/Billing.vue:78
msgid "Address Line 2"
msgstr ""
msgstr "Indirizzo 2"
#. Option for the 'Role' (Select) field in DocType 'Cohort Staff'
#. Option for the 'Required Role' (Select) field in DocType 'Cohort Web Page'
@@ -426,12 +426,25 @@ msgstr ""
msgid "Appears when the batch URL is shared on socials"
msgstr ""
#: frontend/src/pages/JobApplications.vue:24
msgid "Application"
msgstr ""
#. Label of a field in the job-opportunity Web Form
#: lms/job/web_form/job_opportunity/job_opportunity.json
msgid "Application Form Link"
msgstr ""
#: frontend/src/pages/JobDetail.vue:51
#: frontend/src/pages/JobApplications.vue:14
#: frontend/src/pages/JobApplications.vue:25
msgid "Applications"
msgstr ""
#: frontend/src/pages/JobApplications.vue:290
msgid "Applied On"
msgstr ""
#: frontend/src/pages/JobDetail.vue:62
msgid "Apply"
msgstr ""
@@ -483,7 +496,7 @@ msgstr ""
#. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch'
#. Label of the assessment (Table) field in DocType 'LMS Batch'
#: frontend/src/components/Modals/AssessmentModal.vue:27
#: frontend/src/components/Modals/BatchStudentProgress.vue:41
#: frontend/src/components/Modals/BatchStudentProgress.vue:43
#: lms/lms/doctype/lms_batch/lms_batch.json lms/templates/assessments.html:11
msgid "Assessment"
msgstr ""
@@ -569,7 +582,7 @@ msgstr ""
msgid "Assignment Title"
msgstr ""
#: frontend/src/components/Modals/AssignmentForm.vue:125
#: frontend/src/components/Modals/AssignmentForm.vue:133
msgid "Assignment created successfully"
msgstr ""
@@ -581,7 +594,7 @@ msgstr ""
msgid "Assignment submitted successfully"
msgstr ""
#: frontend/src/components/Modals/AssignmentForm.vue:138
#: frontend/src/components/Modals/AssignmentForm.vue:146
msgid "Assignment updated successfully"
msgstr ""
@@ -622,7 +635,7 @@ msgstr ""
msgid "Attire Preference"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:137
#: frontend/src/pages/ProfileEvaluator.vue:146
msgid "Authorize Google Calendar Access"
msgstr ""
@@ -637,7 +650,7 @@ msgstr ""
msgid "Auto Recording"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:224
#: frontend/src/pages/ProfileEvaluator.vue:241
msgid "Availability updated successfully"
msgstr ""
@@ -768,6 +781,7 @@ msgstr ""
#. Name of a role
#: lms/lms/doctype/course_evaluator/course_evaluator.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_category/lms_category.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -998,7 +1012,7 @@ msgstr ""
msgid "Certificate of Completion"
msgstr ""
#: frontend/src/components/Modals/Event.vue:317
#: frontend/src/components/Modals/Event.vue:348
msgid "Certificate saved successfully"
msgstr ""
@@ -1018,7 +1032,7 @@ msgstr ""
#. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace
#: frontend/src/components/AppSidebar.vue:626
#: frontend/src/components/Modals/Event.vue:381
#: frontend/src/components/Modals/Event.vue:412
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58
#: frontend/src/pages/CourseCertification.vue:10
#: frontend/src/pages/CourseCertification.vue:135
@@ -1205,7 +1219,7 @@ msgstr ""
#: frontend/src/components/Settings/Categories.vue:27
msgid "Close"
msgstr ""
msgstr "Vicino"
#. Option for the 'Status' (Select) field in DocType 'Job Opportunity'
#. Option in a Select field in the job-opportunity Web Form
@@ -1214,7 +1228,7 @@ msgstr ""
#: lms/job/web_form/job_opportunity/job_opportunity.json
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
msgid "Closed"
msgstr ""
msgstr "Chiuso"
#. Option for the 'Auto Recording' (Select) field in DocType 'LMS Live Class'
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -1361,7 +1375,7 @@ msgstr ""
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/job/web_form/job_opportunity/job_opportunity.json
msgid "Company Name"
msgstr ""
msgstr "Nome Azienda"
#. Label of the company_type (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
@@ -1640,6 +1654,7 @@ msgstr ""
#: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/course_lesson/course_lesson.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
#: lms/lms/doctype/lms_category/lms_category.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json
@@ -1757,7 +1772,7 @@ msgstr ""
#: frontend/src/components/BatchCourses.vue:5
#: frontend/src/components/BatchOverlay.vue:37
#: frontend/src/components/BatchStudents.vue:25
#: frontend/src/components/Modals/BatchStudentProgress.vue:91
#: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127
#: frontend/src/pages/Courses.vue:333 frontend/src/pages/Courses.vue:340
@@ -1800,7 +1815,7 @@ msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExercises.vue:32
#: frontend/src/pages/Quizzes.vue:10
msgid "Create"
msgstr ""
msgstr "Creare"
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.js:7
msgid "Create Certificate"
@@ -1932,7 +1947,7 @@ msgstr ""
#. Label of the show_dashboard (Check) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Dashboard"
msgstr "Dashboard"
msgstr ""
#. Label of the date (Date) field in DocType 'LMS Batch Timetable'
#. Label of the date (Date) field in DocType 'LMS Certificate Evaluation'
@@ -1948,7 +1963,7 @@ msgstr "Dashboard"
#: lms/lms/doctype/lms_live_class/lms_live_class.json
#: lms/lms/doctype/scheduled_flow/scheduled_flow.json
msgid "Date"
msgstr ""
msgstr "Data"
#: frontend/src/pages/BatchForm.vue:76
msgid "Date and Time"
@@ -2003,7 +2018,7 @@ msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseForm.vue:67
#: frontend/src/pages/Programs/ProgramForm.vue:231
msgid "Delete"
msgstr "Elimina"
msgstr "Eliminare"
#: frontend/src/components/CourseOutline.vue:67
msgid "Delete Chapter"
@@ -2066,7 +2081,7 @@ msgstr ""
#: lms/lms/doctype/lms_live_class/lms_live_class.json
#: lms/lms/doctype/work_experience/work_experience.json
msgid "Description"
msgstr ""
msgstr "Descrizione"
#: frontend/src/components/Apps.vue:51
msgid "Desk"
@@ -2169,7 +2184,7 @@ msgstr ""
#: frontend/src/components/DiscussionReplies.vue:35
#: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/components/Settings/Badges.vue:156
#: frontend/src/pages/JobDetail.vue:34 frontend/src/pages/Lesson.vue:42
#: frontend/src/pages/JobDetail.vue:45 frontend/src/pages/Lesson.vue:42
#: frontend/src/pages/Lesson.vue:178 frontend/src/pages/Profile.vue:36
msgid "Edit"
msgstr "Modifica"
@@ -2236,9 +2251,9 @@ msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:105
#: frontend/src/components/Settings/Members.vue:103
#: lms/templates/signup-form.html:10
#: frontend/src/pages/JobApplications.vue:284 lms/templates/signup-form.html:10
msgid "Email"
msgstr ""
msgstr "E-mail"
#: frontend/src/components/Modals/Event.vue:16
msgid "Email ID"
@@ -2272,6 +2287,7 @@ msgid "Email Templates deleted successfully"
msgstr ""
#: frontend/src/components/ContactUsEmail.vue:57
#: frontend/src/pages/JobApplications.vue:244
msgid "Email sent successfully"
msgstr "Email inviata con successo"
@@ -2414,6 +2430,14 @@ msgstr ""
msgid "Enter a URL"
msgstr ""
#: frontend/src/pages/JobApplications.vue:122
msgid "Enter email subject"
msgstr ""
#: frontend/src/pages/JobApplications.vue:128
msgid "Enter reply to email"
msgstr ""
#: frontend/src/components/Modals/ZoomAccountModal.vue:169
msgid "Error creating Zoom Account"
msgstr ""
@@ -2453,7 +2477,7 @@ msgstr ""
#. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:374 lms/lms/workspace/lms/lms.json
#: frontend/src/components/Modals/Event.vue:405 lms/lms/workspace/lms/lms.json
msgid "Evaluation"
msgstr ""
@@ -2478,7 +2502,7 @@ msgstr ""
msgid "Evaluation end date cannot be less than the batch end date."
msgstr ""
#: frontend/src/components/Modals/Event.vue:256
#: frontend/src/components/Modals/Event.vue:287
msgid "Evaluation saved successfully"
msgstr ""
@@ -2586,7 +2610,7 @@ msgstr "Espandi"
#. Label of the expected_output (Data) field in DocType 'LMS Test Case'
#. Label of the expected_output (Data) field in DocType 'LMS Test Case
#. Submission'
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:127
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:129
#: lms/lms/doctype/lms_test_case/lms_test_case.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Expected Output"
@@ -2599,7 +2623,7 @@ msgstr ""
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33
#: frontend/src/components/Modals/Event.vue:126
#: frontend/src/components/Modals/Event.vue:144
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date"
msgstr ""
@@ -2626,7 +2650,7 @@ msgstr ""
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:366
#: frontend/src/components/Modals/Event.vue:397
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail"
@@ -2639,7 +2663,7 @@ msgstr "Errore"
#: lms/lms/doctype/lms_programming_exercise_submission/lms_programming_exercise_submission.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Failed"
msgstr ""
msgstr "Fallito"
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:136
msgid "Failed to create badge assignment: "
@@ -2657,7 +2681,7 @@ msgstr ""
msgid "Failed to send email"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:358
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:364
msgid "Failed to submit. Please try again. {0}"
msgstr ""
@@ -2770,7 +2794,7 @@ msgid "Friday"
msgstr ""
#. Label of the unavailable_from (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:99
#: frontend/src/pages/ProfileEvaluator.vue:106
#: lms/lms/doctype/course_evaluator/course_evaluator.json
msgid "From"
msgstr ""
@@ -2782,6 +2806,7 @@ msgstr ""
#. Label of the full_name (Data) field in DocType 'Course Evaluator'
#. Label of the full_name (Data) field in DocType 'LMS Program Member'
#: frontend/src/pages/JobApplications.vue:278
#: lms/lms/doctype/course_evaluator/course_evaluator.json
#: lms/lms/doctype/lms_program_member/lms_program_member.json
#: lms/templates/signup-form.html:5
@@ -3019,13 +3044,13 @@ msgstr ""
msgid "I am looking for a job"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:94
#: frontend/src/pages/ProfileEvaluator.vue:101
msgid "I am unavailable"
msgstr ""
#: frontend/src/pages/QuizForm.vue:334
msgid "ID"
msgstr "ID"
msgstr ""
#. Label of the icon (Data) field in DocType 'LMS Sidebar Item'
#: frontend/src/components/Modals/PageModal.vue:28
@@ -3105,7 +3130,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:358
#: frontend/src/components/Modals/Event.vue:389
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -3161,7 +3186,7 @@ msgstr ""
#. Label of the input (Data) field in DocType 'LMS Test Case'
#. Label of the input (Data) field in DocType 'LMS Test Case Submission'
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:113
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:115
#: lms/lms/doctype/lms_test_case/lms_test_case.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Input"
@@ -3273,7 +3298,7 @@ msgstr ""
#. Label of the issue_date (Date) field in DocType 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28
#: frontend/src/components/Modals/Event.vue:121
#: frontend/src/components/Modals/Event.vue:138
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date"
@@ -3358,8 +3383,8 @@ msgid "Job Title"
msgstr ""
#. Label of the jobs (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/JobDetail.vue:10 frontend/src/pages/Jobs.vue:8
#: frontend/src/pages/Jobs.vue:212
#: frontend/src/pages/JobApplications.vue:9 frontend/src/pages/JobDetail.vue:10
#: frontend/src/pages/Jobs.vue:8 frontend/src/pages/Jobs.vue:212
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Jobs"
msgstr ""
@@ -3375,7 +3400,7 @@ msgstr ""
msgid "Join Call"
msgstr ""
#: frontend/src/components/Modals/Event.vue:74
#: frontend/src/components/Modals/Event.vue:78
msgid "Join Meeting"
msgstr ""
@@ -3866,7 +3891,7 @@ msgstr ""
#: lms/lms/doctype/education_detail/education_detail.json
#: lms/lms/doctype/work_experience/work_experience.json
msgid "Location"
msgstr "Luogo"
msgstr ""
#. Label of the location_preference (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
@@ -3883,7 +3908,7 @@ msgstr "Login"
msgid "Login to Frappe Cloud?"
msgstr ""
#: frontend/src/pages/JobDetail.vue:63
#: frontend/src/pages/JobDetail.vue:74
msgid "Login to apply"
msgstr ""
@@ -4228,9 +4253,14 @@ msgid "Mentor Request Status Update Template"
msgstr ""
#: frontend/src/components/ContactUsEmail.vue:19
#: frontend/src/pages/JobApplications.vue:132
msgid "Message"
msgstr "Messaggio"
#: frontend/src/pages/JobApplications.vue:240
msgid "Message is required"
msgstr ""
#. Label of the meta_description (Small Text) field in DocType 'LMS Settings'
#: frontend/src/pages/BatchForm.vue:297 frontend/src/pages/CourseForm.vue:303
#: lms/lms/doctype/lms_settings/lms_settings.json
@@ -4351,7 +4381,7 @@ msgstr ""
msgid "My availability"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:127
#: frontend/src/pages/ProfileEvaluator.vue:136
msgid "My calendar"
msgstr ""
@@ -4372,7 +4402,7 @@ msgstr ""
#: frontend/src/pages/Programs/Programs.vue:10
#: lms/lms/doctype/lms_badge/lms_badge.json
msgid "New"
msgstr ""
msgstr "Nuovo"
#: lms/www/lms.py:149
msgid "New Batch"
@@ -4390,7 +4420,7 @@ msgstr ""
msgid "New Job"
msgstr ""
#: lms/job/doctype/lms_job_application/lms_job_application.py:27
#: lms/job/doctype/lms_job_application/lms_job_application.py:31
msgid "New Job Applicant"
msgstr ""
@@ -4430,7 +4460,7 @@ msgstr "Nuovo {0}"
#: frontend/src/components/Quiz.vue:237 frontend/src/pages/Lesson.vue:51
#: frontend/src/pages/Lesson.vue:187
msgid "Next"
msgstr "Successivo"
msgstr ""
#: frontend/src/components/Assessments.vue:75 lms/templates/assessments.html:58
msgid "No Assessments"
@@ -4661,7 +4691,7 @@ msgstr ""
#: lms/job/web_form/job_opportunity/job_opportunity.json
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
msgid "Open"
msgstr ""
msgstr "Apri"
#: lms/templates/emails/assignment_submission.html:8
msgid "Open Assignment"
@@ -4818,7 +4848,7 @@ msgstr ""
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:362
#: frontend/src/components/Modals/Event.vue:393
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass"
@@ -4945,12 +4975,12 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:354
#: frontend/src/components/Modals/Event.vue:385
#: lms/lms/doctype/cohort_join_request/cohort_join_request.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
msgid "Pending"
msgstr ""
msgstr "In Attesa"
#. Label of the percentage (Int) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/QuizSubmission.vue:44
@@ -4964,7 +4994,7 @@ msgstr ""
msgid "Percentage (e.g. 70%)"
msgstr ""
#: frontend/src/components/Modals/BatchStudentProgress.vue:44
#: frontend/src/components/Modals/BatchStudentProgress.vue:46
msgid "Percentage/Status"
msgstr ""
@@ -5080,7 +5110,7 @@ msgstr ""
msgid "Please prepare well and be on time for the evaluations."
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:135
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:139
msgid "Please run the code to execute the test cases."
msgstr ""
@@ -5317,11 +5347,11 @@ msgstr ""
#: frontend/src/components/Settings/BadgeForm.vue:200
#: frontend/src/components/Settings/Badges.vue:205
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:420
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:426
msgid "Programming Exercise Submission"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:411
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:417
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:298
msgid "Programming Exercise Submissions"
msgstr ""
@@ -5355,7 +5385,7 @@ msgstr ""
#. Label of the progress (Float) field in DocType 'LMS Enrollment'
#. Label of the progress (Int) field in DocType 'LMS Program Member'
#: frontend/src/components/Modals/BatchStudentProgress.vue:94
#: frontend/src/components/Modals/BatchStudentProgress.vue:98
#: frontend/src/components/Modals/CourseProgressSummary.vue:224
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
#: lms/lms/doctype/lms_program_member/lms_program_member.json
@@ -5401,7 +5431,7 @@ msgstr ""
#. Label of the published (Check) field in DocType 'LMS Course'
#. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51
#: frontend/src/components/Modals/Event.vue:108
#: frontend/src/components/Modals/Event.vue:122
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:152
#: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100
@@ -5569,7 +5599,7 @@ msgstr ""
#. Label of the rating (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147
#: frontend/src/components/Modals/Event.vue:86
#: frontend/src/components/Modals/Event.vue:92
#: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -5656,6 +5686,7 @@ msgid "Remove Highlight"
msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:27
#: frontend/src/pages/JobApplications.vue:127
msgid "Reply To"
msgstr ""
@@ -5815,8 +5846,8 @@ msgstr ""
#: frontend/src/components/Controls/CodeEditor.vue:25
#: frontend/src/components/Modals/AssignmentForm.vue:59
#: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:101
#: frontend/src/components/Modals/Event.vue:129
#: frontend/src/components/Modals/Event.vue:115
#: frontend/src/components/Modals/Event.vue:151
#: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
@@ -5955,13 +5986,22 @@ msgid "Select an assignment"
msgstr ""
#: frontend/src/components/ContactUsEmail.vue:33
#: frontend/src/pages/JobApplications.vue:110
msgid "Send"
msgstr "Invia"
msgstr ""
#: lms/lms/doctype/lms_batch_enrollment/lms_batch_enrollment.js:7
msgid "Send Confirmation Email"
msgstr ""
#: frontend/src/pages/JobApplications.vue:268
msgid "Send Email"
msgstr ""
#: frontend/src/pages/JobApplications.vue:106
msgid "Send Email to {0}"
msgstr ""
#. Label of the send_calendar_invite_for_evaluations (Check) field in DocType
#. 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
@@ -6004,7 +6044,7 @@ msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:19
#: frontend/src/pages/QuizForm.vue:86
msgid "Settings"
msgstr "Impostazioni"
msgstr ""
#: frontend/src/pages/ProfileAbout.vue:79
msgid "Share on"
@@ -6122,11 +6162,11 @@ msgstr ""
msgid "Slot Times are overlapping for some schedules."
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:201
#: frontend/src/pages/ProfileEvaluator.vue:218
msgid "Slot added successfully"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:240
#: frontend/src/pages/ProfileEvaluator.vue:257
msgid "Slot deleted successfully"
msgstr ""
@@ -6265,7 +6305,7 @@ msgstr ""
#. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case Submission'
#: frontend/src/components/Modals/Event.vue:91
#: frontend/src/components/Modals/Event.vue:99
#: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6287,7 +6327,7 @@ msgstr ""
#: lms/lms/doctype/lms_programming_exercise_submission/lms_programming_exercise_submission.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Status"
msgstr ""
msgstr "Stati"
#: lms/templates/assessments.html:17
msgid "Status/Score"
@@ -6336,10 +6376,12 @@ msgstr ""
#: frontend/src/components/ContactUsEmail.vue:13
#: frontend/src/components/Modals/AnnouncementModal.vue:20
#: frontend/src/components/Modals/EmailTemplateModal.vue:31
#: frontend/src/pages/JobApplications.vue:121
msgid "Subject"
msgstr ""
msgstr "Soggetto"
#: frontend/src/components/Modals/AnnouncementModal.vue:94
#: frontend/src/pages/JobApplications.vue:237
msgid "Subject is required"
msgstr ""
@@ -6356,7 +6398,7 @@ msgstr ""
msgid "Submission by"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:353
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:359
msgid "Submission saved!"
msgstr ""
@@ -6371,7 +6413,7 @@ msgstr ""
#: lms/templates/livecode/extension_footer.html:25
#: lms/templates/reviews.html:163 lms/www/new-sign-up.html:32
msgid "Submit"
msgstr "Conferma"
msgstr ""
#: frontend/src/components/BatchFeedback.vue:35
msgid "Submit Feedback"
@@ -6396,7 +6438,7 @@ msgstr ""
#. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:97
#: frontend/src/components/Modals/Event.vue:106
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary"
msgstr ""
@@ -6470,7 +6512,7 @@ msgstr "Tavolozza"
#: lms/lms/doctype/user_skill/user_skill.json
#: lms/lms/doctype/zoom_settings/zoom_settings.json
msgid "System Manager"
msgstr ""
msgstr "Amministratore Sistema"
#. Label of the tags (Data) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:51
@@ -6501,11 +6543,11 @@ msgstr ""
#. Label of the template (Link) field in DocType 'Cohort Web Page'
#. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43
#: frontend/src/components/Modals/Event.vue:112
#: frontend/src/components/Modals/Event.vue:127
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template"
msgstr ""
msgstr "Modelli"
#: lms/lms/user.py:40
msgid "Temporarily Disabled"
@@ -6542,7 +6584,7 @@ msgstr ""
msgid "Test this Exercise"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:92
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:93
msgid "Test {0}"
msgstr ""
@@ -6840,10 +6882,10 @@ msgid "Title is required"
msgstr ""
#. Label of the unavailable_to (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:112
#: frontend/src/pages/ProfileEvaluator.vue:120
#: lms/lms/doctype/course_evaluator/course_evaluator.json
msgid "To"
msgstr "A"
msgstr ""
#. Label of the to_date (Date) field in DocType 'Work Experience'
#: lms/lms/doctype/work_experience/work_experience.json
@@ -6953,7 +6995,7 @@ msgstr "UUID"
msgid "Unavailability"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:259
#: frontend/src/pages/ProfileEvaluator.vue:276
msgid "Unavailability updated successfully"
msgstr ""
@@ -7123,11 +7165,19 @@ msgstr ""
msgid "View"
msgstr ""
#: frontend/src/pages/JobDetail.vue:31
msgid "View Applications"
msgstr ""
#: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67
msgid "View Certificate"
msgstr ""
#: frontend/src/pages/JobApplications.vue:262
msgid "View Resume"
msgstr ""
#: frontend/src/components/BatchFeedback.vue:56
msgid "View all feedback"
msgstr ""
@@ -7146,7 +7196,7 @@ msgstr ""
msgid "Visit Batch"
msgstr ""
#: frontend/src/pages/JobDetail.vue:41
#: frontend/src/pages/JobDetail.vue:52
msgid "Visit Website"
msgstr ""
@@ -7355,7 +7405,7 @@ msgstr ""
msgid "You have a live class scheduled tomorrow. Please be prepared and be on time for the session."
msgstr ""
#: lms/job/doctype/lms_job_application/lms_job_application.py:22
#: lms/job/doctype/lms_job_application/lms_job_application.py:26
msgid "You have already applied for this job."
msgstr ""
@@ -7371,7 +7421,7 @@ msgstr ""
msgid "You have already reviewed this course"
msgstr ""
#: frontend/src/pages/JobDetail.vue:57
#: frontend/src/pages/JobDetail.vue:68
msgid "You have applied"
msgstr ""
@@ -7451,7 +7501,7 @@ msgstr ""
msgid "Your Account has been successfully created!"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:119
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:121
msgid "Your Output"
msgstr ""
@@ -7459,7 +7509,7 @@ msgstr ""
msgid "Your batch {0} is starting tomorrow"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:134
#: frontend/src/pages/ProfileEvaluator.vue:143
msgid "Your calendar is set."
msgstr ""
@@ -7538,11 +7588,11 @@ msgstr ""
msgid "and then 'Add to Home Screen'"
msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125
msgid "applicant"
msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125
msgid "applicants"
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: 2025-10-31 16:04+0000\n"
"PO-Revision-Date: 2025-11-02 19:07\n"
"POT-Creation-Date: 2025-11-07 16:04+0000\n"
"PO-Revision-Date: 2025-11-11 11:49\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Burmese\n"
"MIME-Version: 1.0\n"
@@ -176,7 +176,7 @@ msgstr ""
msgid "Add Row"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:89
#: frontend/src/pages/ProfileEvaluator.vue:96
msgid "Add Slot"
msgstr ""
@@ -426,12 +426,25 @@ msgstr ""
msgid "Appears when the batch URL is shared on socials"
msgstr ""
#: frontend/src/pages/JobApplications.vue:24
msgid "Application"
msgstr ""
#. Label of a field in the job-opportunity Web Form
#: lms/job/web_form/job_opportunity/job_opportunity.json
msgid "Application Form Link"
msgstr ""
#: frontend/src/pages/JobDetail.vue:51
#: frontend/src/pages/JobApplications.vue:14
#: frontend/src/pages/JobApplications.vue:25
msgid "Applications"
msgstr ""
#: frontend/src/pages/JobApplications.vue:290
msgid "Applied On"
msgstr "လျှောက်ထားသည်"
#: frontend/src/pages/JobDetail.vue:62
msgid "Apply"
msgstr ""
@@ -483,7 +496,7 @@ msgstr ""
#. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch'
#. Label of the assessment (Table) field in DocType 'LMS Batch'
#: frontend/src/components/Modals/AssessmentModal.vue:27
#: frontend/src/components/Modals/BatchStudentProgress.vue:41
#: frontend/src/components/Modals/BatchStudentProgress.vue:43
#: lms/lms/doctype/lms_batch/lms_batch.json lms/templates/assessments.html:11
msgid "Assessment"
msgstr ""
@@ -569,7 +582,7 @@ msgstr ""
msgid "Assignment Title"
msgstr ""
#: frontend/src/components/Modals/AssignmentForm.vue:125
#: frontend/src/components/Modals/AssignmentForm.vue:133
msgid "Assignment created successfully"
msgstr ""
@@ -581,7 +594,7 @@ msgstr ""
msgid "Assignment submitted successfully"
msgstr ""
#: frontend/src/components/Modals/AssignmentForm.vue:138
#: frontend/src/components/Modals/AssignmentForm.vue:146
msgid "Assignment updated successfully"
msgstr ""
@@ -622,7 +635,7 @@ msgstr ""
msgid "Attire Preference"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:137
#: frontend/src/pages/ProfileEvaluator.vue:146
msgid "Authorize Google Calendar Access"
msgstr ""
@@ -637,7 +650,7 @@ msgstr ""
msgid "Auto Recording"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:224
#: frontend/src/pages/ProfileEvaluator.vue:241
msgid "Availability updated successfully"
msgstr ""
@@ -768,6 +781,7 @@ msgstr ""
#. Name of a role
#: lms/lms/doctype/course_evaluator/course_evaluator.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_category/lms_category.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -998,7 +1012,7 @@ msgstr ""
msgid "Certificate of Completion"
msgstr ""
#: frontend/src/components/Modals/Event.vue:317
#: frontend/src/components/Modals/Event.vue:348
msgid "Certificate saved successfully"
msgstr ""
@@ -1018,7 +1032,7 @@ msgstr ""
#. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace
#: frontend/src/components/AppSidebar.vue:626
#: frontend/src/components/Modals/Event.vue:381
#: frontend/src/components/Modals/Event.vue:412
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58
#: frontend/src/pages/CourseCertification.vue:10
#: frontend/src/pages/CourseCertification.vue:135
@@ -1640,6 +1654,7 @@ msgstr ""
#: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/course_lesson/course_lesson.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
#: lms/lms/doctype/lms_category/lms_category.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json
@@ -1757,7 +1772,7 @@ msgstr ""
#: frontend/src/components/BatchCourses.vue:5
#: frontend/src/components/BatchOverlay.vue:37
#: frontend/src/components/BatchStudents.vue:25
#: frontend/src/components/Modals/BatchStudentProgress.vue:91
#: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127
#: frontend/src/pages/Courses.vue:333 frontend/src/pages/Courses.vue:340
@@ -2169,7 +2184,7 @@ msgstr ""
#: frontend/src/components/DiscussionReplies.vue:35
#: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/components/Settings/Badges.vue:156
#: frontend/src/pages/JobDetail.vue:34 frontend/src/pages/Lesson.vue:42
#: frontend/src/pages/JobDetail.vue:45 frontend/src/pages/Lesson.vue:42
#: frontend/src/pages/Lesson.vue:178 frontend/src/pages/Profile.vue:36
msgid "Edit"
msgstr ""
@@ -2236,7 +2251,7 @@ msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:105
#: frontend/src/components/Settings/Members.vue:103
#: lms/templates/signup-form.html:10
#: frontend/src/pages/JobApplications.vue:284 lms/templates/signup-form.html:10
msgid "Email"
msgstr ""
@@ -2272,6 +2287,7 @@ msgid "Email Templates deleted successfully"
msgstr ""
#: frontend/src/components/ContactUsEmail.vue:57
#: frontend/src/pages/JobApplications.vue:244
msgid "Email sent successfully"
msgstr ""
@@ -2414,6 +2430,14 @@ msgstr ""
msgid "Enter a URL"
msgstr ""
#: frontend/src/pages/JobApplications.vue:122
msgid "Enter email subject"
msgstr ""
#: frontend/src/pages/JobApplications.vue:128
msgid "Enter reply to email"
msgstr ""
#: frontend/src/components/Modals/ZoomAccountModal.vue:169
msgid "Error creating Zoom Account"
msgstr ""
@@ -2453,7 +2477,7 @@ msgstr ""
#. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:374 lms/lms/workspace/lms/lms.json
#: frontend/src/components/Modals/Event.vue:405 lms/lms/workspace/lms/lms.json
msgid "Evaluation"
msgstr ""
@@ -2478,7 +2502,7 @@ msgstr ""
msgid "Evaluation end date cannot be less than the batch end date."
msgstr ""
#: frontend/src/components/Modals/Event.vue:256
#: frontend/src/components/Modals/Event.vue:287
msgid "Evaluation saved successfully"
msgstr ""
@@ -2586,7 +2610,7 @@ msgstr ""
#. Label of the expected_output (Data) field in DocType 'LMS Test Case'
#. Label of the expected_output (Data) field in DocType 'LMS Test Case
#. Submission'
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:127
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:129
#: lms/lms/doctype/lms_test_case/lms_test_case.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Expected Output"
@@ -2599,7 +2623,7 @@ msgstr ""
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33
#: frontend/src/components/Modals/Event.vue:126
#: frontend/src/components/Modals/Event.vue:144
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date"
msgstr ""
@@ -2626,7 +2650,7 @@ msgstr ""
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:366
#: frontend/src/components/Modals/Event.vue:397
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail"
@@ -2657,7 +2681,7 @@ msgstr ""
msgid "Failed to send email"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:358
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:364
msgid "Failed to submit. Please try again. {0}"
msgstr ""
@@ -2770,7 +2794,7 @@ msgid "Friday"
msgstr ""
#. Label of the unavailable_from (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:99
#: frontend/src/pages/ProfileEvaluator.vue:106
#: lms/lms/doctype/course_evaluator/course_evaluator.json
msgid "From"
msgstr ""
@@ -2782,6 +2806,7 @@ msgstr ""
#. Label of the full_name (Data) field in DocType 'Course Evaluator'
#. Label of the full_name (Data) field in DocType 'LMS Program Member'
#: frontend/src/pages/JobApplications.vue:278
#: lms/lms/doctype/course_evaluator/course_evaluator.json
#: lms/lms/doctype/lms_program_member/lms_program_member.json
#: lms/templates/signup-form.html:5
@@ -3019,7 +3044,7 @@ msgstr ""
msgid "I am looking for a job"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:94
#: frontend/src/pages/ProfileEvaluator.vue:101
msgid "I am unavailable"
msgstr ""
@@ -3105,7 +3130,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:358
#: frontend/src/components/Modals/Event.vue:389
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -3161,7 +3186,7 @@ msgstr ""
#. Label of the input (Data) field in DocType 'LMS Test Case'
#. Label of the input (Data) field in DocType 'LMS Test Case Submission'
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:113
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:115
#: lms/lms/doctype/lms_test_case/lms_test_case.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Input"
@@ -3273,7 +3298,7 @@ msgstr ""
#. Label of the issue_date (Date) field in DocType 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28
#: frontend/src/components/Modals/Event.vue:121
#: frontend/src/components/Modals/Event.vue:138
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date"
@@ -3358,8 +3383,8 @@ msgid "Job Title"
msgstr ""
#. Label of the jobs (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/JobDetail.vue:10 frontend/src/pages/Jobs.vue:8
#: frontend/src/pages/Jobs.vue:212
#: frontend/src/pages/JobApplications.vue:9 frontend/src/pages/JobDetail.vue:10
#: frontend/src/pages/Jobs.vue:8 frontend/src/pages/Jobs.vue:212
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Jobs"
msgstr ""
@@ -3375,7 +3400,7 @@ msgstr ""
msgid "Join Call"
msgstr ""
#: frontend/src/components/Modals/Event.vue:74
#: frontend/src/components/Modals/Event.vue:78
msgid "Join Meeting"
msgstr ""
@@ -3883,7 +3908,7 @@ msgstr ""
msgid "Login to Frappe Cloud?"
msgstr ""
#: frontend/src/pages/JobDetail.vue:63
#: frontend/src/pages/JobDetail.vue:74
msgid "Login to apply"
msgstr ""
@@ -4228,9 +4253,14 @@ msgid "Mentor Request Status Update Template"
msgstr ""
#: frontend/src/components/ContactUsEmail.vue:19
#: frontend/src/pages/JobApplications.vue:132
msgid "Message"
msgstr ""
#: frontend/src/pages/JobApplications.vue:240
msgid "Message is required"
msgstr ""
#. Label of the meta_description (Small Text) field in DocType 'LMS Settings'
#: frontend/src/pages/BatchForm.vue:297 frontend/src/pages/CourseForm.vue:303
#: lms/lms/doctype/lms_settings/lms_settings.json
@@ -4351,7 +4381,7 @@ msgstr ""
msgid "My availability"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:127
#: frontend/src/pages/ProfileEvaluator.vue:136
msgid "My calendar"
msgstr ""
@@ -4390,7 +4420,7 @@ msgstr ""
msgid "New Job"
msgstr ""
#: lms/job/doctype/lms_job_application/lms_job_application.py:27
#: lms/job/doctype/lms_job_application/lms_job_application.py:31
msgid "New Job Applicant"
msgstr ""
@@ -4818,7 +4848,7 @@ msgstr ""
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:362
#: frontend/src/components/Modals/Event.vue:393
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass"
@@ -4945,7 +4975,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:354
#: frontend/src/components/Modals/Event.vue:385
#: lms/lms/doctype/cohort_join_request/cohort_join_request.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
@@ -4964,7 +4994,7 @@ msgstr ""
msgid "Percentage (e.g. 70%)"
msgstr ""
#: frontend/src/components/Modals/BatchStudentProgress.vue:44
#: frontend/src/components/Modals/BatchStudentProgress.vue:46
msgid "Percentage/Status"
msgstr ""
@@ -5080,7 +5110,7 @@ msgstr ""
msgid "Please prepare well and be on time for the evaluations."
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:135
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:139
msgid "Please run the code to execute the test cases."
msgstr ""
@@ -5317,11 +5347,11 @@ msgstr ""
#: frontend/src/components/Settings/BadgeForm.vue:200
#: frontend/src/components/Settings/Badges.vue:205
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:420
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:426
msgid "Programming Exercise Submission"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:411
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:417
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:298
msgid "Programming Exercise Submissions"
msgstr ""
@@ -5355,7 +5385,7 @@ msgstr ""
#. Label of the progress (Float) field in DocType 'LMS Enrollment'
#. Label of the progress (Int) field in DocType 'LMS Program Member'
#: frontend/src/components/Modals/BatchStudentProgress.vue:94
#: frontend/src/components/Modals/BatchStudentProgress.vue:98
#: frontend/src/components/Modals/CourseProgressSummary.vue:224
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
#: lms/lms/doctype/lms_program_member/lms_program_member.json
@@ -5401,7 +5431,7 @@ msgstr ""
#. Label of the published (Check) field in DocType 'LMS Course'
#. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51
#: frontend/src/components/Modals/Event.vue:108
#: frontend/src/components/Modals/Event.vue:122
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:152
#: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100
@@ -5569,7 +5599,7 @@ msgstr ""
#. Label of the rating (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147
#: frontend/src/components/Modals/Event.vue:86
#: frontend/src/components/Modals/Event.vue:92
#: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -5656,6 +5686,7 @@ msgid "Remove Highlight"
msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:27
#: frontend/src/pages/JobApplications.vue:127
msgid "Reply To"
msgstr ""
@@ -5815,8 +5846,8 @@ msgstr ""
#: frontend/src/components/Controls/CodeEditor.vue:25
#: frontend/src/components/Modals/AssignmentForm.vue:59
#: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:101
#: frontend/src/components/Modals/Event.vue:129
#: frontend/src/components/Modals/Event.vue:115
#: frontend/src/components/Modals/Event.vue:151
#: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
@@ -5955,6 +5986,7 @@ msgid "Select an assignment"
msgstr ""
#: frontend/src/components/ContactUsEmail.vue:33
#: frontend/src/pages/JobApplications.vue:110
msgid "Send"
msgstr "ပေးပို့"
@@ -5962,6 +5994,14 @@ msgstr "ပေးပို့"
msgid "Send Confirmation Email"
msgstr ""
#: frontend/src/pages/JobApplications.vue:268
msgid "Send Email"
msgstr ""
#: frontend/src/pages/JobApplications.vue:106
msgid "Send Email to {0}"
msgstr ""
#. Label of the send_calendar_invite_for_evaluations (Check) field in DocType
#. 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
@@ -6122,11 +6162,11 @@ msgstr ""
msgid "Slot Times are overlapping for some schedules."
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:201
#: frontend/src/pages/ProfileEvaluator.vue:218
msgid "Slot added successfully"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:240
#: frontend/src/pages/ProfileEvaluator.vue:257
msgid "Slot deleted successfully"
msgstr ""
@@ -6265,7 +6305,7 @@ msgstr ""
#. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case Submission'
#: frontend/src/components/Modals/Event.vue:91
#: frontend/src/components/Modals/Event.vue:99
#: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6336,10 +6376,12 @@ msgstr ""
#: frontend/src/components/ContactUsEmail.vue:13
#: frontend/src/components/Modals/AnnouncementModal.vue:20
#: frontend/src/components/Modals/EmailTemplateModal.vue:31
#: frontend/src/pages/JobApplications.vue:121
msgid "Subject"
msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:94
#: frontend/src/pages/JobApplications.vue:237
msgid "Subject is required"
msgstr ""
@@ -6356,7 +6398,7 @@ msgstr ""
msgid "Submission by"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:353
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:359
msgid "Submission saved!"
msgstr ""
@@ -6396,7 +6438,7 @@ msgstr ""
#. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:97
#: frontend/src/components/Modals/Event.vue:106
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary"
msgstr ""
@@ -6501,7 +6543,7 @@ msgstr ""
#. Label of the template (Link) field in DocType 'Cohort Web Page'
#. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43
#: frontend/src/components/Modals/Event.vue:112
#: frontend/src/components/Modals/Event.vue:127
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template"
@@ -6542,7 +6584,7 @@ msgstr ""
msgid "Test this Exercise"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:92
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:93
msgid "Test {0}"
msgstr ""
@@ -6840,7 +6882,7 @@ msgid "Title is required"
msgstr ""
#. Label of the unavailable_to (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:112
#: frontend/src/pages/ProfileEvaluator.vue:120
#: lms/lms/doctype/course_evaluator/course_evaluator.json
msgid "To"
msgstr ""
@@ -6953,7 +6995,7 @@ msgstr ""
msgid "Unavailability"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:259
#: frontend/src/pages/ProfileEvaluator.vue:276
msgid "Unavailability updated successfully"
msgstr ""
@@ -7123,11 +7165,19 @@ msgstr ""
msgid "View"
msgstr ""
#: frontend/src/pages/JobDetail.vue:31
msgid "View Applications"
msgstr ""
#: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67
msgid "View Certificate"
msgstr ""
#: frontend/src/pages/JobApplications.vue:262
msgid "View Resume"
msgstr ""
#: frontend/src/components/BatchFeedback.vue:56
msgid "View all feedback"
msgstr ""
@@ -7146,7 +7196,7 @@ msgstr ""
msgid "Visit Batch"
msgstr ""
#: frontend/src/pages/JobDetail.vue:41
#: frontend/src/pages/JobDetail.vue:52
msgid "Visit Website"
msgstr ""
@@ -7355,7 +7405,7 @@ msgstr ""
msgid "You have a live class scheduled tomorrow. Please be prepared and be on time for the session."
msgstr ""
#: lms/job/doctype/lms_job_application/lms_job_application.py:22
#: lms/job/doctype/lms_job_application/lms_job_application.py:26
msgid "You have already applied for this job."
msgstr ""
@@ -7371,7 +7421,7 @@ msgstr ""
msgid "You have already reviewed this course"
msgstr ""
#: frontend/src/pages/JobDetail.vue:57
#: frontend/src/pages/JobDetail.vue:68
msgid "You have applied"
msgstr ""
@@ -7451,7 +7501,7 @@ msgstr ""
msgid "Your Account has been successfully created!"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:119
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:121
msgid "Your Output"
msgstr ""
@@ -7459,7 +7509,7 @@ msgstr ""
msgid "Your batch {0} is starting tomorrow"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:134
#: frontend/src/pages/ProfileEvaluator.vue:143
msgid "Your calendar is set."
msgstr ""
@@ -7538,11 +7588,11 @@ msgstr ""
msgid "and then 'Add to Home Screen'"
msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125
msgid "applicant"
msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125
msgid "applicants"
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: 2025-10-31 16:04+0000\n"
"PO-Revision-Date: 2025-11-02 19:07\n"
"POT-Creation-Date: 2025-11-07 16:04+0000\n"
"PO-Revision-Date: 2025-11-11 11:49\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Norwegian Bokmal\n"
"MIME-Version: 1.0\n"
@@ -176,7 +176,7 @@ msgstr ""
msgid "Add Row"
msgstr "Legg til Rad"
#: frontend/src/pages/ProfileEvaluator.vue:89
#: frontend/src/pages/ProfileEvaluator.vue:96
msgid "Add Slot"
msgstr ""
@@ -290,7 +290,7 @@ msgstr "Adresselinje 1"
#: frontend/src/pages/Billing.vue:78
msgid "Address Line 2"
msgstr "Adresselinje 2"
msgstr "Adresselinje 2:"
#. Option for the 'Role' (Select) field in DocType 'Cohort Staff'
#. Option for the 'Required Role' (Select) field in DocType 'Cohort Web Page'
@@ -304,7 +304,7 @@ msgstr ""
#. Name of a role
#: frontend/src/pages/Batches.vue:275 lms/lms/doctype/lms_badge/lms_badge.json
msgid "All"
msgstr ""
msgstr "Alle"
#: frontend/src/pages/Batches.vue:26
msgid "All Batches"
@@ -426,12 +426,25 @@ msgstr ""
msgid "Appears when the batch URL is shared on socials"
msgstr ""
#: frontend/src/pages/JobApplications.vue:24
msgid "Application"
msgstr ""
#. Label of a field in the job-opportunity Web Form
#: lms/job/web_form/job_opportunity/job_opportunity.json
msgid "Application Form Link"
msgstr ""
#: frontend/src/pages/JobDetail.vue:51
#: frontend/src/pages/JobApplications.vue:14
#: frontend/src/pages/JobApplications.vue:25
msgid "Applications"
msgstr ""
#: frontend/src/pages/JobApplications.vue:290
msgid "Applied On"
msgstr "Anvendt på"
#: frontend/src/pages/JobDetail.vue:62
msgid "Apply"
msgstr ""
@@ -483,7 +496,7 @@ msgstr ""
#. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch'
#. Label of the assessment (Table) field in DocType 'LMS Batch'
#: frontend/src/components/Modals/AssessmentModal.vue:27
#: frontend/src/components/Modals/BatchStudentProgress.vue:41
#: frontend/src/components/Modals/BatchStudentProgress.vue:43
#: lms/lms/doctype/lms_batch/lms_batch.json lms/templates/assessments.html:11
msgid "Assessment"
msgstr ""
@@ -546,7 +559,7 @@ msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/templates/assignment.html:3
msgid "Assignment"
msgstr "Tildeling"
msgstr "Oppgave"
#. Label of the assignment_attachment (Attach) field in DocType 'LMS Assignment
#. Submission'
@@ -569,7 +582,7 @@ msgstr ""
msgid "Assignment Title"
msgstr ""
#: frontend/src/components/Modals/AssignmentForm.vue:125
#: frontend/src/components/Modals/AssignmentForm.vue:133
msgid "Assignment created successfully"
msgstr ""
@@ -581,7 +594,7 @@ msgstr ""
msgid "Assignment submitted successfully"
msgstr ""
#: frontend/src/components/Modals/AssignmentForm.vue:138
#: frontend/src/components/Modals/AssignmentForm.vue:146
msgid "Assignment updated successfully"
msgstr ""
@@ -622,7 +635,7 @@ msgstr ""
msgid "Attire Preference"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:137
#: frontend/src/pages/ProfileEvaluator.vue:146
msgid "Authorize Google Calendar Access"
msgstr "Autoriser tilgang til Google Kalender"
@@ -637,7 +650,7 @@ msgstr ""
msgid "Auto Recording"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:224
#: frontend/src/pages/ProfileEvaluator.vue:241
msgid "Availability updated successfully"
msgstr ""
@@ -768,6 +781,7 @@ msgstr ""
#. Name of a role
#: lms/lms/doctype/course_evaluator/course_evaluator.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_category/lms_category.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -886,7 +900,7 @@ msgstr ""
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json
msgid "Blue"
msgstr ""
msgstr "Blå"
#. Label of the body (Markdown Editor) field in DocType 'Course Lesson'
#: lms/lms/doctype/course_lesson/course_lesson.json
@@ -998,7 +1012,7 @@ msgstr ""
msgid "Certificate of Completion"
msgstr ""
#: frontend/src/components/Modals/Event.vue:317
#: frontend/src/components/Modals/Event.vue:348
msgid "Certificate saved successfully"
msgstr ""
@@ -1018,7 +1032,7 @@ msgstr ""
#. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace
#: frontend/src/components/AppSidebar.vue:626
#: frontend/src/components/Modals/Event.vue:381
#: frontend/src/components/Modals/Event.vue:412
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58
#: frontend/src/pages/CourseCertification.vue:10
#: frontend/src/pages/CourseCertification.vue:135
@@ -1168,7 +1182,7 @@ msgstr ""
#: lms/fixtures/custom_field.json
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "City"
msgstr ""
msgstr "Poststed"
#: lms/templates/emails/live_class_reminder.html:10
msgid "Class:"
@@ -1205,7 +1219,7 @@ msgstr ""
#: frontend/src/components/Settings/Categories.vue:27
msgid "Close"
msgstr ""
msgstr "Lukk"
#. Option for the 'Status' (Select) field in DocType 'Job Opportunity'
#. Option in a Select field in the job-opportunity Web Form
@@ -1214,7 +1228,7 @@ msgstr ""
#: lms/job/web_form/job_opportunity/job_opportunity.json
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
msgid "Closed"
msgstr ""
msgstr "Lukket"
#. Option for the 'Auto Recording' (Select) field in DocType 'LMS Live Class'
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -1311,7 +1325,7 @@ msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
msgid "Comments"
msgstr ""
msgstr "Kommentarer"
#: frontend/src/components/Assignment.vue:148
msgid "Comments by Evaluator"
@@ -1361,7 +1375,7 @@ msgstr ""
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/job/web_form/job_opportunity/job_opportunity.json
msgid "Company Name"
msgstr ""
msgstr "Selskapets navn"
#. Label of the company_type (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
@@ -1385,7 +1399,7 @@ msgstr ""
#: lms/lms/doctype/lms_course_progress/lms_course_progress.json
#: lms/lms/widgets/CourseCard.html:75 lms/templates/reviews.html:48
msgid "Complete"
msgstr ""
msgstr "Fullført"
#: lms/templates/emails/lms_invite_request_approved.html:7
msgid "Complete Sign Up"
@@ -1541,7 +1555,7 @@ msgstr ""
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/payment_country/payment_country.json
msgid "Country"
msgstr ""
msgstr "Land"
#. Label of the course (Link) field in DocType 'Batch Course'
#. Label of the course (Link) field in DocType 'Cohort'
@@ -1640,6 +1654,7 @@ msgstr ""
#: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/course_lesson/course_lesson.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
#: lms/lms/doctype/lms_category/lms_category.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json
@@ -1757,7 +1772,7 @@ msgstr ""
#: frontend/src/components/BatchCourses.vue:5
#: frontend/src/components/BatchOverlay.vue:37
#: frontend/src/components/BatchStudents.vue:25
#: frontend/src/components/Modals/BatchStudentProgress.vue:91
#: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127
#: frontend/src/pages/Courses.vue:333 frontend/src/pages/Courses.vue:340
@@ -1800,7 +1815,7 @@ msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExercises.vue:32
#: frontend/src/pages/Quizzes.vue:10
msgid "Create"
msgstr ""
msgstr "Opprett"
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.js:7
msgid "Create Certificate"
@@ -1888,7 +1903,7 @@ msgstr ""
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Currency"
msgstr ""
msgstr "Valuta"
#. Label of the current_lesson (Link) field in DocType 'LMS Enrollment'
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
@@ -1932,7 +1947,7 @@ msgstr ""
#. Label of the show_dashboard (Check) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Dashboard"
msgstr ""
msgstr "Oversiktspanel"
#. Label of the date (Date) field in DocType 'LMS Batch Timetable'
#. Label of the date (Date) field in DocType 'LMS Certificate Evaluation'
@@ -1948,7 +1963,7 @@ msgstr ""
#: lms/lms/doctype/lms_live_class/lms_live_class.json
#: lms/lms/doctype/scheduled_flow/scheduled_flow.json
msgid "Date"
msgstr ""
msgstr "Dato"
#: frontend/src/pages/BatchForm.vue:76
msgid "Date and Time"
@@ -1971,7 +1986,7 @@ msgstr "Dag"
#: lms/templates/emails/mentor_request_creation_email.html:2
#: lms/templates/emails/mentor_request_status_update_email.html:2
msgid "Dear"
msgstr ""
msgstr "Kjære"
#: lms/templates/emails/batch_confirmation.html:2
#: lms/templates/emails/batch_start_reminder.html:2
@@ -2003,7 +2018,7 @@ msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseForm.vue:67
#: frontend/src/pages/Programs/ProgramForm.vue:231
msgid "Delete"
msgstr ""
msgstr "Slett"
#: frontend/src/components/CourseOutline.vue:67
msgid "Delete Chapter"
@@ -2066,7 +2081,7 @@ msgstr ""
#: lms/lms/doctype/lms_live_class/lms_live_class.json
#: lms/lms/doctype/work_experience/work_experience.json
msgid "Description"
msgstr ""
msgstr "Beskrivelse"
#: frontend/src/components/Apps.vue:51
msgid "Desk"
@@ -2098,7 +2113,7 @@ msgstr ""
#: frontend/src/components/Settings/ZoomSettings.vue:66
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Disabled"
msgstr ""
msgstr "Deaktivert"
#: frontend/src/components/DiscussionReplies.vue:57
#: lms/lms/widgets/NoPreviewModal.html:25 lms/templates/reviews.html:159
@@ -2143,7 +2158,7 @@ msgstr ""
#: lms/lms/doctype/lms_live_class/lms_live_class.json
#: lms/lms/doctype/lms_live_class_participant/lms_live_class_participant.json
msgid "Duration"
msgstr ""
msgstr "Varighet"
#. Label of the duration (Data) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:67 lms/lms/doctype/lms_quiz/lms_quiz.json
@@ -2169,10 +2184,10 @@ msgstr ""
#: frontend/src/components/DiscussionReplies.vue:35
#: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/components/Settings/Badges.vue:156
#: frontend/src/pages/JobDetail.vue:34 frontend/src/pages/Lesson.vue:42
#: frontend/src/pages/JobDetail.vue:45 frontend/src/pages/Lesson.vue:42
#: frontend/src/pages/Lesson.vue:178 frontend/src/pages/Profile.vue:36
msgid "Edit"
msgstr ""
msgstr "Rediger"
#: frontend/src/components/Modals/AssignmentForm.vue:14
msgid "Edit Assignment"
@@ -2236,9 +2251,9 @@ msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:105
#: frontend/src/components/Settings/Members.vue:103
#: lms/templates/signup-form.html:10
#: frontend/src/pages/JobApplications.vue:284 lms/templates/signup-form.html:10
msgid "Email"
msgstr ""
msgstr "E-post"
#: frontend/src/components/Modals/Event.vue:16
msgid "Email ID"
@@ -2272,6 +2287,7 @@ msgid "Email Templates deleted successfully"
msgstr ""
#: frontend/src/components/ContactUsEmail.vue:57
#: frontend/src/pages/JobApplications.vue:244
msgid "Email sent successfully"
msgstr ""
@@ -2323,7 +2339,7 @@ msgstr ""
#. Label of the end_date (Date) field in DocType 'LMS Batch'
#: lms/lms/doctype/cohort/cohort.json lms/lms/doctype/lms_batch/lms_batch.json
msgid "End Date"
msgstr ""
msgstr "Sluttdato"
#. Label of the end_date (Date) field in DocType 'Education Detail'
#: lms/lms/doctype/education_detail/education_detail.json
@@ -2414,6 +2430,14 @@ msgstr ""
msgid "Enter a URL"
msgstr ""
#: frontend/src/pages/JobApplications.vue:122
msgid "Enter email subject"
msgstr ""
#: frontend/src/pages/JobApplications.vue:128
msgid "Enter reply to email"
msgstr ""
#: frontend/src/components/Modals/ZoomAccountModal.vue:169
msgid "Error creating Zoom Account"
msgstr ""
@@ -2453,7 +2477,7 @@ msgstr ""
#. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:374 lms/lms/workspace/lms/lms.json
#: frontend/src/components/Modals/Event.vue:405 lms/lms/workspace/lms/lms.json
msgid "Evaluation"
msgstr ""
@@ -2478,7 +2502,7 @@ msgstr ""
msgid "Evaluation end date cannot be less than the batch end date."
msgstr ""
#: frontend/src/components/Modals/Event.vue:256
#: frontend/src/components/Modals/Event.vue:287
msgid "Evaluation saved successfully"
msgstr ""
@@ -2586,7 +2610,7 @@ msgstr "Utvid"
#. Label of the expected_output (Data) field in DocType 'LMS Test Case'
#. Label of the expected_output (Data) field in DocType 'LMS Test Case
#. Submission'
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:127
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:129
#: lms/lms/doctype/lms_test_case/lms_test_case.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Expected Output"
@@ -2599,7 +2623,7 @@ msgstr ""
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33
#: frontend/src/components/Modals/Event.vue:126
#: frontend/src/components/Modals/Event.vue:144
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date"
msgstr "Utløpsdato"
@@ -2626,7 +2650,7 @@ msgstr ""
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:366
#: frontend/src/components/Modals/Event.vue:397
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail"
@@ -2639,7 +2663,7 @@ msgstr "Ikke bestått"
#: lms/lms/doctype/lms_programming_exercise_submission/lms_programming_exercise_submission.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Failed"
msgstr ""
msgstr "Feilet"
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:136
msgid "Failed to create badge assignment: "
@@ -2657,7 +2681,7 @@ msgstr ""
msgid "Failed to send email"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:358
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:364
msgid "Failed to submit. Please try again. {0}"
msgstr ""
@@ -2770,18 +2794,19 @@ msgid "Friday"
msgstr ""
#. Label of the unavailable_from (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:99
#: frontend/src/pages/ProfileEvaluator.vue:106
#: lms/lms/doctype/course_evaluator/course_evaluator.json
msgid "From"
msgstr ""
msgstr "Fra"
#. Label of the from_date (Date) field in DocType 'Work Experience'
#: lms/lms/doctype/work_experience/work_experience.json
msgid "From Date"
msgstr ""
msgstr "Fra dato"
#. Label of the full_name (Data) field in DocType 'Course Evaluator'
#. Label of the full_name (Data) field in DocType 'LMS Program Member'
#: frontend/src/pages/JobApplications.vue:278
#: lms/lms/doctype/course_evaluator/course_evaluator.json
#: lms/lms/doctype/lms_program_member/lms_program_member.json
#: lms/templates/signup-form.html:5
@@ -2910,7 +2935,7 @@ msgstr ""
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json
msgid "Green"
msgstr ""
msgstr "Grønn"
#: lms/templates/signup-form.html:56
msgid "Have an account? Login"
@@ -2928,7 +2953,7 @@ msgstr "Hei"
#: frontend/src/components/AppSidebar.vue:131
msgid "Help"
msgstr ""
msgstr "Hjelp"
#: lms/templates/courses_created.html:15
msgid "Help others learn something new by creating a course."
@@ -3019,13 +3044,13 @@ msgstr ""
msgid "I am looking for a job"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:94
#: frontend/src/pages/ProfileEvaluator.vue:101
msgid "I am unavailable"
msgstr ""
#: frontend/src/pages/QuizForm.vue:334
msgid "ID"
msgstr ""
msgstr "ID"
#. Label of the icon (Data) field in DocType 'LMS Sidebar Item'
#: frontend/src/components/Modals/PageModal.vue:28
@@ -3105,7 +3130,7 @@ msgstr "Bilde: Korrupt datastrøm"
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:358
#: frontend/src/components/Modals/Event.vue:389
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -3161,7 +3186,7 @@ msgstr ""
#. Label of the input (Data) field in DocType 'LMS Test Case'
#. Label of the input (Data) field in DocType 'LMS Test Case Submission'
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:113
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:115
#: lms/lms/doctype/lms_test_case/lms_test_case.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Input"
@@ -3273,7 +3298,7 @@ msgstr ""
#. Label of the issue_date (Date) field in DocType 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28
#: frontend/src/components/Modals/Event.vue:121
#: frontend/src/components/Modals/Event.vue:138
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date"
@@ -3358,8 +3383,8 @@ msgid "Job Title"
msgstr ""
#. Label of the jobs (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/JobDetail.vue:10 frontend/src/pages/Jobs.vue:8
#: frontend/src/pages/Jobs.vue:212
#: frontend/src/pages/JobApplications.vue:9 frontend/src/pages/JobDetail.vue:10
#: frontend/src/pages/Jobs.vue:8 frontend/src/pages/Jobs.vue:212
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Jobs"
msgstr ""
@@ -3375,7 +3400,7 @@ msgstr ""
msgid "Join Call"
msgstr ""
#: frontend/src/components/Modals/Event.vue:74
#: frontend/src/components/Modals/Event.vue:78
msgid "Join Meeting"
msgstr ""
@@ -3883,7 +3908,7 @@ msgstr "Logg inn"
msgid "Login to Frappe Cloud?"
msgstr ""
#: frontend/src/pages/JobDetail.vue:63
#: frontend/src/pages/JobDetail.vue:74
msgid "Login to apply"
msgstr ""
@@ -3987,7 +4012,7 @@ msgstr ""
#: frontend/src/pages/BatchForm.vue:194
#: lms/lms/doctype/lms_batch/lms_batch.json
msgid "Medium"
msgstr ""
msgstr "Medium"
#. Label of the medium (Data) field in DocType 'User'
#: lms/fixtures/custom_field.json
@@ -4228,9 +4253,14 @@ msgid "Mentor Request Status Update Template"
msgstr ""
#: frontend/src/components/ContactUsEmail.vue:19
#: frontend/src/pages/JobApplications.vue:132
msgid "Message"
msgstr "Melding"
#: frontend/src/pages/JobApplications.vue:240
msgid "Message is required"
msgstr ""
#. Label of the meta_description (Small Text) field in DocType 'LMS Settings'
#: frontend/src/pages/BatchForm.vue:297 frontend/src/pages/CourseForm.vue:303
#: lms/lms/doctype/lms_settings/lms_settings.json
@@ -4351,13 +4381,13 @@ msgstr ""
msgid "My availability"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:127
#: frontend/src/pages/ProfileEvaluator.vue:136
msgid "My calendar"
msgstr ""
#: frontend/src/components/Modals/EmailTemplateModal.vue:24
msgid "Name"
msgstr ""
msgstr "Navn"
#. Option for the 'Event' (Select) field in DocType 'LMS Badge'
#: frontend/src/components/Settings/BadgeAssignments.vue:21
@@ -4372,7 +4402,7 @@ msgstr ""
#: frontend/src/pages/Programs/Programs.vue:10
#: lms/lms/doctype/lms_badge/lms_badge.json
msgid "New"
msgstr ""
msgstr "Ny"
#: lms/www/lms.py:149
msgid "New Batch"
@@ -4390,7 +4420,7 @@ msgstr ""
msgid "New Job"
msgstr ""
#: lms/job/doctype/lms_job_application/lms_job_application.py:27
#: lms/job/doctype/lms_job_application/lms_job_application.py:31
msgid "New Job Applicant"
msgstr ""
@@ -4430,7 +4460,7 @@ msgstr "Ny {0}"
#: frontend/src/components/Quiz.vue:237 frontend/src/pages/Lesson.vue:51
#: frontend/src/pages/Lesson.vue:187
msgid "Next"
msgstr ""
msgstr "Neste"
#: frontend/src/components/Assessments.vue:75 lms/templates/assessments.html:58
msgid "No Assessments"
@@ -4544,7 +4574,7 @@ msgstr "Ingen {0}"
#: lms/lms/user.py:29
msgid "Not Allowed"
msgstr ""
msgstr "Ikke tillatt"
#. Option for the 'Status' (Select) field in DocType 'LMS Assignment
#. Submission'
@@ -4568,7 +4598,7 @@ msgstr ""
#: frontend/src/components/NoPermission.vue:7 frontend/src/pages/Batch.vue:164
msgid "Not Permitted"
msgstr ""
msgstr "Ikke tillatt"
#: frontend/src/components/Assignment.vue:36
#: frontend/src/components/Settings/BrandSettings.vue:10
@@ -4581,7 +4611,7 @@ msgstr "Ikke lagret"
#. Label of the note (Text Editor) field in DocType 'LMS Lesson Note'
#: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json
msgid "Note"
msgstr ""
msgstr "Notat"
#: frontend/src/pages/Lesson.vue:404 frontend/src/pages/Lesson.vue:880
#: frontend/src/pages/Lesson.vue:891
@@ -4661,7 +4691,7 @@ msgstr ""
#: lms/job/web_form/job_opportunity/job_opportunity.json
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
msgid "Open"
msgstr ""
msgstr "Åpne"
#: lms/templates/emails/assignment_submission.html:8
msgid "Open Assignment"
@@ -4818,7 +4848,7 @@ msgstr ""
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:362
#: frontend/src/components/Modals/Event.vue:393
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass"
@@ -4945,12 +4975,12 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:354
#: frontend/src/components/Modals/Event.vue:385
#: lms/lms/doctype/cohort_join_request/cohort_join_request.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
msgid "Pending"
msgstr ""
msgstr "Avventer"
#. Label of the percentage (Int) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/QuizSubmission.vue:44
@@ -4964,7 +4994,7 @@ msgstr "Prosentandel"
msgid "Percentage (e.g. 70%)"
msgstr "Prosentandel (f.eks. 70 %)"
#: frontend/src/components/Modals/BatchStudentProgress.vue:44
#: frontend/src/components/Modals/BatchStudentProgress.vue:46
msgid "Percentage/Status"
msgstr "Prosentandel/status"
@@ -5080,7 +5110,7 @@ msgstr ""
msgid "Please prepare well and be on time for the evaluations."
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:135
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:139
msgid "Please run the code to execute the test cases."
msgstr ""
@@ -5172,7 +5202,7 @@ msgstr "Innlegg"
#: frontend/src/pages/Billing.vue:95
msgid "Postal Code"
msgstr ""
msgstr "Postnummer"
#: frontend/src/components/AppSidebar.vue:125
msgid "Powered by Learning"
@@ -5317,11 +5347,11 @@ msgstr ""
#: frontend/src/components/Settings/BadgeForm.vue:200
#: frontend/src/components/Settings/Badges.vue:205
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:420
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:426
msgid "Programming Exercise Submission"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:411
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:417
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:298
msgid "Programming Exercise Submissions"
msgstr ""
@@ -5355,12 +5385,12 @@ msgstr ""
#. Label of the progress (Float) field in DocType 'LMS Enrollment'
#. Label of the progress (Int) field in DocType 'LMS Program Member'
#: frontend/src/components/Modals/BatchStudentProgress.vue:94
#: frontend/src/components/Modals/BatchStudentProgress.vue:98
#: frontend/src/components/Modals/CourseProgressSummary.vue:224
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
#: lms/lms/doctype/lms_program_member/lms_program_member.json
msgid "Progress"
msgstr ""
msgstr "Fremgang"
#: frontend/src/pages/Programs/ProgramProgressSummary.vue:131
#: lms/lms/report/course_progress_summary/course_progress_summary.py:77
@@ -5401,7 +5431,7 @@ msgstr ""
#. Label of the published (Check) field in DocType 'LMS Course'
#. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51
#: frontend/src/components/Modals/Event.vue:108
#: frontend/src/components/Modals/Event.vue:122
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:152
#: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100
@@ -5569,7 +5599,7 @@ msgstr ""
#. Label of the rating (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147
#: frontend/src/components/Modals/Event.vue:86
#: frontend/src/components/Modals/Event.vue:92
#: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -5592,7 +5622,7 @@ msgstr ""
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json
msgid "Red"
msgstr ""
msgstr "Rød"
#. Label of the reference_docname (Dynamic Link) field in DocType 'LMS Batch
#. Timetable'
@@ -5656,6 +5686,7 @@ msgid "Remove Highlight"
msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:27
#: frontend/src/pages/JobApplications.vue:127
msgid "Reply To"
msgstr ""
@@ -5815,8 +5846,8 @@ msgstr ""
#: frontend/src/components/Controls/CodeEditor.vue:25
#: frontend/src/components/Modals/AssignmentForm.vue:59
#: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:101
#: frontend/src/components/Modals/Event.vue:129
#: frontend/src/components/Modals/Event.vue:115
#: frontend/src/components/Modals/Event.vue:151
#: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
@@ -5955,6 +5986,7 @@ msgid "Select an assignment"
msgstr ""
#: frontend/src/components/ContactUsEmail.vue:33
#: frontend/src/pages/JobApplications.vue:110
msgid "Send"
msgstr "Send"
@@ -5962,6 +5994,14 @@ msgstr "Send"
msgid "Send Confirmation Email"
msgstr ""
#: frontend/src/pages/JobApplications.vue:268
msgid "Send Email"
msgstr ""
#: frontend/src/pages/JobApplications.vue:106
msgid "Send Email to {0}"
msgstr ""
#. Label of the send_calendar_invite_for_evaluations (Check) field in DocType
#. 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
@@ -6004,7 +6044,7 @@ msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:19
#: frontend/src/pages/QuizForm.vue:86
msgid "Settings"
msgstr ""
msgstr "Innstillinger"
#: frontend/src/pages/ProfileAbout.vue:79
msgid "Share on"
@@ -6122,11 +6162,11 @@ msgstr "Hopp over"
msgid "Slot Times are overlapping for some schedules."
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:201
#: frontend/src/pages/ProfileEvaluator.vue:218
msgid "Slot added successfully"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:240
#: frontend/src/pages/ProfileEvaluator.vue:257
msgid "Slot deleted successfully"
msgstr ""
@@ -6137,7 +6177,7 @@ msgstr ""
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json
msgid "Slug"
msgstr ""
msgstr "Slug"
#: frontend/src/components/BatchCard.vue:25
#: frontend/src/components/BatchOverlay.vue:24
@@ -6161,7 +6201,7 @@ msgstr ""
#: lms/lms/doctype/lms_source/lms_source.json
#: lms/lms/doctype/lms_video_watch_duration/lms_video_watch_duration.json
msgid "Source"
msgstr ""
msgstr "Kilde"
#. Option for the 'Role' (Select) field in DocType 'Cohort Staff'
#. Option for the 'Member Type' (Select) field in DocType 'LMS Enrollment'
@@ -6179,7 +6219,7 @@ msgstr ""
#: frontend/src/pages/Home/AdminHome.vue:164
#: frontend/src/pages/Home/StudentHome.vue:107
msgid "Start"
msgstr ""
msgstr "Start"
#. Label of the start_date (Date) field in DocType 'Education Detail'
#. Label of the start_date (Date) field in DocType 'LMS Batch'
@@ -6188,7 +6228,7 @@ msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
msgid "Start Date"
msgstr ""
msgstr "Startdato"
#: lms/templates/emails/batch_start_reminder.html:13
msgid "Start Date:"
@@ -6265,7 +6305,7 @@ msgstr ""
#. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case Submission'
#: frontend/src/components/Modals/Event.vue:91
#: frontend/src/components/Modals/Event.vue:99
#: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6336,10 +6376,12 @@ msgstr ""
#: frontend/src/components/ContactUsEmail.vue:13
#: frontend/src/components/Modals/AnnouncementModal.vue:20
#: frontend/src/components/Modals/EmailTemplateModal.vue:31
#: frontend/src/pages/JobApplications.vue:121
msgid "Subject"
msgstr ""
msgstr "Emne"
#: frontend/src/components/Modals/AnnouncementModal.vue:94
#: frontend/src/pages/JobApplications.vue:237
msgid "Subject is required"
msgstr ""
@@ -6356,7 +6398,7 @@ msgstr ""
msgid "Submission by"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:353
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:359
msgid "Submission saved!"
msgstr ""
@@ -6371,7 +6413,7 @@ msgstr ""
#: lms/templates/livecode/extension_footer.html:25
#: lms/templates/reviews.html:163 lms/www/new-sign-up.html:32
msgid "Submit"
msgstr ""
msgstr "Registrer"
#: frontend/src/components/BatchFeedback.vue:35
msgid "Submit Feedback"
@@ -6396,7 +6438,7 @@ msgstr ""
#. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:97
#: frontend/src/components/Modals/Event.vue:106
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary"
msgstr "Sammendrag"
@@ -6501,11 +6543,11 @@ msgstr ""
#. Label of the template (Link) field in DocType 'Cohort Web Page'
#. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43
#: frontend/src/components/Modals/Event.vue:112
#: frontend/src/components/Modals/Event.vue:127
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template"
msgstr ""
msgstr "Mal"
#: lms/lms/user.py:40
msgid "Temporarily Disabled"
@@ -6542,7 +6584,7 @@ msgstr ""
msgid "Test this Exercise"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:92
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:93
msgid "Test {0}"
msgstr ""
@@ -6833,22 +6875,22 @@ msgstr ""
#: lms/lms/doctype/lms_timetable_template/lms_timetable_template.json
#: lms/lms/doctype/work_experience/work_experience.json
msgid "Title"
msgstr ""
msgstr "Tittel"
#: frontend/src/components/Modals/ChapterModal.vue:172
msgid "Title is required"
msgstr ""
#. Label of the unavailable_to (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:112
#: frontend/src/pages/ProfileEvaluator.vue:120
#: lms/lms/doctype/course_evaluator/course_evaluator.json
msgid "To"
msgstr ""
msgstr "Til"
#. Label of the to_date (Date) field in DocType 'Work Experience'
#: lms/lms/doctype/work_experience/work_experience.json
msgid "To Date"
msgstr ""
msgstr "Til dato"
#: lms/lms/utils.py:1784
msgid "To join this batch, please contact the Administrator."
@@ -6860,7 +6902,7 @@ msgstr "Altfor mange brukere har registrert seg nylig, så registreringen er dea
#: frontend/src/pages/Billing.vue:53
msgid "Total"
msgstr ""
msgstr "Totalt"
#. Label of the total_marks (Int) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:73 frontend/src/pages/Quizzes.vue:235
@@ -6953,7 +6995,7 @@ msgstr "UUID"
msgid "Unavailability"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:259
#: frontend/src/pages/ProfileEvaluator.vue:276
msgid "Unavailability updated successfully"
msgstr ""
@@ -7017,7 +7059,7 @@ msgstr ""
#: frontend/src/components/Settings/BrandSettings.vue:24
#: frontend/src/components/Settings/SettingDetails.vue:23
msgid "Update"
msgstr ""
msgstr "Oppdater"
#: lms/templates/emails/community_course_membership.html:11
msgid "Update Password"
@@ -7103,12 +7145,12 @@ msgstr "Gyldig e-postadresse og navn kreves"
#. Label of the value (Rating) field in DocType 'LMS Batch Feedback'
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
msgid "Value"
msgstr ""
msgstr "Verdi"
#. Option for the 'Event' (Select) field in DocType 'LMS Badge'
#: lms/lms/doctype/lms_badge/lms_badge.json
msgid "Value Change"
msgstr ""
msgstr "Verdiendring"
#. Label of the video_link (Data) field in DocType 'LMS Course'
#: lms/lms/doctype/lms_course/lms_course.json
@@ -7123,11 +7165,19 @@ msgstr ""
msgid "View"
msgstr ""
#: frontend/src/pages/JobDetail.vue:31
msgid "View Applications"
msgstr ""
#: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67
msgid "View Certificate"
msgstr ""
#: frontend/src/pages/JobApplications.vue:262
msgid "View Resume"
msgstr ""
#: frontend/src/components/BatchFeedback.vue:56
msgid "View all feedback"
msgstr ""
@@ -7146,7 +7196,7 @@ msgstr ""
msgid "Visit Batch"
msgstr ""
#: frontend/src/pages/JobDetail.vue:41
#: frontend/src/pages/JobDetail.vue:52
msgid "Visit Website"
msgstr ""
@@ -7355,7 +7405,7 @@ msgstr ""
msgid "You have a live class scheduled tomorrow. Please be prepared and be on time for the session."
msgstr ""
#: lms/job/doctype/lms_job_application/lms_job_application.py:22
#: lms/job/doctype/lms_job_application/lms_job_application.py:26
msgid "You have already applied for this job."
msgstr ""
@@ -7371,7 +7421,7 @@ msgstr ""
msgid "You have already reviewed this course"
msgstr ""
#: frontend/src/pages/JobDetail.vue:57
#: frontend/src/pages/JobDetail.vue:68
msgid "You have applied"
msgstr ""
@@ -7451,7 +7501,7 @@ msgstr ""
msgid "Your Account has been successfully created!"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:119
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:121
msgid "Your Output"
msgstr ""
@@ -7459,7 +7509,7 @@ msgstr ""
msgid "Your batch {0} is starting tomorrow"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:134
#: frontend/src/pages/ProfileEvaluator.vue:143
msgid "Your calendar is set."
msgstr ""
@@ -7532,17 +7582,17 @@ msgstr ""
#: frontend/src/components/CourseInstructors.vue:24
#: frontend/src/components/CourseInstructors.vue:45
msgid "and"
msgstr ""
msgstr "og"
#: frontend/src/components/InstallPrompt.vue:54
msgid "and then 'Add to Home Screen'"
msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125
msgid "applicant"
msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125
msgid "applicants"
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: 2025-10-31 16:04+0000\n"
"PO-Revision-Date: 2025-11-02 19:07\n"
"POT-Creation-Date: 2025-11-07 16:04+0000\n"
"PO-Revision-Date: 2025-11-11 11:49\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Dutch\n"
"MIME-Version: 1.0\n"
@@ -130,7 +130,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Batch Old'
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
msgid "Active"
msgstr ""
msgstr "Actief"
#: frontend/src/pages/Statistics.vue:16
msgid "Active Members"
@@ -148,7 +148,7 @@ msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:131
#: frontend/src/pages/Programs/ProgramForm.vue:180
msgid "Add"
msgstr ""
msgstr "Toevoegen"
#: frontend/src/components/CourseOutline.vue:18
#: frontend/src/components/CreateOutline.vue:18
@@ -176,7 +176,7 @@ msgstr ""
msgid "Add Row"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:89
#: frontend/src/pages/ProfileEvaluator.vue:96
msgid "Add Slot"
msgstr ""
@@ -282,7 +282,7 @@ msgstr ""
#: frontend/src/pages/Billing.vue:64
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Address"
msgstr ""
msgstr "Adres"
#: frontend/src/pages/Billing.vue:74
msgid "Address Line 1"
@@ -426,12 +426,25 @@ msgstr ""
msgid "Appears when the batch URL is shared on socials"
msgstr ""
#: frontend/src/pages/JobApplications.vue:24
msgid "Application"
msgstr ""
#. Label of a field in the job-opportunity Web Form
#: lms/job/web_form/job_opportunity/job_opportunity.json
msgid "Application Form Link"
msgstr ""
#: frontend/src/pages/JobDetail.vue:51
#: frontend/src/pages/JobApplications.vue:14
#: frontend/src/pages/JobApplications.vue:25
msgid "Applications"
msgstr ""
#: frontend/src/pages/JobApplications.vue:290
msgid "Applied On"
msgstr ""
#: frontend/src/pages/JobDetail.vue:62
msgid "Apply"
msgstr ""
@@ -483,7 +496,7 @@ msgstr ""
#. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch'
#. Label of the assessment (Table) field in DocType 'LMS Batch'
#: frontend/src/components/Modals/AssessmentModal.vue:27
#: frontend/src/components/Modals/BatchStudentProgress.vue:41
#: frontend/src/components/Modals/BatchStudentProgress.vue:43
#: lms/lms/doctype/lms_batch/lms_batch.json lms/templates/assessments.html:11
msgid "Assessment"
msgstr ""
@@ -569,7 +582,7 @@ msgstr ""
msgid "Assignment Title"
msgstr ""
#: frontend/src/components/Modals/AssignmentForm.vue:125
#: frontend/src/components/Modals/AssignmentForm.vue:133
msgid "Assignment created successfully"
msgstr ""
@@ -581,7 +594,7 @@ msgstr ""
msgid "Assignment submitted successfully"
msgstr ""
#: frontend/src/components/Modals/AssignmentForm.vue:138
#: frontend/src/components/Modals/AssignmentForm.vue:146
msgid "Assignment updated successfully"
msgstr ""
@@ -622,7 +635,7 @@ msgstr ""
msgid "Attire Preference"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:137
#: frontend/src/pages/ProfileEvaluator.vue:146
msgid "Authorize Google Calendar Access"
msgstr ""
@@ -637,7 +650,7 @@ msgstr ""
msgid "Auto Recording"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:224
#: frontend/src/pages/ProfileEvaluator.vue:241
msgid "Availability updated successfully"
msgstr ""
@@ -768,6 +781,7 @@ msgstr ""
#. Name of a role
#: lms/lms/doctype/course_evaluator/course_evaluator.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_category/lms_category.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -998,7 +1012,7 @@ msgstr ""
msgid "Certificate of Completion"
msgstr ""
#: frontend/src/components/Modals/Event.vue:317
#: frontend/src/components/Modals/Event.vue:348
msgid "Certificate saved successfully"
msgstr ""
@@ -1018,7 +1032,7 @@ msgstr ""
#. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace
#: frontend/src/components/AppSidebar.vue:626
#: frontend/src/components/Modals/Event.vue:381
#: frontend/src/components/Modals/Event.vue:412
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58
#: frontend/src/pages/CourseCertification.vue:10
#: frontend/src/pages/CourseCertification.vue:135
@@ -1640,6 +1654,7 @@ msgstr ""
#: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/course_lesson/course_lesson.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
#: lms/lms/doctype/lms_category/lms_category.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json
@@ -1757,7 +1772,7 @@ msgstr ""
#: frontend/src/components/BatchCourses.vue:5
#: frontend/src/components/BatchOverlay.vue:37
#: frontend/src/components/BatchStudents.vue:25
#: frontend/src/components/Modals/BatchStudentProgress.vue:91
#: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127
#: frontend/src/pages/Courses.vue:333 frontend/src/pages/Courses.vue:340
@@ -2169,7 +2184,7 @@ msgstr ""
#: frontend/src/components/DiscussionReplies.vue:35
#: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/components/Settings/Badges.vue:156
#: frontend/src/pages/JobDetail.vue:34 frontend/src/pages/Lesson.vue:42
#: frontend/src/pages/JobDetail.vue:45 frontend/src/pages/Lesson.vue:42
#: frontend/src/pages/Lesson.vue:178 frontend/src/pages/Profile.vue:36
msgid "Edit"
msgstr ""
@@ -2236,7 +2251,7 @@ msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:105
#: frontend/src/components/Settings/Members.vue:103
#: lms/templates/signup-form.html:10
#: frontend/src/pages/JobApplications.vue:284 lms/templates/signup-form.html:10
msgid "Email"
msgstr ""
@@ -2272,6 +2287,7 @@ msgid "Email Templates deleted successfully"
msgstr ""
#: frontend/src/components/ContactUsEmail.vue:57
#: frontend/src/pages/JobApplications.vue:244
msgid "Email sent successfully"
msgstr "E-mail succesvol verzonden"
@@ -2414,6 +2430,14 @@ msgstr ""
msgid "Enter a URL"
msgstr ""
#: frontend/src/pages/JobApplications.vue:122
msgid "Enter email subject"
msgstr ""
#: frontend/src/pages/JobApplications.vue:128
msgid "Enter reply to email"
msgstr ""
#: frontend/src/components/Modals/ZoomAccountModal.vue:169
msgid "Error creating Zoom Account"
msgstr ""
@@ -2453,7 +2477,7 @@ msgstr ""
#. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:374 lms/lms/workspace/lms/lms.json
#: frontend/src/components/Modals/Event.vue:405 lms/lms/workspace/lms/lms.json
msgid "Evaluation"
msgstr ""
@@ -2478,7 +2502,7 @@ msgstr ""
msgid "Evaluation end date cannot be less than the batch end date."
msgstr ""
#: frontend/src/components/Modals/Event.vue:256
#: frontend/src/components/Modals/Event.vue:287
msgid "Evaluation saved successfully"
msgstr ""
@@ -2586,7 +2610,7 @@ msgstr ""
#. Label of the expected_output (Data) field in DocType 'LMS Test Case'
#. Label of the expected_output (Data) field in DocType 'LMS Test Case
#. Submission'
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:127
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:129
#: lms/lms/doctype/lms_test_case/lms_test_case.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Expected Output"
@@ -2599,7 +2623,7 @@ msgstr ""
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33
#: frontend/src/components/Modals/Event.vue:126
#: frontend/src/components/Modals/Event.vue:144
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date"
msgstr ""
@@ -2626,7 +2650,7 @@ msgstr ""
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:366
#: frontend/src/components/Modals/Event.vue:397
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail"
@@ -2657,7 +2681,7 @@ msgstr ""
msgid "Failed to send email"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:358
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:364
msgid "Failed to submit. Please try again. {0}"
msgstr ""
@@ -2770,7 +2794,7 @@ msgid "Friday"
msgstr ""
#. Label of the unavailable_from (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:99
#: frontend/src/pages/ProfileEvaluator.vue:106
#: lms/lms/doctype/course_evaluator/course_evaluator.json
msgid "From"
msgstr ""
@@ -2782,6 +2806,7 @@ msgstr ""
#. Label of the full_name (Data) field in DocType 'Course Evaluator'
#. Label of the full_name (Data) field in DocType 'LMS Program Member'
#: frontend/src/pages/JobApplications.vue:278
#: lms/lms/doctype/course_evaluator/course_evaluator.json
#: lms/lms/doctype/lms_program_member/lms_program_member.json
#: lms/templates/signup-form.html:5
@@ -3019,7 +3044,7 @@ msgstr ""
msgid "I am looking for a job"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:94
#: frontend/src/pages/ProfileEvaluator.vue:101
msgid "I am unavailable"
msgstr ""
@@ -3105,7 +3130,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:358
#: frontend/src/components/Modals/Event.vue:389
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -3161,7 +3186,7 @@ msgstr ""
#. Label of the input (Data) field in DocType 'LMS Test Case'
#. Label of the input (Data) field in DocType 'LMS Test Case Submission'
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:113
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:115
#: lms/lms/doctype/lms_test_case/lms_test_case.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Input"
@@ -3273,7 +3298,7 @@ msgstr ""
#. Label of the issue_date (Date) field in DocType 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28
#: frontend/src/components/Modals/Event.vue:121
#: frontend/src/components/Modals/Event.vue:138
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date"
@@ -3358,8 +3383,8 @@ msgid "Job Title"
msgstr ""
#. Label of the jobs (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/JobDetail.vue:10 frontend/src/pages/Jobs.vue:8
#: frontend/src/pages/Jobs.vue:212
#: frontend/src/pages/JobApplications.vue:9 frontend/src/pages/JobDetail.vue:10
#: frontend/src/pages/Jobs.vue:8 frontend/src/pages/Jobs.vue:212
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Jobs"
msgstr ""
@@ -3375,7 +3400,7 @@ msgstr ""
msgid "Join Call"
msgstr ""
#: frontend/src/components/Modals/Event.vue:74
#: frontend/src/components/Modals/Event.vue:78
msgid "Join Meeting"
msgstr ""
@@ -3883,7 +3908,7 @@ msgstr ""
msgid "Login to Frappe Cloud?"
msgstr ""
#: frontend/src/pages/JobDetail.vue:63
#: frontend/src/pages/JobDetail.vue:74
msgid "Login to apply"
msgstr ""
@@ -4228,9 +4253,14 @@ msgid "Mentor Request Status Update Template"
msgstr ""
#: frontend/src/components/ContactUsEmail.vue:19
#: frontend/src/pages/JobApplications.vue:132
msgid "Message"
msgstr ""
#: frontend/src/pages/JobApplications.vue:240
msgid "Message is required"
msgstr ""
#. Label of the meta_description (Small Text) field in DocType 'LMS Settings'
#: frontend/src/pages/BatchForm.vue:297 frontend/src/pages/CourseForm.vue:303
#: lms/lms/doctype/lms_settings/lms_settings.json
@@ -4351,7 +4381,7 @@ msgstr ""
msgid "My availability"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:127
#: frontend/src/pages/ProfileEvaluator.vue:136
msgid "My calendar"
msgstr ""
@@ -4390,7 +4420,7 @@ msgstr ""
msgid "New Job"
msgstr ""
#: lms/job/doctype/lms_job_application/lms_job_application.py:27
#: lms/job/doctype/lms_job_application/lms_job_application.py:31
msgid "New Job Applicant"
msgstr ""
@@ -4818,7 +4848,7 @@ msgstr ""
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:362
#: frontend/src/components/Modals/Event.vue:393
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass"
@@ -4945,7 +4975,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:354
#: frontend/src/components/Modals/Event.vue:385
#: lms/lms/doctype/cohort_join_request/cohort_join_request.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
@@ -4964,7 +4994,7 @@ msgstr ""
msgid "Percentage (e.g. 70%)"
msgstr ""
#: frontend/src/components/Modals/BatchStudentProgress.vue:44
#: frontend/src/components/Modals/BatchStudentProgress.vue:46
msgid "Percentage/Status"
msgstr ""
@@ -5080,7 +5110,7 @@ msgstr ""
msgid "Please prepare well and be on time for the evaluations."
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:135
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:139
msgid "Please run the code to execute the test cases."
msgstr ""
@@ -5317,11 +5347,11 @@ msgstr ""
#: frontend/src/components/Settings/BadgeForm.vue:200
#: frontend/src/components/Settings/Badges.vue:205
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:420
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:426
msgid "Programming Exercise Submission"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:411
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:417
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:298
msgid "Programming Exercise Submissions"
msgstr ""
@@ -5355,7 +5385,7 @@ msgstr ""
#. Label of the progress (Float) field in DocType 'LMS Enrollment'
#. Label of the progress (Int) field in DocType 'LMS Program Member'
#: frontend/src/components/Modals/BatchStudentProgress.vue:94
#: frontend/src/components/Modals/BatchStudentProgress.vue:98
#: frontend/src/components/Modals/CourseProgressSummary.vue:224
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
#: lms/lms/doctype/lms_program_member/lms_program_member.json
@@ -5401,7 +5431,7 @@ msgstr ""
#. Label of the published (Check) field in DocType 'LMS Course'
#. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51
#: frontend/src/components/Modals/Event.vue:108
#: frontend/src/components/Modals/Event.vue:122
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:152
#: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100
@@ -5569,7 +5599,7 @@ msgstr ""
#. Label of the rating (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147
#: frontend/src/components/Modals/Event.vue:86
#: frontend/src/components/Modals/Event.vue:92
#: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -5656,6 +5686,7 @@ msgid "Remove Highlight"
msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:27
#: frontend/src/pages/JobApplications.vue:127
msgid "Reply To"
msgstr ""
@@ -5815,8 +5846,8 @@ msgstr ""
#: frontend/src/components/Controls/CodeEditor.vue:25
#: frontend/src/components/Modals/AssignmentForm.vue:59
#: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:101
#: frontend/src/components/Modals/Event.vue:129
#: frontend/src/components/Modals/Event.vue:115
#: frontend/src/components/Modals/Event.vue:151
#: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
@@ -5955,6 +5986,7 @@ msgid "Select an assignment"
msgstr ""
#: frontend/src/components/ContactUsEmail.vue:33
#: frontend/src/pages/JobApplications.vue:110
msgid "Send"
msgstr ""
@@ -5962,6 +5994,14 @@ msgstr ""
msgid "Send Confirmation Email"
msgstr ""
#: frontend/src/pages/JobApplications.vue:268
msgid "Send Email"
msgstr ""
#: frontend/src/pages/JobApplications.vue:106
msgid "Send Email to {0}"
msgstr ""
#. Label of the send_calendar_invite_for_evaluations (Check) field in DocType
#. 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
@@ -6122,11 +6162,11 @@ msgstr ""
msgid "Slot Times are overlapping for some schedules."
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:201
#: frontend/src/pages/ProfileEvaluator.vue:218
msgid "Slot added successfully"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:240
#: frontend/src/pages/ProfileEvaluator.vue:257
msgid "Slot deleted successfully"
msgstr ""
@@ -6265,7 +6305,7 @@ msgstr ""
#. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case Submission'
#: frontend/src/components/Modals/Event.vue:91
#: frontend/src/components/Modals/Event.vue:99
#: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6336,10 +6376,12 @@ msgstr ""
#: frontend/src/components/ContactUsEmail.vue:13
#: frontend/src/components/Modals/AnnouncementModal.vue:20
#: frontend/src/components/Modals/EmailTemplateModal.vue:31
#: frontend/src/pages/JobApplications.vue:121
msgid "Subject"
msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:94
#: frontend/src/pages/JobApplications.vue:237
msgid "Subject is required"
msgstr ""
@@ -6356,7 +6398,7 @@ msgstr ""
msgid "Submission by"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:353
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:359
msgid "Submission saved!"
msgstr ""
@@ -6396,7 +6438,7 @@ msgstr ""
#. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:97
#: frontend/src/components/Modals/Event.vue:106
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary"
msgstr ""
@@ -6501,7 +6543,7 @@ msgstr ""
#. Label of the template (Link) field in DocType 'Cohort Web Page'
#. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43
#: frontend/src/components/Modals/Event.vue:112
#: frontend/src/components/Modals/Event.vue:127
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template"
@@ -6542,7 +6584,7 @@ msgstr ""
msgid "Test this Exercise"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:92
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:93
msgid "Test {0}"
msgstr ""
@@ -6840,7 +6882,7 @@ msgid "Title is required"
msgstr ""
#. Label of the unavailable_to (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:112
#: frontend/src/pages/ProfileEvaluator.vue:120
#: lms/lms/doctype/course_evaluator/course_evaluator.json
msgid "To"
msgstr ""
@@ -6953,7 +6995,7 @@ msgstr ""
msgid "Unavailability"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:259
#: frontend/src/pages/ProfileEvaluator.vue:276
msgid "Unavailability updated successfully"
msgstr ""
@@ -7123,11 +7165,19 @@ msgstr ""
msgid "View"
msgstr ""
#: frontend/src/pages/JobDetail.vue:31
msgid "View Applications"
msgstr ""
#: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67
msgid "View Certificate"
msgstr ""
#: frontend/src/pages/JobApplications.vue:262
msgid "View Resume"
msgstr ""
#: frontend/src/components/BatchFeedback.vue:56
msgid "View all feedback"
msgstr ""
@@ -7146,7 +7196,7 @@ msgstr ""
msgid "Visit Batch"
msgstr ""
#: frontend/src/pages/JobDetail.vue:41
#: frontend/src/pages/JobDetail.vue:52
msgid "Visit Website"
msgstr ""
@@ -7355,7 +7405,7 @@ msgstr ""
msgid "You have a live class scheduled tomorrow. Please be prepared and be on time for the session."
msgstr ""
#: lms/job/doctype/lms_job_application/lms_job_application.py:22
#: lms/job/doctype/lms_job_application/lms_job_application.py:26
msgid "You have already applied for this job."
msgstr ""
@@ -7371,7 +7421,7 @@ msgstr ""
msgid "You have already reviewed this course"
msgstr ""
#: frontend/src/pages/JobDetail.vue:57
#: frontend/src/pages/JobDetail.vue:68
msgid "You have applied"
msgstr ""
@@ -7451,7 +7501,7 @@ msgstr ""
msgid "Your Account has been successfully created!"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:119
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:121
msgid "Your Output"
msgstr ""
@@ -7459,7 +7509,7 @@ msgstr ""
msgid "Your batch {0} is starting tomorrow"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:134
#: frontend/src/pages/ProfileEvaluator.vue:143
msgid "Your calendar is set."
msgstr ""
@@ -7538,11 +7588,11 @@ msgstr ""
msgid "and then 'Add to Home Screen'"
msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125
msgid "applicant"
msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125
msgid "applicants"
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: 2025-10-31 16:04+0000\n"
"PO-Revision-Date: 2025-11-02 19:07\n"
"POT-Creation-Date: 2025-11-07 16:04+0000\n"
"PO-Revision-Date: 2025-11-11 11:49\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Polish\n"
"MIME-Version: 1.0\n"
@@ -176,7 +176,7 @@ msgstr ""
msgid "Add Row"
msgstr "Dodaj wiersz"
#: frontend/src/pages/ProfileEvaluator.vue:89
#: frontend/src/pages/ProfileEvaluator.vue:96
msgid "Add Slot"
msgstr ""
@@ -426,12 +426,25 @@ msgstr ""
msgid "Appears when the batch URL is shared on socials"
msgstr ""
#: frontend/src/pages/JobApplications.vue:24
msgid "Application"
msgstr ""
#. Label of a field in the job-opportunity Web Form
#: lms/job/web_form/job_opportunity/job_opportunity.json
msgid "Application Form Link"
msgstr ""
#: frontend/src/pages/JobDetail.vue:51
#: frontend/src/pages/JobApplications.vue:14
#: frontend/src/pages/JobApplications.vue:25
msgid "Applications"
msgstr ""
#: frontend/src/pages/JobApplications.vue:290
msgid "Applied On"
msgstr "Data zastosowania"
#: frontend/src/pages/JobDetail.vue:62
msgid "Apply"
msgstr "Zastosuj"
@@ -483,7 +496,7 @@ msgstr ""
#. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch'
#. Label of the assessment (Table) field in DocType 'LMS Batch'
#: frontend/src/components/Modals/AssessmentModal.vue:27
#: frontend/src/components/Modals/BatchStudentProgress.vue:41
#: frontend/src/components/Modals/BatchStudentProgress.vue:43
#: lms/lms/doctype/lms_batch/lms_batch.json lms/templates/assessments.html:11
msgid "Assessment"
msgstr ""
@@ -569,7 +582,7 @@ msgstr ""
msgid "Assignment Title"
msgstr ""
#: frontend/src/components/Modals/AssignmentForm.vue:125
#: frontend/src/components/Modals/AssignmentForm.vue:133
msgid "Assignment created successfully"
msgstr ""
@@ -581,7 +594,7 @@ msgstr ""
msgid "Assignment submitted successfully"
msgstr ""
#: frontend/src/components/Modals/AssignmentForm.vue:138
#: frontend/src/components/Modals/AssignmentForm.vue:146
msgid "Assignment updated successfully"
msgstr ""
@@ -622,7 +635,7 @@ msgstr "Uczestnicy"
msgid "Attire Preference"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:137
#: frontend/src/pages/ProfileEvaluator.vue:146
msgid "Authorize Google Calendar Access"
msgstr "Autoryzuj dostęp do Kalendarza Google"
@@ -637,7 +650,7 @@ msgstr ""
msgid "Auto Recording"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:224
#: frontend/src/pages/ProfileEvaluator.vue:241
msgid "Availability updated successfully"
msgstr ""
@@ -768,6 +781,7 @@ msgstr ""
#. Name of a role
#: lms/lms/doctype/course_evaluator/course_evaluator.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_category/lms_category.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -937,7 +951,7 @@ msgstr ""
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
msgid "Cancelled"
msgstr ""
msgstr "Anulowano"
#. Label of the carrer_preference_details (Section Break) field in DocType
#. 'User'
@@ -998,7 +1012,7 @@ msgstr ""
msgid "Certificate of Completion"
msgstr ""
#: frontend/src/components/Modals/Event.vue:317
#: frontend/src/components/Modals/Event.vue:348
msgid "Certificate saved successfully"
msgstr ""
@@ -1018,7 +1032,7 @@ msgstr ""
#. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace
#: frontend/src/components/AppSidebar.vue:626
#: frontend/src/components/Modals/Event.vue:381
#: frontend/src/components/Modals/Event.vue:412
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58
#: frontend/src/pages/CourseCertification.vue:10
#: frontend/src/pages/CourseCertification.vue:135
@@ -1541,7 +1555,7 @@ msgstr ""
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/payment_country/payment_country.json
msgid "Country"
msgstr ""
msgstr "Kraj"
#. Label of the course (Link) field in DocType 'Batch Course'
#. Label of the course (Link) field in DocType 'Cohort'
@@ -1640,6 +1654,7 @@ msgstr ""
#: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/course_lesson/course_lesson.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
#: lms/lms/doctype/lms_category/lms_category.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json
@@ -1757,7 +1772,7 @@ msgstr ""
#: frontend/src/components/BatchCourses.vue:5
#: frontend/src/components/BatchOverlay.vue:37
#: frontend/src/components/BatchStudents.vue:25
#: frontend/src/components/Modals/BatchStudentProgress.vue:91
#: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127
#: frontend/src/pages/Courses.vue:333 frontend/src/pages/Courses.vue:340
@@ -1932,7 +1947,7 @@ msgstr "Cyjan"
#. Label of the show_dashboard (Check) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Dashboard"
msgstr ""
msgstr "Panel kontrolny"
#. Label of the date (Date) field in DocType 'LMS Batch Timetable'
#. Label of the date (Date) field in DocType 'LMS Certificate Evaluation'
@@ -1948,7 +1963,7 @@ msgstr ""
#: lms/lms/doctype/lms_live_class/lms_live_class.json
#: lms/lms/doctype/scheduled_flow/scheduled_flow.json
msgid "Date"
msgstr ""
msgstr "Data"
#: frontend/src/pages/BatchForm.vue:76
msgid "Date and Time"
@@ -2169,7 +2184,7 @@ msgstr ""
#: frontend/src/components/DiscussionReplies.vue:35
#: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/components/Settings/Badges.vue:156
#: frontend/src/pages/JobDetail.vue:34 frontend/src/pages/Lesson.vue:42
#: frontend/src/pages/JobDetail.vue:45 frontend/src/pages/Lesson.vue:42
#: frontend/src/pages/Lesson.vue:178 frontend/src/pages/Profile.vue:36
msgid "Edit"
msgstr "Edytuj"
@@ -2236,7 +2251,7 @@ msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:105
#: frontend/src/components/Settings/Members.vue:103
#: lms/templates/signup-form.html:10
#: frontend/src/pages/JobApplications.vue:284 lms/templates/signup-form.html:10
msgid "Email"
msgstr "E-mail"
@@ -2272,6 +2287,7 @@ msgid "Email Templates deleted successfully"
msgstr ""
#: frontend/src/components/ContactUsEmail.vue:57
#: frontend/src/pages/JobApplications.vue:244
msgid "Email sent successfully"
msgstr ""
@@ -2414,6 +2430,14 @@ msgstr ""
msgid "Enter a URL"
msgstr ""
#: frontend/src/pages/JobApplications.vue:122
msgid "Enter email subject"
msgstr ""
#: frontend/src/pages/JobApplications.vue:128
msgid "Enter reply to email"
msgstr ""
#: frontend/src/components/Modals/ZoomAccountModal.vue:169
msgid "Error creating Zoom Account"
msgstr ""
@@ -2453,7 +2477,7 @@ msgstr ""
#. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:374 lms/lms/workspace/lms/lms.json
#: frontend/src/components/Modals/Event.vue:405 lms/lms/workspace/lms/lms.json
msgid "Evaluation"
msgstr ""
@@ -2478,7 +2502,7 @@ msgstr ""
msgid "Evaluation end date cannot be less than the batch end date."
msgstr ""
#: frontend/src/components/Modals/Event.vue:256
#: frontend/src/components/Modals/Event.vue:287
msgid "Evaluation saved successfully"
msgstr ""
@@ -2586,7 +2610,7 @@ msgstr "Rozszerzać"
#. Label of the expected_output (Data) field in DocType 'LMS Test Case'
#. Label of the expected_output (Data) field in DocType 'LMS Test Case
#. Submission'
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:127
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:129
#: lms/lms/doctype/lms_test_case/lms_test_case.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Expected Output"
@@ -2599,7 +2623,7 @@ msgstr ""
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33
#: frontend/src/components/Modals/Event.vue:126
#: frontend/src/components/Modals/Event.vue:144
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date"
msgstr "Data ważności"
@@ -2626,7 +2650,7 @@ msgstr ""
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:366
#: frontend/src/components/Modals/Event.vue:397
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail"
@@ -2657,7 +2681,7 @@ msgstr ""
msgid "Failed to send email"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:358
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:364
msgid "Failed to submit. Please try again. {0}"
msgstr ""
@@ -2770,7 +2794,7 @@ msgid "Friday"
msgstr "Piątek"
#. Label of the unavailable_from (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:99
#: frontend/src/pages/ProfileEvaluator.vue:106
#: lms/lms/doctype/course_evaluator/course_evaluator.json
msgid "From"
msgstr ""
@@ -2782,6 +2806,7 @@ msgstr ""
#. Label of the full_name (Data) field in DocType 'Course Evaluator'
#. Label of the full_name (Data) field in DocType 'LMS Program Member'
#: frontend/src/pages/JobApplications.vue:278
#: lms/lms/doctype/course_evaluator/course_evaluator.json
#: lms/lms/doctype/lms_program_member/lms_program_member.json
#: lms/templates/signup-form.html:5
@@ -3019,7 +3044,7 @@ msgstr ""
msgid "I am looking for a job"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:94
#: frontend/src/pages/ProfileEvaluator.vue:101
msgid "I am unavailable"
msgstr ""
@@ -3105,7 +3130,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:358
#: frontend/src/components/Modals/Event.vue:389
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -3161,7 +3186,7 @@ msgstr "Przedsiębiorstwo"
#. Label of the input (Data) field in DocType 'LMS Test Case'
#. Label of the input (Data) field in DocType 'LMS Test Case Submission'
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:113
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:115
#: lms/lms/doctype/lms_test_case/lms_test_case.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Input"
@@ -3273,7 +3298,7 @@ msgstr ""
#. Label of the issue_date (Date) field in DocType 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28
#: frontend/src/components/Modals/Event.vue:121
#: frontend/src/components/Modals/Event.vue:138
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date"
@@ -3358,8 +3383,8 @@ msgid "Job Title"
msgstr "Tytuł zadania"
#. Label of the jobs (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/JobDetail.vue:10 frontend/src/pages/Jobs.vue:8
#: frontend/src/pages/Jobs.vue:212
#: frontend/src/pages/JobApplications.vue:9 frontend/src/pages/JobDetail.vue:10
#: frontend/src/pages/Jobs.vue:8 frontend/src/pages/Jobs.vue:212
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Jobs"
msgstr ""
@@ -3375,7 +3400,7 @@ msgstr ""
msgid "Join Call"
msgstr ""
#: frontend/src/components/Modals/Event.vue:74
#: frontend/src/components/Modals/Event.vue:78
msgid "Join Meeting"
msgstr ""
@@ -3883,7 +3908,7 @@ msgstr "Zaloguj się"
msgid "Login to Frappe Cloud?"
msgstr ""
#: frontend/src/pages/JobDetail.vue:63
#: frontend/src/pages/JobDetail.vue:74
msgid "Login to apply"
msgstr ""
@@ -4228,9 +4253,14 @@ msgid "Mentor Request Status Update Template"
msgstr ""
#: frontend/src/components/ContactUsEmail.vue:19
#: frontend/src/pages/JobApplications.vue:132
msgid "Message"
msgstr "Wiadomość"
#: frontend/src/pages/JobApplications.vue:240
msgid "Message is required"
msgstr ""
#. Label of the meta_description (Small Text) field in DocType 'LMS Settings'
#: frontend/src/pages/BatchForm.vue:297 frontend/src/pages/CourseForm.vue:303
#: lms/lms/doctype/lms_settings/lms_settings.json
@@ -4351,7 +4381,7 @@ msgstr ""
msgid "My availability"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:127
#: frontend/src/pages/ProfileEvaluator.vue:136
msgid "My calendar"
msgstr ""
@@ -4390,7 +4420,7 @@ msgstr ""
msgid "New Job"
msgstr ""
#: lms/job/doctype/lms_job_application/lms_job_application.py:27
#: lms/job/doctype/lms_job_application/lms_job_application.py:31
msgid "New Job Applicant"
msgstr ""
@@ -4581,7 +4611,7 @@ msgstr "Niezapisany"
#. Label of the note (Text Editor) field in DocType 'LMS Lesson Note'
#: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json
msgid "Note"
msgstr ""
msgstr "Notatka"
#: frontend/src/pages/Lesson.vue:404 frontend/src/pages/Lesson.vue:880
#: frontend/src/pages/Lesson.vue:891
@@ -4818,7 +4848,7 @@ msgstr ""
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:362
#: frontend/src/components/Modals/Event.vue:393
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass"
@@ -4945,7 +4975,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:354
#: frontend/src/components/Modals/Event.vue:385
#: lms/lms/doctype/cohort_join_request/cohort_join_request.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
@@ -4964,7 +4994,7 @@ msgstr "Procent"
msgid "Percentage (e.g. 70%)"
msgstr ""
#: frontend/src/components/Modals/BatchStudentProgress.vue:44
#: frontend/src/components/Modals/BatchStudentProgress.vue:46
msgid "Percentage/Status"
msgstr ""
@@ -5080,7 +5110,7 @@ msgstr ""
msgid "Please prepare well and be on time for the evaluations."
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:135
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:139
msgid "Please run the code to execute the test cases."
msgstr ""
@@ -5317,11 +5347,11 @@ msgstr ""
#: frontend/src/components/Settings/BadgeForm.vue:200
#: frontend/src/components/Settings/Badges.vue:205
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:420
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:426
msgid "Programming Exercise Submission"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:411
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:417
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:298
msgid "Programming Exercise Submissions"
msgstr ""
@@ -5355,7 +5385,7 @@ msgstr ""
#. Label of the progress (Float) field in DocType 'LMS Enrollment'
#. Label of the progress (Int) field in DocType 'LMS Program Member'
#: frontend/src/components/Modals/BatchStudentProgress.vue:94
#: frontend/src/components/Modals/BatchStudentProgress.vue:98
#: frontend/src/components/Modals/CourseProgressSummary.vue:224
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
#: lms/lms/doctype/lms_program_member/lms_program_member.json
@@ -5401,7 +5431,7 @@ msgstr ""
#. Label of the published (Check) field in DocType 'LMS Course'
#. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51
#: frontend/src/components/Modals/Event.vue:108
#: frontend/src/components/Modals/Event.vue:122
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:152
#: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100
@@ -5569,7 +5599,7 @@ msgstr ""
#. Label of the rating (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147
#: frontend/src/components/Modals/Event.vue:86
#: frontend/src/components/Modals/Event.vue:92
#: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -5656,6 +5686,7 @@ msgid "Remove Highlight"
msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:27
#: frontend/src/pages/JobApplications.vue:127
msgid "Reply To"
msgstr ""
@@ -5815,8 +5846,8 @@ msgstr "Sobota"
#: frontend/src/components/Controls/CodeEditor.vue:25
#: frontend/src/components/Modals/AssignmentForm.vue:59
#: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:101
#: frontend/src/components/Modals/Event.vue:129
#: frontend/src/components/Modals/Event.vue:115
#: frontend/src/components/Modals/Event.vue:151
#: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
@@ -5955,6 +5986,7 @@ msgid "Select an assignment"
msgstr ""
#: frontend/src/components/ContactUsEmail.vue:33
#: frontend/src/pages/JobApplications.vue:110
msgid "Send"
msgstr ""
@@ -5962,6 +5994,14 @@ msgstr ""
msgid "Send Confirmation Email"
msgstr ""
#: frontend/src/pages/JobApplications.vue:268
msgid "Send Email"
msgstr ""
#: frontend/src/pages/JobApplications.vue:106
msgid "Send Email to {0}"
msgstr ""
#. Label of the send_calendar_invite_for_evaluations (Check) field in DocType
#. 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
@@ -6122,11 +6162,11 @@ msgstr "Pominąć"
msgid "Slot Times are overlapping for some schedules."
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:201
#: frontend/src/pages/ProfileEvaluator.vue:218
msgid "Slot added successfully"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:240
#: frontend/src/pages/ProfileEvaluator.vue:257
msgid "Slot deleted successfully"
msgstr ""
@@ -6265,7 +6305,7 @@ msgstr ""
#. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case Submission'
#: frontend/src/components/Modals/Event.vue:91
#: frontend/src/components/Modals/Event.vue:99
#: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6336,10 +6376,12 @@ msgstr ""
#: frontend/src/components/ContactUsEmail.vue:13
#: frontend/src/components/Modals/AnnouncementModal.vue:20
#: frontend/src/components/Modals/EmailTemplateModal.vue:31
#: frontend/src/pages/JobApplications.vue:121
msgid "Subject"
msgstr "Temat"
#: frontend/src/components/Modals/AnnouncementModal.vue:94
#: frontend/src/pages/JobApplications.vue:237
msgid "Subject is required"
msgstr ""
@@ -6356,7 +6398,7 @@ msgstr ""
msgid "Submission by"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:353
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:359
msgid "Submission saved!"
msgstr ""
@@ -6396,7 +6438,7 @@ msgstr ""
#. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:97
#: frontend/src/components/Modals/Event.vue:106
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary"
msgstr "Podsumowanie"
@@ -6501,7 +6543,7 @@ msgstr ""
#. Label of the template (Link) field in DocType 'Cohort Web Page'
#. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43
#: frontend/src/components/Modals/Event.vue:112
#: frontend/src/components/Modals/Event.vue:127
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template"
@@ -6542,7 +6584,7 @@ msgstr ""
msgid "Test this Exercise"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:92
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:93
msgid "Test {0}"
msgstr ""
@@ -6840,7 +6882,7 @@ msgid "Title is required"
msgstr ""
#. Label of the unavailable_to (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:112
#: frontend/src/pages/ProfileEvaluator.vue:120
#: lms/lms/doctype/course_evaluator/course_evaluator.json
msgid "To"
msgstr ""
@@ -6953,7 +6995,7 @@ msgstr ""
msgid "Unavailability"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:259
#: frontend/src/pages/ProfileEvaluator.vue:276
msgid "Unavailability updated successfully"
msgstr ""
@@ -7123,11 +7165,19 @@ msgstr ""
msgid "View"
msgstr ""
#: frontend/src/pages/JobDetail.vue:31
msgid "View Applications"
msgstr ""
#: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67
msgid "View Certificate"
msgstr ""
#: frontend/src/pages/JobApplications.vue:262
msgid "View Resume"
msgstr ""
#: frontend/src/components/BatchFeedback.vue:56
msgid "View all feedback"
msgstr ""
@@ -7146,7 +7196,7 @@ msgstr ""
msgid "Visit Batch"
msgstr ""
#: frontend/src/pages/JobDetail.vue:41
#: frontend/src/pages/JobDetail.vue:52
msgid "Visit Website"
msgstr ""
@@ -7355,7 +7405,7 @@ msgstr ""
msgid "You have a live class scheduled tomorrow. Please be prepared and be on time for the session."
msgstr ""
#: lms/job/doctype/lms_job_application/lms_job_application.py:22
#: lms/job/doctype/lms_job_application/lms_job_application.py:26
msgid "You have already applied for this job."
msgstr ""
@@ -7371,7 +7421,7 @@ msgstr ""
msgid "You have already reviewed this course"
msgstr ""
#: frontend/src/pages/JobDetail.vue:57
#: frontend/src/pages/JobDetail.vue:68
msgid "You have applied"
msgstr ""
@@ -7451,7 +7501,7 @@ msgstr ""
msgid "Your Account has been successfully created!"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:119
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:121
msgid "Your Output"
msgstr ""
@@ -7459,7 +7509,7 @@ msgstr ""
msgid "Your batch {0} is starting tomorrow"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:134
#: frontend/src/pages/ProfileEvaluator.vue:143
msgid "Your calendar is set."
msgstr ""
@@ -7538,11 +7588,11 @@ msgstr ""
msgid "and then 'Add to Home Screen'"
msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125
msgid "applicant"
msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125
msgid "applicants"
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: 2025-10-31 16:04+0000\n"
"PO-Revision-Date: 2025-11-02 19:07\n"
"POT-Creation-Date: 2025-11-07 16:04+0000\n"
"PO-Revision-Date: 2025-11-11 11:49\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Portuguese\n"
"MIME-Version: 1.0\n"
@@ -148,7 +148,7 @@ msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:131
#: frontend/src/pages/Programs/ProgramForm.vue:180
msgid "Add"
msgstr "Adicionar"
msgstr ""
#: frontend/src/components/CourseOutline.vue:18
#: frontend/src/components/CreateOutline.vue:18
@@ -176,7 +176,7 @@ msgstr ""
msgid "Add Row"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:89
#: frontend/src/pages/ProfileEvaluator.vue:96
msgid "Add Slot"
msgstr ""
@@ -282,7 +282,7 @@ msgstr ""
#: frontend/src/pages/Billing.vue:64
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Address"
msgstr "Endereço"
msgstr ""
#: frontend/src/pages/Billing.vue:74
msgid "Address Line 1"
@@ -304,7 +304,7 @@ msgstr "Admin"
#. Name of a role
#: frontend/src/pages/Batches.vue:275 lms/lms/doctype/lms_badge/lms_badge.json
msgid "All"
msgstr "Todos"
msgstr ""
#: frontend/src/pages/Batches.vue:26
msgid "All Batches"
@@ -426,12 +426,25 @@ msgstr ""
msgid "Appears when the batch URL is shared on socials"
msgstr ""
#: frontend/src/pages/JobApplications.vue:24
msgid "Application"
msgstr ""
#. Label of a field in the job-opportunity Web Form
#: lms/job/web_form/job_opportunity/job_opportunity.json
msgid "Application Form Link"
msgstr ""
#: frontend/src/pages/JobDetail.vue:51
#: frontend/src/pages/JobApplications.vue:14
#: frontend/src/pages/JobApplications.vue:25
msgid "Applications"
msgstr ""
#: frontend/src/pages/JobApplications.vue:290
msgid "Applied On"
msgstr ""
#: frontend/src/pages/JobDetail.vue:62
msgid "Apply"
msgstr ""
@@ -483,7 +496,7 @@ msgstr ""
#. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch'
#. Label of the assessment (Table) field in DocType 'LMS Batch'
#: frontend/src/components/Modals/AssessmentModal.vue:27
#: frontend/src/components/Modals/BatchStudentProgress.vue:41
#: frontend/src/components/Modals/BatchStudentProgress.vue:43
#: lms/lms/doctype/lms_batch/lms_batch.json lms/templates/assessments.html:11
msgid "Assessment"
msgstr ""
@@ -569,7 +582,7 @@ msgstr ""
msgid "Assignment Title"
msgstr ""
#: frontend/src/components/Modals/AssignmentForm.vue:125
#: frontend/src/components/Modals/AssignmentForm.vue:133
msgid "Assignment created successfully"
msgstr ""
@@ -581,7 +594,7 @@ msgstr ""
msgid "Assignment submitted successfully"
msgstr ""
#: frontend/src/components/Modals/AssignmentForm.vue:138
#: frontend/src/components/Modals/AssignmentForm.vue:146
msgid "Assignment updated successfully"
msgstr ""
@@ -622,7 +635,7 @@ msgstr "Participantes"
msgid "Attire Preference"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:137
#: frontend/src/pages/ProfileEvaluator.vue:146
msgid "Authorize Google Calendar Access"
msgstr ""
@@ -637,7 +650,7 @@ msgstr ""
msgid "Auto Recording"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:224
#: frontend/src/pages/ProfileEvaluator.vue:241
msgid "Availability updated successfully"
msgstr ""
@@ -768,6 +781,7 @@ msgstr ""
#. Name of a role
#: lms/lms/doctype/course_evaluator/course_evaluator.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_category/lms_category.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -998,7 +1012,7 @@ msgstr ""
msgid "Certificate of Completion"
msgstr ""
#: frontend/src/components/Modals/Event.vue:317
#: frontend/src/components/Modals/Event.vue:348
msgid "Certificate saved successfully"
msgstr ""
@@ -1018,7 +1032,7 @@ msgstr ""
#. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace
#: frontend/src/components/AppSidebar.vue:626
#: frontend/src/components/Modals/Event.vue:381
#: frontend/src/components/Modals/Event.vue:412
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58
#: frontend/src/pages/CourseCertification.vue:10
#: frontend/src/pages/CourseCertification.vue:135
@@ -1205,7 +1219,7 @@ msgstr ""
#: frontend/src/components/Settings/Categories.vue:27
msgid "Close"
msgstr "Fechar"
msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Job Opportunity'
#. Option in a Select field in the job-opportunity Web Form
@@ -1311,7 +1325,7 @@ msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
msgid "Comments"
msgstr "Comentários"
msgstr ""
#: frontend/src/components/Assignment.vue:148
msgid "Comments by Evaluator"
@@ -1411,7 +1425,7 @@ msgstr ""
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/widgets/CourseCard.html:78
msgid "Completed"
msgstr "Concluído"
msgstr ""
#. Label of the enable_certification (Check) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:249
@@ -1640,6 +1654,7 @@ msgstr ""
#: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/course_lesson/course_lesson.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
#: lms/lms/doctype/lms_category/lms_category.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json
@@ -1757,7 +1772,7 @@ msgstr ""
#: frontend/src/components/BatchCourses.vue:5
#: frontend/src/components/BatchOverlay.vue:37
#: frontend/src/components/BatchStudents.vue:25
#: frontend/src/components/Modals/BatchStudentProgress.vue:91
#: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127
#: frontend/src/pages/Courses.vue:333 frontend/src/pages/Courses.vue:340
@@ -1800,7 +1815,7 @@ msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExercises.vue:32
#: frontend/src/pages/Quizzes.vue:10
msgid "Create"
msgstr "Criar"
msgstr ""
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.js:7
msgid "Create Certificate"
@@ -1888,7 +1903,7 @@ msgstr ""
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Currency"
msgstr "Moeda"
msgstr ""
#. Label of the current_lesson (Link) field in DocType 'LMS Enrollment'
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
@@ -1948,7 +1963,7 @@ msgstr ""
#: lms/lms/doctype/lms_live_class/lms_live_class.json
#: lms/lms/doctype/scheduled_flow/scheduled_flow.json
msgid "Date"
msgstr "Data"
msgstr ""
#: frontend/src/pages/BatchForm.vue:76
msgid "Date and Time"
@@ -2003,7 +2018,7 @@ msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseForm.vue:67
#: frontend/src/pages/Programs/ProgramForm.vue:231
msgid "Delete"
msgstr "Eliminar"
msgstr ""
#: frontend/src/components/CourseOutline.vue:67
msgid "Delete Chapter"
@@ -2066,7 +2081,7 @@ msgstr ""
#: lms/lms/doctype/lms_live_class/lms_live_class.json
#: lms/lms/doctype/work_experience/work_experience.json
msgid "Description"
msgstr "Descrição"
msgstr ""
#: frontend/src/components/Apps.vue:51
msgid "Desk"
@@ -2169,10 +2184,10 @@ msgstr ""
#: frontend/src/components/DiscussionReplies.vue:35
#: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/components/Settings/Badges.vue:156
#: frontend/src/pages/JobDetail.vue:34 frontend/src/pages/Lesson.vue:42
#: frontend/src/pages/JobDetail.vue:45 frontend/src/pages/Lesson.vue:42
#: frontend/src/pages/Lesson.vue:178 frontend/src/pages/Profile.vue:36
msgid "Edit"
msgstr "Editar"
msgstr ""
#: frontend/src/components/Modals/AssignmentForm.vue:14
msgid "Edit Assignment"
@@ -2236,7 +2251,7 @@ msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:105
#: frontend/src/components/Settings/Members.vue:103
#: lms/templates/signup-form.html:10
#: frontend/src/pages/JobApplications.vue:284 lms/templates/signup-form.html:10
msgid "Email"
msgstr ""
@@ -2272,6 +2287,7 @@ msgid "Email Templates deleted successfully"
msgstr ""
#: frontend/src/components/ContactUsEmail.vue:57
#: frontend/src/pages/JobApplications.vue:244
msgid "Email sent successfully"
msgstr "E-mail enviado com sucesso"
@@ -2414,6 +2430,14 @@ msgstr ""
msgid "Enter a URL"
msgstr ""
#: frontend/src/pages/JobApplications.vue:122
msgid "Enter email subject"
msgstr ""
#: frontend/src/pages/JobApplications.vue:128
msgid "Enter reply to email"
msgstr ""
#: frontend/src/components/Modals/ZoomAccountModal.vue:169
msgid "Error creating Zoom Account"
msgstr ""
@@ -2453,7 +2477,7 @@ msgstr ""
#. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:374 lms/lms/workspace/lms/lms.json
#: frontend/src/components/Modals/Event.vue:405 lms/lms/workspace/lms/lms.json
msgid "Evaluation"
msgstr ""
@@ -2478,7 +2502,7 @@ msgstr ""
msgid "Evaluation end date cannot be less than the batch end date."
msgstr ""
#: frontend/src/components/Modals/Event.vue:256
#: frontend/src/components/Modals/Event.vue:287
msgid "Evaluation saved successfully"
msgstr ""
@@ -2586,7 +2610,7 @@ msgstr "Expandir"
#. Label of the expected_output (Data) field in DocType 'LMS Test Case'
#. Label of the expected_output (Data) field in DocType 'LMS Test Case
#. Submission'
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:127
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:129
#: lms/lms/doctype/lms_test_case/lms_test_case.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Expected Output"
@@ -2599,7 +2623,7 @@ msgstr ""
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33
#: frontend/src/components/Modals/Event.vue:126
#: frontend/src/components/Modals/Event.vue:144
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date"
msgstr ""
@@ -2626,7 +2650,7 @@ msgstr ""
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:366
#: frontend/src/components/Modals/Event.vue:397
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail"
@@ -2657,7 +2681,7 @@ msgstr ""
msgid "Failed to send email"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:358
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:364
msgid "Failed to submit. Please try again. {0}"
msgstr ""
@@ -2770,10 +2794,10 @@ msgid "Friday"
msgstr ""
#. Label of the unavailable_from (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:99
#: frontend/src/pages/ProfileEvaluator.vue:106
#: lms/lms/doctype/course_evaluator/course_evaluator.json
msgid "From"
msgstr "De"
msgstr ""
#. Label of the from_date (Date) field in DocType 'Work Experience'
#: lms/lms/doctype/work_experience/work_experience.json
@@ -2782,6 +2806,7 @@ msgstr ""
#. Label of the full_name (Data) field in DocType 'Course Evaluator'
#. Label of the full_name (Data) field in DocType 'LMS Program Member'
#: frontend/src/pages/JobApplications.vue:278
#: lms/lms/doctype/course_evaluator/course_evaluator.json
#: lms/lms/doctype/lms_program_member/lms_program_member.json
#: lms/templates/signup-form.html:5
@@ -3019,7 +3044,7 @@ msgstr ""
msgid "I am looking for a job"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:94
#: frontend/src/pages/ProfileEvaluator.vue:101
msgid "I am unavailable"
msgstr ""
@@ -3105,12 +3130,12 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:358
#: frontend/src/components/Modals/Event.vue:389
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "In Progress"
msgstr "Em progresso"
msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Batch Old'
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
@@ -3161,7 +3186,7 @@ msgstr ""
#. Label of the input (Data) field in DocType 'LMS Test Case'
#. Label of the input (Data) field in DocType 'LMS Test Case Submission'
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:113
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:115
#: lms/lms/doctype/lms_test_case/lms_test_case.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Input"
@@ -3273,7 +3298,7 @@ msgstr ""
#. Label of the issue_date (Date) field in DocType 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28
#: frontend/src/components/Modals/Event.vue:121
#: frontend/src/components/Modals/Event.vue:138
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date"
@@ -3358,8 +3383,8 @@ msgid "Job Title"
msgstr ""
#. Label of the jobs (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/JobDetail.vue:10 frontend/src/pages/Jobs.vue:8
#: frontend/src/pages/Jobs.vue:212
#: frontend/src/pages/JobApplications.vue:9 frontend/src/pages/JobDetail.vue:10
#: frontend/src/pages/Jobs.vue:8 frontend/src/pages/Jobs.vue:212
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Jobs"
msgstr ""
@@ -3375,7 +3400,7 @@ msgstr ""
msgid "Join Call"
msgstr ""
#: frontend/src/components/Modals/Event.vue:74
#: frontend/src/components/Modals/Event.vue:78
msgid "Join Meeting"
msgstr ""
@@ -3883,7 +3908,7 @@ msgstr ""
msgid "Login to Frappe Cloud?"
msgstr ""
#: frontend/src/pages/JobDetail.vue:63
#: frontend/src/pages/JobDetail.vue:74
msgid "Login to apply"
msgstr ""
@@ -3987,7 +4012,7 @@ msgstr ""
#: frontend/src/pages/BatchForm.vue:194
#: lms/lms/doctype/lms_batch/lms_batch.json
msgid "Medium"
msgstr "Médio"
msgstr ""
#. Label of the medium (Data) field in DocType 'User'
#: lms/fixtures/custom_field.json
@@ -4228,9 +4253,14 @@ msgid "Mentor Request Status Update Template"
msgstr ""
#: frontend/src/components/ContactUsEmail.vue:19
#: frontend/src/pages/JobApplications.vue:132
msgid "Message"
msgstr ""
#: frontend/src/pages/JobApplications.vue:240
msgid "Message is required"
msgstr ""
#. Label of the meta_description (Small Text) field in DocType 'LMS Settings'
#: frontend/src/pages/BatchForm.vue:297 frontend/src/pages/CourseForm.vue:303
#: lms/lms/doctype/lms_settings/lms_settings.json
@@ -4351,13 +4381,13 @@ msgstr ""
msgid "My availability"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:127
#: frontend/src/pages/ProfileEvaluator.vue:136
msgid "My calendar"
msgstr ""
#: frontend/src/components/Modals/EmailTemplateModal.vue:24
msgid "Name"
msgstr "Nome"
msgstr ""
#. Option for the 'Event' (Select) field in DocType 'LMS Badge'
#: frontend/src/components/Settings/BadgeAssignments.vue:21
@@ -4372,7 +4402,7 @@ msgstr "Nome"
#: frontend/src/pages/Programs/Programs.vue:10
#: lms/lms/doctype/lms_badge/lms_badge.json
msgid "New"
msgstr "Novo"
msgstr ""
#: lms/www/lms.py:149
msgid "New Batch"
@@ -4390,7 +4420,7 @@ msgstr ""
msgid "New Job"
msgstr ""
#: lms/job/doctype/lms_job_application/lms_job_application.py:27
#: lms/job/doctype/lms_job_application/lms_job_application.py:31
msgid "New Job Applicant"
msgstr ""
@@ -4581,7 +4611,7 @@ msgstr "Não Guardado"
#. Label of the note (Text Editor) field in DocType 'LMS Lesson Note'
#: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json
msgid "Note"
msgstr "Nota"
msgstr ""
#: frontend/src/pages/Lesson.vue:404 frontend/src/pages/Lesson.vue:880
#: frontend/src/pages/Lesson.vue:891
@@ -4818,7 +4848,7 @@ msgstr ""
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:362
#: frontend/src/components/Modals/Event.vue:393
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass"
@@ -4945,7 +4975,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:354
#: frontend/src/components/Modals/Event.vue:385
#: lms/lms/doctype/cohort_join_request/cohort_join_request.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
@@ -4964,7 +4994,7 @@ msgstr ""
msgid "Percentage (e.g. 70%)"
msgstr ""
#: frontend/src/components/Modals/BatchStudentProgress.vue:44
#: frontend/src/components/Modals/BatchStudentProgress.vue:46
msgid "Percentage/Status"
msgstr ""
@@ -5080,7 +5110,7 @@ msgstr ""
msgid "Please prepare well and be on time for the evaluations."
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:135
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:139
msgid "Please run the code to execute the test cases."
msgstr ""
@@ -5317,11 +5347,11 @@ msgstr ""
#: frontend/src/components/Settings/BadgeForm.vue:200
#: frontend/src/components/Settings/Badges.vue:205
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:420
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:426
msgid "Programming Exercise Submission"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:411
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:417
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:298
msgid "Programming Exercise Submissions"
msgstr ""
@@ -5355,7 +5385,7 @@ msgstr ""
#. Label of the progress (Float) field in DocType 'LMS Enrollment'
#. Label of the progress (Int) field in DocType 'LMS Program Member'
#: frontend/src/components/Modals/BatchStudentProgress.vue:94
#: frontend/src/components/Modals/BatchStudentProgress.vue:98
#: frontend/src/components/Modals/CourseProgressSummary.vue:224
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
#: lms/lms/doctype/lms_program_member/lms_program_member.json
@@ -5401,7 +5431,7 @@ msgstr ""
#. Label of the published (Check) field in DocType 'LMS Course'
#. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51
#: frontend/src/components/Modals/Event.vue:108
#: frontend/src/components/Modals/Event.vue:122
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:152
#: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100
@@ -5569,7 +5599,7 @@ msgstr ""
#. Label of the rating (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147
#: frontend/src/components/Modals/Event.vue:86
#: frontend/src/components/Modals/Event.vue:92
#: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -5656,6 +5686,7 @@ msgid "Remove Highlight"
msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:27
#: frontend/src/pages/JobApplications.vue:127
msgid "Reply To"
msgstr ""
@@ -5815,8 +5846,8 @@ msgstr ""
#: frontend/src/components/Controls/CodeEditor.vue:25
#: frontend/src/components/Modals/AssignmentForm.vue:59
#: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:101
#: frontend/src/components/Modals/Event.vue:129
#: frontend/src/components/Modals/Event.vue:115
#: frontend/src/components/Modals/Event.vue:151
#: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
@@ -5832,7 +5863,7 @@ msgstr ""
#: frontend/src/pages/Quizzes.vue:105
#: lms/job/web_form/job_opportunity/job_opportunity.json
msgid "Save"
msgstr "Salvar"
msgstr ""
#. Label of the schedule (Table) field in DocType 'Course Evaluator'
#: lms/lms/doctype/course_evaluator/course_evaluator.json
@@ -5955,13 +5986,22 @@ msgid "Select an assignment"
msgstr ""
#: frontend/src/components/ContactUsEmail.vue:33
#: frontend/src/pages/JobApplications.vue:110
msgid "Send"
msgstr "Enviar"
msgstr ""
#: lms/lms/doctype/lms_batch_enrollment/lms_batch_enrollment.js:7
msgid "Send Confirmation Email"
msgstr ""
#: frontend/src/pages/JobApplications.vue:268
msgid "Send Email"
msgstr ""
#: frontend/src/pages/JobApplications.vue:106
msgid "Send Email to {0}"
msgstr ""
#. Label of the send_calendar_invite_for_evaluations (Check) field in DocType
#. 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
@@ -6004,7 +6044,7 @@ msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:19
#: frontend/src/pages/QuizForm.vue:86
msgid "Settings"
msgstr "Configurações"
msgstr ""
#: frontend/src/pages/ProfileAbout.vue:79
msgid "Share on"
@@ -6122,11 +6162,11 @@ msgstr ""
msgid "Slot Times are overlapping for some schedules."
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:201
#: frontend/src/pages/ProfileEvaluator.vue:218
msgid "Slot added successfully"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:240
#: frontend/src/pages/ProfileEvaluator.vue:257
msgid "Slot deleted successfully"
msgstr ""
@@ -6161,7 +6201,7 @@ msgstr ""
#: lms/lms/doctype/lms_source/lms_source.json
#: lms/lms/doctype/lms_video_watch_duration/lms_video_watch_duration.json
msgid "Source"
msgstr "Fonte"
msgstr ""
#. Option for the 'Role' (Select) field in DocType 'Cohort Staff'
#. Option for the 'Member Type' (Select) field in DocType 'LMS Enrollment'
@@ -6265,7 +6305,7 @@ msgstr ""
#. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case Submission'
#: frontend/src/components/Modals/Event.vue:91
#: frontend/src/components/Modals/Event.vue:99
#: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6336,10 +6376,12 @@ msgstr ""
#: frontend/src/components/ContactUsEmail.vue:13
#: frontend/src/components/Modals/AnnouncementModal.vue:20
#: frontend/src/components/Modals/EmailTemplateModal.vue:31
#: frontend/src/pages/JobApplications.vue:121
msgid "Subject"
msgstr "Assunto"
msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:94
#: frontend/src/pages/JobApplications.vue:237
msgid "Subject is required"
msgstr ""
@@ -6356,7 +6398,7 @@ msgstr ""
msgid "Submission by"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:353
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:359
msgid "Submission saved!"
msgstr ""
@@ -6396,7 +6438,7 @@ msgstr ""
#. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:97
#: frontend/src/components/Modals/Event.vue:106
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary"
msgstr ""
@@ -6501,7 +6543,7 @@ msgstr ""
#. Label of the template (Link) field in DocType 'Cohort Web Page'
#. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43
#: frontend/src/components/Modals/Event.vue:112
#: frontend/src/components/Modals/Event.vue:127
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template"
@@ -6542,7 +6584,7 @@ msgstr ""
msgid "Test this Exercise"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:92
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:93
msgid "Test {0}"
msgstr ""
@@ -6833,14 +6875,14 @@ msgstr ""
#: lms/lms/doctype/lms_timetable_template/lms_timetable_template.json
#: lms/lms/doctype/work_experience/work_experience.json
msgid "Title"
msgstr "Título"
msgstr ""
#: frontend/src/components/Modals/ChapterModal.vue:172
msgid "Title is required"
msgstr ""
#. Label of the unavailable_to (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:112
#: frontend/src/pages/ProfileEvaluator.vue:120
#: lms/lms/doctype/course_evaluator/course_evaluator.json
msgid "To"
msgstr ""
@@ -6953,7 +6995,7 @@ msgstr ""
msgid "Unavailability"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:259
#: frontend/src/pages/ProfileEvaluator.vue:276
msgid "Unavailability updated successfully"
msgstr ""
@@ -7017,7 +7059,7 @@ msgstr ""
#: frontend/src/components/Settings/BrandSettings.vue:24
#: frontend/src/components/Settings/SettingDetails.vue:23
msgid "Update"
msgstr "Atualizar"
msgstr ""
#: lms/templates/emails/community_course_membership.html:11
msgid "Update Password"
@@ -7103,7 +7145,7 @@ msgstr ""
#. Label of the value (Rating) field in DocType 'LMS Batch Feedback'
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
msgid "Value"
msgstr "Valor"
msgstr ""
#. Option for the 'Event' (Select) field in DocType 'LMS Badge'
#: lms/lms/doctype/lms_badge/lms_badge.json
@@ -7123,11 +7165,19 @@ msgstr ""
msgid "View"
msgstr ""
#: frontend/src/pages/JobDetail.vue:31
msgid "View Applications"
msgstr ""
#: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67
msgid "View Certificate"
msgstr ""
#: frontend/src/pages/JobApplications.vue:262
msgid "View Resume"
msgstr ""
#: frontend/src/components/BatchFeedback.vue:56
msgid "View all feedback"
msgstr ""
@@ -7146,7 +7196,7 @@ msgstr ""
msgid "Visit Batch"
msgstr ""
#: frontend/src/pages/JobDetail.vue:41
#: frontend/src/pages/JobDetail.vue:52
msgid "Visit Website"
msgstr ""
@@ -7355,7 +7405,7 @@ msgstr ""
msgid "You have a live class scheduled tomorrow. Please be prepared and be on time for the session."
msgstr ""
#: lms/job/doctype/lms_job_application/lms_job_application.py:22
#: lms/job/doctype/lms_job_application/lms_job_application.py:26
msgid "You have already applied for this job."
msgstr ""
@@ -7371,7 +7421,7 @@ msgstr ""
msgid "You have already reviewed this course"
msgstr ""
#: frontend/src/pages/JobDetail.vue:57
#: frontend/src/pages/JobDetail.vue:68
msgid "You have applied"
msgstr ""
@@ -7451,7 +7501,7 @@ msgstr ""
msgid "Your Account has been successfully created!"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:119
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:121
msgid "Your Output"
msgstr ""
@@ -7459,7 +7509,7 @@ msgstr ""
msgid "Your batch {0} is starting tomorrow"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:134
#: frontend/src/pages/ProfileEvaluator.vue:143
msgid "Your calendar is set."
msgstr ""
@@ -7538,11 +7588,11 @@ msgstr ""
msgid "and then 'Add to Home Screen'"
msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125
msgid "applicant"
msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125
msgid "applicants"
msgstr ""

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

View File

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

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2025-10-31 16:04+0000\n"
"PO-Revision-Date: 2025-11-02 19:07\n"
"POT-Creation-Date: 2025-11-07 16:04+0000\n"
"PO-Revision-Date: 2025-11-11 11:49\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Tamil\n"
"MIME-Version: 1.0\n"
@@ -176,7 +176,7 @@ msgstr ""
msgid "Add Row"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:89
#: frontend/src/pages/ProfileEvaluator.vue:96
msgid "Add Slot"
msgstr ""
@@ -426,12 +426,25 @@ msgstr ""
msgid "Appears when the batch URL is shared on socials"
msgstr ""
#: frontend/src/pages/JobApplications.vue:24
msgid "Application"
msgstr ""
#. Label of a field in the job-opportunity Web Form
#: lms/job/web_form/job_opportunity/job_opportunity.json
msgid "Application Form Link"
msgstr ""
#: frontend/src/pages/JobDetail.vue:51
#: frontend/src/pages/JobApplications.vue:14
#: frontend/src/pages/JobApplications.vue:25
msgid "Applications"
msgstr ""
#: frontend/src/pages/JobApplications.vue:290
msgid "Applied On"
msgstr ""
#: frontend/src/pages/JobDetail.vue:62
msgid "Apply"
msgstr ""
@@ -483,7 +496,7 @@ msgstr ""
#. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch'
#. Label of the assessment (Table) field in DocType 'LMS Batch'
#: frontend/src/components/Modals/AssessmentModal.vue:27
#: frontend/src/components/Modals/BatchStudentProgress.vue:41
#: frontend/src/components/Modals/BatchStudentProgress.vue:43
#: lms/lms/doctype/lms_batch/lms_batch.json lms/templates/assessments.html:11
msgid "Assessment"
msgstr ""
@@ -569,7 +582,7 @@ msgstr ""
msgid "Assignment Title"
msgstr ""
#: frontend/src/components/Modals/AssignmentForm.vue:125
#: frontend/src/components/Modals/AssignmentForm.vue:133
msgid "Assignment created successfully"
msgstr ""
@@ -581,7 +594,7 @@ msgstr ""
msgid "Assignment submitted successfully"
msgstr ""
#: frontend/src/components/Modals/AssignmentForm.vue:138
#: frontend/src/components/Modals/AssignmentForm.vue:146
msgid "Assignment updated successfully"
msgstr ""
@@ -622,7 +635,7 @@ msgstr ""
msgid "Attire Preference"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:137
#: frontend/src/pages/ProfileEvaluator.vue:146
msgid "Authorize Google Calendar Access"
msgstr ""
@@ -637,7 +650,7 @@ msgstr ""
msgid "Auto Recording"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:224
#: frontend/src/pages/ProfileEvaluator.vue:241
msgid "Availability updated successfully"
msgstr ""
@@ -768,6 +781,7 @@ msgstr ""
#. Name of a role
#: lms/lms/doctype/course_evaluator/course_evaluator.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_category/lms_category.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -998,7 +1012,7 @@ msgstr ""
msgid "Certificate of Completion"
msgstr ""
#: frontend/src/components/Modals/Event.vue:317
#: frontend/src/components/Modals/Event.vue:348
msgid "Certificate saved successfully"
msgstr ""
@@ -1018,7 +1032,7 @@ msgstr ""
#. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace
#: frontend/src/components/AppSidebar.vue:626
#: frontend/src/components/Modals/Event.vue:381
#: frontend/src/components/Modals/Event.vue:412
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58
#: frontend/src/pages/CourseCertification.vue:10
#: frontend/src/pages/CourseCertification.vue:135
@@ -1640,6 +1654,7 @@ msgstr ""
#: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/course_lesson/course_lesson.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
#: lms/lms/doctype/lms_category/lms_category.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json
@@ -1757,7 +1772,7 @@ msgstr ""
#: frontend/src/components/BatchCourses.vue:5
#: frontend/src/components/BatchOverlay.vue:37
#: frontend/src/components/BatchStudents.vue:25
#: frontend/src/components/Modals/BatchStudentProgress.vue:91
#: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127
#: frontend/src/pages/Courses.vue:333 frontend/src/pages/Courses.vue:340
@@ -2169,7 +2184,7 @@ msgstr ""
#: frontend/src/components/DiscussionReplies.vue:35
#: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/components/Settings/Badges.vue:156
#: frontend/src/pages/JobDetail.vue:34 frontend/src/pages/Lesson.vue:42
#: frontend/src/pages/JobDetail.vue:45 frontend/src/pages/Lesson.vue:42
#: frontend/src/pages/Lesson.vue:178 frontend/src/pages/Profile.vue:36
msgid "Edit"
msgstr ""
@@ -2236,7 +2251,7 @@ msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:105
#: frontend/src/components/Settings/Members.vue:103
#: lms/templates/signup-form.html:10
#: frontend/src/pages/JobApplications.vue:284 lms/templates/signup-form.html:10
msgid "Email"
msgstr ""
@@ -2272,6 +2287,7 @@ msgid "Email Templates deleted successfully"
msgstr ""
#: frontend/src/components/ContactUsEmail.vue:57
#: frontend/src/pages/JobApplications.vue:244
msgid "Email sent successfully"
msgstr ""
@@ -2414,6 +2430,14 @@ msgstr ""
msgid "Enter a URL"
msgstr ""
#: frontend/src/pages/JobApplications.vue:122
msgid "Enter email subject"
msgstr ""
#: frontend/src/pages/JobApplications.vue:128
msgid "Enter reply to email"
msgstr ""
#: frontend/src/components/Modals/ZoomAccountModal.vue:169
msgid "Error creating Zoom Account"
msgstr ""
@@ -2453,7 +2477,7 @@ msgstr ""
#. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:374 lms/lms/workspace/lms/lms.json
#: frontend/src/components/Modals/Event.vue:405 lms/lms/workspace/lms/lms.json
msgid "Evaluation"
msgstr ""
@@ -2478,7 +2502,7 @@ msgstr ""
msgid "Evaluation end date cannot be less than the batch end date."
msgstr ""
#: frontend/src/components/Modals/Event.vue:256
#: frontend/src/components/Modals/Event.vue:287
msgid "Evaluation saved successfully"
msgstr ""
@@ -2586,7 +2610,7 @@ msgstr ""
#. Label of the expected_output (Data) field in DocType 'LMS Test Case'
#. Label of the expected_output (Data) field in DocType 'LMS Test Case
#. Submission'
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:127
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:129
#: lms/lms/doctype/lms_test_case/lms_test_case.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Expected Output"
@@ -2599,7 +2623,7 @@ msgstr ""
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33
#: frontend/src/components/Modals/Event.vue:126
#: frontend/src/components/Modals/Event.vue:144
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date"
msgstr ""
@@ -2626,7 +2650,7 @@ msgstr ""
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:366
#: frontend/src/components/Modals/Event.vue:397
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail"
@@ -2657,7 +2681,7 @@ msgstr ""
msgid "Failed to send email"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:358
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:364
msgid "Failed to submit. Please try again. {0}"
msgstr ""
@@ -2770,7 +2794,7 @@ msgid "Friday"
msgstr ""
#. Label of the unavailable_from (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:99
#: frontend/src/pages/ProfileEvaluator.vue:106
#: lms/lms/doctype/course_evaluator/course_evaluator.json
msgid "From"
msgstr ""
@@ -2782,6 +2806,7 @@ msgstr ""
#. Label of the full_name (Data) field in DocType 'Course Evaluator'
#. Label of the full_name (Data) field in DocType 'LMS Program Member'
#: frontend/src/pages/JobApplications.vue:278
#: lms/lms/doctype/course_evaluator/course_evaluator.json
#: lms/lms/doctype/lms_program_member/lms_program_member.json
#: lms/templates/signup-form.html:5
@@ -3019,7 +3044,7 @@ msgstr ""
msgid "I am looking for a job"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:94
#: frontend/src/pages/ProfileEvaluator.vue:101
msgid "I am unavailable"
msgstr ""
@@ -3105,7 +3130,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:358
#: frontend/src/components/Modals/Event.vue:389
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -3161,7 +3186,7 @@ msgstr ""
#. Label of the input (Data) field in DocType 'LMS Test Case'
#. Label of the input (Data) field in DocType 'LMS Test Case Submission'
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:113
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:115
#: lms/lms/doctype/lms_test_case/lms_test_case.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Input"
@@ -3273,7 +3298,7 @@ msgstr ""
#. Label of the issue_date (Date) field in DocType 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28
#: frontend/src/components/Modals/Event.vue:121
#: frontend/src/components/Modals/Event.vue:138
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date"
@@ -3358,8 +3383,8 @@ msgid "Job Title"
msgstr ""
#. Label of the jobs (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/JobDetail.vue:10 frontend/src/pages/Jobs.vue:8
#: frontend/src/pages/Jobs.vue:212
#: frontend/src/pages/JobApplications.vue:9 frontend/src/pages/JobDetail.vue:10
#: frontend/src/pages/Jobs.vue:8 frontend/src/pages/Jobs.vue:212
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Jobs"
msgstr ""
@@ -3375,7 +3400,7 @@ msgstr ""
msgid "Join Call"
msgstr ""
#: frontend/src/components/Modals/Event.vue:74
#: frontend/src/components/Modals/Event.vue:78
msgid "Join Meeting"
msgstr ""
@@ -3883,7 +3908,7 @@ msgstr ""
msgid "Login to Frappe Cloud?"
msgstr ""
#: frontend/src/pages/JobDetail.vue:63
#: frontend/src/pages/JobDetail.vue:74
msgid "Login to apply"
msgstr ""
@@ -4228,9 +4253,14 @@ msgid "Mentor Request Status Update Template"
msgstr ""
#: frontend/src/components/ContactUsEmail.vue:19
#: frontend/src/pages/JobApplications.vue:132
msgid "Message"
msgstr ""
#: frontend/src/pages/JobApplications.vue:240
msgid "Message is required"
msgstr ""
#. Label of the meta_description (Small Text) field in DocType 'LMS Settings'
#: frontend/src/pages/BatchForm.vue:297 frontend/src/pages/CourseForm.vue:303
#: lms/lms/doctype/lms_settings/lms_settings.json
@@ -4351,7 +4381,7 @@ msgstr ""
msgid "My availability"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:127
#: frontend/src/pages/ProfileEvaluator.vue:136
msgid "My calendar"
msgstr ""
@@ -4390,7 +4420,7 @@ msgstr ""
msgid "New Job"
msgstr ""
#: lms/job/doctype/lms_job_application/lms_job_application.py:27
#: lms/job/doctype/lms_job_application/lms_job_application.py:31
msgid "New Job Applicant"
msgstr ""
@@ -4818,7 +4848,7 @@ msgstr ""
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:362
#: frontend/src/components/Modals/Event.vue:393
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass"
@@ -4945,7 +4975,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:354
#: frontend/src/components/Modals/Event.vue:385
#: lms/lms/doctype/cohort_join_request/cohort_join_request.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
@@ -4964,7 +4994,7 @@ msgstr ""
msgid "Percentage (e.g. 70%)"
msgstr ""
#: frontend/src/components/Modals/BatchStudentProgress.vue:44
#: frontend/src/components/Modals/BatchStudentProgress.vue:46
msgid "Percentage/Status"
msgstr ""
@@ -5080,7 +5110,7 @@ msgstr ""
msgid "Please prepare well and be on time for the evaluations."
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:135
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:139
msgid "Please run the code to execute the test cases."
msgstr ""
@@ -5317,11 +5347,11 @@ msgstr ""
#: frontend/src/components/Settings/BadgeForm.vue:200
#: frontend/src/components/Settings/Badges.vue:205
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:420
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:426
msgid "Programming Exercise Submission"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:411
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:417
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:298
msgid "Programming Exercise Submissions"
msgstr ""
@@ -5355,7 +5385,7 @@ msgstr ""
#. Label of the progress (Float) field in DocType 'LMS Enrollment'
#. Label of the progress (Int) field in DocType 'LMS Program Member'
#: frontend/src/components/Modals/BatchStudentProgress.vue:94
#: frontend/src/components/Modals/BatchStudentProgress.vue:98
#: frontend/src/components/Modals/CourseProgressSummary.vue:224
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
#: lms/lms/doctype/lms_program_member/lms_program_member.json
@@ -5401,7 +5431,7 @@ msgstr ""
#. Label of the published (Check) field in DocType 'LMS Course'
#. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51
#: frontend/src/components/Modals/Event.vue:108
#: frontend/src/components/Modals/Event.vue:122
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:152
#: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100
@@ -5569,7 +5599,7 @@ msgstr ""
#. Label of the rating (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147
#: frontend/src/components/Modals/Event.vue:86
#: frontend/src/components/Modals/Event.vue:92
#: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -5656,6 +5686,7 @@ msgid "Remove Highlight"
msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:27
#: frontend/src/pages/JobApplications.vue:127
msgid "Reply To"
msgstr ""
@@ -5815,8 +5846,8 @@ msgstr ""
#: frontend/src/components/Controls/CodeEditor.vue:25
#: frontend/src/components/Modals/AssignmentForm.vue:59
#: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:101
#: frontend/src/components/Modals/Event.vue:129
#: frontend/src/components/Modals/Event.vue:115
#: frontend/src/components/Modals/Event.vue:151
#: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
@@ -5955,6 +5986,7 @@ msgid "Select an assignment"
msgstr ""
#: frontend/src/components/ContactUsEmail.vue:33
#: frontend/src/pages/JobApplications.vue:110
msgid "Send"
msgstr ""
@@ -5962,6 +5994,14 @@ msgstr ""
msgid "Send Confirmation Email"
msgstr ""
#: frontend/src/pages/JobApplications.vue:268
msgid "Send Email"
msgstr ""
#: frontend/src/pages/JobApplications.vue:106
msgid "Send Email to {0}"
msgstr ""
#. Label of the send_calendar_invite_for_evaluations (Check) field in DocType
#. 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
@@ -6122,11 +6162,11 @@ msgstr ""
msgid "Slot Times are overlapping for some schedules."
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:201
#: frontend/src/pages/ProfileEvaluator.vue:218
msgid "Slot added successfully"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:240
#: frontend/src/pages/ProfileEvaluator.vue:257
msgid "Slot deleted successfully"
msgstr ""
@@ -6265,7 +6305,7 @@ msgstr ""
#. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case Submission'
#: frontend/src/components/Modals/Event.vue:91
#: frontend/src/components/Modals/Event.vue:99
#: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6336,10 +6376,12 @@ msgstr ""
#: frontend/src/components/ContactUsEmail.vue:13
#: frontend/src/components/Modals/AnnouncementModal.vue:20
#: frontend/src/components/Modals/EmailTemplateModal.vue:31
#: frontend/src/pages/JobApplications.vue:121
msgid "Subject"
msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:94
#: frontend/src/pages/JobApplications.vue:237
msgid "Subject is required"
msgstr ""
@@ -6356,7 +6398,7 @@ msgstr ""
msgid "Submission by"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:353
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:359
msgid "Submission saved!"
msgstr ""
@@ -6396,7 +6438,7 @@ msgstr ""
#. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:97
#: frontend/src/components/Modals/Event.vue:106
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary"
msgstr ""
@@ -6501,7 +6543,7 @@ msgstr ""
#. Label of the template (Link) field in DocType 'Cohort Web Page'
#. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43
#: frontend/src/components/Modals/Event.vue:112
#: frontend/src/components/Modals/Event.vue:127
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template"
@@ -6542,7 +6584,7 @@ msgstr ""
msgid "Test this Exercise"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:92
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:93
msgid "Test {0}"
msgstr ""
@@ -6840,7 +6882,7 @@ msgid "Title is required"
msgstr ""
#. Label of the unavailable_to (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:112
#: frontend/src/pages/ProfileEvaluator.vue:120
#: lms/lms/doctype/course_evaluator/course_evaluator.json
msgid "To"
msgstr ""
@@ -6953,7 +6995,7 @@ msgstr ""
msgid "Unavailability"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:259
#: frontend/src/pages/ProfileEvaluator.vue:276
msgid "Unavailability updated successfully"
msgstr ""
@@ -7123,11 +7165,19 @@ msgstr ""
msgid "View"
msgstr ""
#: frontend/src/pages/JobDetail.vue:31
msgid "View Applications"
msgstr ""
#: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67
msgid "View Certificate"
msgstr ""
#: frontend/src/pages/JobApplications.vue:262
msgid "View Resume"
msgstr ""
#: frontend/src/components/BatchFeedback.vue:56
msgid "View all feedback"
msgstr ""
@@ -7146,7 +7196,7 @@ msgstr ""
msgid "Visit Batch"
msgstr ""
#: frontend/src/pages/JobDetail.vue:41
#: frontend/src/pages/JobDetail.vue:52
msgid "Visit Website"
msgstr ""
@@ -7355,7 +7405,7 @@ msgstr ""
msgid "You have a live class scheduled tomorrow. Please be prepared and be on time for the session."
msgstr ""
#: lms/job/doctype/lms_job_application/lms_job_application.py:22
#: lms/job/doctype/lms_job_application/lms_job_application.py:26
msgid "You have already applied for this job."
msgstr ""
@@ -7371,7 +7421,7 @@ msgstr ""
msgid "You have already reviewed this course"
msgstr ""
#: frontend/src/pages/JobDetail.vue:57
#: frontend/src/pages/JobDetail.vue:68
msgid "You have applied"
msgstr ""
@@ -7451,7 +7501,7 @@ msgstr ""
msgid "Your Account has been successfully created!"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:119
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:121
msgid "Your Output"
msgstr ""
@@ -7459,7 +7509,7 @@ msgstr ""
msgid "Your batch {0} is starting tomorrow"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:134
#: frontend/src/pages/ProfileEvaluator.vue:143
msgid "Your calendar is set."
msgstr ""
@@ -7538,11 +7588,11 @@ msgstr ""
msgid "and then 'Add to Home Screen'"
msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125
msgid "applicant"
msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125
msgid "applicants"
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: 2025-10-31 16:04+0000\n"
"PO-Revision-Date: 2025-11-02 19:07\n"
"POT-Creation-Date: 2025-11-07 16:04+0000\n"
"PO-Revision-Date: 2025-11-11 11:49\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Thai\n"
"MIME-Version: 1.0\n"
@@ -176,7 +176,7 @@ msgstr ""
msgid "Add Row"
msgstr "เพิ่มแถว"
#: frontend/src/pages/ProfileEvaluator.vue:89
#: frontend/src/pages/ProfileEvaluator.vue:96
msgid "Add Slot"
msgstr ""
@@ -426,12 +426,25 @@ msgstr ""
msgid "Appears when the batch URL is shared on socials"
msgstr ""
#: frontend/src/pages/JobApplications.vue:24
msgid "Application"
msgstr ""
#. Label of a field in the job-opportunity Web Form
#: lms/job/web_form/job_opportunity/job_opportunity.json
msgid "Application Form Link"
msgstr ""
#: frontend/src/pages/JobDetail.vue:51
#: frontend/src/pages/JobApplications.vue:14
#: frontend/src/pages/JobApplications.vue:25
msgid "Applications"
msgstr ""
#: frontend/src/pages/JobApplications.vue:290
msgid "Applied On"
msgstr ""
#: frontend/src/pages/JobDetail.vue:62
msgid "Apply"
msgstr ""
@@ -483,7 +496,7 @@ msgstr ""
#. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch'
#. Label of the assessment (Table) field in DocType 'LMS Batch'
#: frontend/src/components/Modals/AssessmentModal.vue:27
#: frontend/src/components/Modals/BatchStudentProgress.vue:41
#: frontend/src/components/Modals/BatchStudentProgress.vue:43
#: lms/lms/doctype/lms_batch/lms_batch.json lms/templates/assessments.html:11
msgid "Assessment"
msgstr ""
@@ -569,7 +582,7 @@ msgstr ""
msgid "Assignment Title"
msgstr ""
#: frontend/src/components/Modals/AssignmentForm.vue:125
#: frontend/src/components/Modals/AssignmentForm.vue:133
msgid "Assignment created successfully"
msgstr ""
@@ -581,7 +594,7 @@ msgstr ""
msgid "Assignment submitted successfully"
msgstr ""
#: frontend/src/components/Modals/AssignmentForm.vue:138
#: frontend/src/components/Modals/AssignmentForm.vue:146
msgid "Assignment updated successfully"
msgstr ""
@@ -622,7 +635,7 @@ msgstr ""
msgid "Attire Preference"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:137
#: frontend/src/pages/ProfileEvaluator.vue:146
msgid "Authorize Google Calendar Access"
msgstr ""
@@ -637,7 +650,7 @@ msgstr ""
msgid "Auto Recording"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:224
#: frontend/src/pages/ProfileEvaluator.vue:241
msgid "Availability updated successfully"
msgstr ""
@@ -768,6 +781,7 @@ msgstr ""
#. Name of a role
#: lms/lms/doctype/course_evaluator/course_evaluator.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_category/lms_category.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -998,7 +1012,7 @@ msgstr ""
msgid "Certificate of Completion"
msgstr ""
#: frontend/src/components/Modals/Event.vue:317
#: frontend/src/components/Modals/Event.vue:348
msgid "Certificate saved successfully"
msgstr ""
@@ -1018,7 +1032,7 @@ msgstr ""
#. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace
#: frontend/src/components/AppSidebar.vue:626
#: frontend/src/components/Modals/Event.vue:381
#: frontend/src/components/Modals/Event.vue:412
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58
#: frontend/src/pages/CourseCertification.vue:10
#: frontend/src/pages/CourseCertification.vue:135
@@ -1640,6 +1654,7 @@ msgstr ""
#: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/course_lesson/course_lesson.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
#: lms/lms/doctype/lms_category/lms_category.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json
@@ -1757,7 +1772,7 @@ msgstr ""
#: frontend/src/components/BatchCourses.vue:5
#: frontend/src/components/BatchOverlay.vue:37
#: frontend/src/components/BatchStudents.vue:25
#: frontend/src/components/Modals/BatchStudentProgress.vue:91
#: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127
#: frontend/src/pages/Courses.vue:333 frontend/src/pages/Courses.vue:340
@@ -2172,7 +2187,7 @@ msgstr ""
#: frontend/src/components/DiscussionReplies.vue:35
#: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/components/Settings/Badges.vue:156
#: frontend/src/pages/JobDetail.vue:34 frontend/src/pages/Lesson.vue:42
#: frontend/src/pages/JobDetail.vue:45 frontend/src/pages/Lesson.vue:42
#: frontend/src/pages/Lesson.vue:178 frontend/src/pages/Profile.vue:36
msgid "Edit"
msgstr "แก้ไข"
@@ -2239,7 +2254,7 @@ msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:105
#: frontend/src/components/Settings/Members.vue:103
#: lms/templates/signup-form.html:10
#: frontend/src/pages/JobApplications.vue:284 lms/templates/signup-form.html:10
msgid "Email"
msgstr "อีเมล"
@@ -2275,6 +2290,7 @@ msgid "Email Templates deleted successfully"
msgstr ""
#: frontend/src/components/ContactUsEmail.vue:57
#: frontend/src/pages/JobApplications.vue:244
msgid "Email sent successfully"
msgstr ""
@@ -2417,6 +2433,14 @@ msgstr ""
msgid "Enter a URL"
msgstr ""
#: frontend/src/pages/JobApplications.vue:122
msgid "Enter email subject"
msgstr ""
#: frontend/src/pages/JobApplications.vue:128
msgid "Enter reply to email"
msgstr ""
#: frontend/src/components/Modals/ZoomAccountModal.vue:169
msgid "Error creating Zoom Account"
msgstr ""
@@ -2456,7 +2480,7 @@ msgstr ""
#. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:374 lms/lms/workspace/lms/lms.json
#: frontend/src/components/Modals/Event.vue:405 lms/lms/workspace/lms/lms.json
msgid "Evaluation"
msgstr ""
@@ -2481,7 +2505,7 @@ msgstr ""
msgid "Evaluation end date cannot be less than the batch end date."
msgstr ""
#: frontend/src/components/Modals/Event.vue:256
#: frontend/src/components/Modals/Event.vue:287
msgid "Evaluation saved successfully"
msgstr ""
@@ -2589,7 +2613,7 @@ msgstr "ขยาย"
#. Label of the expected_output (Data) field in DocType 'LMS Test Case'
#. Label of the expected_output (Data) field in DocType 'LMS Test Case
#. Submission'
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:127
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:129
#: lms/lms/doctype/lms_test_case/lms_test_case.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Expected Output"
@@ -2602,7 +2626,7 @@ msgstr ""
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33
#: frontend/src/components/Modals/Event.vue:126
#: frontend/src/components/Modals/Event.vue:144
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date"
msgstr "วันหมดอายุ"
@@ -2629,7 +2653,7 @@ msgstr ""
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:366
#: frontend/src/components/Modals/Event.vue:397
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail"
@@ -2660,7 +2684,7 @@ msgstr ""
msgid "Failed to send email"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:358
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:364
msgid "Failed to submit. Please try again. {0}"
msgstr ""
@@ -2773,7 +2797,7 @@ msgid "Friday"
msgstr "วันศุกร์"
#. Label of the unavailable_from (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:99
#: frontend/src/pages/ProfileEvaluator.vue:106
#: lms/lms/doctype/course_evaluator/course_evaluator.json
msgid "From"
msgstr "จาก"
@@ -2785,6 +2809,7 @@ msgstr "จากวันที่"
#. Label of the full_name (Data) field in DocType 'Course Evaluator'
#. Label of the full_name (Data) field in DocType 'LMS Program Member'
#: frontend/src/pages/JobApplications.vue:278
#: lms/lms/doctype/course_evaluator/course_evaluator.json
#: lms/lms/doctype/lms_program_member/lms_program_member.json
#: lms/templates/signup-form.html:5
@@ -3022,7 +3047,7 @@ msgstr ""
msgid "I am looking for a job"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:94
#: frontend/src/pages/ProfileEvaluator.vue:101
msgid "I am unavailable"
msgstr ""
@@ -3108,7 +3133,7 @@ msgstr "ภาพ: สตรีมข้อมูลเสียหาย"
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:358
#: frontend/src/components/Modals/Event.vue:389
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -3164,7 +3189,7 @@ msgstr "อุตสาหกรรม"
#. Label of the input (Data) field in DocType 'LMS Test Case'
#. Label of the input (Data) field in DocType 'LMS Test Case Submission'
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:113
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:115
#: lms/lms/doctype/lms_test_case/lms_test_case.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Input"
@@ -3276,7 +3301,7 @@ msgstr ""
#. Label of the issue_date (Date) field in DocType 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28
#: frontend/src/components/Modals/Event.vue:121
#: frontend/src/components/Modals/Event.vue:138
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date"
@@ -3361,8 +3386,8 @@ msgid "Job Title"
msgstr ""
#. Label of the jobs (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/JobDetail.vue:10 frontend/src/pages/Jobs.vue:8
#: frontend/src/pages/Jobs.vue:212
#: frontend/src/pages/JobApplications.vue:9 frontend/src/pages/JobDetail.vue:10
#: frontend/src/pages/Jobs.vue:8 frontend/src/pages/Jobs.vue:212
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Jobs"
msgstr ""
@@ -3378,7 +3403,7 @@ msgstr ""
msgid "Join Call"
msgstr ""
#: frontend/src/components/Modals/Event.vue:74
#: frontend/src/components/Modals/Event.vue:78
msgid "Join Meeting"
msgstr ""
@@ -3886,7 +3911,7 @@ msgstr "เข้าสู่ระบบ"
msgid "Login to Frappe Cloud?"
msgstr ""
#: frontend/src/pages/JobDetail.vue:63
#: frontend/src/pages/JobDetail.vue:74
msgid "Login to apply"
msgstr ""
@@ -4231,9 +4256,14 @@ msgid "Mentor Request Status Update Template"
msgstr ""
#: frontend/src/components/ContactUsEmail.vue:19
#: frontend/src/pages/JobApplications.vue:132
msgid "Message"
msgstr "ข้อความ"
#: frontend/src/pages/JobApplications.vue:240
msgid "Message is required"
msgstr ""
#. Label of the meta_description (Small Text) field in DocType 'LMS Settings'
#: frontend/src/pages/BatchForm.vue:297 frontend/src/pages/CourseForm.vue:303
#: lms/lms/doctype/lms_settings/lms_settings.json
@@ -4354,7 +4384,7 @@ msgstr ""
msgid "My availability"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:127
#: frontend/src/pages/ProfileEvaluator.vue:136
msgid "My calendar"
msgstr ""
@@ -4393,7 +4423,7 @@ msgstr ""
msgid "New Job"
msgstr ""
#: lms/job/doctype/lms_job_application/lms_job_application.py:27
#: lms/job/doctype/lms_job_application/lms_job_application.py:31
msgid "New Job Applicant"
msgstr ""
@@ -4821,7 +4851,7 @@ msgstr ""
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:362
#: frontend/src/components/Modals/Event.vue:393
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass"
@@ -4948,7 +4978,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:354
#: frontend/src/components/Modals/Event.vue:385
#: lms/lms/doctype/cohort_join_request/cohort_join_request.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
@@ -4967,7 +4997,7 @@ msgstr ""
msgid "Percentage (e.g. 70%)"
msgstr ""
#: frontend/src/components/Modals/BatchStudentProgress.vue:44
#: frontend/src/components/Modals/BatchStudentProgress.vue:46
msgid "Percentage/Status"
msgstr ""
@@ -5083,7 +5113,7 @@ msgstr ""
msgid "Please prepare well and be on time for the evaluations."
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:135
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:139
msgid "Please run the code to execute the test cases."
msgstr ""
@@ -5320,11 +5350,11 @@ msgstr ""
#: frontend/src/components/Settings/BadgeForm.vue:200
#: frontend/src/components/Settings/Badges.vue:205
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:420
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:426
msgid "Programming Exercise Submission"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:411
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:417
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:298
msgid "Programming Exercise Submissions"
msgstr ""
@@ -5358,7 +5388,7 @@ msgstr ""
#. Label of the progress (Float) field in DocType 'LMS Enrollment'
#. Label of the progress (Int) field in DocType 'LMS Program Member'
#: frontend/src/components/Modals/BatchStudentProgress.vue:94
#: frontend/src/components/Modals/BatchStudentProgress.vue:98
#: frontend/src/components/Modals/CourseProgressSummary.vue:224
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
#: lms/lms/doctype/lms_program_member/lms_program_member.json
@@ -5404,7 +5434,7 @@ msgstr ""
#. Label of the published (Check) field in DocType 'LMS Course'
#. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51
#: frontend/src/components/Modals/Event.vue:108
#: frontend/src/components/Modals/Event.vue:122
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:152
#: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100
@@ -5572,7 +5602,7 @@ msgstr ""
#. Label of the rating (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147
#: frontend/src/components/Modals/Event.vue:86
#: frontend/src/components/Modals/Event.vue:92
#: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -5659,6 +5689,7 @@ msgid "Remove Highlight"
msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:27
#: frontend/src/pages/JobApplications.vue:127
msgid "Reply To"
msgstr ""
@@ -5818,8 +5849,8 @@ msgstr "วันเสาร์"
#: frontend/src/components/Controls/CodeEditor.vue:25
#: frontend/src/components/Modals/AssignmentForm.vue:59
#: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:101
#: frontend/src/components/Modals/Event.vue:129
#: frontend/src/components/Modals/Event.vue:115
#: frontend/src/components/Modals/Event.vue:151
#: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
@@ -5958,6 +5989,7 @@ msgid "Select an assignment"
msgstr ""
#: frontend/src/components/ContactUsEmail.vue:33
#: frontend/src/pages/JobApplications.vue:110
msgid "Send"
msgstr "ส่ง"
@@ -5965,6 +5997,14 @@ msgstr "ส่ง"
msgid "Send Confirmation Email"
msgstr ""
#: frontend/src/pages/JobApplications.vue:268
msgid "Send Email"
msgstr "ส่งอีเมล"
#: frontend/src/pages/JobApplications.vue:106
msgid "Send Email to {0}"
msgstr ""
#. Label of the send_calendar_invite_for_evaluations (Check) field in DocType
#. 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
@@ -6125,11 +6165,11 @@ msgstr "ข้าม"
msgid "Slot Times are overlapping for some schedules."
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:201
#: frontend/src/pages/ProfileEvaluator.vue:218
msgid "Slot added successfully"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:240
#: frontend/src/pages/ProfileEvaluator.vue:257
msgid "Slot deleted successfully"
msgstr ""
@@ -6268,7 +6308,7 @@ msgstr ""
#. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case Submission'
#: frontend/src/components/Modals/Event.vue:91
#: frontend/src/components/Modals/Event.vue:99
#: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6339,10 +6379,12 @@ msgstr ""
#: frontend/src/components/ContactUsEmail.vue:13
#: frontend/src/components/Modals/AnnouncementModal.vue:20
#: frontend/src/components/Modals/EmailTemplateModal.vue:31
#: frontend/src/pages/JobApplications.vue:121
msgid "Subject"
msgstr "หัวข้อ"
#: frontend/src/components/Modals/AnnouncementModal.vue:94
#: frontend/src/pages/JobApplications.vue:237
msgid "Subject is required"
msgstr ""
@@ -6359,7 +6401,7 @@ msgstr ""
msgid "Submission by"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:353
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:359
msgid "Submission saved!"
msgstr ""
@@ -6399,7 +6441,7 @@ msgstr ""
#. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:97
#: frontend/src/components/Modals/Event.vue:106
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary"
msgstr ""
@@ -6504,7 +6546,7 @@ msgstr ""
#. Label of the template (Link) field in DocType 'Cohort Web Page'
#. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43
#: frontend/src/components/Modals/Event.vue:112
#: frontend/src/components/Modals/Event.vue:127
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template"
@@ -6545,7 +6587,7 @@ msgstr ""
msgid "Test this Exercise"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:92
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:93
msgid "Test {0}"
msgstr ""
@@ -6843,7 +6885,7 @@ msgid "Title is required"
msgstr ""
#. Label of the unavailable_to (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:112
#: frontend/src/pages/ProfileEvaluator.vue:120
#: lms/lms/doctype/course_evaluator/course_evaluator.json
msgid "To"
msgstr ""
@@ -6956,7 +6998,7 @@ msgstr ""
msgid "Unavailability"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:259
#: frontend/src/pages/ProfileEvaluator.vue:276
msgid "Unavailability updated successfully"
msgstr ""
@@ -7126,11 +7168,19 @@ msgstr ""
msgid "View"
msgstr "ดู"
#: frontend/src/pages/JobDetail.vue:31
msgid "View Applications"
msgstr ""
#: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67
msgid "View Certificate"
msgstr ""
#: frontend/src/pages/JobApplications.vue:262
msgid "View Resume"
msgstr ""
#: frontend/src/components/BatchFeedback.vue:56
msgid "View all feedback"
msgstr ""
@@ -7149,7 +7199,7 @@ msgstr "การมองเห็น"
msgid "Visit Batch"
msgstr ""
#: frontend/src/pages/JobDetail.vue:41
#: frontend/src/pages/JobDetail.vue:52
msgid "Visit Website"
msgstr ""
@@ -7358,7 +7408,7 @@ msgstr ""
msgid "You have a live class scheduled tomorrow. Please be prepared and be on time for the session."
msgstr ""
#: lms/job/doctype/lms_job_application/lms_job_application.py:22
#: lms/job/doctype/lms_job_application/lms_job_application.py:26
msgid "You have already applied for this job."
msgstr ""
@@ -7374,7 +7424,7 @@ msgstr ""
msgid "You have already reviewed this course"
msgstr ""
#: frontend/src/pages/JobDetail.vue:57
#: frontend/src/pages/JobDetail.vue:68
msgid "You have applied"
msgstr ""
@@ -7454,7 +7504,7 @@ msgstr ""
msgid "Your Account has been successfully created!"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:119
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:121
msgid "Your Output"
msgstr ""
@@ -7462,7 +7512,7 @@ msgstr ""
msgid "Your batch {0} is starting tomorrow"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:134
#: frontend/src/pages/ProfileEvaluator.vue:143
msgid "Your calendar is set."
msgstr ""
@@ -7541,11 +7591,11 @@ msgstr "และ"
msgid "and then 'Add to Home Screen'"
msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125
msgid "applicant"
msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125
msgid "applicants"
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: 2025-10-31 16:04+0000\n"
"PO-Revision-Date: 2025-11-02 19:07\n"
"POT-Creation-Date: 2025-11-07 16:04+0000\n"
"PO-Revision-Date: 2025-11-11 11:49\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Turkish\n"
"MIME-Version: 1.0\n"
@@ -148,7 +148,7 @@ msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:131
#: frontend/src/pages/Programs/ProgramForm.vue:180
msgid "Add"
msgstr "Ekle"
msgstr "Yeni"
#: frontend/src/components/CourseOutline.vue:18
#: frontend/src/components/CreateOutline.vue:18
@@ -176,7 +176,7 @@ msgstr ""
msgid "Add Row"
msgstr "Satır Ekle"
#: frontend/src/pages/ProfileEvaluator.vue:89
#: frontend/src/pages/ProfileEvaluator.vue:96
msgid "Add Slot"
msgstr "Yuva Ekle"
@@ -286,11 +286,11 @@ msgstr "Adres"
#: frontend/src/pages/Billing.vue:74
msgid "Address Line 1"
msgstr "Adres Satırı 1"
msgstr ""
#: frontend/src/pages/Billing.vue:78
msgid "Address Line 2"
msgstr "Adres Satırı 2"
msgstr ""
#. Option for the 'Role' (Select) field in DocType 'Cohort Staff'
#. Option for the 'Required Role' (Select) field in DocType 'Cohort Web Page'
@@ -426,12 +426,25 @@ msgstr "Parti URLsi herhangi bir çevrimiçi platformda paylaşıldığında
msgid "Appears when the batch URL is shared on socials"
msgstr ""
#: frontend/src/pages/JobApplications.vue:24
msgid "Application"
msgstr "Başvuru"
#. Label of a field in the job-opportunity Web Form
#: lms/job/web_form/job_opportunity/job_opportunity.json
msgid "Application Form Link"
msgstr ""
#: frontend/src/pages/JobDetail.vue:51
#: frontend/src/pages/JobApplications.vue:14
#: frontend/src/pages/JobApplications.vue:25
msgid "Applications"
msgstr ""
#: frontend/src/pages/JobApplications.vue:290
msgid "Applied On"
msgstr "Uygulandı"
#: frontend/src/pages/JobDetail.vue:62
msgid "Apply"
msgstr "Uygula"
@@ -483,7 +496,7 @@ msgstr ""
#. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch'
#. Label of the assessment (Table) field in DocType 'LMS Batch'
#: frontend/src/components/Modals/AssessmentModal.vue:27
#: frontend/src/components/Modals/BatchStudentProgress.vue:41
#: frontend/src/components/Modals/BatchStudentProgress.vue:43
#: lms/lms/doctype/lms_batch/lms_batch.json lms/templates/assessments.html:11
msgid "Assessment"
msgstr "Değerlendirme"
@@ -569,7 +582,7 @@ msgstr ""
msgid "Assignment Title"
msgstr "Ödev Başlığı"
#: frontend/src/components/Modals/AssignmentForm.vue:125
#: frontend/src/components/Modals/AssignmentForm.vue:133
msgid "Assignment created successfully"
msgstr ""
@@ -581,7 +594,7 @@ msgstr "{1} tarafından verilen {0} Dersi için ödev zaten mevcut."
msgid "Assignment submitted successfully"
msgstr ""
#: frontend/src/components/Modals/AssignmentForm.vue:138
#: frontend/src/components/Modals/AssignmentForm.vue:146
msgid "Assignment updated successfully"
msgstr ""
@@ -622,7 +635,7 @@ msgstr "Katılımcılar"
msgid "Attire Preference"
msgstr "Giyim Tercihi"
#: frontend/src/pages/ProfileEvaluator.vue:137
#: frontend/src/pages/ProfileEvaluator.vue:146
msgid "Authorize Google Calendar Access"
msgstr "Google Takvim Erişimini Yetkilendirin"
@@ -637,7 +650,7 @@ msgstr "Otomatik Atama"
msgid "Auto Recording"
msgstr "Otomatik Kayıt"
#: frontend/src/pages/ProfileEvaluator.vue:224
#: frontend/src/pages/ProfileEvaluator.vue:241
msgid "Availability updated successfully"
msgstr ""
@@ -768,6 +781,7 @@ msgstr ""
#. Name of a role
#: lms/lms/doctype/course_evaluator/course_evaluator.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_category/lms_category.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -886,7 +900,7 @@ msgstr "Hakkında"
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json
msgid "Blue"
msgstr "Mavi"
msgstr ""
#. Label of the body (Markdown Editor) field in DocType 'Course Lesson'
#: lms/lms/doctype/course_lesson/course_lesson.json
@@ -998,7 +1012,7 @@ msgstr "Sertifika Bağlantısı"
msgid "Certificate of Completion"
msgstr ""
#: frontend/src/components/Modals/Event.vue:317
#: frontend/src/components/Modals/Event.vue:348
msgid "Certificate saved successfully"
msgstr ""
@@ -1018,7 +1032,7 @@ msgstr ""
#. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace
#: frontend/src/components/AppSidebar.vue:626
#: frontend/src/components/Modals/Event.vue:381
#: frontend/src/components/Modals/Event.vue:412
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58
#: frontend/src/pages/CourseCertification.vue:10
#: frontend/src/pages/CourseCertification.vue:135
@@ -1168,7 +1182,7 @@ msgstr "Bir cevap seçin"
#: lms/fixtures/custom_field.json
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "City"
msgstr "Şehir"
msgstr ""
#: lms/templates/emails/live_class_reminder.html:10
msgid "Class:"
@@ -1214,7 +1228,7 @@ msgstr "Kapat"
#: lms/job/web_form/job_opportunity/job_opportunity.json
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
msgid "Closed"
msgstr "Kapandı"
msgstr ""
#. Option for the 'Auto Recording' (Select) field in DocType 'LMS Live Class'
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -1361,7 +1375,7 @@ msgstr "Şirket Logosu"
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/job/web_form/job_opportunity/job_opportunity.json
msgid "Company Name"
msgstr "Şirket Adı"
msgstr ""
#. Label of the company_type (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
@@ -1640,6 +1654,7 @@ msgstr ""
#: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/course_lesson/course_lesson.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
#: lms/lms/doctype/lms_category/lms_category.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json
@@ -1757,7 +1772,7 @@ msgstr "Kurs {0} bu gruba zaten eklenmiştir."
#: frontend/src/components/BatchCourses.vue:5
#: frontend/src/components/BatchOverlay.vue:37
#: frontend/src/components/BatchStudents.vue:25
#: frontend/src/components/Modals/BatchStudentProgress.vue:91
#: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127
#: frontend/src/pages/Courses.vue:333 frontend/src/pages/Courses.vue:340
@@ -1932,7 +1947,7 @@ msgstr "Açık Mavi"
#. Label of the show_dashboard (Check) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Dashboard"
msgstr "Gösterge Paneli"
msgstr ""
#. Label of the date (Date) field in DocType 'LMS Batch Timetable'
#. Label of the date (Date) field in DocType 'LMS Certificate Evaluation'
@@ -2098,7 +2113,7 @@ msgstr ""
#: frontend/src/components/Settings/ZoomSettings.vue:66
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Disabled"
msgstr "Kapalı"
msgstr "Devre dışı"
#: frontend/src/components/DiscussionReplies.vue:57
#: lms/lms/widgets/NoPreviewModal.html:25 lms/templates/reviews.html:159
@@ -2143,7 +2158,7 @@ msgstr "Bu soru için yinelenen seçenekler bulundu."
#: lms/lms/doctype/lms_live_class/lms_live_class.json
#: lms/lms/doctype/lms_live_class_participant/lms_live_class_participant.json
msgid "Duration"
msgstr "Süre"
msgstr ""
#. Label of the duration (Data) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:67 lms/lms/doctype/lms_quiz/lms_quiz.json
@@ -2169,7 +2184,7 @@ msgstr "E-Posta"
#: frontend/src/components/DiscussionReplies.vue:35
#: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/components/Settings/Badges.vue:156
#: frontend/src/pages/JobDetail.vue:34 frontend/src/pages/Lesson.vue:42
#: frontend/src/pages/JobDetail.vue:45 frontend/src/pages/Lesson.vue:42
#: frontend/src/pages/Lesson.vue:178 frontend/src/pages/Profile.vue:36
msgid "Edit"
msgstr "Düzenle"
@@ -2236,7 +2251,7 @@ msgstr "Eğitim Geçmişi"
#: frontend/src/components/Settings/Evaluators.vue:105
#: frontend/src/components/Settings/Members.vue:103
#: lms/templates/signup-form.html:10
#: frontend/src/pages/JobApplications.vue:284 lms/templates/signup-form.html:10
msgid "Email"
msgstr "E-posta"
@@ -2272,6 +2287,7 @@ msgid "Email Templates deleted successfully"
msgstr ""
#: frontend/src/components/ContactUsEmail.vue:57
#: frontend/src/pages/JobApplications.vue:244
msgid "Email sent successfully"
msgstr "E-posta başarıyla gönderildi"
@@ -2414,6 +2430,14 @@ msgstr "Değerlendirmeler için takvim davetleri göndermek üzere Google Ayarla
msgid "Enter a URL"
msgstr "Bir URL girin"
#: frontend/src/pages/JobApplications.vue:122
msgid "Enter email subject"
msgstr ""
#: frontend/src/pages/JobApplications.vue:128
msgid "Enter reply to email"
msgstr ""
#: frontend/src/components/Modals/ZoomAccountModal.vue:169
msgid "Error creating Zoom Account"
msgstr ""
@@ -2453,7 +2477,7 @@ msgstr ""
#. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:374 lms/lms/workspace/lms/lms.json
#: frontend/src/components/Modals/Event.vue:405 lms/lms/workspace/lms/lms.json
msgid "Evaluation"
msgstr "Değerlendirme"
@@ -2478,7 +2502,7 @@ msgstr "Değerlendirme Talebi"
msgid "Evaluation end date cannot be less than the batch end date."
msgstr ""
#: frontend/src/components/Modals/Event.vue:256
#: frontend/src/components/Modals/Event.vue:287
msgid "Evaluation saved successfully"
msgstr ""
@@ -2586,7 +2610,7 @@ msgstr "Genişlet"
#. Label of the expected_output (Data) field in DocType 'LMS Test Case'
#. Label of the expected_output (Data) field in DocType 'LMS Test Case
#. Submission'
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:127
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:129
#: lms/lms/doctype/lms_test_case/lms_test_case.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Expected Output"
@@ -2599,7 +2623,7 @@ msgstr "Bitiş Tarihi"
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33
#: frontend/src/components/Modals/Event.vue:126
#: frontend/src/components/Modals/Event.vue:144
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date"
msgstr "Son Kullanım Tarihi"
@@ -2626,7 +2650,7 @@ msgstr "Daha Fazlasını Keşfedin"
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:366
#: frontend/src/components/Modals/Event.vue:397
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail"
@@ -2639,7 +2663,7 @@ msgstr "Başarısız"
#: lms/lms/doctype/lms_programming_exercise_submission/lms_programming_exercise_submission.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Failed"
msgstr "Başarısız"
msgstr ""
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:136
msgid "Failed to create badge assignment: "
@@ -2657,7 +2681,7 @@ msgstr ""
msgid "Failed to send email"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:358
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:364
msgid "Failed to submit. Please try again. {0}"
msgstr ""
@@ -2770,18 +2794,19 @@ msgid "Friday"
msgstr "Cuma"
#. Label of the unavailable_from (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:99
#: frontend/src/pages/ProfileEvaluator.vue:106
#: lms/lms/doctype/course_evaluator/course_evaluator.json
msgid "From"
msgstr "Gönderen"
msgstr "itibaren"
#. Label of the from_date (Date) field in DocType 'Work Experience'
#: lms/lms/doctype/work_experience/work_experience.json
msgid "From Date"
msgstr "Başlangıç Tarihi"
msgstr "Başlama Tarihi"
#. Label of the full_name (Data) field in DocType 'Course Evaluator'
#. Label of the full_name (Data) field in DocType 'LMS Program Member'
#: frontend/src/pages/JobApplications.vue:278
#: lms/lms/doctype/course_evaluator/course_evaluator.json
#: lms/lms/doctype/lms_program_member/lms_program_member.json
#: lms/templates/signup-form.html:5
@@ -2910,7 +2935,7 @@ msgstr "Gri"
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json
msgid "Green"
msgstr "Yeşil"
msgstr ""
#: lms/templates/signup-form.html:56
msgid "Have an account? Login"
@@ -3019,7 +3044,7 @@ msgstr "{0} kursu için sertifikanızı başarıyla kazandığınızı size duyu
msgid "I am looking for a job"
msgstr "Bir iş arıyorum"
#: frontend/src/pages/ProfileEvaluator.vue:94
#: frontend/src/pages/ProfileEvaluator.vue:101
msgid "I am unavailable"
msgstr "Müsait değilim"
@@ -3105,12 +3130,12 @@ msgstr "Resim: Bozuk Veri Akışı"
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:358
#: frontend/src/components/Modals/Event.vue:389
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "In Progress"
msgstr "İşlemde"
msgstr "Devam ediyor"
#. Option for the 'Status' (Select) field in DocType 'LMS Batch Old'
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
@@ -3161,7 +3186,7 @@ msgstr "Endüstri"
#. Label of the input (Data) field in DocType 'LMS Test Case'
#. Label of the input (Data) field in DocType 'LMS Test Case Submission'
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:113
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:115
#: lms/lms/doctype/lms_test_case/lms_test_case.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Input"
@@ -3273,7 +3298,7 @@ msgstr ""
#. Label of the issue_date (Date) field in DocType 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28
#: frontend/src/components/Modals/Event.vue:121
#: frontend/src/components/Modals/Event.vue:138
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date"
@@ -3358,8 +3383,8 @@ msgid "Job Title"
msgstr "İş İlanı Başlığı"
#. Label of the jobs (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/JobDetail.vue:10 frontend/src/pages/Jobs.vue:8
#: frontend/src/pages/Jobs.vue:212
#: frontend/src/pages/JobApplications.vue:9 frontend/src/pages/JobDetail.vue:10
#: frontend/src/pages/Jobs.vue:8 frontend/src/pages/Jobs.vue:212
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Jobs"
msgstr "İşler"
@@ -3375,7 +3400,7 @@ msgstr "Katıl"
msgid "Join Call"
msgstr ""
#: frontend/src/components/Modals/Event.vue:74
#: frontend/src/components/Modals/Event.vue:78
msgid "Join Meeting"
msgstr "Görüşmeye Katıl"
@@ -3883,7 +3908,7 @@ msgstr "Giriş"
msgid "Login to Frappe Cloud?"
msgstr "Frappe Cloud'a Giriş Yapın?"
#: frontend/src/pages/JobDetail.vue:63
#: frontend/src/pages/JobDetail.vue:74
msgid "Login to apply"
msgstr "Başvurmak için giriş yapın"
@@ -4228,9 +4253,14 @@ msgid "Mentor Request Status Update Template"
msgstr "Mentor Talebi Durum Güncelleme Şablonu"
#: frontend/src/components/ContactUsEmail.vue:19
#: frontend/src/pages/JobApplications.vue:132
msgid "Message"
msgstr "Mesaj"
#: frontend/src/pages/JobApplications.vue:240
msgid "Message is required"
msgstr ""
#. Label of the meta_description (Small Text) field in DocType 'LMS Settings'
#: frontend/src/pages/BatchForm.vue:297 frontend/src/pages/CourseForm.vue:303
#: lms/lms/doctype/lms_settings/lms_settings.json
@@ -4351,7 +4381,7 @@ msgstr ""
msgid "My availability"
msgstr "Müsaitliğim"
#: frontend/src/pages/ProfileEvaluator.vue:127
#: frontend/src/pages/ProfileEvaluator.vue:136
msgid "My calendar"
msgstr "Takvimim"
@@ -4390,7 +4420,7 @@ msgstr ""
msgid "New Job"
msgstr "Yeni İş"
#: lms/job/doctype/lms_job_application/lms_job_application.py:27
#: lms/job/doctype/lms_job_application/lms_job_application.py:31
msgid "New Job Applicant"
msgstr "Yeni İş Başvurusu"
@@ -4544,7 +4574,7 @@ msgstr "{0} Yok"
#: lms/lms/user.py:29
msgid "Not Allowed"
msgstr "İzin Verilmiyor"
msgstr "İzin verilmedi"
#. Option for the 'Status' (Select) field in DocType 'LMS Assignment
#. Submission'
@@ -4568,7 +4598,7 @@ msgstr "Not Verilmedi"
#: frontend/src/components/NoPermission.vue:7 frontend/src/pages/Batch.vue:164
msgid "Not Permitted"
msgstr "İzin Verilmedi"
msgstr "İzin yok"
#: frontend/src/components/Assignment.vue:36
#: frontend/src/components/Settings/BrandSettings.vue:10
@@ -4818,7 +4848,7 @@ msgstr "Kısmen Tamamlandı"
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:362
#: frontend/src/components/Modals/Event.vue:393
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass"
@@ -4945,12 +4975,12 @@ msgstr "Ödeme uygulaması yüklü değil"
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:354
#: frontend/src/components/Modals/Event.vue:385
#: lms/lms/doctype/cohort_join_request/cohort_join_request.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
msgid "Pending"
msgstr "Bekliyor"
msgstr ""
#. Label of the percentage (Int) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/QuizSubmission.vue:44
@@ -4964,7 +4994,7 @@ msgstr "Yüzde"
msgid "Percentage (e.g. 70%)"
msgstr "Yüzde (örn. %70)"
#: frontend/src/components/Modals/BatchStudentProgress.vue:44
#: frontend/src/components/Modals/BatchStudentProgress.vue:46
msgid "Percentage/Status"
msgstr ""
@@ -5080,7 +5110,7 @@ msgstr ""
msgid "Please prepare well and be on time for the evaluations."
msgstr "Lütfen iyi hazırlanın ve değerlendirmelere zamanında katılın."
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:135
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:139
msgid "Please run the code to execute the test cases."
msgstr ""
@@ -5172,7 +5202,7 @@ msgstr "Gönder"
#: frontend/src/pages/Billing.vue:95
msgid "Postal Code"
msgstr "Posta Kodu"
msgstr ""
#: frontend/src/components/AppSidebar.vue:125
msgid "Powered by Learning"
@@ -5317,11 +5347,11 @@ msgstr ""
#: frontend/src/components/Settings/BadgeForm.vue:200
#: frontend/src/components/Settings/Badges.vue:205
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:420
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:426
msgid "Programming Exercise Submission"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:411
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:417
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:298
msgid "Programming Exercise Submissions"
msgstr ""
@@ -5355,12 +5385,12 @@ msgstr ""
#. Label of the progress (Float) field in DocType 'LMS Enrollment'
#. Label of the progress (Int) field in DocType 'LMS Program Member'
#: frontend/src/components/Modals/BatchStudentProgress.vue:94
#: frontend/src/components/Modals/BatchStudentProgress.vue:98
#: frontend/src/components/Modals/CourseProgressSummary.vue:224
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
#: lms/lms/doctype/lms_program_member/lms_program_member.json
msgid "Progress"
msgstr "İlerleme"
msgstr ""
#: frontend/src/pages/Programs/ProgramProgressSummary.vue:131
#: lms/lms/report/course_progress_summary/course_progress_summary.py:77
@@ -5401,7 +5431,7 @@ msgstr "Katılımcı Sayfasında Yayınla"
#. Label of the published (Check) field in DocType 'LMS Course'
#. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51
#: frontend/src/components/Modals/Event.vue:108
#: frontend/src/components/Modals/Event.vue:122
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:152
#: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100
@@ -5569,7 +5599,7 @@ msgstr ""
#. Label of the rating (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147
#: frontend/src/components/Modals/Event.vue:86
#: frontend/src/components/Modals/Event.vue:92
#: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -5592,7 +5622,7 @@ msgstr "Hazır"
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json
msgid "Red"
msgstr "Kırmızı"
msgstr ""
#. Label of the reference_docname (Dynamic Link) field in DocType 'LMS Batch
#. Timetable'
@@ -5611,7 +5641,7 @@ msgstr "Referans DocType"
#. Label of the reference_doctype (Link) field in DocType 'LMS Badge'
#: lms/lms/doctype/lms_badge/lms_badge.json
msgid "Reference Document Type"
msgstr "Referans Belge Türü"
msgstr ""
#: lms/templates/emails/community_course_membership.html:17
msgid "Regards"
@@ -5656,6 +5686,7 @@ msgid "Remove Highlight"
msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:27
#: frontend/src/pages/JobApplications.vue:127
msgid "Reply To"
msgstr "Yanıtla"
@@ -5815,8 +5846,8 @@ msgstr "Cumartesi"
#: frontend/src/components/Controls/CodeEditor.vue:25
#: frontend/src/components/Modals/AssignmentForm.vue:59
#: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:101
#: frontend/src/components/Modals/Event.vue:129
#: frontend/src/components/Modals/Event.vue:115
#: frontend/src/components/Modals/Event.vue:151
#: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
@@ -5874,7 +5905,7 @@ msgstr ""
#: frontend/src/components/Settings/Members.vue:25
#: frontend/src/pages/Jobs.vue:41
msgid "Search"
msgstr "Arama"
msgstr "arama"
#: frontend/src/components/Modals/CourseProgressSummary.vue:17
#: frontend/src/components/Modals/VideoStatistics.vue:20
@@ -5955,6 +5986,7 @@ msgid "Select an assignment"
msgstr ""
#: frontend/src/components/ContactUsEmail.vue:33
#: frontend/src/pages/JobApplications.vue:110
msgid "Send"
msgstr "Gönder"
@@ -5962,6 +5994,14 @@ msgstr "Gönder"
msgid "Send Confirmation Email"
msgstr ""
#: frontend/src/pages/JobApplications.vue:268
msgid "Send Email"
msgstr "E-Posta Gönder"
#: frontend/src/pages/JobApplications.vue:106
msgid "Send Email to {0}"
msgstr ""
#. Label of the send_calendar_invite_for_evaluations (Check) field in DocType
#. 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
@@ -6122,11 +6162,11 @@ msgstr "Geç"
msgid "Slot Times are overlapping for some schedules."
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:201
#: frontend/src/pages/ProfileEvaluator.vue:218
msgid "Slot added successfully"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:240
#: frontend/src/pages/ProfileEvaluator.vue:257
msgid "Slot deleted successfully"
msgstr ""
@@ -6137,7 +6177,7 @@ msgstr ""
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json
msgid "Slug"
msgstr "Kısaltma"
msgstr ""
#: frontend/src/components/BatchCard.vue:25
#: frontend/src/components/BatchOverlay.vue:24
@@ -6265,7 +6305,7 @@ msgstr "İstatistik"
#. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case Submission'
#: frontend/src/components/Modals/Event.vue:91
#: frontend/src/components/Modals/Event.vue:99
#: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6336,10 +6376,12 @@ msgstr "Alt Grup"
#: frontend/src/components/ContactUsEmail.vue:13
#: frontend/src/components/Modals/AnnouncementModal.vue:20
#: frontend/src/components/Modals/EmailTemplateModal.vue:31
#: frontend/src/pages/JobApplications.vue:121
msgid "Subject"
msgstr "Konu"
#: frontend/src/components/Modals/AnnouncementModal.vue:94
#: frontend/src/pages/JobApplications.vue:237
msgid "Subject is required"
msgstr "Konu gereklidir"
@@ -6356,7 +6398,7 @@ msgstr ""
msgid "Submission by"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:353
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:359
msgid "Submission saved!"
msgstr ""
@@ -6396,7 +6438,7 @@ msgstr ""
#. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:97
#: frontend/src/components/Modals/Event.vue:106
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary"
msgstr "Özet"
@@ -6501,11 +6543,11 @@ msgstr "Takım Çalışması"
#. Label of the template (Link) field in DocType 'Cohort Web Page'
#. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43
#: frontend/src/components/Modals/Event.vue:112
#: frontend/src/components/Modals/Event.vue:127
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template"
msgstr "Şablon"
msgstr ""
#: lms/lms/user.py:40
msgid "Temporarily Disabled"
@@ -6542,7 +6584,7 @@ msgstr "Test Sonuçları"
msgid "Test this Exercise"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:92
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:93
msgid "Test {0}"
msgstr ""
@@ -6840,10 +6882,10 @@ msgid "Title is required"
msgstr ""
#. Label of the unavailable_to (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:112
#: frontend/src/pages/ProfileEvaluator.vue:120
#: lms/lms/doctype/course_evaluator/course_evaluator.json
msgid "To"
msgstr "Alıcı"
msgstr "Kime"
#. Label of the to_date (Date) field in DocType 'Work Experience'
#: lms/lms/doctype/work_experience/work_experience.json
@@ -6953,7 +6995,7 @@ msgstr ""
msgid "Unavailability"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:259
#: frontend/src/pages/ProfileEvaluator.vue:276
msgid "Unavailability updated successfully"
msgstr ""
@@ -7108,7 +7150,7 @@ msgstr "Değer"
#. Option for the 'Event' (Select) field in DocType 'LMS Badge'
#: lms/lms/doctype/lms_badge/lms_badge.json
msgid "Value Change"
msgstr "Değer Değişimi"
msgstr ""
#. Label of the video_link (Data) field in DocType 'LMS Course'
#: lms/lms/doctype/lms_course/lms_course.json
@@ -7123,11 +7165,19 @@ msgstr ""
msgid "View"
msgstr "Göster"
#: frontend/src/pages/JobDetail.vue:31
msgid "View Applications"
msgstr ""
#: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67
msgid "View Certificate"
msgstr "Sertifikayı Görüntüle"
#: frontend/src/pages/JobApplications.vue:262
msgid "View Resume"
msgstr ""
#: frontend/src/components/BatchFeedback.vue:56
msgid "View all feedback"
msgstr ""
@@ -7146,7 +7196,7 @@ msgstr "Görünürlülük"
msgid "Visit Batch"
msgstr ""
#: frontend/src/pages/JobDetail.vue:41
#: frontend/src/pages/JobDetail.vue:52
msgid "Visit Website"
msgstr ""
@@ -7355,7 +7405,7 @@ msgstr "{0}% doğru cevap verdiniz ve {2} üzerinden {1} puan aldınız"
msgid "You have a live class scheduled tomorrow. Please be prepared and be on time for the session."
msgstr ""
#: lms/job/doctype/lms_job_application/lms_job_application.py:22
#: lms/job/doctype/lms_job_application/lms_job_application.py:26
msgid "You have already applied for this job."
msgstr "Bu iş için zaten başvurdunuz."
@@ -7371,7 +7421,7 @@ msgstr ""
msgid "You have already reviewed this course"
msgstr "Bu kursa zaten yorum eklediniz"
#: frontend/src/pages/JobDetail.vue:57
#: frontend/src/pages/JobDetail.vue:68
msgid "You have applied"
msgstr ""
@@ -7451,7 +7501,7 @@ msgstr "YouTube Videosu dersin en üstünde görünecektir."
msgid "Your Account has been successfully created!"
msgstr "Hesabınız başarıyla oluşturuldu!"
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:119
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:121
msgid "Your Output"
msgstr ""
@@ -7459,7 +7509,7 @@ msgstr ""
msgid "Your batch {0} is starting tomorrow"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:134
#: frontend/src/pages/ProfileEvaluator.vue:143
msgid "Your calendar is set."
msgstr "Takviminiz hazır."
@@ -7538,11 +7588,11 @@ msgstr "ve"
msgid "and then 'Add to Home Screen'"
msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125
msgid "applicant"
msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125
msgid "applicants"
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: 2025-10-31 16:04+0000\n"
"PO-Revision-Date: 2025-11-02 19:07\n"
"POT-Creation-Date: 2025-11-07 16:04+0000\n"
"PO-Revision-Date: 2025-11-11 11:49\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Vietnamese\n"
"MIME-Version: 1.0\n"
@@ -176,7 +176,7 @@ msgstr ""
msgid "Add Row"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:89
#: frontend/src/pages/ProfileEvaluator.vue:96
msgid "Add Slot"
msgstr ""
@@ -426,12 +426,25 @@ msgstr ""
msgid "Appears when the batch URL is shared on socials"
msgstr ""
#: frontend/src/pages/JobApplications.vue:24
msgid "Application"
msgstr ""
#. Label of a field in the job-opportunity Web Form
#: lms/job/web_form/job_opportunity/job_opportunity.json
msgid "Application Form Link"
msgstr ""
#: frontend/src/pages/JobDetail.vue:51
#: frontend/src/pages/JobApplications.vue:14
#: frontend/src/pages/JobApplications.vue:25
msgid "Applications"
msgstr ""
#: frontend/src/pages/JobApplications.vue:290
msgid "Applied On"
msgstr "Áp Dụng Trên"
#: frontend/src/pages/JobDetail.vue:62
msgid "Apply"
msgstr ""
@@ -483,7 +496,7 @@ msgstr ""
#. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch'
#. Label of the assessment (Table) field in DocType 'LMS Batch'
#: frontend/src/components/Modals/AssessmentModal.vue:27
#: frontend/src/components/Modals/BatchStudentProgress.vue:41
#: frontend/src/components/Modals/BatchStudentProgress.vue:43
#: lms/lms/doctype/lms_batch/lms_batch.json lms/templates/assessments.html:11
msgid "Assessment"
msgstr ""
@@ -569,7 +582,7 @@ msgstr ""
msgid "Assignment Title"
msgstr ""
#: frontend/src/components/Modals/AssignmentForm.vue:125
#: frontend/src/components/Modals/AssignmentForm.vue:133
msgid "Assignment created successfully"
msgstr ""
@@ -581,7 +594,7 @@ msgstr ""
msgid "Assignment submitted successfully"
msgstr ""
#: frontend/src/components/Modals/AssignmentForm.vue:138
#: frontend/src/components/Modals/AssignmentForm.vue:146
msgid "Assignment updated successfully"
msgstr ""
@@ -622,7 +635,7 @@ msgstr ""
msgid "Attire Preference"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:137
#: frontend/src/pages/ProfileEvaluator.vue:146
msgid "Authorize Google Calendar Access"
msgstr ""
@@ -637,7 +650,7 @@ msgstr ""
msgid "Auto Recording"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:224
#: frontend/src/pages/ProfileEvaluator.vue:241
msgid "Availability updated successfully"
msgstr ""
@@ -768,6 +781,7 @@ msgstr ""
#. Name of a role
#: lms/lms/doctype/course_evaluator/course_evaluator.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_category/lms_category.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -998,7 +1012,7 @@ msgstr ""
msgid "Certificate of Completion"
msgstr ""
#: frontend/src/components/Modals/Event.vue:317
#: frontend/src/components/Modals/Event.vue:348
msgid "Certificate saved successfully"
msgstr ""
@@ -1018,7 +1032,7 @@ msgstr ""
#. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace
#: frontend/src/components/AppSidebar.vue:626
#: frontend/src/components/Modals/Event.vue:381
#: frontend/src/components/Modals/Event.vue:412
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58
#: frontend/src/pages/CourseCertification.vue:10
#: frontend/src/pages/CourseCertification.vue:135
@@ -1640,6 +1654,7 @@ msgstr ""
#: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/course_lesson/course_lesson.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
#: lms/lms/doctype/lms_category/lms_category.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json
@@ -1757,7 +1772,7 @@ msgstr ""
#: frontend/src/components/BatchCourses.vue:5
#: frontend/src/components/BatchOverlay.vue:37
#: frontend/src/components/BatchStudents.vue:25
#: frontend/src/components/Modals/BatchStudentProgress.vue:91
#: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127
#: frontend/src/pages/Courses.vue:333 frontend/src/pages/Courses.vue:340
@@ -2169,7 +2184,7 @@ msgstr ""
#: frontend/src/components/DiscussionReplies.vue:35
#: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/components/Settings/Badges.vue:156
#: frontend/src/pages/JobDetail.vue:34 frontend/src/pages/Lesson.vue:42
#: frontend/src/pages/JobDetail.vue:45 frontend/src/pages/Lesson.vue:42
#: frontend/src/pages/Lesson.vue:178 frontend/src/pages/Profile.vue:36
msgid "Edit"
msgstr ""
@@ -2236,7 +2251,7 @@ msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:105
#: frontend/src/components/Settings/Members.vue:103
#: lms/templates/signup-form.html:10
#: frontend/src/pages/JobApplications.vue:284 lms/templates/signup-form.html:10
msgid "Email"
msgstr ""
@@ -2272,6 +2287,7 @@ msgid "Email Templates deleted successfully"
msgstr ""
#: frontend/src/components/ContactUsEmail.vue:57
#: frontend/src/pages/JobApplications.vue:244
msgid "Email sent successfully"
msgstr "Email đã được gửi thành công"
@@ -2414,6 +2430,14 @@ msgstr ""
msgid "Enter a URL"
msgstr ""
#: frontend/src/pages/JobApplications.vue:122
msgid "Enter email subject"
msgstr ""
#: frontend/src/pages/JobApplications.vue:128
msgid "Enter reply to email"
msgstr ""
#: frontend/src/components/Modals/ZoomAccountModal.vue:169
msgid "Error creating Zoom Account"
msgstr ""
@@ -2453,7 +2477,7 @@ msgstr ""
#. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:374 lms/lms/workspace/lms/lms.json
#: frontend/src/components/Modals/Event.vue:405 lms/lms/workspace/lms/lms.json
msgid "Evaluation"
msgstr ""
@@ -2478,7 +2502,7 @@ msgstr ""
msgid "Evaluation end date cannot be less than the batch end date."
msgstr ""
#: frontend/src/components/Modals/Event.vue:256
#: frontend/src/components/Modals/Event.vue:287
msgid "Evaluation saved successfully"
msgstr ""
@@ -2586,7 +2610,7 @@ msgstr ""
#. Label of the expected_output (Data) field in DocType 'LMS Test Case'
#. Label of the expected_output (Data) field in DocType 'LMS Test Case
#. Submission'
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:127
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:129
#: lms/lms/doctype/lms_test_case/lms_test_case.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Expected Output"
@@ -2599,7 +2623,7 @@ msgstr ""
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33
#: frontend/src/components/Modals/Event.vue:126
#: frontend/src/components/Modals/Event.vue:144
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date"
msgstr ""
@@ -2626,7 +2650,7 @@ msgstr ""
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:366
#: frontend/src/components/Modals/Event.vue:397
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail"
@@ -2657,7 +2681,7 @@ msgstr ""
msgid "Failed to send email"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:358
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:364
msgid "Failed to submit. Please try again. {0}"
msgstr ""
@@ -2770,7 +2794,7 @@ msgid "Friday"
msgstr ""
#. Label of the unavailable_from (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:99
#: frontend/src/pages/ProfileEvaluator.vue:106
#: lms/lms/doctype/course_evaluator/course_evaluator.json
msgid "From"
msgstr ""
@@ -2782,6 +2806,7 @@ msgstr ""
#. Label of the full_name (Data) field in DocType 'Course Evaluator'
#. Label of the full_name (Data) field in DocType 'LMS Program Member'
#: frontend/src/pages/JobApplications.vue:278
#: lms/lms/doctype/course_evaluator/course_evaluator.json
#: lms/lms/doctype/lms_program_member/lms_program_member.json
#: lms/templates/signup-form.html:5
@@ -3019,7 +3044,7 @@ msgstr ""
msgid "I am looking for a job"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:94
#: frontend/src/pages/ProfileEvaluator.vue:101
msgid "I am unavailable"
msgstr ""
@@ -3105,7 +3130,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:358
#: frontend/src/components/Modals/Event.vue:389
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -3161,7 +3186,7 @@ msgstr ""
#. Label of the input (Data) field in DocType 'LMS Test Case'
#. Label of the input (Data) field in DocType 'LMS Test Case Submission'
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:113
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:115
#: lms/lms/doctype/lms_test_case/lms_test_case.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Input"
@@ -3273,7 +3298,7 @@ msgstr ""
#. Label of the issue_date (Date) field in DocType 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28
#: frontend/src/components/Modals/Event.vue:121
#: frontend/src/components/Modals/Event.vue:138
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date"
@@ -3358,8 +3383,8 @@ msgid "Job Title"
msgstr ""
#. Label of the jobs (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/JobDetail.vue:10 frontend/src/pages/Jobs.vue:8
#: frontend/src/pages/Jobs.vue:212
#: frontend/src/pages/JobApplications.vue:9 frontend/src/pages/JobDetail.vue:10
#: frontend/src/pages/Jobs.vue:8 frontend/src/pages/Jobs.vue:212
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Jobs"
msgstr ""
@@ -3375,7 +3400,7 @@ msgstr ""
msgid "Join Call"
msgstr ""
#: frontend/src/components/Modals/Event.vue:74
#: frontend/src/components/Modals/Event.vue:78
msgid "Join Meeting"
msgstr ""
@@ -3883,7 +3908,7 @@ msgstr ""
msgid "Login to Frappe Cloud?"
msgstr ""
#: frontend/src/pages/JobDetail.vue:63
#: frontend/src/pages/JobDetail.vue:74
msgid "Login to apply"
msgstr ""
@@ -4228,9 +4253,14 @@ msgid "Mentor Request Status Update Template"
msgstr ""
#: frontend/src/components/ContactUsEmail.vue:19
#: frontend/src/pages/JobApplications.vue:132
msgid "Message"
msgstr ""
#: frontend/src/pages/JobApplications.vue:240
msgid "Message is required"
msgstr ""
#. Label of the meta_description (Small Text) field in DocType 'LMS Settings'
#: frontend/src/pages/BatchForm.vue:297 frontend/src/pages/CourseForm.vue:303
#: lms/lms/doctype/lms_settings/lms_settings.json
@@ -4351,7 +4381,7 @@ msgstr ""
msgid "My availability"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:127
#: frontend/src/pages/ProfileEvaluator.vue:136
msgid "My calendar"
msgstr ""
@@ -4390,7 +4420,7 @@ msgstr ""
msgid "New Job"
msgstr ""
#: lms/job/doctype/lms_job_application/lms_job_application.py:27
#: lms/job/doctype/lms_job_application/lms_job_application.py:31
msgid "New Job Applicant"
msgstr ""
@@ -4818,7 +4848,7 @@ msgstr ""
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:362
#: frontend/src/components/Modals/Event.vue:393
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass"
@@ -4945,7 +4975,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:354
#: frontend/src/components/Modals/Event.vue:385
#: lms/lms/doctype/cohort_join_request/cohort_join_request.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
@@ -4964,7 +4994,7 @@ msgstr ""
msgid "Percentage (e.g. 70%)"
msgstr ""
#: frontend/src/components/Modals/BatchStudentProgress.vue:44
#: frontend/src/components/Modals/BatchStudentProgress.vue:46
msgid "Percentage/Status"
msgstr ""
@@ -5080,7 +5110,7 @@ msgstr ""
msgid "Please prepare well and be on time for the evaluations."
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:135
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:139
msgid "Please run the code to execute the test cases."
msgstr ""
@@ -5317,11 +5347,11 @@ msgstr ""
#: frontend/src/components/Settings/BadgeForm.vue:200
#: frontend/src/components/Settings/Badges.vue:205
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:420
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:426
msgid "Programming Exercise Submission"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:411
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:417
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:298
msgid "Programming Exercise Submissions"
msgstr ""
@@ -5355,7 +5385,7 @@ msgstr ""
#. Label of the progress (Float) field in DocType 'LMS Enrollment'
#. Label of the progress (Int) field in DocType 'LMS Program Member'
#: frontend/src/components/Modals/BatchStudentProgress.vue:94
#: frontend/src/components/Modals/BatchStudentProgress.vue:98
#: frontend/src/components/Modals/CourseProgressSummary.vue:224
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
#: lms/lms/doctype/lms_program_member/lms_program_member.json
@@ -5401,7 +5431,7 @@ msgstr ""
#. Label of the published (Check) field in DocType 'LMS Course'
#. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51
#: frontend/src/components/Modals/Event.vue:108
#: frontend/src/components/Modals/Event.vue:122
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:152
#: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100
@@ -5569,7 +5599,7 @@ msgstr ""
#. Label of the rating (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147
#: frontend/src/components/Modals/Event.vue:86
#: frontend/src/components/Modals/Event.vue:92
#: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -5656,6 +5686,7 @@ msgid "Remove Highlight"
msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:27
#: frontend/src/pages/JobApplications.vue:127
msgid "Reply To"
msgstr ""
@@ -5815,8 +5846,8 @@ msgstr ""
#: frontend/src/components/Controls/CodeEditor.vue:25
#: frontend/src/components/Modals/AssignmentForm.vue:59
#: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:101
#: frontend/src/components/Modals/Event.vue:129
#: frontend/src/components/Modals/Event.vue:115
#: frontend/src/components/Modals/Event.vue:151
#: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
@@ -5955,6 +5986,7 @@ msgid "Select an assignment"
msgstr ""
#: frontend/src/components/ContactUsEmail.vue:33
#: frontend/src/pages/JobApplications.vue:110
msgid "Send"
msgstr ""
@@ -5962,6 +5994,14 @@ msgstr ""
msgid "Send Confirmation Email"
msgstr ""
#: frontend/src/pages/JobApplications.vue:268
msgid "Send Email"
msgstr ""
#: frontend/src/pages/JobApplications.vue:106
msgid "Send Email to {0}"
msgstr ""
#. Label of the send_calendar_invite_for_evaluations (Check) field in DocType
#. 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
@@ -6122,11 +6162,11 @@ msgstr ""
msgid "Slot Times are overlapping for some schedules."
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:201
#: frontend/src/pages/ProfileEvaluator.vue:218
msgid "Slot added successfully"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:240
#: frontend/src/pages/ProfileEvaluator.vue:257
msgid "Slot deleted successfully"
msgstr ""
@@ -6265,7 +6305,7 @@ msgstr ""
#. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case Submission'
#: frontend/src/components/Modals/Event.vue:91
#: frontend/src/components/Modals/Event.vue:99
#: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6336,10 +6376,12 @@ msgstr ""
#: frontend/src/components/ContactUsEmail.vue:13
#: frontend/src/components/Modals/AnnouncementModal.vue:20
#: frontend/src/components/Modals/EmailTemplateModal.vue:31
#: frontend/src/pages/JobApplications.vue:121
msgid "Subject"
msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:94
#: frontend/src/pages/JobApplications.vue:237
msgid "Subject is required"
msgstr ""
@@ -6356,7 +6398,7 @@ msgstr ""
msgid "Submission by"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:353
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:359
msgid "Submission saved!"
msgstr ""
@@ -6396,7 +6438,7 @@ msgstr ""
#. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:97
#: frontend/src/components/Modals/Event.vue:106
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary"
msgstr ""
@@ -6501,7 +6543,7 @@ msgstr ""
#. Label of the template (Link) field in DocType 'Cohort Web Page'
#. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43
#: frontend/src/components/Modals/Event.vue:112
#: frontend/src/components/Modals/Event.vue:127
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template"
@@ -6542,7 +6584,7 @@ msgstr ""
msgid "Test this Exercise"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:92
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:93
msgid "Test {0}"
msgstr ""
@@ -6840,7 +6882,7 @@ msgid "Title is required"
msgstr ""
#. Label of the unavailable_to (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:112
#: frontend/src/pages/ProfileEvaluator.vue:120
#: lms/lms/doctype/course_evaluator/course_evaluator.json
msgid "To"
msgstr ""
@@ -6953,7 +6995,7 @@ msgstr ""
msgid "Unavailability"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:259
#: frontend/src/pages/ProfileEvaluator.vue:276
msgid "Unavailability updated successfully"
msgstr ""
@@ -7123,11 +7165,19 @@ msgstr ""
msgid "View"
msgstr ""
#: frontend/src/pages/JobDetail.vue:31
msgid "View Applications"
msgstr ""
#: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67
msgid "View Certificate"
msgstr ""
#: frontend/src/pages/JobApplications.vue:262
msgid "View Resume"
msgstr ""
#: frontend/src/components/BatchFeedback.vue:56
msgid "View all feedback"
msgstr ""
@@ -7146,7 +7196,7 @@ msgstr ""
msgid "Visit Batch"
msgstr ""
#: frontend/src/pages/JobDetail.vue:41
#: frontend/src/pages/JobDetail.vue:52
msgid "Visit Website"
msgstr ""
@@ -7355,7 +7405,7 @@ msgstr ""
msgid "You have a live class scheduled tomorrow. Please be prepared and be on time for the session."
msgstr ""
#: lms/job/doctype/lms_job_application/lms_job_application.py:22
#: lms/job/doctype/lms_job_application/lms_job_application.py:26
msgid "You have already applied for this job."
msgstr ""
@@ -7371,7 +7421,7 @@ msgstr ""
msgid "You have already reviewed this course"
msgstr ""
#: frontend/src/pages/JobDetail.vue:57
#: frontend/src/pages/JobDetail.vue:68
msgid "You have applied"
msgstr ""
@@ -7451,7 +7501,7 @@ msgstr ""
msgid "Your Account has been successfully created!"
msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:119
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:121
msgid "Your Output"
msgstr ""
@@ -7459,7 +7509,7 @@ msgstr ""
msgid "Your batch {0} is starting tomorrow"
msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:134
#: frontend/src/pages/ProfileEvaluator.vue:143
msgid "Your calendar is set."
msgstr ""
@@ -7538,11 +7588,11 @@ msgstr ""
msgid "and then 'Add to Home Screen'"
msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125
msgid "applicant"
msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125
msgid "applicants"
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: 2025-10-31 16:04+0000\n"
"PO-Revision-Date: 2025-11-02 19:07\n"
"POT-Creation-Date: 2025-11-07 16:04+0000\n"
"PO-Revision-Date: 2025-11-11 11:49\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Chinese Simplified\n"
"MIME-Version: 1.0\n"
@@ -176,7 +176,7 @@ msgstr "为视频添加测验"
msgid "Add Row"
msgstr "添加一行"
#: frontend/src/pages/ProfileEvaluator.vue:89
#: frontend/src/pages/ProfileEvaluator.vue:96
msgid "Add Slot"
msgstr "添加时段"
@@ -426,12 +426,25 @@ msgstr "在分享批次链接至网络平台时显示"
msgid "Appears when the batch URL is shared on socials"
msgstr "当班级URL在社交平台分享时显示"
#: frontend/src/pages/JobApplications.vue:24
msgid "Application"
msgstr "申请"
#. Label of a field in the job-opportunity Web Form
#: lms/job/web_form/job_opportunity/job_opportunity.json
msgid "Application Form Link"
msgstr "申请表链接"
#: frontend/src/pages/JobDetail.vue:51
#: frontend/src/pages/JobApplications.vue:14
#: frontend/src/pages/JobApplications.vue:25
msgid "Applications"
msgstr ""
#: frontend/src/pages/JobApplications.vue:290
msgid "Applied On"
msgstr "应用于"
#: frontend/src/pages/JobDetail.vue:62
msgid "Apply"
msgstr "应用"
@@ -483,7 +496,7 @@ msgstr "提问以获得社区帮助。"
#. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch'
#. Label of the assessment (Table) field in DocType 'LMS Batch'
#: frontend/src/components/Modals/AssessmentModal.vue:27
#: frontend/src/components/Modals/BatchStudentProgress.vue:41
#: frontend/src/components/Modals/BatchStudentProgress.vue:43
#: lms/lms/doctype/lms_batch/lms_batch.json lms/templates/assessments.html:11
msgid "Assessment"
msgstr "考核"
@@ -569,7 +582,7 @@ msgstr "作业提交记录"
msgid "Assignment Title"
msgstr "作业标题"
#: frontend/src/components/Modals/AssignmentForm.vue:125
#: frontend/src/components/Modals/AssignmentForm.vue:133
msgid "Assignment created successfully"
msgstr "作业创建成功"
@@ -581,7 +594,7 @@ msgstr "学员{1}的课时{0}作业已存在。"
msgid "Assignment submitted successfully"
msgstr "作业提交成功。"
#: frontend/src/components/Modals/AssignmentForm.vue:138
#: frontend/src/components/Modals/AssignmentForm.vue:146
msgid "Assignment updated successfully"
msgstr "作业更新成功"
@@ -622,7 +635,7 @@ msgstr "参会人员"
msgid "Attire Preference"
msgstr "着装偏好"
#: frontend/src/pages/ProfileEvaluator.vue:137
#: frontend/src/pages/ProfileEvaluator.vue:146
msgid "Authorize Google Calendar Access"
msgstr "授权Google日历访问"
@@ -637,7 +650,7 @@ msgstr "自动分配"
msgid "Auto Recording"
msgstr "自动录制"
#: frontend/src/pages/ProfileEvaluator.vue:224
#: frontend/src/pages/ProfileEvaluator.vue:241
msgid "Availability updated successfully"
msgstr "可用性更新成功。"
@@ -768,6 +781,7 @@ msgstr "班级注册确认"
#. Name of a role
#: lms/lms/doctype/course_evaluator/course_evaluator.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_category/lms_category.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -998,7 +1012,7 @@ msgstr "证书链接"
msgid "Certificate of Completion"
msgstr "结业证书"
#: frontend/src/components/Modals/Event.vue:317
#: frontend/src/components/Modals/Event.vue:348
msgid "Certificate saved successfully"
msgstr "证书保存成功"
@@ -1018,7 +1032,7 @@ msgstr "证书生成成功"
#. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace
#: frontend/src/components/AppSidebar.vue:626
#: frontend/src/components/Modals/Event.vue:381
#: frontend/src/components/Modals/Event.vue:412
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58
#: frontend/src/pages/CourseCertification.vue:10
#: frontend/src/pages/CourseCertification.vue:135
@@ -1640,6 +1654,7 @@ msgstr "课程数量"
#: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/course_lesson/course_lesson.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
#: lms/lms/doctype/lms_category/lms_category.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json
@@ -1757,7 +1772,7 @@ msgstr "课程{0}已添加至本批次"
#: frontend/src/components/BatchCourses.vue:5
#: frontend/src/components/BatchOverlay.vue:37
#: frontend/src/components/BatchStudents.vue:25
#: frontend/src/components/Modals/BatchStudentProgress.vue:91
#: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127
#: frontend/src/pages/Courses.vue:333 frontend/src/pages/Courses.vue:340
@@ -2169,7 +2184,7 @@ msgstr "电子邮件"
#: frontend/src/components/DiscussionReplies.vue:35
#: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/components/Settings/Badges.vue:156
#: frontend/src/pages/JobDetail.vue:34 frontend/src/pages/Lesson.vue:42
#: frontend/src/pages/JobDetail.vue:45 frontend/src/pages/Lesson.vue:42
#: frontend/src/pages/Lesson.vue:178 frontend/src/pages/Profile.vue:36
msgid "Edit"
msgstr "编辑"
@@ -2236,7 +2251,7 @@ msgstr "教育背景详情"
#: frontend/src/components/Settings/Evaluators.vue:105
#: frontend/src/components/Settings/Members.vue:103
#: lms/templates/signup-form.html:10
#: frontend/src/pages/JobApplications.vue:284 lms/templates/signup-form.html:10
msgid "Email"
msgstr "电子邮件"
@@ -2272,6 +2287,7 @@ msgid "Email Templates deleted successfully"
msgstr "邮件模板删除成功"
#: frontend/src/components/ContactUsEmail.vue:57
#: frontend/src/pages/JobApplications.vue:244
msgid "Email sent successfully"
msgstr "邮件发送成功"
@@ -2414,6 +2430,14 @@ msgstr "在Google设置中填写客户端ID和密钥以发送评估日历邀请"
msgid "Enter a URL"
msgstr "输入URL"
#: frontend/src/pages/JobApplications.vue:122
msgid "Enter email subject"
msgstr ""
#: frontend/src/pages/JobApplications.vue:128
msgid "Enter reply to email"
msgstr ""
#: frontend/src/components/Modals/ZoomAccountModal.vue:169
msgid "Error creating Zoom Account"
msgstr "Zoom账户创建错误"
@@ -2453,7 +2477,7 @@ msgstr "邮件模板更新错误"
#. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:374 lms/lms/workspace/lms/lms.json
#: frontend/src/components/Modals/Event.vue:405 lms/lms/workspace/lms/lms.json
msgid "Evaluation"
msgstr "评估"
@@ -2478,7 +2502,7 @@ msgstr "评估请求"
msgid "Evaluation end date cannot be less than the batch end date."
msgstr "评估结束日期不得早于批次结束日期"
#: frontend/src/components/Modals/Event.vue:256
#: frontend/src/components/Modals/Event.vue:287
msgid "Evaluation saved successfully"
msgstr "评估保存成功"
@@ -2586,7 +2610,7 @@ msgstr "展开"
#. Label of the expected_output (Data) field in DocType 'LMS Test Case'
#. Label of the expected_output (Data) field in DocType 'LMS Test Case
#. Submission'
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:127
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:129
#: lms/lms/doctype/lms_test_case/lms_test_case.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Expected Output"
@@ -2599,7 +2623,7 @@ msgstr "失效日期"
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33
#: frontend/src/components/Modals/Event.vue:126
#: frontend/src/components/Modals/Event.vue:144
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date"
msgstr "到期日"
@@ -2626,7 +2650,7 @@ msgstr "查看更多"
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:366
#: frontend/src/components/Modals/Event.vue:397
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail"
@@ -2657,7 +2681,7 @@ msgstr "从Zoom获取课程{0}考勤数据失败:{1}"
msgid "Failed to send email"
msgstr "邮件发送失败"
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:358
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:364
msgid "Failed to submit. Please try again. {0}"
msgstr "提交失败,请重试。{0}"
@@ -2770,7 +2794,7 @@ msgid "Friday"
msgstr "星期五"
#. Label of the unavailable_from (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:99
#: frontend/src/pages/ProfileEvaluator.vue:106
#: lms/lms/doctype/course_evaluator/course_evaluator.json
msgid "From"
msgstr "自"
@@ -2782,6 +2806,7 @@ msgstr "起始日期"
#. Label of the full_name (Data) field in DocType 'Course Evaluator'
#. Label of the full_name (Data) field in DocType 'LMS Program Member'
#: frontend/src/pages/JobApplications.vue:278
#: lms/lms/doctype/course_evaluator/course_evaluator.json
#: lms/lms/doctype/lms_program_member/lms_program_member.json
#: lms/templates/signup-form.html:5
@@ -3019,7 +3044,7 @@ msgstr "很高兴通知您已成功获得{0}课程认证。祝贺您!"
msgid "I am looking for a job"
msgstr "我正在求职"
#: frontend/src/pages/ProfileEvaluator.vue:94
#: frontend/src/pages/ProfileEvaluator.vue:101
msgid "I am unavailable"
msgstr "我暂不可用"
@@ -3105,7 +3130,7 @@ msgstr "图片:数据流损坏"
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:358
#: frontend/src/components/Modals/Event.vue:389
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -3161,7 +3186,7 @@ msgstr "行业"
#. Label of the input (Data) field in DocType 'LMS Test Case'
#. Label of the input (Data) field in DocType 'LMS Test Case Submission'
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:113
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:115
#: lms/lms/doctype/lms_test_case/lms_test_case.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Input"
@@ -3273,7 +3298,7 @@ msgstr "是否为SCORM包"
#. Label of the issue_date (Date) field in DocType 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28
#: frontend/src/components/Modals/Event.vue:121
#: frontend/src/components/Modals/Event.vue:138
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date"
@@ -3358,8 +3383,8 @@ msgid "Job Title"
msgstr "职位名称"
#. Label of the jobs (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/JobDetail.vue:10 frontend/src/pages/Jobs.vue:8
#: frontend/src/pages/Jobs.vue:212
#: frontend/src/pages/JobApplications.vue:9 frontend/src/pages/JobDetail.vue:10
#: frontend/src/pages/Jobs.vue:8 frontend/src/pages/Jobs.vue:212
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Jobs"
msgstr "职位"
@@ -3375,7 +3400,7 @@ msgstr "加入"
msgid "Join Call"
msgstr "加入通话"
#: frontend/src/components/Modals/Event.vue:74
#: frontend/src/components/Modals/Event.vue:78
msgid "Join Meeting"
msgstr "加入会议"
@@ -3883,7 +3908,7 @@ msgstr "登录"
msgid "Login to Frappe Cloud?"
msgstr "登录Frappe云平台"
#: frontend/src/pages/JobDetail.vue:63
#: frontend/src/pages/JobDetail.vue:74
msgid "Login to apply"
msgstr "登录后申请"
@@ -4228,9 +4253,14 @@ msgid "Mentor Request Status Update Template"
msgstr "导师请求状态更新模板"
#: frontend/src/components/ContactUsEmail.vue:19
#: frontend/src/pages/JobApplications.vue:132
msgid "Message"
msgstr "信息"
#: frontend/src/pages/JobApplications.vue:240
msgid "Message is required"
msgstr ""
#. Label of the meta_description (Small Text) field in DocType 'LMS Settings'
#: frontend/src/pages/BatchForm.vue:297 frontend/src/pages/CourseForm.vue:303
#: lms/lms/doctype/lms_settings/lms_settings.json
@@ -4351,7 +4381,7 @@ msgstr "我的笔记"
msgid "My availability"
msgstr "我的可用时间"
#: frontend/src/pages/ProfileEvaluator.vue:127
#: frontend/src/pages/ProfileEvaluator.vue:136
msgid "My calendar"
msgstr "我的日历"
@@ -4390,7 +4420,7 @@ msgstr "新建邮件模板"
msgid "New Job"
msgstr "新建职位"
#: lms/job/doctype/lms_job_application/lms_job_application.py:27
#: lms/job/doctype/lms_job_application/lms_job_application.py:31
msgid "New Job Applicant"
msgstr "新职位申请人"
@@ -4818,7 +4848,7 @@ msgstr "部分完成"
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:362
#: frontend/src/components/Modals/Event.vue:393
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass"
@@ -4945,7 +4975,7 @@ msgstr "未安装支付应用"
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:354
#: frontend/src/components/Modals/Event.vue:385
#: lms/lms/doctype/cohort_join_request/cohort_join_request.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
@@ -4964,7 +4994,7 @@ msgstr "百分比"
msgid "Percentage (e.g. 70%)"
msgstr "百分比如70%"
#: frontend/src/components/Modals/BatchStudentProgress.vue:44
#: frontend/src/components/Modals/BatchStudentProgress.vue:46
msgid "Percentage/Status"
msgstr "百分比/状态"
@@ -5080,7 +5110,7 @@ msgstr "请登录以报名项目。"
msgid "Please prepare well and be on time for the evaluations."
msgstr "请充分准备并准时参加评估"
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:135
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:139
msgid "Please run the code to execute the test cases."
msgstr "请运行代码以执行测试用例。"
@@ -5317,11 +5347,11 @@ msgstr "编程练习"
#: frontend/src/components/Settings/BadgeForm.vue:200
#: frontend/src/components/Settings/Badges.vue:205
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:420
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:426
msgid "Programming Exercise Submission"
msgstr "编程练习提交"
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:411
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:417
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:298
msgid "Programming Exercise Submissions"
msgstr "编程练习提交记录"
@@ -5355,7 +5385,7 @@ msgstr "课程项目"
#. Label of the progress (Float) field in DocType 'LMS Enrollment'
#. Label of the progress (Int) field in DocType 'LMS Program Member'
#: frontend/src/components/Modals/BatchStudentProgress.vue:94
#: frontend/src/components/Modals/BatchStudentProgress.vue:98
#: frontend/src/components/Modals/CourseProgressSummary.vue:224
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
#: lms/lms/doctype/lms_program_member/lms_program_member.json
@@ -5401,7 +5431,7 @@ msgstr "发布至参与者页面"
#. Label of the published (Check) field in DocType 'LMS Course'
#. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51
#: frontend/src/components/Modals/Event.vue:108
#: frontend/src/components/Modals/Event.vue:122
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:152
#: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100
@@ -5569,7 +5599,7 @@ msgstr "本视频包含的测验"
#. Label of the rating (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147
#: frontend/src/components/Modals/Event.vue:86
#: frontend/src/components/Modals/Event.vue:92
#: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -5656,6 +5686,7 @@ msgid "Remove Highlight"
msgstr "移除高亮"
#: frontend/src/components/Modals/AnnouncementModal.vue:27
#: frontend/src/pages/JobApplications.vue:127
msgid "Reply To"
msgstr "回复至"
@@ -5815,8 +5846,8 @@ msgstr "星期六"
#: frontend/src/components/Controls/CodeEditor.vue:25
#: frontend/src/components/Modals/AssignmentForm.vue:59
#: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:101
#: frontend/src/components/Modals/Event.vue:129
#: frontend/src/components/Modals/Event.vue:115
#: frontend/src/components/Modals/Event.vue:151
#: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
@@ -5955,6 +5986,7 @@ msgid "Select an assignment"
msgstr "选择作业"
#: frontend/src/components/ContactUsEmail.vue:33
#: frontend/src/pages/JobApplications.vue:110
msgid "Send"
msgstr "发送"
@@ -5962,6 +5994,14 @@ msgstr "发送"
msgid "Send Confirmation Email"
msgstr "发送确认邮件"
#: frontend/src/pages/JobApplications.vue:268
msgid "Send Email"
msgstr "发电子邮件"
#: frontend/src/pages/JobApplications.vue:106
msgid "Send Email to {0}"
msgstr ""
#. Label of the send_calendar_invite_for_evaluations (Check) field in DocType
#. 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
@@ -6122,11 +6162,11 @@ msgstr "跳过"
msgid "Slot Times are overlapping for some schedules."
msgstr "部分日程时段存在重叠"
#: frontend/src/pages/ProfileEvaluator.vue:201
#: frontend/src/pages/ProfileEvaluator.vue:218
msgid "Slot added successfully"
msgstr "时段添加成功。"
#: frontend/src/pages/ProfileEvaluator.vue:240
#: frontend/src/pages/ProfileEvaluator.vue:257
msgid "Slot deleted successfully"
msgstr "时段删除成功。"
@@ -6265,7 +6305,7 @@ msgstr "统计"
#. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case Submission'
#: frontend/src/components/Modals/Event.vue:91
#: frontend/src/components/Modals/Event.vue:99
#: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6336,10 +6376,12 @@ msgstr "子组"
#: frontend/src/components/ContactUsEmail.vue:13
#: frontend/src/components/Modals/AnnouncementModal.vue:20
#: frontend/src/components/Modals/EmailTemplateModal.vue:31
#: frontend/src/pages/JobApplications.vue:121
msgid "Subject"
msgstr "主题"
#: frontend/src/components/Modals/AnnouncementModal.vue:94
#: frontend/src/pages/JobApplications.vue:237
msgid "Subject is required"
msgstr "必须填写主题"
@@ -6356,7 +6398,7 @@ msgstr "提交类型"
msgid "Submission by"
msgstr "提交人"
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:353
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:359
msgid "Submission saved!"
msgstr "提交已保存!"
@@ -6396,7 +6438,7 @@ msgstr "项目报名成功"
#. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:97
#: frontend/src/components/Modals/Event.vue:106
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary"
msgstr "摘要"
@@ -6501,7 +6543,7 @@ msgstr "团队协作"
#. Label of the template (Link) field in DocType 'Cohort Web Page'
#. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43
#: frontend/src/components/Modals/Event.vue:112
#: frontend/src/components/Modals/Event.vue:127
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template"
@@ -6542,7 +6584,7 @@ msgstr "测试结果"
msgid "Test this Exercise"
msgstr "测试本练习"
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:92
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:93
msgid "Test {0}"
msgstr "测试{0}"
@@ -6840,7 +6882,7 @@ msgid "Title is required"
msgstr "标题为必填项"
#. Label of the unavailable_to (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:112
#: frontend/src/pages/ProfileEvaluator.vue:120
#: lms/lms/doctype/course_evaluator/course_evaluator.json
msgid "To"
msgstr "至"
@@ -6953,7 +6995,7 @@ msgstr "通用唯一标识符"
msgid "Unavailability"
msgstr "不可用状态"
#: frontend/src/pages/ProfileEvaluator.vue:259
#: frontend/src/pages/ProfileEvaluator.vue:276
msgid "Unavailability updated successfully"
msgstr "不可用状态更新成功"
@@ -7123,11 +7165,19 @@ msgstr "{0}视频统计"
msgid "View"
msgstr "查看"
#: frontend/src/pages/JobDetail.vue:31
msgid "View Applications"
msgstr ""
#: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67
msgid "View Certificate"
msgstr "查看证书"
#: frontend/src/pages/JobApplications.vue:262
msgid "View Resume"
msgstr ""
#: frontend/src/components/BatchFeedback.vue:56
msgid "View all feedback"
msgstr "查看所有反馈"
@@ -7146,7 +7196,7 @@ msgstr "可见性"
msgid "Visit Batch"
msgstr "访问批次"
#: frontend/src/pages/JobDetail.vue:41
#: frontend/src/pages/JobDetail.vue:52
msgid "Visit Website"
msgstr "访问网站"
@@ -7355,7 +7405,7 @@ msgstr "您答对{0}%的题目,得分{1}(总分{2}"
msgid "You have a live class scheduled tomorrow. Please be prepared and be on time for the session."
msgstr "您已预约明日直播课程,请准时参加"
#: lms/job/doctype/lms_job_application/lms_job_application.py:22
#: lms/job/doctype/lms_job_application/lms_job_application.py:26
msgid "You have already applied for this job."
msgstr "您已申请该职位"
@@ -7371,7 +7421,7 @@ msgstr "您已购买本课程证书"
msgid "You have already reviewed this course"
msgstr "您已评价过本课程"
#: frontend/src/pages/JobDetail.vue:57
#: frontend/src/pages/JobDetail.vue:68
msgid "You have applied"
msgstr "您已申请"
@@ -7451,7 +7501,7 @@ msgstr "YouTube视频将显示在课时顶部"
msgid "Your Account has been successfully created!"
msgstr "账户创建成功!"
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:119
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:121
msgid "Your Output"
msgstr "您的输出"
@@ -7459,7 +7509,7 @@ msgstr "您的输出"
msgid "Your batch {0} is starting tomorrow"
msgstr "您的批次{0}将于明日开始"
#: frontend/src/pages/ProfileEvaluator.vue:134
#: frontend/src/pages/ProfileEvaluator.vue:143
msgid "Your calendar is set."
msgstr "日历已设置"
@@ -7538,11 +7588,11 @@ msgstr "和"
msgid "and then 'Add to Home Screen'"
msgstr "然后“添加到主屏幕”"
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125
msgid "applicant"
msgstr "申请人"
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125
msgid "applicants"
msgstr "申请人列表"