diff --git a/frontend/components.d.ts b/frontend/components.d.ts index 4389972d..93deddcf 100644 --- a/frontend/components.d.ts +++ b/frontend/components.d.ts @@ -68,7 +68,6 @@ declare module 'vue' { NoPermission: typeof import('./src/components/NoPermission.vue')['default'] NoSidebarLayout: typeof import('./src/components/NoSidebarLayout.vue')['default'] NotPermitted: typeof import('./src/components/NotPermitted.vue')['default'] - OnboardingBanner: typeof import('./src/components/OnboardingBanner.vue')['default'] PageModal: typeof import('./src/components/Modals/PageModal.vue')['default'] PaymentSettings: typeof import('./src/components/PaymentSettings.vue')['default'] ProgressBar: typeof import('./src/components/ProgressBar.vue')['default'] diff --git a/frontend/src/components/Modals/ChapterModal.vue b/frontend/src/components/Modals/ChapterModal.vue index 377248bc..7d3a340b 100644 --- a/frontend/src/components/Modals/ChapterModal.vue +++ b/frontend/src/components/Modals/ChapterModal.vue @@ -38,7 +38,7 @@
diff --git a/frontend/src/components/Modals/Settings.vue b/frontend/src/components/Modals/Settings.vue index 290416a8..8f876e0f 100644 --- a/frontend/src/components/Modals/Settings.vue +++ b/frontend/src/components/Modals/Settings.vue @@ -350,6 +350,20 @@ const tabsStructure = computed(() => { }, ], }, + { + label: 'SEO', + icon: 'Search', + fields: [ + { + label: 'Meta Description', + name: 'meta_description', + type: 'textarea', + rows: 5, + description: + "This description will be shown on lists and pages that don't have meta description", + }, + ], + }, ], }, ] diff --git a/frontend/src/components/OnboardingBanner.vue b/frontend/src/components/OnboardingBanner.vue deleted file mode 100644 index b743ea82..00000000 --- a/frontend/src/components/OnboardingBanner.vue +++ /dev/null @@ -1,159 +0,0 @@ - - diff --git a/frontend/src/pages/BatchForm.vue b/frontend/src/pages/BatchForm.vue index 52471cb1..ec023752 100644 --- a/frontend/src/pages/BatchForm.vue +++ b/frontend/src/pages/BatchForm.vue @@ -8,98 +8,109 @@ {{ __('Save') }} -
+
{{ __('Details') }}
-
- -
+
+
- -
-
-
-
-
- {{ __('Meta Image') }} -
- - - -
-
- -
- -
- {{ - __( - 'Appears when the batch URL is shared on any online platform' - ) - }} -
-
-
{{ __('Date and Time') }}
-
+
-
+
+ +
@@ -147,7 +160,7 @@
{{ __('Settings') }}
-
+
-
+
+ +
@@ -198,17 +213,16 @@
{{ __('Payment') }}
-
- + +
{ }) }, onError(err) { - showToast('Error', err.messages?.[0] || err, 'x') + showToast('Message', err.messages?.[0] || err, 'alert-circle') }, } ) @@ -464,7 +478,7 @@ const editBatchDetails = () => { }) }, onError(err) { - showToast('Error', err.messages?.[0] || err, 'x') + showToast('Message', err.messages?.[0] || err, 'alert-circle') }, } ) diff --git a/frontend/src/pages/CourseForm.vue b/frontend/src/pages/CourseForm.vue index 1117e649..2a2b2d07 100644 --- a/frontend/src/pages/CourseForm.vue +++ b/frontend/src/pages/CourseForm.vue @@ -310,11 +310,7 @@ const course = reactive({ }) onMounted(() => { - if ( - props.courseName == 'new' && - !user.data?.is_moderator && - !user.data?.is_instructor - ) { + if (!user.data?.is_moderator && !user.data?.is_instructor) { router.push({ name: 'Courses' }) } diff --git a/frontend/src/stores/session.js b/frontend/src/stores/session.js index 46beff48..487252e8 100644 --- a/frontend/src/stores/session.js +++ b/frontend/src/stores/session.js @@ -50,8 +50,7 @@ export const sessionStore = defineStore('lms-session', () => { brand.name = data.app_name brand.logo = data.app_logo brand.favicon = - data.favicon?.file_url || - '/assets/lms/frontend/public/learning.svg' + data.favicon?.file_url || '/assets/lms/frontend/learning.svg' }, }) diff --git a/frontend/src/utils/index.js b/frontend/src/utils/index.js index f4dede57..edce83cb 100644 --- a/frontend/src/utils/index.js +++ b/frontend/src/utils/index.js @@ -109,7 +109,7 @@ export function showToast(title, text, icon, iconClasses = null) { icon: icon, iconClasses: iconClasses, position: icon == 'check' ? 'bottom-right' : 'top-center', - timeout: 5, + timeout: icon != 'check' ? 10 : 5, }) } diff --git a/lms/__init__.py b/lms/__init__.py index 23077358..07150ef8 100644 --- a/lms/__init__.py +++ b/lms/__init__.py @@ -1 +1 @@ -__version__ = "2.26.0" +__version__ = "2.27.0" diff --git a/lms/hooks.py b/lms/hooks.py index cc35c6de..c4017649 100644 --- a/lms/hooks.py +++ b/lms/hooks.py @@ -246,7 +246,7 @@ on_login = "lms.lms.user.on_login" add_to_apps_screen = [ { "name": "lms", - "logo": "/assets/lms/images/lms-logo.png", + "logo": "/assets/lms/frontend/learning.svg", "title": "Learning", "route": "/lms", "has_permission": "lms.lms.api.check_app_permission", diff --git a/lms/lms/doctype/lms_batch/lms_batch.py b/lms/lms/doctype/lms_batch/lms_batch.py index 10f7afa0..cfb527bd 100644 --- a/lms/lms/doctype/lms_batch/lms_batch.py +++ b/lms/lms/doctype/lms_batch/lms_batch.py @@ -53,7 +53,12 @@ class LMSBatch(Document): if self.paid_batch: installed_apps = frappe.get_installed_apps() if "payments" not in installed_apps: - frappe.throw(_("Please install the Payments app to create a paid batches.")) + documentation_link = "https://docs.frappe.io/learning/setting-up-payment-gateway" + frappe.throw( + _( + "Please install the Payments App to create a paid batch. Refer to the documentation for more details. {0}" + ).format(documentation_link) + ) def validate_amount_and_currency(self): if self.paid_batch and (not self.amount or not self.currency): diff --git a/lms/lms/doctype/lms_course/lms_course.py b/lms/lms/doctype/lms_course/lms_course.py index 73c796bb..b05f8e38 100644 --- a/lms/lms/doctype/lms_course/lms_course.py +++ b/lms/lms/doctype/lms_course/lms_course.py @@ -50,7 +50,12 @@ class LMSCourse(Document): if self.paid_course: installed_apps = frappe.get_installed_apps() if "payments" not in installed_apps: - frappe.throw(_("Please install the Payments app to create a paid courses.")) + documentation_link = "https://docs.frappe.io/learning/setting-up-payment-gateway" + frappe.throw( + _( + "Please install the Payments App to create a paid course. Refer to the documentation for more details. {0}" + ).format(documentation_link) + ) def validate_certification(self): if self.enable_certification and self.paid_certificate: diff --git a/lms/lms/doctype/lms_settings/lms_settings.js b/lms/lms/doctype/lms_settings/lms_settings.js index c0c9ac82..9f2f39da 100644 --- a/lms/lms/doctype/lms_settings/lms_settings.js +++ b/lms/lms/doctype/lms_settings/lms_settings.js @@ -20,10 +20,11 @@ frappe.ui.form.on("LMS Settings", { frm.get_field("payments_app_is_not_installed").html(`
Please install the - - Payments app - - to enable payment gateway. + Payments app + to enable payment gateway. Refer to the + Documentation + for more information. +
`); }, }); diff --git a/lms/lms/doctype/lms_settings/lms_settings.json b/lms/lms/doctype/lms_settings/lms_settings.json index 4c1fb733..c263bf5e 100644 --- a/lms/lms/doctype/lms_settings/lms_settings.json +++ b/lms/lms/doctype/lms_settings/lms_settings.json @@ -8,7 +8,6 @@ "general_tab", "default_home", "send_calendar_invite_for_evaluations", - "is_onboarding_complete", "column_break_zdel", "allow_guest_access", "enable_learning_paths", @@ -60,7 +59,9 @@ "batch_confirmation_template", "column_break_uwsp", "assignment_submission_template", - "payment_reminder_template" + "payment_reminder_template", + "seo_tab", + "meta_description" ], "fields": [ { @@ -107,13 +108,6 @@ "fieldtype": "Check", "label": "Identify User Persona" }, - { - "default": "0", - "fieldname": "is_onboarding_complete", - "fieldtype": "Check", - "label": "Is Onboarding Complete", - "read_only": 1 - }, { "default": "0", "fieldname": "default_home", @@ -372,14 +366,25 @@ "fieldname": "disable_signup", "fieldtype": "Check", "label": "Disable Signup" + }, + { + "fieldname": "seo_tab", + "fieldtype": "Tab Break", + "label": "SEO" + }, + { + "description": "This description will be shown on lists and pages without meta description", + "fieldname": "meta_description", + "fieldtype": "Small Text", + "label": "Meta Description" } ], "grid_page_length": 50, "index_web_pages_for_search": 1, "issingle": 1, "links": [], - "modified": "2025-04-07 18:05:52.000651", - "modified_by": "Administrator", + "modified": "2025-04-10 16:17:00.658698", + "modified_by": "sayali@frappe.io", "module": "LMS", "name": "LMS Settings", "owner": "Administrator", diff --git a/lms/lms/utils.py b/lms/lms/utils.py index 3a2a693e..9a39b4a9 100644 --- a/lms/lms/utils.py +++ b/lms/lms/utils.py @@ -8,7 +8,6 @@ import requests from frappe import _ from frappe.desk.doctype.dashboard_chart.dashboard_chart import get_result from frappe.desk.doctype.notification_log.notification_log import make_notification_logs -from frappe.desk.search import get_user_groups from frappe.desk.notifications import extract_mentions from frappe.utils import ( add_months, @@ -20,7 +19,6 @@ from frappe.utils import ( format_date, get_datetime, getdate, - validate_phone_number, get_fullname, pretty_date, get_time_str, @@ -1390,6 +1388,13 @@ def get_batch_details(batch): batch_details.instructors = get_instructors(batch) batch_details.accept_enrollments = batch_details.start_date > getdate() + if ( + not batch_details.accept_enrollments + and batch_details.start_date == getdate() + and get_time_str(batch_details.start_time) > nowtime() + ): + batch_details.accept_enrollments = True + batch_details.courses = frappe.get_all( "Batch Course", filters={"parent": batch}, fields=["course", "title", "evaluator"] ) diff --git a/lms/locale/ar.po b/lms/locale/ar.po index f753e958..89a83964 100644 --- a/lms/locale/ar.po +++ b/lms/locale/ar.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n" -"POT-Creation-Date: 2025-04-04 16:04+0000\n" -"PO-Revision-Date: 2025-04-08 03:58\n" +"POT-Creation-Date: 2025-04-11 16:04+0000\n" +"PO-Revision-Date: 2025-04-14 06:01\n" "Last-Translator: jannat@frappe.io\n" "Language-Team: Arabic\n" "MIME-Version: 1.0\n" @@ -71,7 +71,7 @@ msgstr "" msgid "A course cannot have both paid certificate and certificate of completion." msgstr "" -#: frontend/src/pages/CourseForm.vue:41 +#: frontend/src/pages/CourseForm.vue:37 msgid "A one line introduction to the course that appears on the course card" msgstr "" @@ -145,7 +145,6 @@ msgid "Add a Student" msgstr "" #: frontend/src/components/AppSidebar.vue:514 -#: frontend/src/components/OnboardingBanner.vue:56 msgid "Add a chapter" msgstr "" @@ -153,16 +152,15 @@ msgstr "" msgid "Add a course" msgstr "" -#: frontend/src/pages/CourseForm.vue:137 +#: frontend/src/pages/CourseForm.vue:133 msgid "Add a keyword and then press enter" msgstr "" #: frontend/src/components/AppSidebar.vue:515 -#: frontend/src/components/OnboardingBanner.vue:81 msgid "Add a lesson" msgstr "" -#: frontend/src/components/Modals/Question.vue:146 +#: frontend/src/components/Modals/Question.vue:147 #: frontend/src/pages/QuizForm.vue:183 msgid "Add a new question" msgstr "" @@ -235,7 +233,7 @@ msgid "Admin" msgstr "" #. Name of a role -#: frontend/src/pages/Batches.vue:282 lms/lms/doctype/lms_badge/lms_badge.json +#: frontend/src/pages/Batches.vue:284 lms/lms/doctype/lms_badge/lms_badge.json msgid "All" msgstr "الكل" @@ -259,7 +257,7 @@ msgstr "" msgid "All Submissions" msgstr "" -#: lms/lms/doctype/lms_quiz/lms_quiz.py:46 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:44 msgid "All questions should have the same marks if the limit is set." msgstr "" @@ -294,7 +292,7 @@ msgstr "مسجل بالفعل" #. Label of the amount (Currency) field in DocType 'LMS Batch' #. Label of the course_price (Currency) field in DocType 'LMS Course' #. Label of the amount (Currency) field in DocType 'LMS Payment' -#: frontend/src/pages/BatchForm.vue:209 frontend/src/pages/CourseForm.vue:221 +#: frontend/src/pages/BatchForm.vue:209 frontend/src/pages/CourseForm.vue:217 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_payment/lms_payment.json @@ -346,7 +344,7 @@ msgstr "" msgid "Answer" msgstr "" -#: frontend/src/pages/CourseForm.vue:85 frontend/src/pages/CourseForm.vue:103 +#: frontend/src/pages/CourseForm.vue:81 frontend/src/pages/CourseForm.vue:99 msgid "Appears on the course card in the course list" msgstr "" @@ -354,11 +352,11 @@ msgstr "" msgid "Appears when the batch URL is shared on any online platform" msgstr "" -#: frontend/src/pages/JobDetail.vue:121 +#: frontend/src/pages/JobDetail.vue:128 msgid "Applications Received" msgstr "" -#: frontend/src/pages/JobDetail.vue:42 +#: frontend/src/pages/JobDetail.vue:48 msgid "Apply" msgstr "" @@ -389,7 +387,7 @@ msgstr "" msgid "Apps" msgstr "التطبيقات" -#: frontend/src/pages/Batches.vue:292 +#: frontend/src/pages/Batches.vue:294 msgid "Archived" msgstr "أرشفة" @@ -399,12 +397,7 @@ msgstr "" #: frontend/src/components/UserDropdown.vue:175 msgid "Are you sure you want to login to your Frappe Cloud dashboard?" -msgstr "" - -#. Label of the user_category (Check) field in DocType 'LMS Settings' -#: lms/lms/doctype/lms_settings/lms_settings.json -msgid "Ask User Category during Signup" -msgstr "" +msgstr "هل أنت متأكد أنك تريد تسجيل الدخول إلى لوحة معلومات Frappe Cloud الخاصة بك؟" #. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch' #. Label of the assessment (Table) field in DocType 'LMS Batch' @@ -470,6 +463,10 @@ msgstr "" msgid "Assignment Submission Template" msgstr "" +#: frontend/src/pages/AssignmentSubmissionList.vue:223 +msgid "Assignment Submissions" +msgstr "" + #. Label of the assignment_title (Data) field in DocType 'LMS Assignment #. Submission' #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json @@ -480,7 +477,7 @@ msgstr "" msgid "Assignment for Lesson {0} by {1} already exists." msgstr "" -#: frontend/src/pages/AssignmentForm.vue:155 +#: frontend/src/pages/AssignmentForm.vue:158 msgid "Assignment saved successfully" msgstr "" @@ -490,7 +487,8 @@ msgid "Assignment will appear at the bottom of the lesson." msgstr "" #: frontend/src/components/AppSidebar.vue:531 -#: frontend/src/pages/AssignmentForm.vue:174 +#: frontend/src/pages/AssignmentForm.vue:177 +#: frontend/src/pages/Assignments.vue:193 lms/www/lms.py:251 msgid "Assignments" msgstr "تعيينات" @@ -656,8 +654,8 @@ msgid "Batch:" msgstr "الدفعات:" #. Label of the batches (Check) field in DocType 'LMS Settings' -#: frontend/src/pages/Batches.vue:302 -#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:63 +#: frontend/src/pages/Batches.vue:304 frontend/src/pages/Batches.vue:311 +#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:105 msgid "Batches" msgstr "" @@ -675,7 +673,7 @@ msgstr "" #. Label of the billing_details_section (Section Break) field in DocType 'LMS #. Payment' -#: frontend/src/pages/Billing.vue:8 +#: frontend/src/pages/Billing.vue:8 frontend/src/pages/Billing.vue:363 #: lms/lms/doctype/lms_payment/lms_payment.json msgid "Billing Details" msgstr "تفاصيل الفاتورة" @@ -757,8 +755,9 @@ msgstr "" #. Label of the category (Link) field in DocType 'LMS Course' #: frontend/src/pages/BatchForm.vue:190 frontend/src/pages/Batches.vue:55 #: frontend/src/pages/CertifiedParticipants.vue:37 -#: frontend/src/pages/CourseForm.vue:148 frontend/src/pages/Courses.vue:51 -#: frontend/src/pages/JobDetail.vue:96 lms/lms/doctype/lms_batch/lms_batch.json +#: frontend/src/pages/CourseForm.vue:144 frontend/src/pages/Courses.vue:51 +#: frontend/src/pages/JobDetail.vue:103 +#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/public/js/common_functions.js:316 lms/templates/signup-form.html:22 @@ -813,7 +812,7 @@ msgstr "" #: frontend/src/components/Modals/Event.vue:371 #: frontend/src/pages/BatchForm.vue:37 frontend/src/pages/Batches.vue:38 #: frontend/src/pages/CourseCertification.vue:10 -#: frontend/src/pages/CourseCertification.vue:133 +#: frontend/src/pages/CourseCertification.vue:135 #: frontend/src/pages/Courses.vue:34 lms/fixtures/custom_field.json #: lms/lms/doctype/certification/certification.json #: lms/lms/doctype/lms_batch/lms_batch.json @@ -837,7 +836,8 @@ msgid "Certified" msgstr "" #. Label of the certified_participants (Check) field in DocType 'LMS Settings' -#: frontend/src/pages/CertifiedParticipants.vue:161 +#: frontend/src/pages/CertifiedParticipants.vue:164 +#: frontend/src/pages/CertifiedParticipants.vue:171 #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Certified Participants" msgstr "" @@ -864,11 +864,11 @@ msgstr "" msgid "Chapter Reference" msgstr "" -#: frontend/src/components/Modals/ChapterModal.vue:152 +#: frontend/src/components/Modals/ChapterModal.vue:155 msgid "Chapter added successfully" msgstr "" -#: frontend/src/components/Modals/ChapterModal.vue:196 +#: frontend/src/components/Modals/ChapterModal.vue:199 msgid "Chapter updated successfully" msgstr "" @@ -1117,7 +1117,7 @@ msgid "Completed by Students" msgstr "" #. Label of the enable_certification (Check) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:213 +#: frontend/src/pages/CourseForm.vue:209 #: lms/lms/doctype/lms_course/lms_course.json msgid "Completion Certificate" msgstr "" @@ -1179,7 +1179,7 @@ msgid "Continue Learning" msgstr "" #. Option for the 'Type' (Select) field in DocType 'Job Opportunity' -#: frontend/src/pages/Jobs.vue:146 +#: frontend/src/pages/Jobs.vue:163 #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Contract" msgstr "عقد" @@ -1294,6 +1294,7 @@ msgstr "" #. Name of a role #: frontend/src/pages/ProfileRoles.vue:16 #: lms/lms/doctype/course_chapter/course_chapter.json +#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_program/lms_program.json @@ -1307,7 +1308,7 @@ msgstr "" msgid "Course Data" msgstr "" -#: frontend/src/pages/CourseForm.vue:50 +#: frontend/src/pages/CourseForm.vue:46 msgid "Course Description" msgstr "" @@ -1316,7 +1317,7 @@ msgstr "" msgid "Course Evaluator" msgstr "" -#: frontend/src/pages/CourseForm.vue:63 +#: frontend/src/pages/CourseForm.vue:59 msgid "Course Image" msgstr "" @@ -1330,7 +1331,7 @@ msgstr "" msgid "Course Lesson" msgstr "" -#: lms/www/lms.py:30 +#: lms/www/lms.py:70 msgid "Course List" msgstr "" @@ -1338,7 +1339,7 @@ msgstr "" msgid "Course Name" msgstr "" -#: frontend/src/pages/CourseDetail.vue:76 frontend/src/pages/CourseForm.vue:241 +#: frontend/src/pages/CourseDetail.vue:76 frontend/src/pages/CourseForm.vue:237 msgid "Course Outline" msgstr "" @@ -1370,7 +1371,7 @@ msgstr "" msgid "Course Title" msgstr "" -#: frontend/src/pages/ProgramForm.vue:229 +#: frontend/src/pages/ProgramForm.vue:232 msgid "Course added to program" msgstr "" @@ -1378,11 +1379,11 @@ msgstr "" msgid "Course already added to the batch." msgstr "" -#: frontend/src/pages/CourseForm.vue:472 +#: frontend/src/pages/CourseForm.vue:470 msgid "Course deleted successfully" msgstr "" -#: frontend/src/pages/ProgramForm.vue:298 +#: frontend/src/pages/ProgramForm.vue:301 msgid "Course moved successfully" msgstr "" @@ -1400,8 +1401,9 @@ msgstr "" #: frontend/src/components/BatchStudents.vue:92 #: frontend/src/components/Modals/BatchStudentProgress.vue:79 #: frontend/src/pages/BatchDetail.vue:21 frontend/src/pages/BatchDetail.vue:70 -#: frontend/src/pages/CourseCertification.vue:125 -#: frontend/src/pages/Courses.vue:301 frontend/src/pages/Statistics.vue:21 +#: frontend/src/pages/CourseCertification.vue:127 +#: frontend/src/pages/Courses.vue:304 frontend/src/pages/Courses.vue:311 +#: frontend/src/pages/Statistics.vue:21 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Courses" @@ -1443,7 +1445,6 @@ msgid "Create a batch" msgstr "" #: frontend/src/components/AppSidebar.vue:513 -#: frontend/src/components/OnboardingBanner.vue:30 msgid "Create a course" msgstr "" @@ -1467,7 +1468,7 @@ msgstr "" msgid "Create your first quiz" msgstr "" -#: frontend/src/pages/Assignments.vue:163 frontend/src/pages/Courses.vue:292 +#: frontend/src/pages/Assignments.vue:166 frontend/src/pages/Courses.vue:295 msgid "Created" msgstr "أنشأ" @@ -1482,7 +1483,7 @@ msgstr "" #. Label of the currency (Link) field in DocType 'LMS Batch' #. Label of the currency (Link) field in DocType 'LMS Course' #. Label of the currency (Link) field in DocType 'LMS Payment' -#: frontend/src/pages/BatchForm.vue:217 frontend/src/pages/CourseForm.vue:226 +#: frontend/src/pages/BatchForm.vue:217 frontend/src/pages/CourseForm.vue:222 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_payment/lms_payment.json @@ -1585,9 +1586,9 @@ msgstr "العملة الافتراضية" msgid "Degree Type" msgstr "" -#: frontend/src/components/CourseOutline.vue:247 -#: frontend/src/components/CourseOutline.vue:305 -#: frontend/src/pages/CourseForm.vue:485 +#: frontend/src/components/CourseOutline.vue:248 +#: frontend/src/components/CourseOutline.vue:306 +#: frontend/src/pages/CourseForm.vue:483 msgid "Delete" msgstr "حذف" @@ -1595,27 +1596,27 @@ msgstr "حذف" msgid "Delete Chapter" msgstr "" -#: frontend/src/pages/CourseForm.vue:479 +#: frontend/src/pages/CourseForm.vue:477 msgid "Delete Course" msgstr "" -#: frontend/src/components/CourseOutline.vue:299 +#: frontend/src/components/CourseOutline.vue:300 msgid "Delete this chapter?" msgstr "" -#: frontend/src/components/CourseOutline.vue:241 +#: frontend/src/components/CourseOutline.vue:242 msgid "Delete this lesson?" msgstr "" -#: frontend/src/pages/CourseForm.vue:480 +#: frontend/src/pages/CourseForm.vue:478 msgid "Deleting the course will also delete all its chapters and lessons. Are you sure you want to delete this course?" msgstr "" -#: frontend/src/components/CourseOutline.vue:300 +#: frontend/src/components/CourseOutline.vue:301 msgid "Deleting this chapter will also delete all its lessons and permanently remove it from the course. This action cannot be undone. Are you sure you want to continue?" msgstr "" -#: frontend/src/components/CourseOutline.vue:242 +#: frontend/src/components/CourseOutline.vue:243 msgid "Deleting this lesson will permanently remove it from the course. This action cannot be undone. Are you sure you want to continue?" msgstr "" @@ -1654,11 +1655,11 @@ msgstr "" #: frontend/src/components/Modals/DiscussionModal.vue:22 #: frontend/src/pages/AssignmentForm.vue:27 frontend/src/pages/BatchForm.vue:14 -#: frontend/src/pages/CourseForm.vue:29 frontend/src/pages/QuizForm.vue:42 +#: frontend/src/pages/CourseForm.vue:25 frontend/src/pages/QuizForm.vue:42 msgid "Details" msgstr "تفاصيل" -#: frontend/src/pages/CourseForm.vue:195 +#: frontend/src/pages/CourseForm.vue:191 msgid "Disable Self Enrollment" msgstr "" @@ -1667,6 +1668,11 @@ msgstr "" msgid "Disable Self Learning" msgstr "" +#. Label of the disable_signup (Check) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Disable Signup" +msgstr "" + #. Label of the disabled (Check) field in DocType 'Job Opportunity' #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Disabled" @@ -1808,7 +1814,7 @@ msgstr "الموظف" msgid "Enable" msgstr "تمكين" -#: lms/lms/doctype/lms_settings/lms_settings.py:20 +#: lms/lms/doctype/lms_settings/lms_settings.py:21 msgid "Enable Google API in Google Settings to send calendar invites for evaluations." msgstr "" @@ -1867,7 +1873,7 @@ msgstr "وقت الانتهاء" msgid "Enroll Now" msgstr "" -#: frontend/src/pages/Batches.vue:295 frontend/src/pages/Courses.vue:294 +#: frontend/src/pages/Batches.vue:297 frontend/src/pages/Courses.vue:297 msgid "Enrolled" msgstr "" @@ -1902,7 +1908,7 @@ msgstr "" msgid "Enrollments" msgstr "" -#: lms/lms/doctype/lms_settings/lms_settings.py:25 +#: lms/lms/doctype/lms_settings/lms_settings.py:26 msgid "Enter Client Id and Client Secret in Google Settings to send calendar invites for evaluations." msgstr "" @@ -1921,19 +1927,19 @@ msgstr "" #: frontend/src/components/Assignment.vue:287 #: frontend/src/components/Modals/AnnouncementModal.vue:105 #: frontend/src/components/Modals/BulkCertificates.vue:115 -#: frontend/src/components/Modals/ChapterModal.vue:157 -#: frontend/src/components/Modals/ChapterModal.vue:164 -#: frontend/src/components/Modals/ChapterModal.vue:200 -#: frontend/src/components/Modals/Question.vue:251 -#: frontend/src/components/Modals/Question.vue:272 -#: frontend/src/components/Modals/Question.vue:329 -#: frontend/src/components/Modals/StudentModal.vue:70 +#: frontend/src/components/Modals/ChapterModal.vue:160 +#: frontend/src/components/Modals/ChapterModal.vue:167 +#: frontend/src/components/Modals/ChapterModal.vue:203 +#: frontend/src/components/Modals/Question.vue:252 +#: frontend/src/components/Modals/Question.vue:275 +#: frontend/src/components/Modals/Question.vue:332 +#: frontend/src/components/Modals/StudentModal.vue:73 #: frontend/src/components/Quiz.vue:592 #: frontend/src/components/SettingDetails.vue:62 -#: frontend/src/pages/AssignmentForm.vue:139 -#: frontend/src/pages/AssignmentForm.vue:159 frontend/src/pages/Billing.vue:261 -#: frontend/src/pages/QuizForm.vue:346 frontend/src/pages/QuizForm.vue:361 -#: frontend/src/pages/QuizSubmission.vue:147 +#: frontend/src/pages/AssignmentForm.vue:142 +#: frontend/src/pages/AssignmentForm.vue:162 frontend/src/pages/Billing.vue:262 +#: frontend/src/pages/QuizForm.vue:349 frontend/src/pages/QuizForm.vue:364 +#: frontend/src/pages/QuizSubmission.vue:150 msgid "Error" msgstr "خطأ" @@ -1982,7 +1988,7 @@ msgstr "" #. Label of the evaluator (Link) field in DocType 'LMS Course' #: frontend/src/components/Modals/BatchCourseModal.vue:26 #: frontend/src/components/Modals/BulkCertificates.vue:22 -#: frontend/src/pages/CourseForm.vue:232 frontend/src/pages/ProfileRoles.vue:22 +#: frontend/src/pages/CourseForm.vue:228 frontend/src/pages/ProfileRoles.vue:22 #: lms/lms/doctype/batch_course/batch_course.json #: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json @@ -2100,7 +2106,7 @@ msgstr "فشل" #. Label of the featured (Check) field in DocType 'LMS Course' #: frontend/src/components/CourseCard.vue:16 -#: frontend/src/pages/CourseForm.vue:190 +#: frontend/src/pages/CourseForm.vue:186 #: lms/lms/doctype/lms_course/lms_course.json msgid "Featured" msgstr "متميز" @@ -2149,10 +2155,6 @@ msgstr "" msgid "Flexible Time" msgstr "" -#: frontend/src/pages/QuizForm.vue:459 -msgid "Form to create and edit quizzes" -msgstr "" - #. Option for the 'Attire Preference' (Select) field in DocType 'User' #: lms/fixtures/custom_field.json msgid "Formal Wear" @@ -2163,7 +2165,7 @@ msgid "Free" msgstr "مجاني" #. Option for the 'Type' (Select) field in DocType 'Job Opportunity' -#: frontend/src/pages/Jobs.vue:147 +#: frontend/src/pages/Jobs.vue:164 #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Freelance" msgstr "" @@ -2207,7 +2209,7 @@ msgid "Full Name" msgstr "الاسم الكامل" #. Option for the 'Type' (Select) field in DocType 'Job Opportunity' -#: frontend/src/pages/Jobs.vue:144 +#: frontend/src/pages/Jobs.vue:161 #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Full Time" msgstr "" @@ -2385,7 +2387,7 @@ msgstr "" msgid "I am unavailable" msgstr "" -#: frontend/src/pages/QuizForm.vue:380 +#: frontend/src/pages/QuizForm.vue:383 msgid "ID" msgstr "هوية شخصية" @@ -2395,6 +2397,11 @@ msgstr "هوية شخصية" msgid "Icon" msgstr "أيقونة" +#. Label of the user_category (Check) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Identify User Persona" +msgstr "" + #: frontend/src/components/LessonHelp.vue:11 msgid "If Include in Preview is enabled for a lesson then the lesson will also be accessible to non logged in users." msgstr "" @@ -2425,7 +2432,7 @@ msgstr "" msgid "If you set an amount here, then the USD equivalent setting will not get applied." msgstr "" -#: lms/lms/doctype/lms_quiz/lms_quiz.py:63 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:61 msgid "If you want open ended questions then make sure each question in the quiz is of open ended type." msgstr "" @@ -2451,7 +2458,7 @@ msgstr "صورة" msgid "Image search powered by" msgstr "" -#: lms/lms/doctype/lms_quiz/lms_quiz.py:221 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:219 msgid "Image: Corrupted Data Stream" msgstr "" @@ -2540,7 +2547,7 @@ msgstr "" #. Label of the instructors (Table MultiSelect) field in DocType 'LMS Batch' #. Label of the instructors (Rating) field in DocType 'LMS Batch Feedback' #. Label of the instructors (Table MultiSelect) field in DocType 'LMS Course' -#: frontend/src/pages/BatchForm.vue:93 frontend/src/pages/CourseForm.vue:155 +#: frontend/src/pages/BatchForm.vue:93 frontend/src/pages/CourseForm.vue:151 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json #: lms/lms/doctype/lms_course/lms_course.json @@ -2565,10 +2572,14 @@ msgstr "مقدمة" msgid "Invalid Invite Code." msgstr "" -#: lms/lms/doctype/course_lesson/course_lesson.py:20 +#: lms/lms/doctype/course_lesson/course_lesson.py:19 msgid "Invalid Quiz ID" msgstr "" +#: lms/lms/doctype/course_lesson/course_lesson.py:33 +msgid "Invalid Quiz ID in content" +msgstr "" + #. Label of the invite_code (Data) field in DocType 'Cohort Subgroup' #. Label of the invite_code (Data) field in DocType 'Invite Request' #: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json @@ -2607,11 +2618,6 @@ msgstr "" msgid "Is Correct" msgstr "" -#. Label of the is_onboarding_complete (Check) field in DocType 'LMS Settings' -#: lms/lms/doctype/lms_settings/lms_settings.json -msgid "Is Onboarding Complete" -msgstr "" - #. Label of the is_scorm_package (Check) field in DocType 'Course Chapter' #. Label of the is_scorm_package (Check) field in DocType 'Course Lesson' #: lms/lms/doctype/course_chapter/course_chapter.json @@ -2650,7 +2656,7 @@ msgstr "" msgid "Items in Sidebar" msgstr "" -#: frontend/src/pages/ProgramForm.vue:272 +#: frontend/src/pages/ProgramForm.vue:275 msgid "Items removed successfully" msgstr "" @@ -2677,7 +2683,7 @@ msgstr "" msgid "Job Details" msgstr "" -#: lms/www/lms.py:111 +#: lms/www/lms.py:159 msgid "Job Openings" msgstr "" @@ -2700,6 +2706,7 @@ msgstr "المسمى الوظيفي" #. Label of the jobs (Check) field in DocType 'LMS Settings' #: frontend/src/pages/JobDetail.vue:10 frontend/src/pages/Jobs.vue:8 +#: frontend/src/pages/Jobs.vue:170 #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Jobs" msgstr "وظائف" @@ -2923,7 +2930,6 @@ msgstr "" #: lms/job/doctype/lms_job_application/lms_job_application.json #: lms/lms/doctype/cohort_join_request/cohort_join_request.json #: lms/lms/doctype/course_chapter/course_chapter.json -#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/function/function.json #: lms/lms/doctype/industry/industry.json #: lms/lms/doctype/lms_assignment/lms_assignment.json @@ -3035,7 +3041,7 @@ msgstr "" msgid "Limit Questions To" msgstr "" -#: lms/lms/doctype/lms_quiz/lms_quiz.py:40 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:38 msgid "Limit cannot be greater than or equal to the number of questions in the quiz." msgstr "" @@ -3055,12 +3061,8 @@ msgstr "" msgid "Links" msgstr "الروابط" -#: frontend/src/pages/Quizzes.vue:149 -msgid "List of quizzes" -msgstr "" - #. Option for the 'Status' (Select) field in DocType 'Cohort' -#: frontend/src/pages/Courses.vue:278 lms/lms/doctype/cohort/cohort.json +#: frontend/src/pages/Courses.vue:281 lms/lms/doctype/cohort/cohort.json msgid "Live" msgstr "" @@ -3092,7 +3094,7 @@ msgstr "محلي" #. Label of the location (Data) field in DocType 'Job Opportunity' #. Label of the location (Data) field in DocType 'Education Detail' #. Label of the location (Data) field in DocType 'Work Experience' -#: frontend/src/pages/JobCreation.vue:26 frontend/src/pages/JobDetail.vue:85 +#: frontend/src/pages/JobCreation.vue:26 frontend/src/pages/JobDetail.vue:92 #: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/lms/doctype/education_detail/education_detail.json #: lms/lms/doctype/work_experience/work_experience.json @@ -3114,7 +3116,7 @@ msgstr "دخول" msgid "Login to Frappe Cloud?" msgstr "" -#: frontend/src/pages/JobDetail.vue:48 +#: frontend/src/pages/JobDetail.vue:54 msgid "Login to apply" msgstr "" @@ -3171,7 +3173,7 @@ msgstr "" #. Label of the marks (Int) field in DocType 'LMS Quiz Result' #: frontend/src/components/Modals/Question.vue:50 #: frontend/src/components/Modals/Question.vue:99 -#: frontend/src/components/Quiz.vue:96 frontend/src/pages/QuizForm.vue:390 +#: frontend/src/components/Quiz.vue:96 frontend/src/pages/QuizForm.vue:393 #: frontend/src/pages/QuizSubmission.vue:65 #: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json #: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json @@ -3233,7 +3235,7 @@ msgstr "متوسط:" #. Label of the member (Link) field in DocType 'LMS Quiz Submission' #: frontend/src/pages/AssignmentSubmissionList.vue:14 #: frontend/src/pages/QuizSubmission.vue:31 -#: frontend/src/pages/QuizSubmissionList.vue:86 +#: frontend/src/pages/QuizSubmissionList.vue:102 #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_submission/exercise_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json @@ -3314,7 +3316,7 @@ msgstr "" msgid "Member Username" msgstr "" -#: frontend/src/pages/ProgramForm.vue:251 +#: frontend/src/pages/ProgramForm.vue:254 msgid "Member added to program" msgstr "" @@ -3378,6 +3380,11 @@ msgstr "" msgid "Mentor Request Status Update Template" msgstr "" +#. Label of the meta_description (Small Text) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Meta Description" +msgstr "ميتا الوصف" + #. Label of the meta_image (Attach Image) field in DocType 'LMS Batch' #: frontend/src/pages/BatchForm.vue:44 lms/lms/doctype/lms_batch/lms_batch.json #: lms/public/js/common_functions.js:362 @@ -3400,6 +3407,7 @@ msgstr "" #. Name of a role #: frontend/src/pages/ProfileRoles.vue:10 #: lms/lms/doctype/course_evaluator/course_evaluator.json +#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/lms_assignment/lms_assignment.json #: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json #: lms/lms/doctype/lms_batch/lms_batch.json @@ -3459,12 +3467,13 @@ msgstr "" #. Option for the 'Event' (Select) field in DocType 'LMS Badge' #: frontend/src/pages/Assignments.vue:18 frontend/src/pages/Batches.vue:17 -#: frontend/src/pages/Courses.vue:17 frontend/src/pages/Courses.vue:281 +#: frontend/src/pages/Courses.vue:17 frontend/src/pages/Courses.vue:284 #: frontend/src/pages/Programs.vue:14 lms/lms/doctype/lms_badge/lms_badge.json msgid "New" msgstr "جديد" -#: frontend/src/pages/AssignmentForm.vue:178 +#: frontend/src/pages/AssignmentForm.vue:181 +#: frontend/src/pages/AssignmentForm.vue:197 msgid "New Assignment" msgstr "" @@ -3472,11 +3481,11 @@ msgstr "" msgid "New Assignment Submission" msgstr "" -#: lms/public/js/common_functions.js:255 lms/www/lms.py:89 +#: lms/public/js/common_functions.js:255 lms/www/lms.py:134 msgid "New Batch" msgstr "" -#: lms/www/lms.py:40 +#: frontend/src/pages/CourseForm.vue:577 lms/www/lms.py:78 msgid "New Course" msgstr "" @@ -3504,7 +3513,7 @@ msgstr "" msgid "New Question" msgstr "" -#: frontend/src/pages/QuizForm.vue:450 frontend/src/pages/QuizForm.vue:458 +#: frontend/src/pages/QuizForm.vue:453 frontend/src/pages/QuizForm.vue:461 #: frontend/src/pages/Quizzes.vue:18 msgid "New Quiz" msgstr "" @@ -3599,8 +3608,8 @@ msgstr "" msgid "No introduction" msgstr "" -#: frontend/src/pages/Jobs.vue:77 -msgid "No jobs posted" +#: frontend/src/pages/Jobs.vue:80 +msgid "No jobs found" msgstr "" #: frontend/src/components/LiveClass.vue:71 @@ -3615,6 +3624,10 @@ msgstr "" msgid "No programs found" msgstr "" +#: frontend/src/pages/QuizSubmissionList.vue:52 +msgid "No quiz submissions found. Please check again later." +msgstr "" + #: frontend/src/pages/Quizzes.vue:61 msgid "No quizzes found" msgstr "" @@ -3624,6 +3637,7 @@ msgid "No slots available for this date." msgstr "" #: frontend/src/pages/AssignmentSubmissionList.vue:67 +#: frontend/src/pages/QuizSubmissionList.vue:49 msgid "No submissions" msgstr "" @@ -3724,11 +3738,11 @@ msgstr "" msgid "Only files of type {0} will be accepted." msgstr "" -#: frontend/src/pages/CourseForm.vue:509 frontend/src/utils/index.js:549 +#: frontend/src/pages/CourseForm.vue:507 frontend/src/utils/index.js:550 msgid "Only image file is allowed." msgstr "" -#: frontend/src/components/Modals/ChapterModal.vue:218 +#: frontend/src/components/Modals/ChapterModal.vue:221 msgid "Only zip files are allowed" msgstr "" @@ -3786,7 +3800,7 @@ msgstr "الخيار 4" msgid "Order ID" msgstr "" -#: frontend/src/pages/JobDetail.vue:74 +#: frontend/src/pages/JobDetail.vue:81 msgid "Organisation" msgstr "" @@ -3835,7 +3849,7 @@ msgid "Paid Batch" msgstr "" #. Label of the paid_certificate (Check) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:218 +#: frontend/src/pages/CourseForm.vue:214 #: lms/lms/doctype/lms_course/lms_course.json msgid "Paid Certificate" msgstr "" @@ -3845,7 +3859,7 @@ msgid "Paid Certificate after Evaluation" msgstr "" #. Label of the paid_course (Check) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:208 +#: frontend/src/pages/CourseForm.vue:204 #: lms/lms/doctype/lms_course/lms_course.json msgid "Paid Course" msgstr "" @@ -3855,7 +3869,7 @@ msgid "Pan Number" msgstr "" #. Option for the 'Type' (Select) field in DocType 'Job Opportunity' -#: frontend/src/pages/Jobs.vue:145 +#: frontend/src/pages/Jobs.vue:162 #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Part Time" msgstr "" @@ -3877,7 +3891,7 @@ msgstr "إجتاز" #. Label of the passing_percentage (Int) field in DocType 'LMS Quiz' #. Label of the passing_percentage (Int) field in DocType 'LMS Quiz Submission' -#: frontend/src/pages/QuizForm.vue:72 frontend/src/pages/Quizzes.vue:127 +#: frontend/src/pages/QuizForm.vue:72 frontend/src/pages/Quizzes.vue:129 #: lms/lms/doctype/lms_quiz/lms_quiz.json #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json msgid "Passing Percentage" @@ -3888,7 +3902,7 @@ msgstr "" msgid "Password" msgstr "كلمة السر" -#: frontend/src/pages/CourseForm.vue:113 +#: frontend/src/pages/CourseForm.vue:109 msgid "Paste the youtube link of a short video introducing the course" msgstr "" @@ -3980,7 +3994,7 @@ msgstr "معلق" #. Label of the percentage (Int) field in DocType 'LMS Quiz Submission' #: frontend/src/pages/QuizSubmission.vue:44 -#: frontend/src/pages/QuizSubmissionList.vue:97 +#: frontend/src/pages/QuizSubmissionList.vue:113 #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json msgid "Percentage" msgstr "النسبة المئوية" @@ -4002,7 +4016,7 @@ msgstr "رقم الهاتف" msgid "Please Login" msgstr "" -#: lms/lms/doctype/lms_settings/lms_settings.py:33 +#: lms/lms/doctype/lms_settings/lms_settings.py:34 msgid "Please add {1} for {3} to send calendar invites for evaluations." msgstr "" @@ -4026,7 +4040,7 @@ msgstr "" msgid "Please enable Zoom Settings to use this feature." msgstr "" -#: frontend/src/components/CourseOutline.vue:324 +#: frontend/src/components/CourseOutline.vue:325 msgid "Please enroll for this course to view this lesson" msgstr "" @@ -4063,7 +4077,7 @@ msgstr "" msgid "Please install the Payments app to create a paid courses." msgstr "" -#: frontend/src/pages/Billing.vue:253 +#: frontend/src/pages/Billing.vue:254 msgid "Please let us know where you heard about us from." msgstr "" @@ -4112,7 +4126,7 @@ msgstr "" msgid "Please take appropriate action at {0}" msgstr "" -#: frontend/src/components/Modals/ChapterModal.vue:175 +#: frontend/src/components/Modals/ChapterModal.vue:178 msgid "Please upload a SCORM package" msgstr "" @@ -4158,7 +4172,7 @@ msgstr "بعد" msgid "Postal Code" msgstr "الرمز البريدي" -#: frontend/src/pages/JobDetail.vue:107 +#: frontend/src/pages/JobDetail.vue:114 msgid "Posted on" msgstr "" @@ -4193,7 +4207,7 @@ msgstr "" msgid "Preview Image" msgstr "معاينة الصورة" -#: frontend/src/pages/CourseForm.vue:111 +#: frontend/src/pages/CourseForm.vue:107 msgid "Preview Video" msgstr "" @@ -4208,7 +4222,7 @@ msgid "Pricing" msgstr "التسعير" #. Label of the pricing_tab (Tab Break) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:202 +#: frontend/src/pages/CourseForm.vue:198 #: lms/lms/doctype/lms_course/lms_course.json msgid "Pricing and Certification" msgstr "" @@ -4272,6 +4286,10 @@ msgstr "" msgid "Program Members" msgstr "" +#: frontend/src/pages/Programs.vue:219 lms/www/lms.py:273 +msgid "Programs" +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/BatchStudents.vue:75 @@ -4301,7 +4319,7 @@ msgstr "" #. Label of the published (Check) field in DocType 'LMS Course' #: frontend/src/components/Modals/BulkCertificates.vue:51 #: frontend/src/components/Modals/Event.vue:108 -#: frontend/src/pages/BatchForm.vue:27 frontend/src/pages/CourseForm.vue:172 +#: frontend/src/pages/BatchForm.vue:27 frontend/src/pages/CourseForm.vue:168 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/public/js/common_functions.js:266 @@ -4314,7 +4332,7 @@ msgid "Published Courses" msgstr "" #. Label of the published_on (Date) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:176 +#: frontend/src/pages/CourseForm.vue:172 #: lms/lms/doctype/lms_course/lms_course.json msgid "Published On" msgstr "نشرت في" @@ -4333,7 +4351,7 @@ msgstr "" #. Label of the question (Text) field in DocType 'LMS Quiz Result' #: frontend/src/components/Assignment.vue:20 #: frontend/src/components/Modals/Question.vue:38 -#: frontend/src/pages/AssignmentForm.vue:45 frontend/src/pages/QuizForm.vue:385 +#: frontend/src/pages/AssignmentForm.vue:45 frontend/src/pages/QuizForm.vue:388 #: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/lms_assignment/lms_assignment.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json @@ -4358,11 +4376,11 @@ msgstr "" msgid "Question Name" msgstr "" -#: frontend/src/components/Modals/Question.vue:267 +#: frontend/src/components/Modals/Question.vue:270 msgid "Question added successfully" msgstr "" -#: frontend/src/components/Modals/Question.vue:319 +#: frontend/src/components/Modals/Question.vue:322 msgid "Question updated successfully" msgstr "" @@ -4379,7 +4397,7 @@ msgstr "" msgid "Questions" msgstr "" -#: frontend/src/pages/QuizForm.vue:427 +#: frontend/src/pages/QuizForm.vue:430 msgid "Questions deleted successfully" msgstr "" @@ -4397,13 +4415,13 @@ msgid "Quiz ID" msgstr "" #. Label of a Link in the LMS Workspace -#: frontend/src/pages/QuizPage.vue:56 frontend/src/pages/QuizPage.vue:62 -#: lms/lms/workspace/lms/lms.json +#: frontend/src/pages/QuizPage.vue:57 lms/lms/workspace/lms/lms.json msgid "Quiz Submission" msgstr "" -#: frontend/src/pages/QuizSubmission.vue:128 -#: frontend/src/pages/QuizSubmissionList.vue:106 +#: frontend/src/pages/QuizSubmission.vue:131 +#: frontend/src/pages/QuizSubmissionList.vue:122 +#: frontend/src/pages/QuizSubmissionList.vue:127 msgid "Quiz Submissions" msgstr "" @@ -4416,7 +4434,7 @@ msgstr "" msgid "Quiz Title" msgstr "" -#: frontend/src/pages/QuizForm.vue:339 +#: frontend/src/pages/QuizForm.vue:342 msgid "Quiz created successfully" msgstr "" @@ -4424,7 +4442,7 @@ msgstr "" msgid "Quiz is not available to Guest users. Please login to continue." msgstr "" -#: frontend/src/pages/QuizForm.vue:358 +#: frontend/src/pages/QuizForm.vue:361 msgid "Quiz updated successfully" msgstr "" @@ -4434,8 +4452,8 @@ msgid "Quiz will appear at the bottom of the lesson." msgstr "" #: frontend/src/components/AppSidebar.vue:530 -#: frontend/src/pages/QuizForm.vue:438 frontend/src/pages/Quizzes.vue:138 -#: frontend/src/pages/Quizzes.vue:148 +#: frontend/src/pages/QuizForm.vue:441 frontend/src/pages/Quizzes.vue:140 +#: frontend/src/pages/Quizzes.vue:150 lms/www/lms.py:229 msgid "Quizzes" msgstr "" @@ -4513,7 +4531,7 @@ msgstr "مرفوض" msgid "Related Courses" msgstr "" -#: frontend/src/pages/BatchForm.vue:77 frontend/src/pages/CourseForm.vue:100 +#: frontend/src/pages/BatchForm.vue:77 frontend/src/pages/CourseForm.vue:96 msgid "Remove" msgstr "" @@ -4607,7 +4625,7 @@ msgstr "" msgid "Row #{0} Start time cannot be outside the batch duration." msgstr "" -#: lms/lms/doctype/lms_quiz/lms_quiz.py:34 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:32 msgid "Rows {0} have the duplicate questions." msgstr "" @@ -4631,6 +4649,11 @@ msgstr "" msgid "SCORM Package Path" msgstr "" +#. Label of the seo_tab (Tab Break) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "SEO" +msgstr "" + #. Option for the 'Day' (Select) field in DocType 'Evaluator Schedule' #. Option for the 'Day' (Select) field in DocType 'LMS Certificate Request' #: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json @@ -4644,7 +4667,7 @@ msgstr "السبت" #: frontend/src/components/Modals/Event.vue:101 #: frontend/src/components/Modals/Event.vue:129 #: frontend/src/pages/AssignmentForm.vue:21 frontend/src/pages/BatchForm.vue:8 -#: frontend/src/pages/CourseForm.vue:21 frontend/src/pages/JobCreation.vue:8 +#: frontend/src/pages/CourseForm.vue:17 frontend/src/pages/JobCreation.vue:8 #: frontend/src/pages/LessonForm.vue:14 frontend/src/pages/ProgramForm.vue:7 #: frontend/src/pages/QuizForm.vue:34 frontend/src/pages/QuizSubmission.vue:14 #: lms/public/js/common_functions.js:405 @@ -4673,7 +4696,7 @@ msgstr "" #. Label of the score (Int) field in DocType 'LMS Quiz Submission' #: frontend/src/pages/QuizSubmission.vue:39 -#: frontend/src/pages/QuizSubmissionList.vue:91 +#: frontend/src/pages/QuizSubmissionList.vue:107 #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json #: lms/templates/quiz/quiz.html:148 msgid "Score" @@ -4767,7 +4790,7 @@ msgstr "" #: frontend/src/components/AppSidebar.vue:556 #: frontend/src/components/Modals/Settings.vue:7 -#: frontend/src/pages/BatchForm.vue:148 frontend/src/pages/CourseForm.vue:162 +#: frontend/src/pages/BatchForm.vue:148 frontend/src/pages/CourseForm.vue:158 #: frontend/src/pages/ProfileRoles.vue:4 frontend/src/pages/QuizForm.vue:79 msgid "Settings" msgstr "إعدادات" @@ -4781,7 +4804,7 @@ msgid "Short Description" msgstr "" #. Label of the short_introduction (Small Text) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:39 +#: frontend/src/pages/CourseForm.vue:35 #: lms/lms/doctype/lms_course/lms_course.json msgid "Short Introduction" msgstr "" @@ -4892,10 +4915,6 @@ msgstr "" msgid "Skip" msgstr "تخطى" -#: frontend/src/components/OnboardingBanner.vue:3 -msgid "Skip Onboarding" -msgstr "" - #: lms/lms/doctype/course_evaluator/course_evaluator.py:63 msgid "Slot Times are overlapping for some schedules." msgstr "" @@ -5009,8 +5028,9 @@ msgstr "حالة" #. Label of the tab_4_tab (Tab Break) field in DocType 'LMS Course' #. Label of the statistics (Check) field in DocType 'LMS Settings' #: frontend/src/components/BatchStudents.vue:5 +#: frontend/src/pages/Statistics.vue:322 #: lms/lms/doctype/lms_course/lms_course.json -#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:136 +#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:182 msgid "Statistics" msgstr "" @@ -5110,7 +5130,7 @@ msgstr "" #: frontend/src/components/Modals/AssessmentModal.vue:9 #: frontend/src/components/Modals/BatchCourseModal.vue:9 #: frontend/src/components/Modals/EvaluationModal.vue:9 -#: frontend/src/components/Modals/Question.vue:341 +#: frontend/src/components/Modals/Question.vue:344 #: frontend/src/components/Quiz.vue:218 lms/templates/assignment.html:9 #: lms/templates/livecode/extension_footer.html:25 #: lms/templates/quiz/quiz.html:128 lms/templates/reviews.html:163 @@ -5135,18 +5155,18 @@ msgstr "" #: frontend/src/components/Modals/AnnouncementModal.vue:99 #: frontend/src/components/Modals/AssessmentModal.vue:73 #: frontend/src/components/Modals/BulkCertificates.vue:121 -#: frontend/src/components/Modals/ChapterModal.vue:151 -#: frontend/src/components/Modals/ChapterModal.vue:196 +#: frontend/src/components/Modals/ChapterModal.vue:154 +#: frontend/src/components/Modals/ChapterModal.vue:199 #: frontend/src/components/Modals/Event.vue:255 #: frontend/src/components/Modals/Event.vue:310 -#: frontend/src/components/Modals/Question.vue:267 -#: frontend/src/components/Modals/Question.vue:318 -#: frontend/src/pages/AssignmentForm.vue:155 -#: frontend/src/pages/CourseForm.vue:472 frontend/src/pages/ProgramForm.vue:229 -#: frontend/src/pages/ProgramForm.vue:251 -#: frontend/src/pages/ProgramForm.vue:272 -#: frontend/src/pages/ProgramForm.vue:298 frontend/src/pages/QuizForm.vue:339 -#: frontend/src/pages/QuizForm.vue:358 frontend/src/pages/QuizForm.vue:427 +#: frontend/src/components/Modals/Question.vue:270 +#: frontend/src/components/Modals/Question.vue:321 +#: frontend/src/pages/AssignmentForm.vue:158 +#: frontend/src/pages/CourseForm.vue:470 frontend/src/pages/ProgramForm.vue:232 +#: frontend/src/pages/ProgramForm.vue:254 +#: frontend/src/pages/ProgramForm.vue:275 +#: frontend/src/pages/ProgramForm.vue:301 frontend/src/pages/QuizForm.vue:342 +#: frontend/src/pages/QuizForm.vue:361 frontend/src/pages/QuizForm.vue:430 msgid "Success" msgstr "نجاح" @@ -5164,7 +5184,7 @@ msgstr "ملخص" msgid "Sunday" msgstr "الأحد" -#: lms/lms/api.py:1026 +#: lms/lms/api.py:1027 msgid "Suspicious pattern found in {0}: {1}" msgstr "" @@ -5220,7 +5240,7 @@ msgid "System Manager" msgstr "مدير النظام" #. Label of the tags (Data) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:121 +#: frontend/src/pages/CourseForm.vue:117 #: lms/lms/doctype/lms_course/lms_course.json msgid "Tags" msgstr "بطاقات" @@ -5325,6 +5345,10 @@ msgstr "" msgid "There are no courses matching the criteria. Keep an eye out, fresh learning experiences are on the way soon!" msgstr "" +#: frontend/src/pages/Jobs.vue:84 +msgid "There are no jobs available at the moment. Open a job opportunity or check here again later." +msgstr "" + #: frontend/src/pages/CertifiedParticipants.vue:92 msgid "There are no participants matching this criteria." msgstr "" @@ -5384,8 +5408,10 @@ msgstr "" msgid "This course is free." msgstr "" -#: frontend/src/pages/SCORMChapter.vue:201 -msgid "This is a chapter in the course {0}" +#. Description of the 'Meta Description' (Small Text) field in DocType 'LMS +#. Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "This description will be shown on lists and pages without meta description" msgstr "" #: frontend/src/pages/Lesson.vue:16 @@ -5482,10 +5508,10 @@ msgstr "" #: frontend/src/components/Modals/DiscussionModal.vue:18 #: frontend/src/components/Modals/LiveClassModal.vue:23 #: frontend/src/pages/AssignmentForm.vue:32 -#: frontend/src/pages/Assignments.vue:152 frontend/src/pages/BatchForm.vue:19 -#: frontend/src/pages/CourseForm.vue:33 frontend/src/pages/JobCreation.vue:20 +#: frontend/src/pages/Assignments.vue:155 frontend/src/pages/BatchForm.vue:19 +#: frontend/src/pages/CourseForm.vue:29 frontend/src/pages/JobCreation.vue:20 #: frontend/src/pages/ProgramForm.vue:11 frontend/src/pages/Programs.vue:116 -#: frontend/src/pages/QuizForm.vue:48 frontend/src/pages/Quizzes.vue:116 +#: frontend/src/pages/QuizForm.vue:48 frontend/src/pages/Quizzes.vue:118 #: lms/lms/doctype/cohort/cohort.json #: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json #: lms/lms/doctype/cohort_web_page/cohort_web_page.json @@ -5507,7 +5533,7 @@ msgstr "" msgid "Title" msgstr "اللقب" -#: frontend/src/components/Modals/ChapterModal.vue:172 +#: frontend/src/components/Modals/ChapterModal.vue:175 msgid "Title is required" msgstr "" @@ -5539,7 +5565,7 @@ msgid "Total" msgstr "الاجمالي غير شامل الضريبة" #. Label of the total_marks (Int) field in DocType 'LMS Quiz' -#: frontend/src/pages/QuizForm.vue:67 frontend/src/pages/Quizzes.vue:121 +#: frontend/src/pages/QuizForm.vue:67 frontend/src/pages/Quizzes.vue:123 #: lms/lms/doctype/lms_quiz/lms_quiz.json msgid "Total Marks" msgstr "" @@ -5577,7 +5603,7 @@ msgstr "" #: frontend/src/components/Modals/AssessmentModal.vue:22 #: frontend/src/components/Modals/Question.vue:54 #: frontend/src/pages/AssignmentForm.vue:39 -#: frontend/src/pages/Assignments.vue:30 frontend/src/pages/Assignments.vue:157 +#: frontend/src/pages/Assignments.vue:30 frontend/src/pages/Assignments.vue:160 #: frontend/src/pages/JobCreation.vue:33 frontend/src/pages/Jobs.vue:55 #: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/lms/doctype/lms_assignment/lms_assignment.json @@ -5624,7 +5650,7 @@ msgstr "" msgid "Unlisted" msgstr "" -#: frontend/src/pages/Batches.vue:293 +#: frontend/src/pages/Batches.vue:295 msgid "Unpublished" msgstr "" @@ -5646,8 +5672,8 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'Cohort' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request' #. Label of the upcoming (Check) field in DocType 'LMS Course' -#: frontend/src/pages/Batches.vue:291 frontend/src/pages/CourseForm.vue:185 -#: frontend/src/pages/Courses.vue:284 lms/lms/doctype/cohort/cohort.json +#: frontend/src/pages/Batches.vue:293 frontend/src/pages/CourseForm.vue:181 +#: frontend/src/pages/Courses.vue:287 lms/lms/doctype/cohort/cohort.json #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_course/lms_course.json msgid "Upcoming" @@ -5672,7 +5698,7 @@ msgstr "تحديث" msgid "Update Password" msgstr "" -#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:81 +#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:77 msgid "Upload" msgstr "تحميل" @@ -5778,6 +5804,10 @@ msgstr "" msgid "Visit Batch" msgstr "" +#: frontend/src/pages/JobDetail.vue:38 +msgid "Visit Website" +msgstr "" + #: lms/templates/emails/batch_confirmation.html:23 msgid "Visit the following link to view your " msgstr "" @@ -5899,7 +5929,7 @@ msgstr "" msgid "You are not a mentor of the course {0}" msgstr "" -#: frontend/src/components/CourseOutline.vue:323 +#: frontend/src/components/CourseOutline.vue:324 msgid "You are not enrolled" msgstr "" @@ -6123,11 +6153,7 @@ msgstr "من" msgid "out of" msgstr "من أصل" -#: frontend/src/components/JobCard.vue:30 -msgid "posted" -msgstr "" - -#: frontend/src/pages/QuizForm.vue:386 +#: frontend/src/pages/QuizForm.vue:389 msgid "question_detail" msgstr "" @@ -6147,7 +6173,7 @@ msgstr "" msgid "you can" msgstr "" -#: lms/lms/api.py:816 lms/lms/api.py:824 +#: lms/lms/api.py:817 lms/lms/api.py:825 msgid "{0} Settings not found" msgstr "" diff --git a/lms/locale/bs.po b/lms/locale/bs.po index d8ab8ba6..175bec6f 100644 --- a/lms/locale/bs.po +++ b/lms/locale/bs.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n" -"POT-Creation-Date: 2025-04-04 16:04+0000\n" -"PO-Revision-Date: 2025-04-08 03:58\n" +"POT-Creation-Date: 2025-04-11 16:04+0000\n" +"PO-Revision-Date: 2025-04-15 06:20\n" "Last-Translator: jannat@frappe.io\n" "Language-Team: Bosnian\n" "MIME-Version: 1.0\n" @@ -71,7 +71,7 @@ msgstr "Statistika" msgid "A course cannot have both paid certificate and certificate of completion." msgstr "Kurs ne može imati i plaćeni certifikat i certifikat o završenom kursu." -#: frontend/src/pages/CourseForm.vue:41 +#: frontend/src/pages/CourseForm.vue:37 msgid "A one line introduction to the course that appears on the course card" msgstr "Uvod u kurs u jednom redu koji se pojavljuje na kartici kursa" @@ -145,7 +145,6 @@ msgid "Add a Student" msgstr "Dodaj Studenta" #: frontend/src/components/AppSidebar.vue:514 -#: frontend/src/components/OnboardingBanner.vue:56 msgid "Add a chapter" msgstr "Dodaj Poglavlje" @@ -153,16 +152,15 @@ msgstr "Dodaj Poglavlje" msgid "Add a course" msgstr "Dodaj Kurs" -#: frontend/src/pages/CourseForm.vue:137 +#: frontend/src/pages/CourseForm.vue:133 msgid "Add a keyword and then press enter" msgstr "Dodaj ključnu riječ, a zatim pritisnite enter" #: frontend/src/components/AppSidebar.vue:515 -#: frontend/src/components/OnboardingBanner.vue:81 msgid "Add a lesson" msgstr "Dodaj Lekciju" -#: frontend/src/components/Modals/Question.vue:146 +#: frontend/src/components/Modals/Question.vue:147 #: frontend/src/pages/QuizForm.vue:183 msgid "Add a new question" msgstr "Dodaj novo pitanje" @@ -235,7 +233,7 @@ msgid "Admin" msgstr "Admin" #. Name of a role -#: frontend/src/pages/Batches.vue:282 lms/lms/doctype/lms_badge/lms_badge.json +#: frontend/src/pages/Batches.vue:284 lms/lms/doctype/lms_badge/lms_badge.json msgid "All" msgstr "Sve" @@ -259,7 +257,7 @@ msgstr "Sve Povratne Informacije" msgid "All Submissions" msgstr "Sva Podnošenja" -#: lms/lms/doctype/lms_quiz/lms_quiz.py:46 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:44 msgid "All questions should have the same marks if the limit is set." msgstr "Sva pitanja bi trebala imati iste ocjene ako je ograničenje postavljeno." @@ -294,7 +292,7 @@ msgstr "Već Registrovan" #. Label of the amount (Currency) field in DocType 'LMS Batch' #. Label of the course_price (Currency) field in DocType 'LMS Course' #. Label of the amount (Currency) field in DocType 'LMS Payment' -#: frontend/src/pages/BatchForm.vue:209 frontend/src/pages/CourseForm.vue:221 +#: frontend/src/pages/BatchForm.vue:209 frontend/src/pages/CourseForm.vue:217 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_payment/lms_payment.json @@ -346,7 +344,7 @@ msgstr "Objava je uspješno poslana" msgid "Answer" msgstr "Odgovori" -#: frontend/src/pages/CourseForm.vue:85 frontend/src/pages/CourseForm.vue:103 +#: frontend/src/pages/CourseForm.vue:81 frontend/src/pages/CourseForm.vue:99 msgid "Appears on the course card in the course list" msgstr "Pojavljuje se na kartici kursa u listi kurseva" @@ -354,11 +352,11 @@ msgstr "Pojavljuje se na kartici kursa u listi kurseva" msgid "Appears when the batch URL is shared on any online platform" msgstr "Pojavljuje se kada se grupni URL dijeli na bilo kojoj online platformi" -#: frontend/src/pages/JobDetail.vue:121 +#: frontend/src/pages/JobDetail.vue:128 msgid "Applications Received" msgstr "Prijave Primljene" -#: frontend/src/pages/JobDetail.vue:42 +#: frontend/src/pages/JobDetail.vue:48 msgid "Apply" msgstr "Primjeni" @@ -389,7 +387,7 @@ msgstr "Odobreno" msgid "Apps" msgstr "Aplikacije" -#: frontend/src/pages/Batches.vue:292 +#: frontend/src/pages/Batches.vue:294 msgid "Archived" msgstr "Arhivirano" @@ -401,11 +399,6 @@ msgstr "Jeste li sigurni da želite otkazati ovo ocjenjivanje? Ova radnja se ne msgid "Are you sure you want to login to your Frappe Cloud dashboard?" msgstr "Jeste li sigurni da se želite prijaviti na svoju Frappe Cloud Nadzornu Tablu?" -#. Label of the user_category (Check) field in DocType 'LMS Settings' -#: lms/lms/doctype/lms_settings/lms_settings.json -msgid "Ask User Category during Signup" -msgstr "Pitaj za kategoriju korisnika prilikom registracije" - #. 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 @@ -470,6 +463,10 @@ msgstr "Prilog Zadatku" msgid "Assignment Submission Template" msgstr "Šablon Podnošenja Zadatka" +#: frontend/src/pages/AssignmentSubmissionList.vue:223 +msgid "Assignment Submissions" +msgstr "Podnošenje Zadataka" + #. Label of the assignment_title (Data) field in DocType 'LMS Assignment #. Submission' #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json @@ -480,7 +477,7 @@ msgstr "Naziv Zadatka" msgid "Assignment for Lesson {0} by {1} already exists." msgstr "Zadatak za Lekciju {0} od {1} već postoji." -#: frontend/src/pages/AssignmentForm.vue:155 +#: frontend/src/pages/AssignmentForm.vue:158 msgid "Assignment saved successfully" msgstr "Zadatak je uspješno sačuvan" @@ -490,7 +487,8 @@ msgid "Assignment will appear at the bottom of the lesson." msgstr "Zadatak će se pojaviti na dnu lekcije." #: frontend/src/components/AppSidebar.vue:531 -#: frontend/src/pages/AssignmentForm.vue:174 +#: frontend/src/pages/AssignmentForm.vue:177 +#: frontend/src/pages/Assignments.vue:193 lms/www/lms.py:251 msgid "Assignments" msgstr "Dodjele" @@ -656,8 +654,8 @@ msgid "Batch:" msgstr "Grupa:" #. Label of the batches (Check) field in DocType 'LMS Settings' -#: frontend/src/pages/Batches.vue:302 -#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:63 +#: frontend/src/pages/Batches.vue:304 frontend/src/pages/Batches.vue:311 +#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:105 msgid "Batches" msgstr "Grupe" @@ -675,7 +673,7 @@ msgstr "Srdačan Pozdrav" #. Label of the billing_details_section (Section Break) field in DocType 'LMS #. Payment' -#: frontend/src/pages/Billing.vue:8 +#: frontend/src/pages/Billing.vue:8 frontend/src/pages/Billing.vue:363 #: lms/lms/doctype/lms_payment/lms_payment.json msgid "Billing Details" msgstr "Detalji Fakture" @@ -757,8 +755,9 @@ msgstr "Ležerna Odjeća" #. Label of the category (Link) field in DocType 'LMS Course' #: frontend/src/pages/BatchForm.vue:190 frontend/src/pages/Batches.vue:55 #: frontend/src/pages/CertifiedParticipants.vue:37 -#: frontend/src/pages/CourseForm.vue:148 frontend/src/pages/Courses.vue:51 -#: frontend/src/pages/JobDetail.vue:96 lms/lms/doctype/lms_batch/lms_batch.json +#: frontend/src/pages/CourseForm.vue:144 frontend/src/pages/Courses.vue:51 +#: frontend/src/pages/JobDetail.vue:103 +#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/public/js/common_functions.js:316 lms/templates/signup-form.html:22 @@ -813,7 +812,7 @@ msgstr "Certifikati su uspješno generirani" #: frontend/src/components/Modals/Event.vue:371 #: frontend/src/pages/BatchForm.vue:37 frontend/src/pages/Batches.vue:38 #: frontend/src/pages/CourseCertification.vue:10 -#: frontend/src/pages/CourseCertification.vue:133 +#: frontend/src/pages/CourseCertification.vue:135 #: frontend/src/pages/Courses.vue:34 lms/fixtures/custom_field.json #: lms/lms/doctype/certification/certification.json #: lms/lms/doctype/lms_batch/lms_batch.json @@ -837,7 +836,8 @@ msgid "Certified" msgstr "Certificirano" #. Label of the certified_participants (Check) field in DocType 'LMS Settings' -#: frontend/src/pages/CertifiedParticipants.vue:161 +#: frontend/src/pages/CertifiedParticipants.vue:164 +#: frontend/src/pages/CertifiedParticipants.vue:171 #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Certified Participants" msgstr "Certificirani Učesnici" @@ -864,11 +864,11 @@ msgstr "Poglavlje" msgid "Chapter Reference" msgstr "Referenca Poglavlja" -#: frontend/src/components/Modals/ChapterModal.vue:152 +#: frontend/src/components/Modals/ChapterModal.vue:155 msgid "Chapter added successfully" msgstr "Poglavlje je uspješno dodano" -#: frontend/src/components/Modals/ChapterModal.vue:196 +#: frontend/src/components/Modals/ChapterModal.vue:199 msgid "Chapter updated successfully" msgstr "Poglavlje je uspješno ažurirano" @@ -1117,7 +1117,7 @@ msgid "Completed by Students" msgstr "Studenti koji su Završili" #. Label of the enable_certification (Check) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:213 +#: frontend/src/pages/CourseForm.vue:209 #: lms/lms/doctype/lms_course/lms_course.json msgid "Completion Certificate" msgstr "Završni Certifikat" @@ -1179,7 +1179,7 @@ msgid "Continue Learning" msgstr "Nastavi sa Učenjem" #. Option for the 'Type' (Select) field in DocType 'Job Opportunity' -#: frontend/src/pages/Jobs.vue:146 +#: frontend/src/pages/Jobs.vue:163 #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Contract" msgstr "Ugovor" @@ -1294,6 +1294,7 @@ msgstr "Kurs je Završen" #. Name of a role #: frontend/src/pages/ProfileRoles.vue:16 #: lms/lms/doctype/course_chapter/course_chapter.json +#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_program/lms_program.json @@ -1307,7 +1308,7 @@ msgstr "Kreator Kursa" msgid "Course Data" msgstr "Podaci o kursu" -#: frontend/src/pages/CourseForm.vue:50 +#: frontend/src/pages/CourseForm.vue:46 msgid "Course Description" msgstr "Opis Kursa" @@ -1316,7 +1317,7 @@ msgstr "Opis Kursa" msgid "Course Evaluator" msgstr "Ocjenjivač Kursa" -#: frontend/src/pages/CourseForm.vue:63 +#: frontend/src/pages/CourseForm.vue:59 msgid "Course Image" msgstr "Slika Kursa" @@ -1330,7 +1331,7 @@ msgstr "Instruktor Kursa" msgid "Course Lesson" msgstr "Lekcija Kursa" -#: lms/www/lms.py:30 +#: lms/www/lms.py:70 msgid "Course List" msgstr "Lista Kurseva" @@ -1338,7 +1339,7 @@ msgstr "Lista Kurseva" msgid "Course Name" msgstr "Naziv Kursa" -#: frontend/src/pages/CourseDetail.vue:76 frontend/src/pages/CourseForm.vue:241 +#: frontend/src/pages/CourseDetail.vue:76 frontend/src/pages/CourseForm.vue:237 msgid "Course Outline" msgstr "Pregled Kursa" @@ -1370,7 +1371,7 @@ msgstr "Statistika Kursa" msgid "Course Title" msgstr "Naziv Kursa" -#: frontend/src/pages/ProgramForm.vue:229 +#: frontend/src/pages/ProgramForm.vue:232 msgid "Course added to program" msgstr "Kurs dodat programu" @@ -1378,11 +1379,11 @@ msgstr "Kurs dodat programu" msgid "Course already added to the batch." msgstr "Kurs je već dodan u grupu." -#: frontend/src/pages/CourseForm.vue:472 +#: frontend/src/pages/CourseForm.vue:470 msgid "Course deleted successfully" msgstr "Kurs uspješno izbrisan" -#: frontend/src/pages/ProgramForm.vue:298 +#: frontend/src/pages/ProgramForm.vue:301 msgid "Course moved successfully" msgstr "Kurs uspješno pomjeren" @@ -1400,8 +1401,9 @@ msgstr "Kurs {0} je već dodan ovoj grupi." #: frontend/src/components/BatchStudents.vue:92 #: frontend/src/components/Modals/BatchStudentProgress.vue:79 #: frontend/src/pages/BatchDetail.vue:21 frontend/src/pages/BatchDetail.vue:70 -#: frontend/src/pages/CourseCertification.vue:125 -#: frontend/src/pages/Courses.vue:301 frontend/src/pages/Statistics.vue:21 +#: frontend/src/pages/CourseCertification.vue:127 +#: frontend/src/pages/Courses.vue:304 frontend/src/pages/Courses.vue:311 +#: frontend/src/pages/Statistics.vue:21 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Courses" @@ -1443,7 +1445,6 @@ msgid "Create a batch" msgstr "Kreiraj grupu" #: frontend/src/components/AppSidebar.vue:513 -#: frontend/src/components/OnboardingBanner.vue:30 msgid "Create a course" msgstr "Kreiraj kurs" @@ -1467,7 +1468,7 @@ msgstr "Kreiraj vaš prvi kurs" msgid "Create your first quiz" msgstr "Kreiraj vašj prvi kviz" -#: frontend/src/pages/Assignments.vue:163 frontend/src/pages/Courses.vue:292 +#: frontend/src/pages/Assignments.vue:166 frontend/src/pages/Courses.vue:295 msgid "Created" msgstr "Kreirano" @@ -1482,7 +1483,7 @@ msgstr "Kreiranje kursa u toku" #. Label of the currency (Link) field in DocType 'LMS Batch' #. Label of the currency (Link) field in DocType 'LMS Course' #. Label of the currency (Link) field in DocType 'LMS Payment' -#: frontend/src/pages/BatchForm.vue:217 frontend/src/pages/CourseForm.vue:226 +#: frontend/src/pages/BatchForm.vue:217 frontend/src/pages/CourseForm.vue:222 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_payment/lms_payment.json @@ -1585,9 +1586,9 @@ msgstr "Standard Valuta" msgid "Degree Type" msgstr "Tip Stepena" -#: frontend/src/components/CourseOutline.vue:247 -#: frontend/src/components/CourseOutline.vue:305 -#: frontend/src/pages/CourseForm.vue:485 +#: frontend/src/components/CourseOutline.vue:248 +#: frontend/src/components/CourseOutline.vue:306 +#: frontend/src/pages/CourseForm.vue:483 msgid "Delete" msgstr "Izbriši" @@ -1595,27 +1596,27 @@ msgstr "Izbriši" msgid "Delete Chapter" msgstr "Izbriši Poglavlje" -#: frontend/src/pages/CourseForm.vue:479 +#: frontend/src/pages/CourseForm.vue:477 msgid "Delete Course" msgstr "Izbriši Kurs" -#: frontend/src/components/CourseOutline.vue:299 +#: frontend/src/components/CourseOutline.vue:300 msgid "Delete this chapter?" msgstr "Izbriši ovo Poglavlje?" -#: frontend/src/components/CourseOutline.vue:241 +#: frontend/src/components/CourseOutline.vue:242 msgid "Delete this lesson?" msgstr "Izbriši ovu Lekciju?" -#: frontend/src/pages/CourseForm.vue:480 +#: frontend/src/pages/CourseForm.vue:478 msgid "Deleting the course will also delete all its chapters and lessons. Are you sure you want to delete this course?" msgstr "Brisanjem kursa izbrisat će se i sva njegova poglavlja i lekcije. Jeste li sigurni da želite izbrisati ovaj kurs?" -#: frontend/src/components/CourseOutline.vue:300 +#: frontend/src/components/CourseOutline.vue:301 msgid "Deleting this chapter will also delete all its lessons and permanently remove it from the course. This action cannot be undone. Are you sure you want to continue?" msgstr "Brisanjem ovog poglavlja također će se izbrisati sve lekcije u njemu i trajno će se ukloniti iz kursa. Ova radnja se ne može poništiti. Jeste li sigurni da želite nastaviti?" -#: frontend/src/components/CourseOutline.vue:242 +#: frontend/src/components/CourseOutline.vue:243 msgid "Deleting this lesson will permanently remove it from the course. This action cannot be undone. Are you sure you want to continue?" msgstr "Brisanjem ove lekcije trajno će se ukloniti iz kursa. Ova radnja se ne može poništiti. Jeste li sigurni da želite nastaviti?" @@ -1654,11 +1655,11 @@ msgstr "Radni Prostor" #: frontend/src/components/Modals/DiscussionModal.vue:22 #: frontend/src/pages/AssignmentForm.vue:27 frontend/src/pages/BatchForm.vue:14 -#: frontend/src/pages/CourseForm.vue:29 frontend/src/pages/QuizForm.vue:42 +#: frontend/src/pages/CourseForm.vue:25 frontend/src/pages/QuizForm.vue:42 msgid "Details" msgstr "Detalji" -#: frontend/src/pages/CourseForm.vue:195 +#: frontend/src/pages/CourseForm.vue:191 msgid "Disable Self Enrollment" msgstr "Onemogući Samostalni Upis" @@ -1667,6 +1668,11 @@ msgstr "Onemogući Samostalni Upis" msgid "Disable Self Learning" msgstr "Onemogući Samoučenje" +#. Label of the disable_signup (Check) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Disable Signup" +msgstr "Onemogući Prijavu" + #. Label of the disabled (Check) field in DocType 'Job Opportunity' #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Disabled" @@ -1808,7 +1814,7 @@ msgstr "Personal" msgid "Enable" msgstr "Omogući" -#: lms/lms/doctype/lms_settings/lms_settings.py:20 +#: lms/lms/doctype/lms_settings/lms_settings.py:21 msgid "Enable Google API in Google Settings to send calendar invites for evaluations." msgstr "Omogućite Google API u Google Postavkama za slanje kalendarskih pozivnica za ocjenjivanje." @@ -1867,7 +1873,7 @@ msgstr "Vrijeme Završetka" msgid "Enroll Now" msgstr "Upišite se sada" -#: frontend/src/pages/Batches.vue:295 frontend/src/pages/Courses.vue:294 +#: frontend/src/pages/Batches.vue:297 frontend/src/pages/Courses.vue:297 msgid "Enrolled" msgstr "Upisan" @@ -1902,7 +1908,7 @@ msgstr "Upis nije uspio" msgid "Enrollments" msgstr "Upisi" -#: lms/lms/doctype/lms_settings/lms_settings.py:25 +#: lms/lms/doctype/lms_settings/lms_settings.py:26 msgid "Enter Client Id and Client Secret in Google Settings to send calendar invites for evaluations." msgstr "Unesite Klijent Id i Klijent Tajnu u Google Postavke da pošaljete kalendarske pozivnice za ocjenjivanje." @@ -1921,19 +1927,19 @@ msgstr "Unesite tačan odgovor" #: frontend/src/components/Assignment.vue:287 #: frontend/src/components/Modals/AnnouncementModal.vue:105 #: frontend/src/components/Modals/BulkCertificates.vue:115 -#: frontend/src/components/Modals/ChapterModal.vue:157 -#: frontend/src/components/Modals/ChapterModal.vue:164 -#: frontend/src/components/Modals/ChapterModal.vue:200 -#: frontend/src/components/Modals/Question.vue:251 -#: frontend/src/components/Modals/Question.vue:272 -#: frontend/src/components/Modals/Question.vue:329 -#: frontend/src/components/Modals/StudentModal.vue:70 +#: frontend/src/components/Modals/ChapterModal.vue:160 +#: frontend/src/components/Modals/ChapterModal.vue:167 +#: frontend/src/components/Modals/ChapterModal.vue:203 +#: frontend/src/components/Modals/Question.vue:252 +#: frontend/src/components/Modals/Question.vue:275 +#: frontend/src/components/Modals/Question.vue:332 +#: frontend/src/components/Modals/StudentModal.vue:73 #: frontend/src/components/Quiz.vue:592 #: frontend/src/components/SettingDetails.vue:62 -#: frontend/src/pages/AssignmentForm.vue:139 -#: frontend/src/pages/AssignmentForm.vue:159 frontend/src/pages/Billing.vue:261 -#: frontend/src/pages/QuizForm.vue:346 frontend/src/pages/QuizForm.vue:361 -#: frontend/src/pages/QuizSubmission.vue:147 +#: frontend/src/pages/AssignmentForm.vue:142 +#: frontend/src/pages/AssignmentForm.vue:162 frontend/src/pages/Billing.vue:262 +#: frontend/src/pages/QuizForm.vue:349 frontend/src/pages/QuizForm.vue:364 +#: frontend/src/pages/QuizSubmission.vue:150 msgid "Error" msgstr "Grеška" @@ -1982,7 +1988,7 @@ msgstr "Evaluacija je uspješno sačuvana" #. Label of the evaluator (Link) field in DocType 'LMS Course' #: frontend/src/components/Modals/BatchCourseModal.vue:26 #: frontend/src/components/Modals/BulkCertificates.vue:22 -#: frontend/src/pages/CourseForm.vue:232 frontend/src/pages/ProfileRoles.vue:22 +#: frontend/src/pages/CourseForm.vue:228 frontend/src/pages/ProfileRoles.vue:22 #: lms/lms/doctype/batch_course/batch_course.json #: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json @@ -2100,7 +2106,7 @@ msgstr "Neuspjeh" #. Label of the featured (Check) field in DocType 'LMS Course' #: frontend/src/components/CourseCard.vue:16 -#: frontend/src/pages/CourseForm.vue:190 +#: frontend/src/pages/CourseForm.vue:186 #: lms/lms/doctype/lms_course/lms_course.json msgid "Featured" msgstr "Istaknuto" @@ -2149,10 +2155,6 @@ msgstr "Fiksno 9-5" msgid "Flexible Time" msgstr "Fleksibilno Vrijeme" -#: frontend/src/pages/QuizForm.vue:459 -msgid "Form to create and edit quizzes" -msgstr "Forma za kreiranje i uređivanje kvizova" - #. Option for the 'Attire Preference' (Select) field in DocType 'User' #: lms/fixtures/custom_field.json msgid "Formal Wear" @@ -2163,7 +2165,7 @@ msgid "Free" msgstr "Besplatno" #. Option for the 'Type' (Select) field in DocType 'Job Opportunity' -#: frontend/src/pages/Jobs.vue:147 +#: frontend/src/pages/Jobs.vue:164 #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Freelance" msgstr "Slobodnjak" @@ -2207,7 +2209,7 @@ msgid "Full Name" msgstr "Puno Ime" #. Option for the 'Type' (Select) field in DocType 'Job Opportunity' -#: frontend/src/pages/Jobs.vue:144 +#: frontend/src/pages/Jobs.vue:161 #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Full Time" msgstr "Puno Radno Vrijeme" @@ -2385,7 +2387,7 @@ msgstr "Tražim posao" msgid "I am unavailable" msgstr "Ja sam nedostupan/nedostupna" -#: frontend/src/pages/QuizForm.vue:380 +#: frontend/src/pages/QuizForm.vue:383 msgid "ID" msgstr "ID" @@ -2395,6 +2397,11 @@ msgstr "ID" msgid "Icon" msgstr "Ikona" +#. Label of the user_category (Check) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Identify User Persona" +msgstr "Identificiraj Korisnika" + #: frontend/src/components/LessonHelp.vue:11 msgid "If Include in Preview is enabled for a lesson then the lesson will also be accessible to non logged in users." msgstr "Ako je Uključi u Pregled omogućen za lekciju, lekcija će također biti dostupna korisnicima koji nisu prijavljeni." @@ -2425,7 +2432,7 @@ msgstr "Ako imate bilo kakvih pitanja ili vam je potrebna pomoć, slobodno nas k msgid "If you set an amount here, then the USD equivalent setting will not get applied." msgstr "Ako ovdje postavite iznos, postavka u USD neće biti primijenjena." -#: lms/lms/doctype/lms_quiz/lms_quiz.py:63 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:61 msgid "If you want open ended questions then make sure each question in the quiz is of open ended type." msgstr "Ako želite otvorena pitanja, provjerite je li svako pitanje u kvizu otvorenog tipa." @@ -2451,7 +2458,7 @@ msgstr "Slika" msgid "Image search powered by" msgstr "Pretraživanje slika pokreće" -#: lms/lms/doctype/lms_quiz/lms_quiz.py:221 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:219 msgid "Image: Corrupted Data Stream" msgstr "Slika: Oštećen Tok Podataka" @@ -2540,7 +2547,7 @@ msgstr "Instruktor Napomene" #. Label of the instructors (Table MultiSelect) field in DocType 'LMS Batch' #. Label of the instructors (Rating) field in DocType 'LMS Batch Feedback' #. Label of the instructors (Table MultiSelect) field in DocType 'LMS Course' -#: frontend/src/pages/BatchForm.vue:93 frontend/src/pages/CourseForm.vue:155 +#: frontend/src/pages/BatchForm.vue:93 frontend/src/pages/CourseForm.vue:151 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json #: lms/lms/doctype/lms_course/lms_course.json @@ -2565,10 +2572,14 @@ msgstr "Uvod" msgid "Invalid Invite Code." msgstr "Nevažeći Pozivni Kod" -#: lms/lms/doctype/course_lesson/course_lesson.py:20 +#: lms/lms/doctype/course_lesson/course_lesson.py:19 msgid "Invalid Quiz ID" msgstr "Nevažeći ID Kviza" +#: lms/lms/doctype/course_lesson/course_lesson.py:33 +msgid "Invalid Quiz ID in content" +msgstr "Nevažeći ID Kviza" + #. Label of the invite_code (Data) field in DocType 'Cohort Subgroup' #. Label of the invite_code (Data) field in DocType 'Invite Request' #: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json @@ -2607,11 +2618,6 @@ msgstr "Pozovi vaš tim i učenike" msgid "Is Correct" msgstr "Tačno" -#. Label of the is_onboarding_complete (Check) field in DocType 'LMS Settings' -#: lms/lms/doctype/lms_settings/lms_settings.json -msgid "Is Onboarding Complete" -msgstr "Introdukcija Završena" - #. Label of the is_scorm_package (Check) field in DocType 'Course Chapter' #. Label of the is_scorm_package (Check) field in DocType 'Course Lesson' #: lms/lms/doctype/course_chapter/course_chapter.json @@ -2650,7 +2656,7 @@ msgstr "Izdato" msgid "Items in Sidebar" msgstr "Stavke na Bočnoj Traci" -#: frontend/src/pages/ProgramForm.vue:272 +#: frontend/src/pages/ProgramForm.vue:275 msgid "Items removed successfully" msgstr "Stavke su uspješno uklonjene" @@ -2677,7 +2683,7 @@ msgstr "Naziv Table za Posao" msgid "Job Details" msgstr "Detalji Posla" -#: lms/www/lms.py:111 +#: lms/www/lms.py:159 msgid "Job Openings" msgstr "Otvorena Radna Mjesta" @@ -2700,6 +2706,7 @@ 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:170 #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Jobs" msgstr "Poslovi" @@ -2923,7 +2930,6 @@ msgstr "Izvor" #: lms/job/doctype/lms_job_application/lms_job_application.json #: lms/lms/doctype/cohort_join_request/cohort_join_request.json #: lms/lms/doctype/course_chapter/course_chapter.json -#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/function/function.json #: lms/lms/doctype/industry/industry.json #: lms/lms/doctype/lms_assignment/lms_assignment.json @@ -3035,7 +3041,7 @@ msgstr "Slovna Ocjena (npr. A, B-)" msgid "Limit Questions To" msgstr "Ograniči pitanja na" -#: lms/lms/doctype/lms_quiz/lms_quiz.py:40 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:38 msgid "Limit cannot be greater than or equal to the number of questions in the quiz." msgstr "Ograničenje ne može biti veće ili jednako broju pitanja u kvizu." @@ -3055,12 +3061,8 @@ msgstr "LinkedIn ID" msgid "Links" msgstr "Veze" -#: frontend/src/pages/Quizzes.vue:149 -msgid "List of quizzes" -msgstr "Lista Kvizova" - #. Option for the 'Status' (Select) field in DocType 'Cohort' -#: frontend/src/pages/Courses.vue:278 lms/lms/doctype/cohort/cohort.json +#: frontend/src/pages/Courses.vue:281 lms/lms/doctype/cohort/cohort.json msgid "Live" msgstr "Uživo" @@ -3092,7 +3094,7 @@ msgstr "Lokal" #. Label of the location (Data) field in DocType 'Job Opportunity' #. Label of the location (Data) field in DocType 'Education Detail' #. Label of the location (Data) field in DocType 'Work Experience' -#: frontend/src/pages/JobCreation.vue:26 frontend/src/pages/JobDetail.vue:85 +#: frontend/src/pages/JobCreation.vue:26 frontend/src/pages/JobDetail.vue:92 #: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/lms/doctype/education_detail/education_detail.json #: lms/lms/doctype/work_experience/work_experience.json @@ -3114,7 +3116,7 @@ msgstr "Prijava" msgid "Login to Frappe Cloud?" msgstr "Prijavi se na Frappe Cloud?" -#: frontend/src/pages/JobDetail.vue:48 +#: frontend/src/pages/JobDetail.vue:54 msgid "Login to apply" msgstr "Prijavite se kako biste se prijavili" @@ -3171,7 +3173,7 @@ msgstr "Označi kao pročitano" #. Label of the marks (Int) field in DocType 'LMS Quiz Result' #: frontend/src/components/Modals/Question.vue:50 #: frontend/src/components/Modals/Question.vue:99 -#: frontend/src/components/Quiz.vue:96 frontend/src/pages/QuizForm.vue:390 +#: frontend/src/components/Quiz.vue:96 frontend/src/pages/QuizForm.vue:393 #: frontend/src/pages/QuizSubmission.vue:65 #: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json #: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json @@ -3233,7 +3235,7 @@ msgstr "Srednje:" #. Label of the member (Link) field in DocType 'LMS Quiz Submission' #: frontend/src/pages/AssignmentSubmissionList.vue:14 #: frontend/src/pages/QuizSubmission.vue:31 -#: frontend/src/pages/QuizSubmissionList.vue:86 +#: frontend/src/pages/QuizSubmissionList.vue:102 #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_submission/exercise_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json @@ -3314,7 +3316,7 @@ msgstr "Tip Člana" msgid "Member Username" msgstr "Korisničko Ime Člana" -#: frontend/src/pages/ProgramForm.vue:251 +#: frontend/src/pages/ProgramForm.vue:254 msgid "Member added to program" msgstr "Član dodan u program" @@ -3378,6 +3380,11 @@ msgstr "Šablon Kreiranje Zahtjeva za Mentora" msgid "Mentor Request Status Update Template" msgstr "Status Šablona Kreiranja Zahtjeva za Mentora" +#. Label of the meta_description (Small Text) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Meta Description" +msgstr "Meta Opis" + #. Label of the meta_image (Attach Image) field in DocType 'LMS Batch' #: frontend/src/pages/BatchForm.vue:44 lms/lms/doctype/lms_batch/lms_batch.json #: lms/public/js/common_functions.js:362 @@ -3400,6 +3407,7 @@ msgstr "Za pitanja sa više odgovora potrebne su najmanje dvije opcije." #. Name of a role #: frontend/src/pages/ProfileRoles.vue:10 #: lms/lms/doctype/course_evaluator/course_evaluator.json +#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/lms_assignment/lms_assignment.json #: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json #: lms/lms/doctype/lms_batch/lms_batch.json @@ -3459,12 +3467,13 @@ msgstr "Moj Kalendar" #. Option for the 'Event' (Select) field in DocType 'LMS Badge' #: frontend/src/pages/Assignments.vue:18 frontend/src/pages/Batches.vue:17 -#: frontend/src/pages/Courses.vue:17 frontend/src/pages/Courses.vue:281 +#: frontend/src/pages/Courses.vue:17 frontend/src/pages/Courses.vue:284 #: frontend/src/pages/Programs.vue:14 lms/lms/doctype/lms_badge/lms_badge.json msgid "New" msgstr "Novi" -#: frontend/src/pages/AssignmentForm.vue:178 +#: frontend/src/pages/AssignmentForm.vue:181 +#: frontend/src/pages/AssignmentForm.vue:197 msgid "New Assignment" msgstr "Novi Zadatak" @@ -3472,11 +3481,11 @@ msgstr "Novi Zadatak" msgid "New Assignment Submission" msgstr "Prijava Novog Zadatka" -#: lms/public/js/common_functions.js:255 lms/www/lms.py:89 +#: lms/public/js/common_functions.js:255 lms/www/lms.py:134 msgid "New Batch" msgstr "Nova Grupa" -#: lms/www/lms.py:40 +#: frontend/src/pages/CourseForm.vue:577 lms/www/lms.py:78 msgid "New Course" msgstr "Novi Kurs" @@ -3504,7 +3513,7 @@ msgstr "Novi Član Programa" msgid "New Question" msgstr "Novo Pitanje" -#: frontend/src/pages/QuizForm.vue:450 frontend/src/pages/QuizForm.vue:458 +#: frontend/src/pages/QuizForm.vue:453 frontend/src/pages/QuizForm.vue:461 #: frontend/src/pages/Quizzes.vue:18 msgid "New Quiz" msgstr "Novi Kviz" @@ -3599,9 +3608,9 @@ msgstr "Još uvijek nema povratnih informacija." msgid "No introduction" msgstr "Nema Uvoda" -#: frontend/src/pages/Jobs.vue:77 -msgid "No jobs posted" -msgstr "Nema objavljenih poslova" +#: frontend/src/pages/Jobs.vue:80 +msgid "No jobs found" +msgstr "Nema pronađenih poslova" #: frontend/src/components/LiveClass.vue:71 msgid "No live classes scheduled" @@ -3615,6 +3624,10 @@ msgstr "Nije pronađen nijedan učesnik" msgid "No programs found" msgstr "Nije pronađen nijedan program" +#: frontend/src/pages/QuizSubmissionList.vue:52 +msgid "No quiz submissions found. Please check again later." +msgstr "Nije pronađen nijedan podnešeni kviz. Provjeri ponovo kasnije." + #: frontend/src/pages/Quizzes.vue:61 msgid "No quizzes found" msgstr "Nema pronađenih Kvizova" @@ -3624,6 +3637,7 @@ msgid "No slots available for this date." msgstr "Nema slobodnih termina za ovaj datum." #: frontend/src/pages/AssignmentSubmissionList.vue:67 +#: frontend/src/pages/QuizSubmissionList.vue:49 msgid "No submissions" msgstr "Nema prijava" @@ -3724,11 +3738,11 @@ msgstr "Programu se mogu dodati samo kursevi za koje je samostalno učenje onemo msgid "Only files of type {0} will be accepted." msgstr "Samo datoteke tipa {0} će biti prihvaćeni." -#: frontend/src/pages/CourseForm.vue:509 frontend/src/utils/index.js:549 +#: frontend/src/pages/CourseForm.vue:507 frontend/src/utils/index.js:550 msgid "Only image file is allowed." msgstr "Dozvoljena je samo datoteka slike." -#: frontend/src/components/Modals/ChapterModal.vue:218 +#: frontend/src/components/Modals/ChapterModal.vue:221 msgid "Only zip files are allowed" msgstr "Dozvoljene su samo zip datoteke" @@ -3786,7 +3800,7 @@ msgstr "Opcija 4" msgid "Order ID" msgstr "ID Naloga" -#: frontend/src/pages/JobDetail.vue:74 +#: frontend/src/pages/JobDetail.vue:81 msgid "Organisation" msgstr "Organizacija" @@ -3835,7 +3849,7 @@ msgid "Paid Batch" msgstr "Plaćena Grupa" #. Label of the paid_certificate (Check) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:218 +#: frontend/src/pages/CourseForm.vue:214 #: lms/lms/doctype/lms_course/lms_course.json msgid "Paid Certificate" msgstr "Plaćeni Certifikat" @@ -3845,7 +3859,7 @@ msgid "Paid Certificate after Evaluation" msgstr "Plaćeni Certifikat nakon Ocjenjivanja" #. Label of the paid_course (Check) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:208 +#: frontend/src/pages/CourseForm.vue:204 #: lms/lms/doctype/lms_course/lms_course.json msgid "Paid Course" msgstr "Plaćeni Kurs" @@ -3855,7 +3869,7 @@ msgid "Pan Number" msgstr "Pan Broj" #. Option for the 'Type' (Select) field in DocType 'Job Opportunity' -#: frontend/src/pages/Jobs.vue:145 +#: frontend/src/pages/Jobs.vue:162 #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Part Time" msgstr "Honorarno" @@ -3877,7 +3891,7 @@ msgstr "Uspješno" #. Label of the passing_percentage (Int) field in DocType 'LMS Quiz' #. Label of the passing_percentage (Int) field in DocType 'LMS Quiz Submission' -#: frontend/src/pages/QuizForm.vue:72 frontend/src/pages/Quizzes.vue:127 +#: frontend/src/pages/QuizForm.vue:72 frontend/src/pages/Quizzes.vue:129 #: lms/lms/doctype/lms_quiz/lms_quiz.json #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json msgid "Passing Percentage" @@ -3888,7 +3902,7 @@ msgstr "Procentualna Prolaznost" msgid "Password" msgstr "Lozinka" -#: frontend/src/pages/CourseForm.vue:113 +#: frontend/src/pages/CourseForm.vue:109 msgid "Paste the youtube link of a short video introducing the course" msgstr "Zalijepite youtube vezu kratkog videa koji predstavlja kurs" @@ -3980,7 +3994,7 @@ msgstr "Na čekanju" #. Label of the percentage (Int) field in DocType 'LMS Quiz Submission' #: frontend/src/pages/QuizSubmission.vue:44 -#: frontend/src/pages/QuizSubmissionList.vue:97 +#: frontend/src/pages/QuizSubmissionList.vue:113 #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json msgid "Percentage" msgstr "Procenat" @@ -4002,7 +4016,7 @@ msgstr "Broj Telefona" msgid "Please Login" msgstr "Prijavi se" -#: lms/lms/doctype/lms_settings/lms_settings.py:33 +#: lms/lms/doctype/lms_settings/lms_settings.py:34 msgid "Please add {1} for {3} to send calendar invites for evaluations." msgstr "Dodaj {1} za {3} za slanje kalendarskih pozivnica za ocjenjivanje." @@ -4026,7 +4040,7 @@ msgstr "Završite prethodne kurseve u programu da biste se upisali na ovaj kurs. msgid "Please enable Zoom Settings to use this feature." msgstr "Omogućite Zoom Postavke da koristite ovu funkciju." -#: frontend/src/components/CourseOutline.vue:324 +#: frontend/src/components/CourseOutline.vue:325 msgid "Please enroll for this course to view this lesson" msgstr "Prijavi se za ovaj kurs da prikažete ovu lekciju" @@ -4063,7 +4077,7 @@ msgstr "Instaliraj aplikaciju Payments da kreirate plaćene grupe." msgid "Please install the Payments app to create a paid courses." msgstr "Instaliraj aplikaciju plaćanja da kreirate plaćene kurseve." -#: frontend/src/pages/Billing.vue:253 +#: frontend/src/pages/Billing.vue:254 msgid "Please let us know where you heard about us from." msgstr "Recite nam odakle ste čuli za nas." @@ -4112,7 +4126,7 @@ msgstr "Odaberi vremensku zonu." msgid "Please take appropriate action at {0}" msgstr "Poduzmi odgovarajuće mjere na {0}" -#: frontend/src/components/Modals/ChapterModal.vue:175 +#: frontend/src/components/Modals/ChapterModal.vue:178 msgid "Please upload a SCORM package" msgstr "Učitaj SCORM Paket" @@ -4158,7 +4172,7 @@ msgstr "Objava" msgid "Postal Code" msgstr "Poštanski Broj" -#: frontend/src/pages/JobDetail.vue:107 +#: frontend/src/pages/JobDetail.vue:114 msgid "Posted on" msgstr "Objavljeno" @@ -4193,7 +4207,7 @@ msgstr "Preferirana Lokacija" msgid "Preview Image" msgstr "Pregled slike" -#: frontend/src/pages/CourseForm.vue:111 +#: frontend/src/pages/CourseForm.vue:107 msgid "Preview Video" msgstr "Pregledaj Video" @@ -4208,7 +4222,7 @@ msgid "Pricing" msgstr "Određivanje Cijena" #. Label of the pricing_tab (Tab Break) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:202 +#: frontend/src/pages/CourseForm.vue:198 #: lms/lms/doctype/lms_course/lms_course.json msgid "Pricing and Certification" msgstr "Cijene i Certifikati" @@ -4272,6 +4286,10 @@ msgstr "Član Programa" msgid "Program Members" msgstr "Članovi Programa" +#: frontend/src/pages/Programs.vue:219 lms/www/lms.py:273 +msgid "Programs" +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/BatchStudents.vue:75 @@ -4301,7 +4319,7 @@ msgstr "Objavi na Stranici Učesnika" #. Label of the published (Check) field in DocType 'LMS Course' #: frontend/src/components/Modals/BulkCertificates.vue:51 #: frontend/src/components/Modals/Event.vue:108 -#: frontend/src/pages/BatchForm.vue:27 frontend/src/pages/CourseForm.vue:172 +#: frontend/src/pages/BatchForm.vue:27 frontend/src/pages/CourseForm.vue:168 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/public/js/common_functions.js:266 @@ -4314,7 +4332,7 @@ msgid "Published Courses" msgstr "Objavljeni Kursevi" #. Label of the published_on (Date) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:176 +#: frontend/src/pages/CourseForm.vue:172 #: lms/lms/doctype/lms_course/lms_course.json msgid "Published On" msgstr "Objavljeno dana" @@ -4333,7 +4351,7 @@ msgstr "Kupljeni Certifikat" #. Label of the question (Text) field in DocType 'LMS Quiz Result' #: frontend/src/components/Assignment.vue:20 #: frontend/src/components/Modals/Question.vue:38 -#: frontend/src/pages/AssignmentForm.vue:45 frontend/src/pages/QuizForm.vue:385 +#: frontend/src/pages/AssignmentForm.vue:45 frontend/src/pages/QuizForm.vue:388 #: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/lms_assignment/lms_assignment.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json @@ -4358,11 +4376,11 @@ msgstr "Detalj Pitanja" msgid "Question Name" msgstr "Naziv Pitanja" -#: frontend/src/components/Modals/Question.vue:267 +#: frontend/src/components/Modals/Question.vue:270 msgid "Question added successfully" msgstr "Pitanje je uspješno dodano" -#: frontend/src/components/Modals/Question.vue:319 +#: frontend/src/components/Modals/Question.vue:322 msgid "Question updated successfully" msgstr "Pitanje je uspješno ažurirano" @@ -4379,7 +4397,7 @@ msgstr "Pitanje {0} od {1}" msgid "Questions" msgstr "Pitanja" -#: frontend/src/pages/QuizForm.vue:427 +#: frontend/src/pages/QuizForm.vue:430 msgid "Questions deleted successfully" msgstr "Pitanja su uspješno izbrisana" @@ -4397,13 +4415,13 @@ msgid "Quiz ID" msgstr "Kviz ID" #. Label of a Link in the LMS Workspace -#: frontend/src/pages/QuizPage.vue:56 frontend/src/pages/QuizPage.vue:62 -#: lms/lms/workspace/lms/lms.json +#: frontend/src/pages/QuizPage.vue:57 lms/lms/workspace/lms/lms.json msgid "Quiz Submission" msgstr "Podnošenje Kviza" -#: frontend/src/pages/QuizSubmission.vue:128 -#: frontend/src/pages/QuizSubmissionList.vue:106 +#: frontend/src/pages/QuizSubmission.vue:131 +#: frontend/src/pages/QuizSubmissionList.vue:122 +#: frontend/src/pages/QuizSubmissionList.vue:127 msgid "Quiz Submissions" msgstr "Prijave za Kviz" @@ -4416,7 +4434,7 @@ msgstr "Sažetak Kviza" msgid "Quiz Title" msgstr "Naziv Kviza" -#: frontend/src/pages/QuizForm.vue:339 +#: frontend/src/pages/QuizForm.vue:342 msgid "Quiz created successfully" msgstr "Kviz je uspješno kreiran" @@ -4424,7 +4442,7 @@ msgstr "Kviz je uspješno kreiran" msgid "Quiz is not available to Guest users. Please login to continue." msgstr "Kviz nije dostupan gostima. Prijavi se da nastaviš." -#: frontend/src/pages/QuizForm.vue:358 +#: frontend/src/pages/QuizForm.vue:361 msgid "Quiz updated successfully" msgstr "Kviz je uspješno ažuriran" @@ -4434,8 +4452,8 @@ msgid "Quiz will appear at the bottom of the lesson." msgstr "Kviz će se pojaviti na dnu lekcije." #: frontend/src/components/AppSidebar.vue:530 -#: frontend/src/pages/QuizForm.vue:438 frontend/src/pages/Quizzes.vue:138 -#: frontend/src/pages/Quizzes.vue:148 +#: frontend/src/pages/QuizForm.vue:441 frontend/src/pages/Quizzes.vue:140 +#: frontend/src/pages/Quizzes.vue:150 lms/www/lms.py:229 msgid "Quizzes" msgstr "Kvizovi" @@ -4513,7 +4531,7 @@ msgstr "Odbijeno" msgid "Related Courses" msgstr "Povezani Kursevi" -#: frontend/src/pages/BatchForm.vue:77 frontend/src/pages/CourseForm.vue:100 +#: frontend/src/pages/BatchForm.vue:77 frontend/src/pages/CourseForm.vue:96 msgid "Remove" msgstr "Ukloni" @@ -4607,7 +4625,7 @@ msgstr "Red #{0} Vrijeme početka ne može biti kasnije ili isto vremenu završe msgid "Row #{0} Start time cannot be outside the batch duration." msgstr "Red #{0} Vrijeme početka ne može biti izvan trajanja grupe." -#: lms/lms/doctype/lms_quiz/lms_quiz.py:34 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:32 msgid "Rows {0} have the duplicate questions." msgstr "Redovi {0} imaju dupla pitanja." @@ -4631,6 +4649,11 @@ msgstr "SCORM Paket" msgid "SCORM Package Path" msgstr "SCORM Paket Put" +#. Label of the seo_tab (Tab Break) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "SEO" +msgstr "SEO" + #. Option for the 'Day' (Select) field in DocType 'Evaluator Schedule' #. Option for the 'Day' (Select) field in DocType 'LMS Certificate Request' #: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json @@ -4644,7 +4667,7 @@ msgstr "Subota" #: frontend/src/components/Modals/Event.vue:101 #: frontend/src/components/Modals/Event.vue:129 #: frontend/src/pages/AssignmentForm.vue:21 frontend/src/pages/BatchForm.vue:8 -#: frontend/src/pages/CourseForm.vue:21 frontend/src/pages/JobCreation.vue:8 +#: frontend/src/pages/CourseForm.vue:17 frontend/src/pages/JobCreation.vue:8 #: frontend/src/pages/LessonForm.vue:14 frontend/src/pages/ProgramForm.vue:7 #: frontend/src/pages/QuizForm.vue:34 frontend/src/pages/QuizSubmission.vue:14 #: lms/public/js/common_functions.js:405 @@ -4673,7 +4696,7 @@ msgstr "Obim" #. Label of the score (Int) field in DocType 'LMS Quiz Submission' #: frontend/src/pages/QuizSubmission.vue:39 -#: frontend/src/pages/QuizSubmissionList.vue:91 +#: frontend/src/pages/QuizSubmissionList.vue:107 #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json #: lms/templates/quiz/quiz.html:148 msgid "Score" @@ -4767,7 +4790,7 @@ msgstr "Postavljanje Platnog Prolaza" #: frontend/src/components/AppSidebar.vue:556 #: frontend/src/components/Modals/Settings.vue:7 -#: frontend/src/pages/BatchForm.vue:148 frontend/src/pages/CourseForm.vue:162 +#: frontend/src/pages/BatchForm.vue:148 frontend/src/pages/CourseForm.vue:158 #: frontend/src/pages/ProfileRoles.vue:4 frontend/src/pages/QuizForm.vue:79 msgid "Settings" msgstr "Postavke" @@ -4781,7 +4804,7 @@ msgid "Short Description" msgstr "Kratki Opis" #. Label of the short_introduction (Small Text) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:39 +#: frontend/src/pages/CourseForm.vue:35 #: lms/lms/doctype/lms_course/lms_course.json msgid "Short Introduction" msgstr "Kratki Uvod" @@ -4892,10 +4915,6 @@ msgstr "Vještine" msgid "Skip" msgstr "Preskoči" -#: frontend/src/components/OnboardingBanner.vue:3 -msgid "Skip Onboarding" -msgstr "Preskoči Uvod" - #: lms/lms/doctype/course_evaluator/course_evaluator.py:63 msgid "Slot Times are overlapping for some schedules." msgstr "Vremena termina se preklapaju za neke rasporede." @@ -5009,8 +5028,9 @@ msgstr "Zemlja" #. Label of the tab_4_tab (Tab Break) field in DocType 'LMS Course' #. Label of the statistics (Check) field in DocType 'LMS Settings' #: frontend/src/components/BatchStudents.vue:5 +#: frontend/src/pages/Statistics.vue:322 #: lms/lms/doctype/lms_course/lms_course.json -#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:136 +#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:182 msgid "Statistics" msgstr "Statistika" @@ -5110,7 +5130,7 @@ msgstr "Predaja od" #: frontend/src/components/Modals/AssessmentModal.vue:9 #: frontend/src/components/Modals/BatchCourseModal.vue:9 #: frontend/src/components/Modals/EvaluationModal.vue:9 -#: frontend/src/components/Modals/Question.vue:341 +#: frontend/src/components/Modals/Question.vue:344 #: frontend/src/components/Quiz.vue:218 lms/templates/assignment.html:9 #: lms/templates/livecode/extension_footer.html:25 #: lms/templates/quiz/quiz.html:128 lms/templates/reviews.html:163 @@ -5135,18 +5155,18 @@ msgstr "Predano {0}" #: frontend/src/components/Modals/AnnouncementModal.vue:99 #: frontend/src/components/Modals/AssessmentModal.vue:73 #: frontend/src/components/Modals/BulkCertificates.vue:121 -#: frontend/src/components/Modals/ChapterModal.vue:151 -#: frontend/src/components/Modals/ChapterModal.vue:196 +#: frontend/src/components/Modals/ChapterModal.vue:154 +#: frontend/src/components/Modals/ChapterModal.vue:199 #: frontend/src/components/Modals/Event.vue:255 #: frontend/src/components/Modals/Event.vue:310 -#: frontend/src/components/Modals/Question.vue:267 -#: frontend/src/components/Modals/Question.vue:318 -#: frontend/src/pages/AssignmentForm.vue:155 -#: frontend/src/pages/CourseForm.vue:472 frontend/src/pages/ProgramForm.vue:229 -#: frontend/src/pages/ProgramForm.vue:251 -#: frontend/src/pages/ProgramForm.vue:272 -#: frontend/src/pages/ProgramForm.vue:298 frontend/src/pages/QuizForm.vue:339 -#: frontend/src/pages/QuizForm.vue:358 frontend/src/pages/QuizForm.vue:427 +#: frontend/src/components/Modals/Question.vue:270 +#: frontend/src/components/Modals/Question.vue:321 +#: frontend/src/pages/AssignmentForm.vue:158 +#: frontend/src/pages/CourseForm.vue:470 frontend/src/pages/ProgramForm.vue:232 +#: frontend/src/pages/ProgramForm.vue:254 +#: frontend/src/pages/ProgramForm.vue:275 +#: frontend/src/pages/ProgramForm.vue:301 frontend/src/pages/QuizForm.vue:342 +#: frontend/src/pages/QuizForm.vue:361 frontend/src/pages/QuizForm.vue:430 msgid "Success" msgstr "Uspjeh" @@ -5164,7 +5184,7 @@ msgstr "Sažetak" msgid "Sunday" msgstr "Nedjelja" -#: lms/lms/api.py:1026 +#: lms/lms/api.py:1027 msgid "Suspicious pattern found in {0}: {1}" msgstr "Sumnjiva mustra pronađena u {0}: {1}" @@ -5220,7 +5240,7 @@ msgid "System Manager" msgstr "Upravitelj Sistema" #. Label of the tags (Data) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:121 +#: frontend/src/pages/CourseForm.vue:117 #: lms/lms/doctype/lms_course/lms_course.json msgid "Tags" msgstr "Oznake" @@ -5325,6 +5345,10 @@ msgstr "U ovom kursu nema poglavlja. Kreiraj i upravljaj poglavljima odavde." msgid "There are no courses matching the criteria. Keep an eye out, fresh learning experiences are on the way soon!" msgstr "Nema kurseva koji odgovaraju kriterijumima. Pazite, nova iskustva učenja su uskoro na putu!" +#: frontend/src/pages/Jobs.vue:84 +msgid "There are no jobs available at the moment. Open a job opportunity or check here again later." +msgstr "Trenutno nema slobodnih poslova. Otvori priliku za posao ili provjeri ovdje ponovo kasnije." + #: frontend/src/pages/CertifiedParticipants.vue:92 msgid "There are no participants matching this criteria." msgstr "Nema učesnika koji zadovoljavaju ovaj kriterijum." @@ -5384,9 +5408,11 @@ msgstr "Ovaj kurs ima:" msgid "This course is free." msgstr "Ovaj kurs je besplatan." -#: frontend/src/pages/SCORMChapter.vue:201 -msgid "This is a chapter in the course {0}" -msgstr "Ovo je poglavlje kursa {0}" +#. Description of the 'Meta Description' (Small Text) field in DocType 'LMS +#. Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "This description will be shown on lists and pages without meta description" +msgstr "Ovaj opis će biti prikazan na listama i stranicama bez meta opisa" #: frontend/src/pages/Lesson.vue:16 msgid "This lesson is not available for preview. Please enroll in the course to access it." @@ -5482,10 +5508,10 @@ msgstr "Vremena:" #: frontend/src/components/Modals/DiscussionModal.vue:18 #: frontend/src/components/Modals/LiveClassModal.vue:23 #: frontend/src/pages/AssignmentForm.vue:32 -#: frontend/src/pages/Assignments.vue:152 frontend/src/pages/BatchForm.vue:19 -#: frontend/src/pages/CourseForm.vue:33 frontend/src/pages/JobCreation.vue:20 +#: frontend/src/pages/Assignments.vue:155 frontend/src/pages/BatchForm.vue:19 +#: frontend/src/pages/CourseForm.vue:29 frontend/src/pages/JobCreation.vue:20 #: frontend/src/pages/ProgramForm.vue:11 frontend/src/pages/Programs.vue:116 -#: frontend/src/pages/QuizForm.vue:48 frontend/src/pages/Quizzes.vue:116 +#: frontend/src/pages/QuizForm.vue:48 frontend/src/pages/Quizzes.vue:118 #: lms/lms/doctype/cohort/cohort.json #: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json #: lms/lms/doctype/cohort_web_page/cohort_web_page.json @@ -5507,7 +5533,7 @@ msgstr "Vremena:" msgid "Title" msgstr "Naziv" -#: frontend/src/components/Modals/ChapterModal.vue:172 +#: frontend/src/components/Modals/ChapterModal.vue:175 msgid "Title is required" msgstr "Naziv je obavezan" @@ -5539,7 +5565,7 @@ msgid "Total" msgstr "Ukupno" #. Label of the total_marks (Int) field in DocType 'LMS Quiz' -#: frontend/src/pages/QuizForm.vue:67 frontend/src/pages/Quizzes.vue:121 +#: frontend/src/pages/QuizForm.vue:67 frontend/src/pages/Quizzes.vue:123 #: lms/lms/doctype/lms_quiz/lms_quiz.json msgid "Total Marks" msgstr "Ukupno Bodova" @@ -5577,7 +5603,7 @@ msgstr "Twitter" #: frontend/src/components/Modals/AssessmentModal.vue:22 #: frontend/src/components/Modals/Question.vue:54 #: frontend/src/pages/AssignmentForm.vue:39 -#: frontend/src/pages/Assignments.vue:30 frontend/src/pages/Assignments.vue:157 +#: frontend/src/pages/Assignments.vue:30 frontend/src/pages/Assignments.vue:160 #: frontend/src/pages/JobCreation.vue:33 frontend/src/pages/Jobs.vue:55 #: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/lms/doctype/lms_assignment/lms_assignment.json @@ -5624,7 +5650,7 @@ msgstr "Pod Recenzijom" msgid "Unlisted" msgstr "Neizlistane" -#: frontend/src/pages/Batches.vue:293 +#: frontend/src/pages/Batches.vue:295 msgid "Unpublished" msgstr "Neobjavljeno" @@ -5646,8 +5672,8 @@ msgstr "Nestrukturirana Uloga" #. Option for the 'Status' (Select) field in DocType 'Cohort' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request' #. Label of the upcoming (Check) field in DocType 'LMS Course' -#: frontend/src/pages/Batches.vue:291 frontend/src/pages/CourseForm.vue:185 -#: frontend/src/pages/Courses.vue:284 lms/lms/doctype/cohort/cohort.json +#: frontend/src/pages/Batches.vue:293 frontend/src/pages/CourseForm.vue:181 +#: frontend/src/pages/Courses.vue:287 lms/lms/doctype/cohort/cohort.json #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_course/lms_course.json msgid "Upcoming" @@ -5672,7 +5698,7 @@ msgstr "Ažuriraj" msgid "Update Password" msgstr "Ažuriraj Lozinku" -#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:81 +#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:77 msgid "Upload" msgstr "Učitaj" @@ -5778,6 +5804,10 @@ msgstr "Vidljivost" msgid "Visit Batch" msgstr "Posjeti Grupu" +#: frontend/src/pages/JobDetail.vue:38 +msgid "Visit Website" +msgstr "Posjeti Web Stranicu" + #: lms/templates/emails/batch_confirmation.html:23 msgid "Visit the following link to view your " msgstr "Posjeti sljedeću vezu da vidite svoje " @@ -5899,7 +5929,7 @@ msgstr "Niste član ove grupe. Provjerite naše nadolazeće grupe." msgid "You are not a mentor of the course {0}" msgstr "Niste mentor kursa {0}" -#: frontend/src/components/CourseOutline.vue:323 +#: frontend/src/components/CourseOutline.vue:324 msgid "You are not enrolled" msgstr "Niste upisani" @@ -6123,11 +6153,7 @@ msgstr "od" msgid "out of" msgstr "od" -#: frontend/src/components/JobCard.vue:30 -msgid "posted" -msgstr "objavljeno" - -#: frontend/src/pages/QuizForm.vue:386 +#: frontend/src/pages/QuizForm.vue:389 msgid "question_detail" msgstr "pitanje_detalj" @@ -6147,7 +6173,7 @@ msgstr "sedmice" msgid "you can" msgstr "možeš" -#: lms/lms/api.py:816 lms/lms/api.py:824 +#: lms/lms/api.py:817 lms/lms/api.py:825 msgid "{0} Settings not found" msgstr "{0} Postavke nisu pronađene" diff --git a/lms/locale/de.po b/lms/locale/de.po index 646d86c6..71bca6c4 100644 --- a/lms/locale/de.po +++ b/lms/locale/de.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n" -"POT-Creation-Date: 2025-04-04 16:04+0000\n" -"PO-Revision-Date: 2025-04-09 04:33\n" +"POT-Creation-Date: 2025-04-11 16:04+0000\n" +"PO-Revision-Date: 2025-04-14 06:01\n" "Last-Translator: jannat@frappe.io\n" "Language-Team: German\n" "MIME-Version: 1.0\n" @@ -71,7 +71,7 @@ msgstr "" msgid "A course cannot have both paid certificate and certificate of completion." msgstr "" -#: frontend/src/pages/CourseForm.vue:41 +#: frontend/src/pages/CourseForm.vue:37 msgid "A one line introduction to the course that appears on the course card" msgstr "" @@ -145,7 +145,6 @@ msgid "Add a Student" msgstr "Schüler hinzufügen" #: frontend/src/components/AppSidebar.vue:514 -#: frontend/src/components/OnboardingBanner.vue:56 msgid "Add a chapter" msgstr "" @@ -153,16 +152,15 @@ msgstr "" msgid "Add a course" msgstr "Kurs hinzufügen" -#: frontend/src/pages/CourseForm.vue:137 +#: frontend/src/pages/CourseForm.vue:133 msgid "Add a keyword and then press enter" msgstr "" #: frontend/src/components/AppSidebar.vue:515 -#: frontend/src/components/OnboardingBanner.vue:81 msgid "Add a lesson" msgstr "" -#: frontend/src/components/Modals/Question.vue:146 +#: frontend/src/components/Modals/Question.vue:147 #: frontend/src/pages/QuizForm.vue:183 msgid "Add a new question" msgstr "" @@ -235,7 +233,7 @@ msgid "Admin" msgstr "Admin" #. Name of a role -#: frontend/src/pages/Batches.vue:282 lms/lms/doctype/lms_badge/lms_badge.json +#: frontend/src/pages/Batches.vue:284 lms/lms/doctype/lms_badge/lms_badge.json msgid "All" msgstr "Alle" @@ -259,7 +257,7 @@ msgstr "" msgid "All Submissions" msgstr "Alle Einsendungen" -#: lms/lms/doctype/lms_quiz/lms_quiz.py:46 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:44 msgid "All questions should have the same marks if the limit is set." msgstr "Alle Fragen sollten die gleiche Punktzahl haben, wenn das Limit festgelegt ist." @@ -294,7 +292,7 @@ msgstr "Bereits registriert" #. Label of the amount (Currency) field in DocType 'LMS Batch' #. Label of the course_price (Currency) field in DocType 'LMS Course' #. Label of the amount (Currency) field in DocType 'LMS Payment' -#: frontend/src/pages/BatchForm.vue:209 frontend/src/pages/CourseForm.vue:221 +#: frontend/src/pages/BatchForm.vue:209 frontend/src/pages/CourseForm.vue:217 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_payment/lms_payment.json @@ -346,7 +344,7 @@ msgstr "" msgid "Answer" msgstr "Antwort" -#: frontend/src/pages/CourseForm.vue:85 frontend/src/pages/CourseForm.vue:103 +#: frontend/src/pages/CourseForm.vue:81 frontend/src/pages/CourseForm.vue:99 msgid "Appears on the course card in the course list" msgstr "" @@ -354,11 +352,11 @@ msgstr "" msgid "Appears when the batch URL is shared on any online platform" msgstr "" -#: frontend/src/pages/JobDetail.vue:121 +#: frontend/src/pages/JobDetail.vue:128 msgid "Applications Received" msgstr "Empfangene Anwendungen" -#: frontend/src/pages/JobDetail.vue:42 +#: frontend/src/pages/JobDetail.vue:48 msgid "Apply" msgstr "Anwenden" @@ -389,7 +387,7 @@ msgstr "Genehmigt" msgid "Apps" msgstr "Apps" -#: frontend/src/pages/Batches.vue:292 +#: frontend/src/pages/Batches.vue:294 msgid "Archived" msgstr "Archiviert" @@ -399,12 +397,7 @@ msgstr "" #: frontend/src/components/UserDropdown.vue:175 msgid "Are you sure you want to login to your Frappe Cloud dashboard?" -msgstr "" - -#. Label of the user_category (Check) field in DocType 'LMS Settings' -#: lms/lms/doctype/lms_settings/lms_settings.json -msgid "Ask User Category during Signup" -msgstr "Benutzerkategorie bei der Anmeldung erfragen" +msgstr "Möchten Sie sich wirklich bei Ihrem Frappe Cloud-Dashboard anmelden?" #. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch' #. Label of the assessment (Table) field in DocType 'LMS Batch' @@ -470,6 +463,10 @@ msgstr "Aufgabenanhang" msgid "Assignment Submission Template" msgstr "Vorlage für Aufgabeneinreichung" +#: frontend/src/pages/AssignmentSubmissionList.vue:223 +msgid "Assignment Submissions" +msgstr "" + #. Label of the assignment_title (Data) field in DocType 'LMS Assignment #. Submission' #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json @@ -480,7 +477,7 @@ msgstr "Aufgabentitel" msgid "Assignment for Lesson {0} by {1} already exists." msgstr "Die Aufgabe für Lektion {0} von {1} existiert bereits." -#: frontend/src/pages/AssignmentForm.vue:155 +#: frontend/src/pages/AssignmentForm.vue:158 msgid "Assignment saved successfully" msgstr "" @@ -490,7 +487,8 @@ msgid "Assignment will appear at the bottom of the lesson." msgstr "Die Aufgabe wird unten in der Lektion angezeigt." #: frontend/src/components/AppSidebar.vue:531 -#: frontend/src/pages/AssignmentForm.vue:174 +#: frontend/src/pages/AssignmentForm.vue:177 +#: frontend/src/pages/Assignments.vue:193 lms/www/lms.py:251 msgid "Assignments" msgstr "Zuordnungen" @@ -656,8 +654,8 @@ msgid "Batch:" msgstr "Charge:" #. Label of the batches (Check) field in DocType 'LMS Settings' -#: frontend/src/pages/Batches.vue:302 -#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:63 +#: frontend/src/pages/Batches.vue:304 frontend/src/pages/Batches.vue:311 +#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:105 msgid "Batches" msgstr "" @@ -675,7 +673,7 @@ msgstr "Herzliche Grüße" #. Label of the billing_details_section (Section Break) field in DocType 'LMS #. Payment' -#: frontend/src/pages/Billing.vue:8 +#: frontend/src/pages/Billing.vue:8 frontend/src/pages/Billing.vue:363 #: lms/lms/doctype/lms_payment/lms_payment.json msgid "Billing Details" msgstr "Rechnungsdetails" @@ -757,8 +755,9 @@ msgstr "" #. Label of the category (Link) field in DocType 'LMS Course' #: frontend/src/pages/BatchForm.vue:190 frontend/src/pages/Batches.vue:55 #: frontend/src/pages/CertifiedParticipants.vue:37 -#: frontend/src/pages/CourseForm.vue:148 frontend/src/pages/Courses.vue:51 -#: frontend/src/pages/JobDetail.vue:96 lms/lms/doctype/lms_batch/lms_batch.json +#: frontend/src/pages/CourseForm.vue:144 frontend/src/pages/Courses.vue:51 +#: frontend/src/pages/JobDetail.vue:103 +#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/public/js/common_functions.js:316 lms/templates/signup-form.html:22 @@ -813,7 +812,7 @@ msgstr "" #: frontend/src/components/Modals/Event.vue:371 #: frontend/src/pages/BatchForm.vue:37 frontend/src/pages/Batches.vue:38 #: frontend/src/pages/CourseCertification.vue:10 -#: frontend/src/pages/CourseCertification.vue:133 +#: frontend/src/pages/CourseCertification.vue:135 #: frontend/src/pages/Courses.vue:34 lms/fixtures/custom_field.json #: lms/lms/doctype/certification/certification.json #: lms/lms/doctype/lms_batch/lms_batch.json @@ -837,7 +836,8 @@ msgid "Certified" msgstr "" #. Label of the certified_participants (Check) field in DocType 'LMS Settings' -#: frontend/src/pages/CertifiedParticipants.vue:161 +#: frontend/src/pages/CertifiedParticipants.vue:164 +#: frontend/src/pages/CertifiedParticipants.vue:171 #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Certified Participants" msgstr "Zertifizierte Teilnehmer" @@ -864,11 +864,11 @@ msgstr "Kapitel" msgid "Chapter Reference" msgstr "Kapitelreferenz" -#: frontend/src/components/Modals/ChapterModal.vue:152 +#: frontend/src/components/Modals/ChapterModal.vue:155 msgid "Chapter added successfully" msgstr "" -#: frontend/src/components/Modals/ChapterModal.vue:196 +#: frontend/src/components/Modals/ChapterModal.vue:199 msgid "Chapter updated successfully" msgstr "" @@ -1117,7 +1117,7 @@ msgid "Completed by Students" msgstr "" #. Label of the enable_certification (Check) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:213 +#: frontend/src/pages/CourseForm.vue:209 #: lms/lms/doctype/lms_course/lms_course.json msgid "Completion Certificate" msgstr "" @@ -1179,7 +1179,7 @@ msgid "Continue Learning" msgstr "" #. Option for the 'Type' (Select) field in DocType 'Job Opportunity' -#: frontend/src/pages/Jobs.vue:146 +#: frontend/src/pages/Jobs.vue:163 #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Contract" msgstr "Vertrag" @@ -1294,6 +1294,7 @@ msgstr "Abgeschlossene Kurse" #. Name of a role #: frontend/src/pages/ProfileRoles.vue:16 #: lms/lms/doctype/course_chapter/course_chapter.json +#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_program/lms_program.json @@ -1307,7 +1308,7 @@ msgstr "Kursersteller" msgid "Course Data" msgstr "Kursdaten" -#: frontend/src/pages/CourseForm.vue:50 +#: frontend/src/pages/CourseForm.vue:46 msgid "Course Description" msgstr "Kursbeschreibung" @@ -1316,7 +1317,7 @@ msgstr "Kursbeschreibung" msgid "Course Evaluator" msgstr "Kursbewerter" -#: frontend/src/pages/CourseForm.vue:63 +#: frontend/src/pages/CourseForm.vue:59 msgid "Course Image" msgstr "Kursbild" @@ -1330,7 +1331,7 @@ msgstr "Kursleiter" msgid "Course Lesson" msgstr "Kurslektion" -#: lms/www/lms.py:30 +#: lms/www/lms.py:70 msgid "Course List" msgstr "Kursliste" @@ -1338,7 +1339,7 @@ msgstr "Kursliste" msgid "Course Name" msgstr "Kursname" -#: frontend/src/pages/CourseDetail.vue:76 frontend/src/pages/CourseForm.vue:241 +#: frontend/src/pages/CourseDetail.vue:76 frontend/src/pages/CourseForm.vue:237 msgid "Course Outline" msgstr "" @@ -1370,7 +1371,7 @@ msgstr "Kurs-Statistiken" msgid "Course Title" msgstr "Kurstitel" -#: frontend/src/pages/ProgramForm.vue:229 +#: frontend/src/pages/ProgramForm.vue:232 msgid "Course added to program" msgstr "" @@ -1378,11 +1379,11 @@ msgstr "" msgid "Course already added to the batch." msgstr "" -#: frontend/src/pages/CourseForm.vue:472 +#: frontend/src/pages/CourseForm.vue:470 msgid "Course deleted successfully" msgstr "" -#: frontend/src/pages/ProgramForm.vue:298 +#: frontend/src/pages/ProgramForm.vue:301 msgid "Course moved successfully" msgstr "" @@ -1400,8 +1401,9 @@ msgstr "" #: frontend/src/components/BatchStudents.vue:92 #: frontend/src/components/Modals/BatchStudentProgress.vue:79 #: frontend/src/pages/BatchDetail.vue:21 frontend/src/pages/BatchDetail.vue:70 -#: frontend/src/pages/CourseCertification.vue:125 -#: frontend/src/pages/Courses.vue:301 frontend/src/pages/Statistics.vue:21 +#: frontend/src/pages/CourseCertification.vue:127 +#: frontend/src/pages/Courses.vue:304 frontend/src/pages/Courses.vue:311 +#: frontend/src/pages/Statistics.vue:21 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Courses" @@ -1443,7 +1445,6 @@ msgid "Create a batch" msgstr "" #: frontend/src/components/AppSidebar.vue:513 -#: frontend/src/components/OnboardingBanner.vue:30 msgid "Create a course" msgstr "" @@ -1467,7 +1468,7 @@ msgstr "" msgid "Create your first quiz" msgstr "" -#: frontend/src/pages/Assignments.vue:163 frontend/src/pages/Courses.vue:292 +#: frontend/src/pages/Assignments.vue:166 frontend/src/pages/Courses.vue:295 msgid "Created" msgstr "Erstellt" @@ -1482,7 +1483,7 @@ msgstr "" #. Label of the currency (Link) field in DocType 'LMS Batch' #. Label of the currency (Link) field in DocType 'LMS Course' #. Label of the currency (Link) field in DocType 'LMS Payment' -#: frontend/src/pages/BatchForm.vue:217 frontend/src/pages/CourseForm.vue:226 +#: frontend/src/pages/BatchForm.vue:217 frontend/src/pages/CourseForm.vue:222 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_payment/lms_payment.json @@ -1585,9 +1586,9 @@ msgstr "Standardwährung" msgid "Degree Type" msgstr "Abschlussart" -#: frontend/src/components/CourseOutline.vue:247 -#: frontend/src/components/CourseOutline.vue:305 -#: frontend/src/pages/CourseForm.vue:485 +#: frontend/src/components/CourseOutline.vue:248 +#: frontend/src/components/CourseOutline.vue:306 +#: frontend/src/pages/CourseForm.vue:483 msgid "Delete" msgstr "Löschen" @@ -1595,27 +1596,27 @@ msgstr "Löschen" msgid "Delete Chapter" msgstr "" -#: frontend/src/pages/CourseForm.vue:479 +#: frontend/src/pages/CourseForm.vue:477 msgid "Delete Course" msgstr "" -#: frontend/src/components/CourseOutline.vue:299 +#: frontend/src/components/CourseOutline.vue:300 msgid "Delete this chapter?" msgstr "" -#: frontend/src/components/CourseOutline.vue:241 +#: frontend/src/components/CourseOutline.vue:242 msgid "Delete this lesson?" msgstr "" -#: frontend/src/pages/CourseForm.vue:480 +#: frontend/src/pages/CourseForm.vue:478 msgid "Deleting the course will also delete all its chapters and lessons. Are you sure you want to delete this course?" msgstr "" -#: frontend/src/components/CourseOutline.vue:300 +#: frontend/src/components/CourseOutline.vue:301 msgid "Deleting this chapter will also delete all its lessons and permanently remove it from the course. This action cannot be undone. Are you sure you want to continue?" msgstr "" -#: frontend/src/components/CourseOutline.vue:242 +#: frontend/src/components/CourseOutline.vue:243 msgid "Deleting this lesson will permanently remove it from the course. This action cannot be undone. Are you sure you want to continue?" msgstr "" @@ -1650,15 +1651,15 @@ msgstr "Beschreibung" #: frontend/src/components/Apps.vue:51 msgid "Desk" -msgstr "" +msgstr "Schreibtisch" #: frontend/src/components/Modals/DiscussionModal.vue:22 #: frontend/src/pages/AssignmentForm.vue:27 frontend/src/pages/BatchForm.vue:14 -#: frontend/src/pages/CourseForm.vue:29 frontend/src/pages/QuizForm.vue:42 +#: frontend/src/pages/CourseForm.vue:25 frontend/src/pages/QuizForm.vue:42 msgid "Details" msgstr "Details" -#: frontend/src/pages/CourseForm.vue:195 +#: frontend/src/pages/CourseForm.vue:191 msgid "Disable Self Enrollment" msgstr "Selbstregistrierung deaktivieren" @@ -1667,6 +1668,11 @@ msgstr "Selbstregistrierung deaktivieren" msgid "Disable Self Learning" msgstr "Selbstlernen deaktivieren" +#. Label of the disable_signup (Check) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Disable Signup" +msgstr "" + #. Label of the disabled (Check) field in DocType 'Job Opportunity' #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Disabled" @@ -1808,7 +1814,7 @@ msgstr "Mitarbeiter" msgid "Enable" msgstr "ermöglichen" -#: lms/lms/doctype/lms_settings/lms_settings.py:20 +#: lms/lms/doctype/lms_settings/lms_settings.py:21 msgid "Enable Google API in Google Settings to send calendar invites for evaluations." msgstr "Aktivieren Sie die Google API in den Google-Einstellungen, um Kalendereinladungen für Bewertungen zu versenden." @@ -1867,7 +1873,7 @@ msgstr "Endzeit" msgid "Enroll Now" msgstr "" -#: frontend/src/pages/Batches.vue:295 frontend/src/pages/Courses.vue:294 +#: frontend/src/pages/Batches.vue:297 frontend/src/pages/Courses.vue:297 msgid "Enrolled" msgstr "" @@ -1902,7 +1908,7 @@ msgstr "" msgid "Enrollments" msgstr "Einschreibungen" -#: lms/lms/doctype/lms_settings/lms_settings.py:25 +#: lms/lms/doctype/lms_settings/lms_settings.py:26 msgid "Enter Client Id and Client Secret in Google Settings to send calendar invites for evaluations." msgstr "Geben Sie die Client-Id und das Client-Geheimnis in den Google-Einstellungen ein, um Kalendereinladungen für Bewertungen zu versenden." @@ -1921,19 +1927,19 @@ msgstr "Geben Sie die richtige Antwort ein" #: frontend/src/components/Assignment.vue:287 #: frontend/src/components/Modals/AnnouncementModal.vue:105 #: frontend/src/components/Modals/BulkCertificates.vue:115 -#: frontend/src/components/Modals/ChapterModal.vue:157 -#: frontend/src/components/Modals/ChapterModal.vue:164 -#: frontend/src/components/Modals/ChapterModal.vue:200 -#: frontend/src/components/Modals/Question.vue:251 -#: frontend/src/components/Modals/Question.vue:272 -#: frontend/src/components/Modals/Question.vue:329 -#: frontend/src/components/Modals/StudentModal.vue:70 +#: frontend/src/components/Modals/ChapterModal.vue:160 +#: frontend/src/components/Modals/ChapterModal.vue:167 +#: frontend/src/components/Modals/ChapterModal.vue:203 +#: frontend/src/components/Modals/Question.vue:252 +#: frontend/src/components/Modals/Question.vue:275 +#: frontend/src/components/Modals/Question.vue:332 +#: frontend/src/components/Modals/StudentModal.vue:73 #: frontend/src/components/Quiz.vue:592 #: frontend/src/components/SettingDetails.vue:62 -#: frontend/src/pages/AssignmentForm.vue:139 -#: frontend/src/pages/AssignmentForm.vue:159 frontend/src/pages/Billing.vue:261 -#: frontend/src/pages/QuizForm.vue:346 frontend/src/pages/QuizForm.vue:361 -#: frontend/src/pages/QuizSubmission.vue:147 +#: frontend/src/pages/AssignmentForm.vue:142 +#: frontend/src/pages/AssignmentForm.vue:162 frontend/src/pages/Billing.vue:262 +#: frontend/src/pages/QuizForm.vue:349 frontend/src/pages/QuizForm.vue:364 +#: frontend/src/pages/QuizSubmission.vue:150 msgid "Error" msgstr "Fehler" @@ -1982,7 +1988,7 @@ msgstr "" #. Label of the evaluator (Link) field in DocType 'LMS Course' #: frontend/src/components/Modals/BatchCourseModal.vue:26 #: frontend/src/components/Modals/BulkCertificates.vue:22 -#: frontend/src/pages/CourseForm.vue:232 frontend/src/pages/ProfileRoles.vue:22 +#: frontend/src/pages/CourseForm.vue:228 frontend/src/pages/ProfileRoles.vue:22 #: lms/lms/doctype/batch_course/batch_course.json #: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json @@ -2100,7 +2106,7 @@ msgstr "Fehler" #. Label of the featured (Check) field in DocType 'LMS Course' #: frontend/src/components/CourseCard.vue:16 -#: frontend/src/pages/CourseForm.vue:190 +#: frontend/src/pages/CourseForm.vue:186 #: lms/lms/doctype/lms_course/lms_course.json msgid "Featured" msgstr "Vorgestellt" @@ -2149,10 +2155,6 @@ msgstr "" msgid "Flexible Time" msgstr "" -#: frontend/src/pages/QuizForm.vue:459 -msgid "Form to create and edit quizzes" -msgstr "" - #. Option for the 'Attire Preference' (Select) field in DocType 'User' #: lms/fixtures/custom_field.json msgid "Formal Wear" @@ -2163,7 +2165,7 @@ msgid "Free" msgstr "Frei" #. Option for the 'Type' (Select) field in DocType 'Job Opportunity' -#: frontend/src/pages/Jobs.vue:147 +#: frontend/src/pages/Jobs.vue:164 #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Freelance" msgstr "" @@ -2207,7 +2209,7 @@ msgid "Full Name" msgstr "Vollständiger Name" #. Option for the 'Type' (Select) field in DocType 'Job Opportunity' -#: frontend/src/pages/Jobs.vue:144 +#: frontend/src/pages/Jobs.vue:161 #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Full Time" msgstr "Vollzeit" @@ -2385,7 +2387,7 @@ msgstr "" msgid "I am unavailable" msgstr "Ich bin nicht verfügbar" -#: frontend/src/pages/QuizForm.vue:380 +#: frontend/src/pages/QuizForm.vue:383 msgid "ID" msgstr "ID" @@ -2395,6 +2397,11 @@ msgstr "ID" msgid "Icon" msgstr "Symbol" +#. Label of the user_category (Check) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Identify User Persona" +msgstr "" + #: frontend/src/components/LessonHelp.vue:11 msgid "If Include in Preview is enabled for a lesson then the lesson will also be accessible to non logged in users." msgstr "" @@ -2425,7 +2432,7 @@ msgstr "Wenn Sie Fragen haben oder Hilfe benötigen, können Sie uns gerne konta msgid "If you set an amount here, then the USD equivalent setting will not get applied." msgstr "" -#: lms/lms/doctype/lms_quiz/lms_quiz.py:63 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:61 msgid "If you want open ended questions then make sure each question in the quiz is of open ended type." msgstr "" @@ -2451,7 +2458,7 @@ msgstr "Bild" msgid "Image search powered by" msgstr "Bildsuche powered by" -#: lms/lms/doctype/lms_quiz/lms_quiz.py:221 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:219 msgid "Image: Corrupted Data Stream" msgstr "Bild: Beschädigter Datenstrom" @@ -2540,7 +2547,7 @@ msgstr "" #. Label of the instructors (Table MultiSelect) field in DocType 'LMS Batch' #. Label of the instructors (Rating) field in DocType 'LMS Batch Feedback' #. Label of the instructors (Table MultiSelect) field in DocType 'LMS Course' -#: frontend/src/pages/BatchForm.vue:93 frontend/src/pages/CourseForm.vue:155 +#: frontend/src/pages/BatchForm.vue:93 frontend/src/pages/CourseForm.vue:151 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json #: lms/lms/doctype/lms_course/lms_course.json @@ -2565,10 +2572,14 @@ msgstr "Einleitung" msgid "Invalid Invite Code." msgstr "Ungültiger Einladungscode." -#: lms/lms/doctype/course_lesson/course_lesson.py:20 +#: lms/lms/doctype/course_lesson/course_lesson.py:19 msgid "Invalid Quiz ID" msgstr "Ungültige Quiz-ID" +#: lms/lms/doctype/course_lesson/course_lesson.py:33 +msgid "Invalid Quiz ID in content" +msgstr "" + #. Label of the invite_code (Data) field in DocType 'Cohort Subgroup' #. Label of the invite_code (Data) field in DocType 'Invite Request' #: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json @@ -2607,11 +2618,6 @@ msgstr "" msgid "Is Correct" msgstr "Ist Korrekt" -#. Label of the is_onboarding_complete (Check) field in DocType 'LMS Settings' -#: lms/lms/doctype/lms_settings/lms_settings.json -msgid "Is Onboarding Complete" -msgstr "" - #. Label of the is_scorm_package (Check) field in DocType 'Course Chapter' #. Label of the is_scorm_package (Check) field in DocType 'Course Lesson' #: lms/lms/doctype/course_chapter/course_chapter.json @@ -2650,7 +2656,7 @@ msgstr "Ausgestellt am" msgid "Items in Sidebar" msgstr "Elemente in der Seitenleiste" -#: frontend/src/pages/ProgramForm.vue:272 +#: frontend/src/pages/ProgramForm.vue:275 msgid "Items removed successfully" msgstr "" @@ -2677,7 +2683,7 @@ msgstr "" msgid "Job Details" msgstr "" -#: lms/www/lms.py:111 +#: lms/www/lms.py:159 msgid "Job Openings" msgstr "Stellenausschreibungen" @@ -2700,6 +2706,7 @@ msgstr "Stellenbezeichnung" #. Label of the jobs (Check) field in DocType 'LMS Settings' #: frontend/src/pages/JobDetail.vue:10 frontend/src/pages/Jobs.vue:8 +#: frontend/src/pages/Jobs.vue:170 #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Jobs" msgstr "freie Stellen" @@ -2923,7 +2930,6 @@ msgstr "" #: lms/job/doctype/lms_job_application/lms_job_application.json #: lms/lms/doctype/cohort_join_request/cohort_join_request.json #: lms/lms/doctype/course_chapter/course_chapter.json -#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/function/function.json #: lms/lms/doctype/industry/industry.json #: lms/lms/doctype/lms_assignment/lms_assignment.json @@ -3035,7 +3041,7 @@ msgstr "Buchstabennote (z.B. A, B-)" msgid "Limit Questions To" msgstr "Fragen begrenzen auf" -#: lms/lms/doctype/lms_quiz/lms_quiz.py:40 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:38 msgid "Limit cannot be greater than or equal to the number of questions in the quiz." msgstr "Das Limit kann nicht größer oder gleich der Anzahl der Fragen im Quiz sein." @@ -3055,12 +3061,8 @@ msgstr "" msgid "Links" msgstr "Verknüpfungen" -#: frontend/src/pages/Quizzes.vue:149 -msgid "List of quizzes" -msgstr "" - #. Option for the 'Status' (Select) field in DocType 'Cohort' -#: frontend/src/pages/Courses.vue:278 lms/lms/doctype/cohort/cohort.json +#: frontend/src/pages/Courses.vue:281 lms/lms/doctype/cohort/cohort.json msgid "Live" msgstr "" @@ -3092,7 +3094,7 @@ msgstr "Lokal" #. Label of the location (Data) field in DocType 'Job Opportunity' #. Label of the location (Data) field in DocType 'Education Detail' #. Label of the location (Data) field in DocType 'Work Experience' -#: frontend/src/pages/JobCreation.vue:26 frontend/src/pages/JobDetail.vue:85 +#: frontend/src/pages/JobCreation.vue:26 frontend/src/pages/JobDetail.vue:92 #: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/lms/doctype/education_detail/education_detail.json #: lms/lms/doctype/work_experience/work_experience.json @@ -3114,7 +3116,7 @@ msgstr "Anmelden" msgid "Login to Frappe Cloud?" msgstr "Melden Sie sich bei Frappe Cloud an?" -#: frontend/src/pages/JobDetail.vue:48 +#: frontend/src/pages/JobDetail.vue:54 msgid "Login to apply" msgstr "" @@ -3171,7 +3173,7 @@ msgstr "Als gelesen markieren" #. Label of the marks (Int) field in DocType 'LMS Quiz Result' #: frontend/src/components/Modals/Question.vue:50 #: frontend/src/components/Modals/Question.vue:99 -#: frontend/src/components/Quiz.vue:96 frontend/src/pages/QuizForm.vue:390 +#: frontend/src/components/Quiz.vue:96 frontend/src/pages/QuizForm.vue:393 #: frontend/src/pages/QuizSubmission.vue:65 #: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json #: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json @@ -3233,7 +3235,7 @@ msgstr "Mittel:" #. Label of the member (Link) field in DocType 'LMS Quiz Submission' #: frontend/src/pages/AssignmentSubmissionList.vue:14 #: frontend/src/pages/QuizSubmission.vue:31 -#: frontend/src/pages/QuizSubmissionList.vue:86 +#: frontend/src/pages/QuizSubmissionList.vue:102 #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_submission/exercise_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json @@ -3314,7 +3316,7 @@ msgstr "" msgid "Member Username" msgstr "" -#: frontend/src/pages/ProgramForm.vue:251 +#: frontend/src/pages/ProgramForm.vue:254 msgid "Member added to program" msgstr "" @@ -3378,6 +3380,11 @@ msgstr "" msgid "Mentor Request Status Update Template" msgstr "" +#. Label of the meta_description (Small Text) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Meta Description" +msgstr "Meta Beschreibung" + #. Label of the meta_image (Attach Image) field in DocType 'LMS Batch' #: frontend/src/pages/BatchForm.vue:44 lms/lms/doctype/lms_batch/lms_batch.json #: lms/public/js/common_functions.js:362 @@ -3400,6 +3407,7 @@ msgstr "" #. Name of a role #: frontend/src/pages/ProfileRoles.vue:10 #: lms/lms/doctype/course_evaluator/course_evaluator.json +#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/lms_assignment/lms_assignment.json #: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json #: lms/lms/doctype/lms_batch/lms_batch.json @@ -3459,12 +3467,13 @@ msgstr "Mein Kalender" #. Option for the 'Event' (Select) field in DocType 'LMS Badge' #: frontend/src/pages/Assignments.vue:18 frontend/src/pages/Batches.vue:17 -#: frontend/src/pages/Courses.vue:17 frontend/src/pages/Courses.vue:281 +#: frontend/src/pages/Courses.vue:17 frontend/src/pages/Courses.vue:284 #: frontend/src/pages/Programs.vue:14 lms/lms/doctype/lms_badge/lms_badge.json msgid "New" msgstr "Neu" -#: frontend/src/pages/AssignmentForm.vue:178 +#: frontend/src/pages/AssignmentForm.vue:181 +#: frontend/src/pages/AssignmentForm.vue:197 msgid "New Assignment" msgstr "" @@ -3472,11 +3481,11 @@ msgstr "" msgid "New Assignment Submission" msgstr "" -#: lms/public/js/common_functions.js:255 lms/www/lms.py:89 +#: lms/public/js/common_functions.js:255 lms/www/lms.py:134 msgid "New Batch" msgstr "" -#: lms/www/lms.py:40 +#: frontend/src/pages/CourseForm.vue:577 lms/www/lms.py:78 msgid "New Course" msgstr "Neuer Kurs" @@ -3504,7 +3513,7 @@ msgstr "" msgid "New Question" msgstr "" -#: frontend/src/pages/QuizForm.vue:450 frontend/src/pages/QuizForm.vue:458 +#: frontend/src/pages/QuizForm.vue:453 frontend/src/pages/QuizForm.vue:461 #: frontend/src/pages/Quizzes.vue:18 msgid "New Quiz" msgstr "" @@ -3599,9 +3608,9 @@ msgstr "" msgid "No introduction" msgstr "Keine Einführung" -#: frontend/src/pages/Jobs.vue:77 -msgid "No jobs posted" -msgstr "Keine Stellen ausgeschrieben" +#: frontend/src/pages/Jobs.vue:80 +msgid "No jobs found" +msgstr "" #: frontend/src/components/LiveClass.vue:71 msgid "No live classes scheduled" @@ -3615,6 +3624,10 @@ msgstr "" msgid "No programs found" msgstr "" +#: frontend/src/pages/QuizSubmissionList.vue:52 +msgid "No quiz submissions found. Please check again later." +msgstr "" + #: frontend/src/pages/Quizzes.vue:61 msgid "No quizzes found" msgstr "" @@ -3624,6 +3637,7 @@ msgid "No slots available for this date." msgstr "Für dieses Datum sind keine Plätze verfügbar." #: frontend/src/pages/AssignmentSubmissionList.vue:67 +#: frontend/src/pages/QuizSubmissionList.vue:49 msgid "No submissions" msgstr "" @@ -3724,11 +3738,11 @@ msgstr "" msgid "Only files of type {0} will be accepted." msgstr "Es werden nur Dateien vom Typ {0} akzeptiert." -#: frontend/src/pages/CourseForm.vue:509 frontend/src/utils/index.js:549 +#: frontend/src/pages/CourseForm.vue:507 frontend/src/utils/index.js:550 msgid "Only image file is allowed." msgstr "" -#: frontend/src/components/Modals/ChapterModal.vue:218 +#: frontend/src/components/Modals/ChapterModal.vue:221 msgid "Only zip files are allowed" msgstr "" @@ -3786,7 +3800,7 @@ msgstr "Option 4" msgid "Order ID" msgstr "Bestell-Nr." -#: frontend/src/pages/JobDetail.vue:74 +#: frontend/src/pages/JobDetail.vue:81 msgid "Organisation" msgstr "" @@ -3835,7 +3849,7 @@ msgid "Paid Batch" msgstr "Bezahlte Charge" #. Label of the paid_certificate (Check) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:218 +#: frontend/src/pages/CourseForm.vue:214 #: lms/lms/doctype/lms_course/lms_course.json msgid "Paid Certificate" msgstr "" @@ -3845,7 +3859,7 @@ msgid "Paid Certificate after Evaluation" msgstr "" #. Label of the paid_course (Check) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:208 +#: frontend/src/pages/CourseForm.vue:204 #: lms/lms/doctype/lms_course/lms_course.json msgid "Paid Course" msgstr "Kostenpflichtiger Kurs" @@ -3855,7 +3869,7 @@ msgid "Pan Number" msgstr "" #. Option for the 'Type' (Select) field in DocType 'Job Opportunity' -#: frontend/src/pages/Jobs.vue:145 +#: frontend/src/pages/Jobs.vue:162 #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Part Time" msgstr "Teilzeit" @@ -3877,7 +3891,7 @@ msgstr "Erfolgreich" #. Label of the passing_percentage (Int) field in DocType 'LMS Quiz' #. Label of the passing_percentage (Int) field in DocType 'LMS Quiz Submission' -#: frontend/src/pages/QuizForm.vue:72 frontend/src/pages/Quizzes.vue:127 +#: frontend/src/pages/QuizForm.vue:72 frontend/src/pages/Quizzes.vue:129 #: lms/lms/doctype/lms_quiz/lms_quiz.json #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json msgid "Passing Percentage" @@ -3888,7 +3902,7 @@ msgstr "Bestehensquote" msgid "Password" msgstr "Passwort" -#: frontend/src/pages/CourseForm.vue:113 +#: frontend/src/pages/CourseForm.vue:109 msgid "Paste the youtube link of a short video introducing the course" msgstr "" @@ -3980,7 +3994,7 @@ msgstr "Ausstehend" #. Label of the percentage (Int) field in DocType 'LMS Quiz Submission' #: frontend/src/pages/QuizSubmission.vue:44 -#: frontend/src/pages/QuizSubmissionList.vue:97 +#: frontend/src/pages/QuizSubmissionList.vue:113 #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json msgid "Percentage" msgstr "Prozentsatz" @@ -4002,7 +4016,7 @@ msgstr "Telefonnummer" msgid "Please Login" msgstr "" -#: lms/lms/doctype/lms_settings/lms_settings.py:33 +#: lms/lms/doctype/lms_settings/lms_settings.py:34 msgid "Please add {1} for {3} to send calendar invites for evaluations." msgstr "" @@ -4026,7 +4040,7 @@ msgstr "" msgid "Please enable Zoom Settings to use this feature." msgstr "Bitte aktivieren Sie die Zoom-Einstellungen, um diese Funktion zu nutzen." -#: frontend/src/components/CourseOutline.vue:324 +#: frontend/src/components/CourseOutline.vue:325 msgid "Please enroll for this course to view this lesson" msgstr "" @@ -4063,7 +4077,7 @@ msgstr "" msgid "Please install the Payments app to create a paid courses." msgstr "" -#: frontend/src/pages/Billing.vue:253 +#: frontend/src/pages/Billing.vue:254 msgid "Please let us know where you heard about us from." msgstr "" @@ -4112,7 +4126,7 @@ msgstr "" msgid "Please take appropriate action at {0}" msgstr "" -#: frontend/src/components/Modals/ChapterModal.vue:175 +#: frontend/src/components/Modals/ChapterModal.vue:178 msgid "Please upload a SCORM package" msgstr "" @@ -4158,7 +4172,7 @@ msgstr "Absenden" msgid "Postal Code" msgstr "Postleitzahl" -#: frontend/src/pages/JobDetail.vue:107 +#: frontend/src/pages/JobDetail.vue:114 msgid "Posted on" msgstr "" @@ -4193,7 +4207,7 @@ msgstr "" msgid "Preview Image" msgstr "Vorschaubild" -#: frontend/src/pages/CourseForm.vue:111 +#: frontend/src/pages/CourseForm.vue:107 msgid "Preview Video" msgstr "Videovorschau" @@ -4208,7 +4222,7 @@ msgid "Pricing" msgstr "Preisgestaltung" #. Label of the pricing_tab (Tab Break) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:202 +#: frontend/src/pages/CourseForm.vue:198 #: lms/lms/doctype/lms_course/lms_course.json msgid "Pricing and Certification" msgstr "" @@ -4272,6 +4286,10 @@ msgstr "" msgid "Program Members" msgstr "" +#: frontend/src/pages/Programs.vue:219 lms/www/lms.py:273 +msgid "Programs" +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/BatchStudents.vue:75 @@ -4301,7 +4319,7 @@ msgstr "Auf der Teilnehmerseite veröffentlichen" #. Label of the published (Check) field in DocType 'LMS Course' #: frontend/src/components/Modals/BulkCertificates.vue:51 #: frontend/src/components/Modals/Event.vue:108 -#: frontend/src/pages/BatchForm.vue:27 frontend/src/pages/CourseForm.vue:172 +#: frontend/src/pages/BatchForm.vue:27 frontend/src/pages/CourseForm.vue:168 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/public/js/common_functions.js:266 @@ -4314,7 +4332,7 @@ msgid "Published Courses" msgstr "Veröffentlichte Kurse" #. Label of the published_on (Date) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:176 +#: frontend/src/pages/CourseForm.vue:172 #: lms/lms/doctype/lms_course/lms_course.json msgid "Published On" msgstr "Veröffentlicht am" @@ -4333,7 +4351,7 @@ msgstr "" #. Label of the question (Text) field in DocType 'LMS Quiz Result' #: frontend/src/components/Assignment.vue:20 #: frontend/src/components/Modals/Question.vue:38 -#: frontend/src/pages/AssignmentForm.vue:45 frontend/src/pages/QuizForm.vue:385 +#: frontend/src/pages/AssignmentForm.vue:45 frontend/src/pages/QuizForm.vue:388 #: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/lms_assignment/lms_assignment.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json @@ -4358,11 +4376,11 @@ msgstr "" msgid "Question Name" msgstr "Name der Frage" -#: frontend/src/components/Modals/Question.vue:267 +#: frontend/src/components/Modals/Question.vue:270 msgid "Question added successfully" msgstr "" -#: frontend/src/components/Modals/Question.vue:319 +#: frontend/src/components/Modals/Question.vue:322 msgid "Question updated successfully" msgstr "" @@ -4379,7 +4397,7 @@ msgstr "Frage {0} von {1}" msgid "Questions" msgstr "Fragen" -#: frontend/src/pages/QuizForm.vue:427 +#: frontend/src/pages/QuizForm.vue:430 msgid "Questions deleted successfully" msgstr "" @@ -4397,13 +4415,13 @@ msgid "Quiz ID" msgstr "Quiz-ID" #. Label of a Link in the LMS Workspace -#: frontend/src/pages/QuizPage.vue:56 frontend/src/pages/QuizPage.vue:62 -#: lms/lms/workspace/lms/lms.json +#: frontend/src/pages/QuizPage.vue:57 lms/lms/workspace/lms/lms.json msgid "Quiz Submission" msgstr "Quiz-Einreichung" -#: frontend/src/pages/QuizSubmission.vue:128 -#: frontend/src/pages/QuizSubmissionList.vue:106 +#: frontend/src/pages/QuizSubmission.vue:131 +#: frontend/src/pages/QuizSubmissionList.vue:122 +#: frontend/src/pages/QuizSubmissionList.vue:127 msgid "Quiz Submissions" msgstr "" @@ -4416,7 +4434,7 @@ msgstr "Quiz-Zusammenfassung" msgid "Quiz Title" msgstr "" -#: frontend/src/pages/QuizForm.vue:339 +#: frontend/src/pages/QuizForm.vue:342 msgid "Quiz created successfully" msgstr "" @@ -4424,7 +4442,7 @@ msgstr "" msgid "Quiz is not available to Guest users. Please login to continue." msgstr "Das Quiz ist für Gastbenutzer nicht verfügbar. Bitte melden Sie sich an, um fortzufahren." -#: frontend/src/pages/QuizForm.vue:358 +#: frontend/src/pages/QuizForm.vue:361 msgid "Quiz updated successfully" msgstr "" @@ -4434,8 +4452,8 @@ msgid "Quiz will appear at the bottom of the lesson." msgstr "Das Quiz wird am Ende der Lektion angezeigt." #: frontend/src/components/AppSidebar.vue:530 -#: frontend/src/pages/QuizForm.vue:438 frontend/src/pages/Quizzes.vue:138 -#: frontend/src/pages/Quizzes.vue:148 +#: frontend/src/pages/QuizForm.vue:441 frontend/src/pages/Quizzes.vue:140 +#: frontend/src/pages/Quizzes.vue:150 lms/www/lms.py:229 msgid "Quizzes" msgstr "" @@ -4513,7 +4531,7 @@ msgstr "Abgelehnt" msgid "Related Courses" msgstr "Ähnliche Kurse" -#: frontend/src/pages/BatchForm.vue:77 frontend/src/pages/CourseForm.vue:100 +#: frontend/src/pages/BatchForm.vue:77 frontend/src/pages/CourseForm.vue:96 msgid "Remove" msgstr "Entfernen" @@ -4607,7 +4625,7 @@ msgstr "" msgid "Row #{0} Start time cannot be outside the batch duration." msgstr "" -#: lms/lms/doctype/lms_quiz/lms_quiz.py:34 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:32 msgid "Rows {0} have the duplicate questions." msgstr "" @@ -4631,6 +4649,11 @@ msgstr "" msgid "SCORM Package Path" msgstr "" +#. Label of the seo_tab (Tab Break) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "SEO" +msgstr "" + #. Option for the 'Day' (Select) field in DocType 'Evaluator Schedule' #. Option for the 'Day' (Select) field in DocType 'LMS Certificate Request' #: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json @@ -4644,7 +4667,7 @@ msgstr "Samstag" #: frontend/src/components/Modals/Event.vue:101 #: frontend/src/components/Modals/Event.vue:129 #: frontend/src/pages/AssignmentForm.vue:21 frontend/src/pages/BatchForm.vue:8 -#: frontend/src/pages/CourseForm.vue:21 frontend/src/pages/JobCreation.vue:8 +#: frontend/src/pages/CourseForm.vue:17 frontend/src/pages/JobCreation.vue:8 #: frontend/src/pages/LessonForm.vue:14 frontend/src/pages/ProgramForm.vue:7 #: frontend/src/pages/QuizForm.vue:34 frontend/src/pages/QuizSubmission.vue:14 #: lms/public/js/common_functions.js:405 @@ -4673,7 +4696,7 @@ msgstr "Geltungsbereich" #. Label of the score (Int) field in DocType 'LMS Quiz Submission' #: frontend/src/pages/QuizSubmission.vue:39 -#: frontend/src/pages/QuizSubmissionList.vue:91 +#: frontend/src/pages/QuizSubmissionList.vue:107 #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json #: lms/templates/quiz/quiz.html:148 msgid "Score" @@ -4767,7 +4790,7 @@ msgstr "" #: frontend/src/components/AppSidebar.vue:556 #: frontend/src/components/Modals/Settings.vue:7 -#: frontend/src/pages/BatchForm.vue:148 frontend/src/pages/CourseForm.vue:162 +#: frontend/src/pages/BatchForm.vue:148 frontend/src/pages/CourseForm.vue:158 #: frontend/src/pages/ProfileRoles.vue:4 frontend/src/pages/QuizForm.vue:79 msgid "Settings" msgstr "Einstellungen" @@ -4781,7 +4804,7 @@ msgid "Short Description" msgstr "" #. Label of the short_introduction (Small Text) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:39 +#: frontend/src/pages/CourseForm.vue:35 #: lms/lms/doctype/lms_course/lms_course.json msgid "Short Introduction" msgstr "" @@ -4892,10 +4915,6 @@ msgstr "Fertigkeiten" msgid "Skip" msgstr "Überspringen" -#: frontend/src/components/OnboardingBanner.vue:3 -msgid "Skip Onboarding" -msgstr "" - #: lms/lms/doctype/course_evaluator/course_evaluator.py:63 msgid "Slot Times are overlapping for some schedules." msgstr "" @@ -5009,8 +5028,9 @@ msgstr "Bundesland" #. Label of the tab_4_tab (Tab Break) field in DocType 'LMS Course' #. Label of the statistics (Check) field in DocType 'LMS Settings' #: frontend/src/components/BatchStudents.vue:5 +#: frontend/src/pages/Statistics.vue:322 #: lms/lms/doctype/lms_course/lms_course.json -#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:136 +#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:182 msgid "Statistics" msgstr "Statistiken" @@ -5110,7 +5130,7 @@ msgstr "" #: frontend/src/components/Modals/AssessmentModal.vue:9 #: frontend/src/components/Modals/BatchCourseModal.vue:9 #: frontend/src/components/Modals/EvaluationModal.vue:9 -#: frontend/src/components/Modals/Question.vue:341 +#: frontend/src/components/Modals/Question.vue:344 #: frontend/src/components/Quiz.vue:218 lms/templates/assignment.html:9 #: lms/templates/livecode/extension_footer.html:25 #: lms/templates/quiz/quiz.html:128 lms/templates/reviews.html:163 @@ -5135,18 +5155,18 @@ msgstr "" #: frontend/src/components/Modals/AnnouncementModal.vue:99 #: frontend/src/components/Modals/AssessmentModal.vue:73 #: frontend/src/components/Modals/BulkCertificates.vue:121 -#: frontend/src/components/Modals/ChapterModal.vue:151 -#: frontend/src/components/Modals/ChapterModal.vue:196 +#: frontend/src/components/Modals/ChapterModal.vue:154 +#: frontend/src/components/Modals/ChapterModal.vue:199 #: frontend/src/components/Modals/Event.vue:255 #: frontend/src/components/Modals/Event.vue:310 -#: frontend/src/components/Modals/Question.vue:267 -#: frontend/src/components/Modals/Question.vue:318 -#: frontend/src/pages/AssignmentForm.vue:155 -#: frontend/src/pages/CourseForm.vue:472 frontend/src/pages/ProgramForm.vue:229 -#: frontend/src/pages/ProgramForm.vue:251 -#: frontend/src/pages/ProgramForm.vue:272 -#: frontend/src/pages/ProgramForm.vue:298 frontend/src/pages/QuizForm.vue:339 -#: frontend/src/pages/QuizForm.vue:358 frontend/src/pages/QuizForm.vue:427 +#: frontend/src/components/Modals/Question.vue:270 +#: frontend/src/components/Modals/Question.vue:321 +#: frontend/src/pages/AssignmentForm.vue:158 +#: frontend/src/pages/CourseForm.vue:470 frontend/src/pages/ProgramForm.vue:232 +#: frontend/src/pages/ProgramForm.vue:254 +#: frontend/src/pages/ProgramForm.vue:275 +#: frontend/src/pages/ProgramForm.vue:301 frontend/src/pages/QuizForm.vue:342 +#: frontend/src/pages/QuizForm.vue:361 frontend/src/pages/QuizForm.vue:430 msgid "Success" msgstr "Erfolg" @@ -5164,7 +5184,7 @@ msgstr "Zusammenfassung" msgid "Sunday" msgstr "Sonntag" -#: lms/lms/api.py:1026 +#: lms/lms/api.py:1027 msgid "Suspicious pattern found in {0}: {1}" msgstr "" @@ -5220,7 +5240,7 @@ msgid "System Manager" msgstr "System-Manager" #. Label of the tags (Data) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:121 +#: frontend/src/pages/CourseForm.vue:117 #: lms/lms/doctype/lms_course/lms_course.json msgid "Tags" msgstr "Schlagworte" @@ -5325,6 +5345,10 @@ msgstr "" msgid "There are no courses matching the criteria. Keep an eye out, fresh learning experiences are on the way soon!" msgstr "" +#: frontend/src/pages/Jobs.vue:84 +msgid "There are no jobs available at the moment. Open a job opportunity or check here again later." +msgstr "" + #: frontend/src/pages/CertifiedParticipants.vue:92 msgid "There are no participants matching this criteria." msgstr "" @@ -5384,8 +5408,10 @@ msgstr "" msgid "This course is free." msgstr "Dieser Kurs ist kostenlos." -#: frontend/src/pages/SCORMChapter.vue:201 -msgid "This is a chapter in the course {0}" +#. Description of the 'Meta Description' (Small Text) field in DocType 'LMS +#. Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "This description will be shown on lists and pages without meta description" msgstr "" #: frontend/src/pages/Lesson.vue:16 @@ -5482,10 +5508,10 @@ msgstr "" #: frontend/src/components/Modals/DiscussionModal.vue:18 #: frontend/src/components/Modals/LiveClassModal.vue:23 #: frontend/src/pages/AssignmentForm.vue:32 -#: frontend/src/pages/Assignments.vue:152 frontend/src/pages/BatchForm.vue:19 -#: frontend/src/pages/CourseForm.vue:33 frontend/src/pages/JobCreation.vue:20 +#: frontend/src/pages/Assignments.vue:155 frontend/src/pages/BatchForm.vue:19 +#: frontend/src/pages/CourseForm.vue:29 frontend/src/pages/JobCreation.vue:20 #: frontend/src/pages/ProgramForm.vue:11 frontend/src/pages/Programs.vue:116 -#: frontend/src/pages/QuizForm.vue:48 frontend/src/pages/Quizzes.vue:116 +#: frontend/src/pages/QuizForm.vue:48 frontend/src/pages/Quizzes.vue:118 #: lms/lms/doctype/cohort/cohort.json #: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json #: lms/lms/doctype/cohort_web_page/cohort_web_page.json @@ -5507,7 +5533,7 @@ msgstr "" msgid "Title" msgstr "Bezeichnung" -#: frontend/src/components/Modals/ChapterModal.vue:172 +#: frontend/src/components/Modals/ChapterModal.vue:175 msgid "Title is required" msgstr "" @@ -5539,7 +5565,7 @@ msgid "Total" msgstr "Summe" #. Label of the total_marks (Int) field in DocType 'LMS Quiz' -#: frontend/src/pages/QuizForm.vue:67 frontend/src/pages/Quizzes.vue:121 +#: frontend/src/pages/QuizForm.vue:67 frontend/src/pages/Quizzes.vue:123 #: lms/lms/doctype/lms_quiz/lms_quiz.json msgid "Total Marks" msgstr "" @@ -5577,7 +5603,7 @@ msgstr "Twitter" #: frontend/src/components/Modals/AssessmentModal.vue:22 #: frontend/src/components/Modals/Question.vue:54 #: frontend/src/pages/AssignmentForm.vue:39 -#: frontend/src/pages/Assignments.vue:30 frontend/src/pages/Assignments.vue:157 +#: frontend/src/pages/Assignments.vue:30 frontend/src/pages/Assignments.vue:160 #: frontend/src/pages/JobCreation.vue:33 frontend/src/pages/Jobs.vue:55 #: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/lms/doctype/lms_assignment/lms_assignment.json @@ -5624,7 +5650,7 @@ msgstr "Wird überprüft" msgid "Unlisted" msgstr "" -#: frontend/src/pages/Batches.vue:293 +#: frontend/src/pages/Batches.vue:295 msgid "Unpublished" msgstr "" @@ -5646,8 +5672,8 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'Cohort' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request' #. Label of the upcoming (Check) field in DocType 'LMS Course' -#: frontend/src/pages/Batches.vue:291 frontend/src/pages/CourseForm.vue:185 -#: frontend/src/pages/Courses.vue:284 lms/lms/doctype/cohort/cohort.json +#: frontend/src/pages/Batches.vue:293 frontend/src/pages/CourseForm.vue:181 +#: frontend/src/pages/Courses.vue:287 lms/lms/doctype/cohort/cohort.json #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_course/lms_course.json msgid "Upcoming" @@ -5672,7 +5698,7 @@ msgstr "Aktualisieren" msgid "Update Password" msgstr "Passwort ändern" -#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:81 +#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:77 msgid "Upload" msgstr "Hochladen" @@ -5778,6 +5804,10 @@ msgstr "Sichtbarkeit" msgid "Visit Batch" msgstr "" +#: frontend/src/pages/JobDetail.vue:38 +msgid "Visit Website" +msgstr "" + #: lms/templates/emails/batch_confirmation.html:23 msgid "Visit the following link to view your " msgstr "" @@ -5899,7 +5929,7 @@ msgstr "" msgid "You are not a mentor of the course {0}" msgstr "Sie sind kein Mentor des Kurses {0}" -#: frontend/src/components/CourseOutline.vue:323 +#: frontend/src/components/CourseOutline.vue:324 msgid "You are not enrolled" msgstr "" @@ -6123,11 +6153,7 @@ msgstr "von" msgid "out of" msgstr "von" -#: frontend/src/components/JobCard.vue:30 -msgid "posted" -msgstr "" - -#: frontend/src/pages/QuizForm.vue:386 +#: frontend/src/pages/QuizForm.vue:389 msgid "question_detail" msgstr "" @@ -6147,7 +6173,7 @@ msgstr "" msgid "you can" msgstr "Sie können" -#: lms/lms/api.py:816 lms/lms/api.py:824 +#: lms/lms/api.py:817 lms/lms/api.py:825 msgid "{0} Settings not found" msgstr "" diff --git a/lms/locale/eo.po b/lms/locale/eo.po index 2d6cea87..8d4a1ecc 100644 --- a/lms/locale/eo.po +++ b/lms/locale/eo.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n" -"POT-Creation-Date: 2025-04-04 16:04+0000\n" -"PO-Revision-Date: 2025-04-08 03:58\n" +"POT-Creation-Date: 2025-04-11 16:04+0000\n" +"PO-Revision-Date: 2025-04-14 06:01\n" "Last-Translator: jannat@frappe.io\n" "Language-Team: Esperanto\n" "MIME-Version: 1.0\n" @@ -71,7 +71,7 @@ msgstr "crwdns149198:0crwdne149198:0" msgid "A course cannot have both paid certificate and certificate of completion." msgstr "crwdns152597:0crwdne152597:0" -#: frontend/src/pages/CourseForm.vue:41 +#: frontend/src/pages/CourseForm.vue:37 msgid "A one line introduction to the course that appears on the course card" msgstr "crwdns151462:0crwdne151462:0" @@ -145,7 +145,6 @@ msgid "Add a Student" msgstr "crwdns149224:0crwdne149224:0" #: frontend/src/components/AppSidebar.vue:514 -#: frontend/src/components/OnboardingBanner.vue:56 msgid "Add a chapter" msgstr "crwdns151726:0crwdne151726:0" @@ -153,16 +152,15 @@ msgstr "crwdns151726:0crwdne151726:0" msgid "Add a course" msgstr "crwdns149226:0crwdne149226:0" -#: frontend/src/pages/CourseForm.vue:137 +#: frontend/src/pages/CourseForm.vue:133 msgid "Add a keyword and then press enter" msgstr "crwdns152004:0crwdne152004:0" #: frontend/src/components/AppSidebar.vue:515 -#: frontend/src/components/OnboardingBanner.vue:81 msgid "Add a lesson" msgstr "crwdns151728:0crwdne151728:0" -#: frontend/src/components/Modals/Question.vue:146 +#: frontend/src/components/Modals/Question.vue:147 #: frontend/src/pages/QuizForm.vue:183 msgid "Add a new question" msgstr "crwdns149228:0crwdne149228:0" @@ -235,7 +233,7 @@ msgid "Admin" msgstr "crwdns149248:0crwdne149248:0" #. Name of a role -#: frontend/src/pages/Batches.vue:282 lms/lms/doctype/lms_badge/lms_badge.json +#: frontend/src/pages/Batches.vue:284 lms/lms/doctype/lms_badge/lms_badge.json msgid "All" msgstr "crwdns149250:0crwdne149250:0" @@ -259,7 +257,7 @@ msgstr "crwdns152266:0crwdne152266:0" msgid "All Submissions" msgstr "crwdns149254:0crwdne149254:0" -#: lms/lms/doctype/lms_quiz/lms_quiz.py:46 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:44 msgid "All questions should have the same marks if the limit is set." msgstr "crwdns149256:0crwdne149256:0" @@ -294,7 +292,7 @@ msgstr "crwdns149266:0crwdne149266:0" #. Label of the amount (Currency) field in DocType 'LMS Batch' #. Label of the course_price (Currency) field in DocType 'LMS Course' #. Label of the amount (Currency) field in DocType 'LMS Payment' -#: frontend/src/pages/BatchForm.vue:209 frontend/src/pages/CourseForm.vue:221 +#: frontend/src/pages/BatchForm.vue:209 frontend/src/pages/CourseForm.vue:217 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_payment/lms_payment.json @@ -346,7 +344,7 @@ msgstr "crwdns151584:0crwdne151584:0" msgid "Answer" msgstr "crwdns149280:0crwdne149280:0" -#: frontend/src/pages/CourseForm.vue:85 frontend/src/pages/CourseForm.vue:103 +#: frontend/src/pages/CourseForm.vue:81 frontend/src/pages/CourseForm.vue:99 msgid "Appears on the course card in the course list" msgstr "crwdns151464:0crwdne151464:0" @@ -354,11 +352,11 @@ msgstr "crwdns151464:0crwdne151464:0" msgid "Appears when the batch URL is shared on any online platform" msgstr "crwdns151466:0crwdne151466:0" -#: frontend/src/pages/JobDetail.vue:121 +#: frontend/src/pages/JobDetail.vue:128 msgid "Applications Received" msgstr "crwdns149282:0crwdne149282:0" -#: frontend/src/pages/JobDetail.vue:42 +#: frontend/src/pages/JobDetail.vue:48 msgid "Apply" msgstr "crwdns149284:0crwdne149284:0" @@ -389,7 +387,7 @@ msgstr "crwdns149292:0crwdne149292:0" msgid "Apps" msgstr "crwdns149294:0crwdne149294:0" -#: frontend/src/pages/Batches.vue:292 +#: frontend/src/pages/Batches.vue:294 msgid "Archived" msgstr "crwdns152268:0crwdne152268:0" @@ -401,11 +399,6 @@ msgstr "crwdns152463:0crwdne152463:0" msgid "Are you sure you want to login to your Frappe Cloud dashboard?" msgstr "crwdns152465:0crwdne152465:0" -#. Label of the user_category (Check) field in DocType 'LMS Settings' -#: lms/lms/doctype/lms_settings/lms_settings.json -msgid "Ask User Category during Signup" -msgstr "crwdns149298:0crwdne149298: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 @@ -470,6 +463,10 @@ msgstr "crwdns149316:0crwdne149316:0" msgid "Assignment Submission Template" msgstr "crwdns149318:0crwdne149318:0" +#: frontend/src/pages/AssignmentSubmissionList.vue:223 +msgid "Assignment Submissions" +msgstr "crwdns154518:0crwdne154518:0" + #. Label of the assignment_title (Data) field in DocType 'LMS Assignment #. Submission' #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json @@ -480,7 +477,7 @@ msgstr "crwdns149320:0crwdne149320:0" msgid "Assignment for Lesson {0} by {1} already exists." msgstr "crwdns149322:0{0}crwdnd149322:0{1}crwdne149322:0" -#: frontend/src/pages/AssignmentForm.vue:155 +#: frontend/src/pages/AssignmentForm.vue:158 msgid "Assignment saved successfully" msgstr "crwdns152106:0crwdne152106:0" @@ -490,7 +487,8 @@ msgid "Assignment will appear at the bottom of the lesson." msgstr "crwdns149324:0crwdne149324:0" #: frontend/src/components/AppSidebar.vue:531 -#: frontend/src/pages/AssignmentForm.vue:174 +#: frontend/src/pages/AssignmentForm.vue:177 +#: frontend/src/pages/Assignments.vue:193 lms/www/lms.py:251 msgid "Assignments" msgstr "crwdns152108:0crwdne152108:0" @@ -656,8 +654,8 @@ msgid "Batch:" msgstr "crwdns152469:0crwdne152469:0" #. Label of the batches (Check) field in DocType 'LMS Settings' -#: frontend/src/pages/Batches.vue:302 -#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:63 +#: frontend/src/pages/Batches.vue:304 frontend/src/pages/Batches.vue:311 +#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:105 msgid "Batches" msgstr "crwdns149380:0crwdne149380:0" @@ -675,7 +673,7 @@ msgstr "crwdns149384:0crwdne149384:0" #. Label of the billing_details_section (Section Break) field in DocType 'LMS #. Payment' -#: frontend/src/pages/Billing.vue:8 +#: frontend/src/pages/Billing.vue:8 frontend/src/pages/Billing.vue:363 #: lms/lms/doctype/lms_payment/lms_payment.json msgid "Billing Details" msgstr "crwdns149386:0crwdne149386:0" @@ -757,8 +755,9 @@ msgstr "crwdns149414:0crwdne149414:0" #. Label of the category (Link) field in DocType 'LMS Course' #: frontend/src/pages/BatchForm.vue:190 frontend/src/pages/Batches.vue:55 #: frontend/src/pages/CertifiedParticipants.vue:37 -#: frontend/src/pages/CourseForm.vue:148 frontend/src/pages/Courses.vue:51 -#: frontend/src/pages/JobDetail.vue:96 lms/lms/doctype/lms_batch/lms_batch.json +#: frontend/src/pages/CourseForm.vue:144 frontend/src/pages/Courses.vue:51 +#: frontend/src/pages/JobDetail.vue:103 +#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/public/js/common_functions.js:316 lms/templates/signup-form.html:22 @@ -813,7 +812,7 @@ msgstr "crwdns151924:0crwdne151924:0" #: frontend/src/components/Modals/Event.vue:371 #: frontend/src/pages/BatchForm.vue:37 frontend/src/pages/Batches.vue:38 #: frontend/src/pages/CourseCertification.vue:10 -#: frontend/src/pages/CourseCertification.vue:133 +#: frontend/src/pages/CourseCertification.vue:135 #: frontend/src/pages/Courses.vue:34 lms/fixtures/custom_field.json #: lms/lms/doctype/certification/certification.json #: lms/lms/doctype/lms_batch/lms_batch.json @@ -837,7 +836,8 @@ msgid "Certified" msgstr "crwdns152422:0crwdne152422:0" #. Label of the certified_participants (Check) field in DocType 'LMS Settings' -#: frontend/src/pages/CertifiedParticipants.vue:161 +#: frontend/src/pages/CertifiedParticipants.vue:164 +#: frontend/src/pages/CertifiedParticipants.vue:171 #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Certified Participants" msgstr "crwdns149438:0crwdne149438:0" @@ -864,11 +864,11 @@ msgstr "crwdns149442:0crwdne149442:0" msgid "Chapter Reference" msgstr "crwdns149444:0crwdne149444:0" -#: frontend/src/components/Modals/ChapterModal.vue:152 +#: frontend/src/components/Modals/ChapterModal.vue:155 msgid "Chapter added successfully" msgstr "crwdns151620:0crwdne151620:0" -#: frontend/src/components/Modals/ChapterModal.vue:196 +#: frontend/src/components/Modals/ChapterModal.vue:199 msgid "Chapter updated successfully" msgstr "crwdns151622:0crwdne151622:0" @@ -1117,7 +1117,7 @@ msgid "Completed by Students" msgstr "crwdns152082:0crwdne152082:0" #. Label of the enable_certification (Check) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:213 +#: frontend/src/pages/CourseForm.vue:209 #: lms/lms/doctype/lms_course/lms_course.json msgid "Completion Certificate" msgstr "crwdns149522:0crwdne149522:0" @@ -1179,7 +1179,7 @@ msgid "Continue Learning" msgstr "crwdns149540:0crwdne149540:0" #. Option for the 'Type' (Select) field in DocType 'Job Opportunity' -#: frontend/src/pages/Jobs.vue:146 +#: frontend/src/pages/Jobs.vue:163 #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Contract" msgstr "crwdns149542:0crwdne149542:0" @@ -1294,6 +1294,7 @@ msgstr "crwdns149560:0crwdne149560:0" #. Name of a role #: frontend/src/pages/ProfileRoles.vue:16 #: lms/lms/doctype/course_chapter/course_chapter.json +#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_program/lms_program.json @@ -1307,7 +1308,7 @@ msgstr "crwdns149564:0crwdne149564:0" msgid "Course Data" msgstr "crwdns149566:0crwdne149566:0" -#: frontend/src/pages/CourseForm.vue:50 +#: frontend/src/pages/CourseForm.vue:46 msgid "Course Description" msgstr "crwdns149568:0crwdne149568:0" @@ -1316,7 +1317,7 @@ msgstr "crwdns149568:0crwdne149568:0" msgid "Course Evaluator" msgstr "crwdns149570:0crwdne149570:0" -#: frontend/src/pages/CourseForm.vue:63 +#: frontend/src/pages/CourseForm.vue:59 msgid "Course Image" msgstr "crwdns149572:0crwdne149572:0" @@ -1330,7 +1331,7 @@ msgstr "crwdns149574:0crwdne149574:0" msgid "Course Lesson" msgstr "crwdns149576:0crwdne149576:0" -#: lms/www/lms.py:30 +#: lms/www/lms.py:70 msgid "Course List" msgstr "crwdns149578:0crwdne149578:0" @@ -1338,7 +1339,7 @@ msgstr "crwdns149578:0crwdne149578:0" msgid "Course Name" msgstr "crwdns149580:0crwdne149580:0" -#: frontend/src/pages/CourseDetail.vue:76 frontend/src/pages/CourseForm.vue:241 +#: frontend/src/pages/CourseDetail.vue:76 frontend/src/pages/CourseForm.vue:237 msgid "Course Outline" msgstr "crwdns151624:0crwdne151624:0" @@ -1370,7 +1371,7 @@ msgstr "crwdns149588:0crwdne149588:0" msgid "Course Title" msgstr "crwdns149590:0crwdne149590:0" -#: frontend/src/pages/ProgramForm.vue:229 +#: frontend/src/pages/ProgramForm.vue:232 msgid "Course added to program" msgstr "crwdns151734:0crwdne151734:0" @@ -1378,11 +1379,11 @@ msgstr "crwdns151734:0crwdne151734:0" msgid "Course already added to the batch." msgstr "crwdns149592:0crwdne149592:0" -#: frontend/src/pages/CourseForm.vue:472 +#: frontend/src/pages/CourseForm.vue:470 msgid "Course deleted successfully" msgstr "crwdns151586:0crwdne151586:0" -#: frontend/src/pages/ProgramForm.vue:298 +#: frontend/src/pages/ProgramForm.vue:301 msgid "Course moved successfully" msgstr "crwdns151736:0crwdne151736:0" @@ -1400,8 +1401,9 @@ msgstr "crwdns149596:0{0}crwdne149596:0" #: frontend/src/components/BatchStudents.vue:92 #: frontend/src/components/Modals/BatchStudentProgress.vue:79 #: frontend/src/pages/BatchDetail.vue:21 frontend/src/pages/BatchDetail.vue:70 -#: frontend/src/pages/CourseCertification.vue:125 -#: frontend/src/pages/Courses.vue:301 frontend/src/pages/Statistics.vue:21 +#: frontend/src/pages/CourseCertification.vue:127 +#: frontend/src/pages/Courses.vue:304 frontend/src/pages/Courses.vue:311 +#: frontend/src/pages/Statistics.vue:21 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Courses" @@ -1443,7 +1445,6 @@ msgid "Create a batch" msgstr "crwdns154445:0crwdne154445:0" #: frontend/src/components/AppSidebar.vue:513 -#: frontend/src/components/OnboardingBanner.vue:30 msgid "Create a course" msgstr "crwdns151738:0crwdne151738:0" @@ -1467,7 +1468,7 @@ msgstr "crwdns154451:0crwdne154451:0" msgid "Create your first quiz" msgstr "crwdns154453:0crwdne154453:0" -#: frontend/src/pages/Assignments.vue:163 frontend/src/pages/Courses.vue:292 +#: frontend/src/pages/Assignments.vue:166 frontend/src/pages/Courses.vue:295 msgid "Created" msgstr "crwdns152116:0crwdne152116:0" @@ -1482,7 +1483,7 @@ msgstr "crwdns154457:0crwdne154457:0" #. Label of the currency (Link) field in DocType 'LMS Batch' #. Label of the currency (Link) field in DocType 'LMS Course' #. Label of the currency (Link) field in DocType 'LMS Payment' -#: frontend/src/pages/BatchForm.vue:217 frontend/src/pages/CourseForm.vue:226 +#: frontend/src/pages/BatchForm.vue:217 frontend/src/pages/CourseForm.vue:222 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_payment/lms_payment.json @@ -1585,9 +1586,9 @@ msgstr "crwdns149642:0crwdne149642:0" msgid "Degree Type" msgstr "crwdns149644:0crwdne149644:0" -#: frontend/src/components/CourseOutline.vue:247 -#: frontend/src/components/CourseOutline.vue:305 -#: frontend/src/pages/CourseForm.vue:485 +#: frontend/src/components/CourseOutline.vue:248 +#: frontend/src/components/CourseOutline.vue:306 +#: frontend/src/pages/CourseForm.vue:483 msgid "Delete" msgstr "crwdns149646:0crwdne149646:0" @@ -1595,27 +1596,27 @@ msgstr "crwdns149646:0crwdne149646:0" msgid "Delete Chapter" msgstr "crwdns151626:0crwdne151626:0" -#: frontend/src/pages/CourseForm.vue:479 +#: frontend/src/pages/CourseForm.vue:477 msgid "Delete Course" msgstr "crwdns151588:0crwdne151588:0" -#: frontend/src/components/CourseOutline.vue:299 +#: frontend/src/components/CourseOutline.vue:300 msgid "Delete this chapter?" msgstr "crwdns151628:0crwdne151628:0" -#: frontend/src/components/CourseOutline.vue:241 +#: frontend/src/components/CourseOutline.vue:242 msgid "Delete this lesson?" msgstr "crwdns151630:0crwdne151630:0" -#: frontend/src/pages/CourseForm.vue:480 +#: frontend/src/pages/CourseForm.vue:478 msgid "Deleting the course will also delete all its chapters and lessons. Are you sure you want to delete this course?" msgstr "crwdns151590:0crwdne151590:0" -#: frontend/src/components/CourseOutline.vue:300 +#: frontend/src/components/CourseOutline.vue:301 msgid "Deleting this chapter will also delete all its lessons and permanently remove it from the course. This action cannot be undone. Are you sure you want to continue?" msgstr "crwdns151632:0crwdne151632:0" -#: frontend/src/components/CourseOutline.vue:242 +#: frontend/src/components/CourseOutline.vue:243 msgid "Deleting this lesson will permanently remove it from the course. This action cannot be undone. Are you sure you want to continue?" msgstr "crwdns151634:0crwdne151634:0" @@ -1654,11 +1655,11 @@ msgstr "crwdns149652:0crwdne149652:0" #: frontend/src/components/Modals/DiscussionModal.vue:22 #: frontend/src/pages/AssignmentForm.vue:27 frontend/src/pages/BatchForm.vue:14 -#: frontend/src/pages/CourseForm.vue:29 frontend/src/pages/QuizForm.vue:42 +#: frontend/src/pages/CourseForm.vue:25 frontend/src/pages/QuizForm.vue:42 msgid "Details" msgstr "crwdns149654:0crwdne149654:0" -#: frontend/src/pages/CourseForm.vue:195 +#: frontend/src/pages/CourseForm.vue:191 msgid "Disable Self Enrollment" msgstr "crwdns149656:0crwdne149656:0" @@ -1667,6 +1668,11 @@ msgstr "crwdns149656:0crwdne149656:0" msgid "Disable Self Learning" msgstr "crwdns149658:0crwdne149658:0" +#. Label of the disable_signup (Check) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Disable Signup" +msgstr "crwdns154520:0crwdne154520:0" + #. Label of the disabled (Check) field in DocType 'Job Opportunity' #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Disabled" @@ -1808,7 +1814,7 @@ msgstr "crwdns149706:0crwdne149706:0" msgid "Enable" msgstr "crwdns149708:0crwdne149708:0" -#: lms/lms/doctype/lms_settings/lms_settings.py:20 +#: lms/lms/doctype/lms_settings/lms_settings.py:21 msgid "Enable Google API in Google Settings to send calendar invites for evaluations." msgstr "crwdns149712:0crwdne149712:0" @@ -1867,7 +1873,7 @@ msgstr "crwdns149720:0crwdne149720:0" msgid "Enroll Now" msgstr "crwdns149722:0crwdne149722:0" -#: frontend/src/pages/Batches.vue:295 frontend/src/pages/Courses.vue:294 +#: frontend/src/pages/Batches.vue:297 frontend/src/pages/Courses.vue:297 msgid "Enrolled" msgstr "crwdns152272:0crwdne152272:0" @@ -1902,7 +1908,7 @@ msgstr "crwdns149732:0crwdne149732:0" msgid "Enrollments" msgstr "crwdns149734:0crwdne149734:0" -#: lms/lms/doctype/lms_settings/lms_settings.py:25 +#: lms/lms/doctype/lms_settings/lms_settings.py:26 msgid "Enter Client Id and Client Secret in Google Settings to send calendar invites for evaluations." msgstr "crwdns149736:0crwdne149736:0" @@ -1921,19 +1927,19 @@ msgstr "crwdns149742:0crwdne149742:0" #: frontend/src/components/Assignment.vue:287 #: frontend/src/components/Modals/AnnouncementModal.vue:105 #: frontend/src/components/Modals/BulkCertificates.vue:115 -#: frontend/src/components/Modals/ChapterModal.vue:157 -#: frontend/src/components/Modals/ChapterModal.vue:164 -#: frontend/src/components/Modals/ChapterModal.vue:200 -#: frontend/src/components/Modals/Question.vue:251 -#: frontend/src/components/Modals/Question.vue:272 -#: frontend/src/components/Modals/Question.vue:329 -#: frontend/src/components/Modals/StudentModal.vue:70 +#: frontend/src/components/Modals/ChapterModal.vue:160 +#: frontend/src/components/Modals/ChapterModal.vue:167 +#: frontend/src/components/Modals/ChapterModal.vue:203 +#: frontend/src/components/Modals/Question.vue:252 +#: frontend/src/components/Modals/Question.vue:275 +#: frontend/src/components/Modals/Question.vue:332 +#: frontend/src/components/Modals/StudentModal.vue:73 #: frontend/src/components/Quiz.vue:592 #: frontend/src/components/SettingDetails.vue:62 -#: frontend/src/pages/AssignmentForm.vue:139 -#: frontend/src/pages/AssignmentForm.vue:159 frontend/src/pages/Billing.vue:261 -#: frontend/src/pages/QuizForm.vue:346 frontend/src/pages/QuizForm.vue:361 -#: frontend/src/pages/QuizSubmission.vue:147 +#: frontend/src/pages/AssignmentForm.vue:142 +#: frontend/src/pages/AssignmentForm.vue:162 frontend/src/pages/Billing.vue:262 +#: frontend/src/pages/QuizForm.vue:349 frontend/src/pages/QuizForm.vue:364 +#: frontend/src/pages/QuizSubmission.vue:150 msgid "Error" msgstr "crwdns149744:0crwdne149744:0" @@ -1982,7 +1988,7 @@ msgstr "crwdns149756:0crwdne149756:0" #. Label of the evaluator (Link) field in DocType 'LMS Course' #: frontend/src/components/Modals/BatchCourseModal.vue:26 #: frontend/src/components/Modals/BulkCertificates.vue:22 -#: frontend/src/pages/CourseForm.vue:232 frontend/src/pages/ProfileRoles.vue:22 +#: frontend/src/pages/CourseForm.vue:228 frontend/src/pages/ProfileRoles.vue:22 #: lms/lms/doctype/batch_course/batch_course.json #: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json @@ -2100,7 +2106,7 @@ msgstr "crwdns149788:0crwdne149788:0" #. Label of the featured (Check) field in DocType 'LMS Course' #: frontend/src/components/CourseCard.vue:16 -#: frontend/src/pages/CourseForm.vue:190 +#: frontend/src/pages/CourseForm.vue:186 #: lms/lms/doctype/lms_course/lms_course.json msgid "Featured" msgstr "crwdns149790:0crwdne149790:0" @@ -2149,10 +2155,6 @@ msgstr "crwdns149802:0crwdne149802:0" msgid "Flexible Time" msgstr "crwdns149804:0crwdne149804:0" -#: frontend/src/pages/QuizForm.vue:459 -msgid "Form to create and edit quizzes" -msgstr "crwdns149806:0crwdne149806:0" - #. Option for the 'Attire Preference' (Select) field in DocType 'User' #: lms/fixtures/custom_field.json msgid "Formal Wear" @@ -2163,7 +2165,7 @@ msgid "Free" msgstr "crwdns149810:0crwdne149810:0" #. Option for the 'Type' (Select) field in DocType 'Job Opportunity' -#: frontend/src/pages/Jobs.vue:147 +#: frontend/src/pages/Jobs.vue:164 #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Freelance" msgstr "crwdns149812:0crwdne149812:0" @@ -2207,7 +2209,7 @@ msgid "Full Name" msgstr "crwdns149824:0crwdne149824:0" #. Option for the 'Type' (Select) field in DocType 'Job Opportunity' -#: frontend/src/pages/Jobs.vue:144 +#: frontend/src/pages/Jobs.vue:161 #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Full Time" msgstr "crwdns149826:0crwdne149826:0" @@ -2385,7 +2387,7 @@ msgstr "crwdns149892:0crwdne149892:0" msgid "I am unavailable" msgstr "crwdns149894:0crwdne149894:0" -#: frontend/src/pages/QuizForm.vue:380 +#: frontend/src/pages/QuizForm.vue:383 msgid "ID" msgstr "crwdns149896:0crwdne149896:0" @@ -2395,6 +2397,11 @@ msgstr "crwdns149896:0crwdne149896:0" msgid "Icon" msgstr "crwdns149898:0crwdne149898:0" +#. Label of the user_category (Check) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Identify User Persona" +msgstr "crwdns154522:0crwdne154522:0" + #: frontend/src/components/LessonHelp.vue:11 msgid "If Include in Preview is enabled for a lesson then the lesson will also be accessible to non logged in users." msgstr "crwdns151474:0crwdne151474:0" @@ -2425,7 +2432,7 @@ msgstr "crwdns149904:0crwdne149904:0" msgid "If you set an amount here, then the USD equivalent setting will not get applied." msgstr "crwdns149906:0crwdne149906:0" -#: lms/lms/doctype/lms_quiz/lms_quiz.py:63 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:61 msgid "If you want open ended questions then make sure each question in the quiz is of open ended type." msgstr "crwdns149908:0crwdne149908:0" @@ -2451,7 +2458,7 @@ msgstr "crwdns149910:0crwdne149910:0" msgid "Image search powered by" msgstr "crwdns149912:0crwdne149912:0" -#: lms/lms/doctype/lms_quiz/lms_quiz.py:221 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:219 msgid "Image: Corrupted Data Stream" msgstr "crwdns149914:0crwdne149914:0" @@ -2540,7 +2547,7 @@ msgstr "crwdns149940:0crwdne149940:0" #. Label of the instructors (Table MultiSelect) field in DocType 'LMS Batch' #. Label of the instructors (Rating) field in DocType 'LMS Batch Feedback' #. Label of the instructors (Table MultiSelect) field in DocType 'LMS Course' -#: frontend/src/pages/BatchForm.vue:93 frontend/src/pages/CourseForm.vue:155 +#: frontend/src/pages/BatchForm.vue:93 frontend/src/pages/CourseForm.vue:151 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json #: lms/lms/doctype/lms_course/lms_course.json @@ -2565,10 +2572,14 @@ msgstr "crwdns154463:0crwdne154463:0" msgid "Invalid Invite Code." msgstr "crwdns149950:0crwdne149950:0" -#: lms/lms/doctype/course_lesson/course_lesson.py:20 +#: lms/lms/doctype/course_lesson/course_lesson.py:19 msgid "Invalid Quiz ID" msgstr "crwdns149952:0crwdne149952:0" +#: lms/lms/doctype/course_lesson/course_lesson.py:33 +msgid "Invalid Quiz ID in content" +msgstr "crwdns154524:0crwdne154524:0" + #. Label of the invite_code (Data) field in DocType 'Cohort Subgroup' #. Label of the invite_code (Data) field in DocType 'Invite Request' #: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json @@ -2607,11 +2618,6 @@ msgstr "crwdns154465:0crwdne154465:0" msgid "Is Correct" msgstr "crwdns149964:0crwdne149964:0" -#. Label of the is_onboarding_complete (Check) field in DocType 'LMS Settings' -#: lms/lms/doctype/lms_settings/lms_settings.json -msgid "Is Onboarding Complete" -msgstr "crwdns149966:0crwdne149966:0" - #. Label of the is_scorm_package (Check) field in DocType 'Course Chapter' #. Label of the is_scorm_package (Check) field in DocType 'Course Lesson' #: lms/lms/doctype/course_chapter/course_chapter.json @@ -2650,7 +2656,7 @@ msgstr "crwdns149972:0crwdne149972:0" msgid "Items in Sidebar" msgstr "crwdns149974:0crwdne149974:0" -#: frontend/src/pages/ProgramForm.vue:272 +#: frontend/src/pages/ProgramForm.vue:275 msgid "Items removed successfully" msgstr "crwdns151746:0crwdne151746:0" @@ -2677,7 +2683,7 @@ msgstr "crwdns149982:0crwdne149982:0" msgid "Job Details" msgstr "crwdns149984:0crwdne149984:0" -#: lms/www/lms.py:111 +#: lms/www/lms.py:159 msgid "Job Openings" msgstr "crwdns149986:0crwdne149986:0" @@ -2700,6 +2706,7 @@ msgstr "crwdns149992:0crwdne149992:0" #. Label of the jobs (Check) field in DocType 'LMS Settings' #: frontend/src/pages/JobDetail.vue:10 frontend/src/pages/Jobs.vue:8 +#: frontend/src/pages/Jobs.vue:170 #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Jobs" msgstr "crwdns149994:0crwdne149994:0" @@ -2923,7 +2930,6 @@ msgstr "crwdns150066:0crwdne150066:0" #: lms/job/doctype/lms_job_application/lms_job_application.json #: lms/lms/doctype/cohort_join_request/cohort_join_request.json #: lms/lms/doctype/course_chapter/course_chapter.json -#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/function/function.json #: lms/lms/doctype/industry/industry.json #: lms/lms/doctype/lms_assignment/lms_assignment.json @@ -3035,7 +3041,7 @@ msgstr "crwdns150092:0crwdne150092:0" msgid "Limit Questions To" msgstr "crwdns150094:0crwdne150094:0" -#: lms/lms/doctype/lms_quiz/lms_quiz.py:40 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:38 msgid "Limit cannot be greater than or equal to the number of questions in the quiz." msgstr "crwdns150096:0crwdne150096:0" @@ -3055,12 +3061,8 @@ msgstr "crwdns150100:0crwdne150100:0" msgid "Links" msgstr "crwdns150102:0crwdne150102:0" -#: frontend/src/pages/Quizzes.vue:149 -msgid "List of quizzes" -msgstr "crwdns150104:0crwdne150104:0" - #. Option for the 'Status' (Select) field in DocType 'Cohort' -#: frontend/src/pages/Courses.vue:278 lms/lms/doctype/cohort/cohort.json +#: frontend/src/pages/Courses.vue:281 lms/lms/doctype/cohort/cohort.json msgid "Live" msgstr "crwdns150106:0crwdne150106:0" @@ -3092,7 +3094,7 @@ msgstr "crwdns150116:0crwdne150116:0" #. Label of the location (Data) field in DocType 'Job Opportunity' #. Label of the location (Data) field in DocType 'Education Detail' #. Label of the location (Data) field in DocType 'Work Experience' -#: frontend/src/pages/JobCreation.vue:26 frontend/src/pages/JobDetail.vue:85 +#: frontend/src/pages/JobCreation.vue:26 frontend/src/pages/JobDetail.vue:92 #: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/lms/doctype/education_detail/education_detail.json #: lms/lms/doctype/work_experience/work_experience.json @@ -3114,7 +3116,7 @@ msgstr "crwdns150122:0crwdne150122:0" msgid "Login to Frappe Cloud?" msgstr "crwdns152505:0crwdne152505:0" -#: frontend/src/pages/JobDetail.vue:48 +#: frontend/src/pages/JobDetail.vue:54 msgid "Login to apply" msgstr "crwdns150124:0crwdne150124:0" @@ -3171,7 +3173,7 @@ msgstr "crwdns150142:0crwdne150142:0" #. Label of the marks (Int) field in DocType 'LMS Quiz Result' #: frontend/src/components/Modals/Question.vue:50 #: frontend/src/components/Modals/Question.vue:99 -#: frontend/src/components/Quiz.vue:96 frontend/src/pages/QuizForm.vue:390 +#: frontend/src/components/Quiz.vue:96 frontend/src/pages/QuizForm.vue:393 #: frontend/src/pages/QuizSubmission.vue:65 #: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json #: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json @@ -3233,7 +3235,7 @@ msgstr "crwdns150158:0crwdne150158:0" #. Label of the member (Link) field in DocType 'LMS Quiz Submission' #: frontend/src/pages/AssignmentSubmissionList.vue:14 #: frontend/src/pages/QuizSubmission.vue:31 -#: frontend/src/pages/QuizSubmissionList.vue:86 +#: frontend/src/pages/QuizSubmissionList.vue:102 #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_submission/exercise_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json @@ -3314,7 +3316,7 @@ msgstr "crwdns150170:0crwdne150170:0" msgid "Member Username" msgstr "crwdns152442:0crwdne152442:0" -#: frontend/src/pages/ProgramForm.vue:251 +#: frontend/src/pages/ProgramForm.vue:254 msgid "Member added to program" msgstr "crwdns151754:0crwdne151754:0" @@ -3378,6 +3380,11 @@ msgstr "crwdns150184:0crwdne150184:0" msgid "Mentor Request Status Update Template" msgstr "crwdns150186:0crwdne150186:0" +#. Label of the meta_description (Small Text) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Meta Description" +msgstr "crwdns154526:0crwdne154526:0" + #. Label of the meta_image (Attach Image) field in DocType 'LMS Batch' #: frontend/src/pages/BatchForm.vue:44 lms/lms/doctype/lms_batch/lms_batch.json #: lms/public/js/common_functions.js:362 @@ -3400,6 +3407,7 @@ msgstr "crwdns151758:0crwdne151758:0" #. Name of a role #: frontend/src/pages/ProfileRoles.vue:10 #: lms/lms/doctype/course_evaluator/course_evaluator.json +#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/lms_assignment/lms_assignment.json #: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json #: lms/lms/doctype/lms_batch/lms_batch.json @@ -3459,12 +3467,13 @@ msgstr "crwdns150212:0crwdne150212:0" #. Option for the 'Event' (Select) field in DocType 'LMS Badge' #: frontend/src/pages/Assignments.vue:18 frontend/src/pages/Batches.vue:17 -#: frontend/src/pages/Courses.vue:17 frontend/src/pages/Courses.vue:281 +#: frontend/src/pages/Courses.vue:17 frontend/src/pages/Courses.vue:284 #: frontend/src/pages/Programs.vue:14 lms/lms/doctype/lms_badge/lms_badge.json msgid "New" msgstr "crwdns150214:0crwdne150214:0" -#: frontend/src/pages/AssignmentForm.vue:178 +#: frontend/src/pages/AssignmentForm.vue:181 +#: frontend/src/pages/AssignmentForm.vue:197 msgid "New Assignment" msgstr "crwdns152124:0crwdne152124:0" @@ -3472,11 +3481,11 @@ msgstr "crwdns152124:0crwdne152124:0" msgid "New Assignment Submission" msgstr "crwdns150216:0crwdne150216:0" -#: lms/public/js/common_functions.js:255 lms/www/lms.py:89 +#: lms/public/js/common_functions.js:255 lms/www/lms.py:134 msgid "New Batch" msgstr "crwdns150218:0crwdne150218:0" -#: lms/www/lms.py:40 +#: frontend/src/pages/CourseForm.vue:577 lms/www/lms.py:78 msgid "New Course" msgstr "crwdns150220:0crwdne150220:0" @@ -3504,7 +3513,7 @@ msgstr "crwdns151764:0crwdne151764:0" msgid "New Question" msgstr "crwdns150226:0crwdne150226:0" -#: frontend/src/pages/QuizForm.vue:450 frontend/src/pages/QuizForm.vue:458 +#: frontend/src/pages/QuizForm.vue:453 frontend/src/pages/QuizForm.vue:461 #: frontend/src/pages/Quizzes.vue:18 msgid "New Quiz" msgstr "crwdns150228:0crwdne150228:0" @@ -3599,9 +3608,9 @@ msgstr "crwdns152282:0crwdne152282:0" msgid "No introduction" msgstr "crwdns150258:0crwdne150258:0" -#: frontend/src/pages/Jobs.vue:77 -msgid "No jobs posted" -msgstr "crwdns150260:0crwdne150260:0" +#: frontend/src/pages/Jobs.vue:80 +msgid "No jobs found" +msgstr "crwdns154528:0crwdne154528:0" #: frontend/src/components/LiveClass.vue:71 msgid "No live classes scheduled" @@ -3615,6 +3624,10 @@ msgstr "crwdns152284:0crwdne152284:0" msgid "No programs found" msgstr "crwdns151768:0crwdne151768:0" +#: frontend/src/pages/QuizSubmissionList.vue:52 +msgid "No quiz submissions found. Please check again later." +msgstr "crwdns154530:0crwdne154530:0" + #: frontend/src/pages/Quizzes.vue:61 msgid "No quizzes found" msgstr "crwdns151592:0crwdne151592:0" @@ -3624,6 +3637,7 @@ msgid "No slots available for this date." msgstr "crwdns150264:0crwdne150264:0" #: frontend/src/pages/AssignmentSubmissionList.vue:67 +#: frontend/src/pages/QuizSubmissionList.vue:49 msgid "No submissions" msgstr "crwdns152128:0crwdne152128:0" @@ -3724,11 +3738,11 @@ msgstr "crwdns151770:0crwdne151770:0" msgid "Only files of type {0} will be accepted." msgstr "crwdns150308:0{0}crwdne150308:0" -#: frontend/src/pages/CourseForm.vue:509 frontend/src/utils/index.js:549 +#: frontend/src/pages/CourseForm.vue:507 frontend/src/utils/index.js:550 msgid "Only image file is allowed." msgstr "crwdns150310:0crwdne150310:0" -#: frontend/src/components/Modals/ChapterModal.vue:218 +#: frontend/src/components/Modals/ChapterModal.vue:221 msgid "Only zip files are allowed" msgstr "crwdns151642:0crwdne151642:0" @@ -3786,7 +3800,7 @@ msgstr "crwdns150330:0crwdne150330:0" msgid "Order ID" msgstr "crwdns150332:0crwdne150332:0" -#: frontend/src/pages/JobDetail.vue:74 +#: frontend/src/pages/JobDetail.vue:81 msgid "Organisation" msgstr "crwdns150336:0crwdne150336:0" @@ -3835,7 +3849,7 @@ msgid "Paid Batch" msgstr "crwdns150352:0crwdne150352:0" #. Label of the paid_certificate (Check) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:218 +#: frontend/src/pages/CourseForm.vue:214 #: lms/lms/doctype/lms_course/lms_course.json msgid "Paid Certificate" msgstr "crwdns152607:0crwdne152607:0" @@ -3845,7 +3859,7 @@ msgid "Paid Certificate after Evaluation" msgstr "crwdns152609:0crwdne152609:0" #. Label of the paid_course (Check) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:208 +#: frontend/src/pages/CourseForm.vue:204 #: lms/lms/doctype/lms_course/lms_course.json msgid "Paid Course" msgstr "crwdns150354:0crwdne150354:0" @@ -3855,7 +3869,7 @@ msgid "Pan Number" msgstr "crwdns150356:0crwdne150356:0" #. Option for the 'Type' (Select) field in DocType 'Job Opportunity' -#: frontend/src/pages/Jobs.vue:145 +#: frontend/src/pages/Jobs.vue:162 #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Part Time" msgstr "crwdns150358:0crwdne150358:0" @@ -3877,7 +3891,7 @@ msgstr "crwdns150362:0crwdne150362:0" #. Label of the passing_percentage (Int) field in DocType 'LMS Quiz' #. Label of the passing_percentage (Int) field in DocType 'LMS Quiz Submission' -#: frontend/src/pages/QuizForm.vue:72 frontend/src/pages/Quizzes.vue:127 +#: frontend/src/pages/QuizForm.vue:72 frontend/src/pages/Quizzes.vue:129 #: lms/lms/doctype/lms_quiz/lms_quiz.json #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json msgid "Passing Percentage" @@ -3888,7 +3902,7 @@ msgstr "crwdns150364:0crwdne150364:0" msgid "Password" msgstr "crwdns150366:0crwdne150366:0" -#: frontend/src/pages/CourseForm.vue:113 +#: frontend/src/pages/CourseForm.vue:109 msgid "Paste the youtube link of a short video introducing the course" msgstr "crwdns151488:0crwdne151488:0" @@ -3980,7 +3994,7 @@ msgstr "crwdns150390:0crwdne150390:0" #. Label of the percentage (Int) field in DocType 'LMS Quiz Submission' #: frontend/src/pages/QuizSubmission.vue:44 -#: frontend/src/pages/QuizSubmissionList.vue:97 +#: frontend/src/pages/QuizSubmissionList.vue:113 #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json msgid "Percentage" msgstr "crwdns150392:0crwdne150392:0" @@ -4002,7 +4016,7 @@ msgstr "crwdns150396:0crwdne150396:0" msgid "Please Login" msgstr "crwdns150398:0crwdne150398:0" -#: lms/lms/doctype/lms_settings/lms_settings.py:33 +#: lms/lms/doctype/lms_settings/lms_settings.py:34 msgid "Please add {1} for {3} to send calendar invites for evaluations." msgstr "crwdns150400:0{0}crwdnd150400:0{1}crwdnd150400:0{2}crwdnd150400:0{3}crwdne150400:0" @@ -4026,7 +4040,7 @@ msgstr "crwdns151772:0crwdne151772:0" msgid "Please enable Zoom Settings to use this feature." msgstr "crwdns150408:0crwdne150408:0" -#: frontend/src/components/CourseOutline.vue:324 +#: frontend/src/components/CourseOutline.vue:325 msgid "Please enroll for this course to view this lesson" msgstr "crwdns151644:0crwdne151644:0" @@ -4063,7 +4077,7 @@ msgstr "crwdns150418:0crwdne150418:0" msgid "Please install the Payments app to create a paid courses." msgstr "crwdns150420:0crwdne150420:0" -#: frontend/src/pages/Billing.vue:253 +#: frontend/src/pages/Billing.vue:254 msgid "Please let us know where you heard about us from." msgstr "crwdns150422:0crwdne150422:0" @@ -4112,7 +4126,7 @@ msgstr "crwdns151786:0crwdne151786:0" msgid "Please take appropriate action at {0}" msgstr "crwdns150432:0{0}crwdne150432:0" -#: frontend/src/components/Modals/ChapterModal.vue:175 +#: frontend/src/components/Modals/ChapterModal.vue:178 msgid "Please upload a SCORM package" msgstr "crwdns151646:0crwdne151646:0" @@ -4158,7 +4172,7 @@ msgstr "crwdns150448:0crwdne150448:0" msgid "Postal Code" msgstr "crwdns150450:0crwdne150450:0" -#: frontend/src/pages/JobDetail.vue:107 +#: frontend/src/pages/JobDetail.vue:114 msgid "Posted on" msgstr "crwdns150452:0crwdne150452:0" @@ -4193,7 +4207,7 @@ msgstr "crwdns150462:0crwdne150462:0" msgid "Preview Image" msgstr "crwdns150464:0crwdne150464:0" -#: frontend/src/pages/CourseForm.vue:111 +#: frontend/src/pages/CourseForm.vue:107 msgid "Preview Video" msgstr "crwdns150466:0crwdne150466:0" @@ -4208,7 +4222,7 @@ msgid "Pricing" msgstr "crwdns150470:0crwdne150470:0" #. Label of the pricing_tab (Tab Break) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:202 +#: frontend/src/pages/CourseForm.vue:198 #: lms/lms/doctype/lms_course/lms_course.json msgid "Pricing and Certification" msgstr "crwdns152617:0crwdne152617:0" @@ -4272,6 +4286,10 @@ msgstr "crwdns151792:0crwdne151792:0" msgid "Program Members" msgstr "crwdns151794:0crwdne151794:0" +#: frontend/src/pages/Programs.vue:219 lms/www/lms.py:273 +msgid "Programs" +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/BatchStudents.vue:75 @@ -4301,7 +4319,7 @@ msgstr "crwdns150494:0crwdne150494:0" #. Label of the published (Check) field in DocType 'LMS Course' #: frontend/src/components/Modals/BulkCertificates.vue:51 #: frontend/src/components/Modals/Event.vue:108 -#: frontend/src/pages/BatchForm.vue:27 frontend/src/pages/CourseForm.vue:172 +#: frontend/src/pages/BatchForm.vue:27 frontend/src/pages/CourseForm.vue:168 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/public/js/common_functions.js:266 @@ -4314,7 +4332,7 @@ msgid "Published Courses" msgstr "crwdns150498:0crwdne150498:0" #. Label of the published_on (Date) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:176 +#: frontend/src/pages/CourseForm.vue:172 #: lms/lms/doctype/lms_course/lms_course.json msgid "Published On" msgstr "crwdns150500:0crwdne150500:0" @@ -4333,7 +4351,7 @@ msgstr "crwdns152619:0crwdne152619:0" #. Label of the question (Text) field in DocType 'LMS Quiz Result' #: frontend/src/components/Assignment.vue:20 #: frontend/src/components/Modals/Question.vue:38 -#: frontend/src/pages/AssignmentForm.vue:45 frontend/src/pages/QuizForm.vue:385 +#: frontend/src/pages/AssignmentForm.vue:45 frontend/src/pages/QuizForm.vue:388 #: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/lms_assignment/lms_assignment.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json @@ -4358,11 +4376,11 @@ msgstr "crwdns150506:0crwdne150506:0" msgid "Question Name" msgstr "crwdns150508:0crwdne150508:0" -#: frontend/src/components/Modals/Question.vue:267 +#: frontend/src/components/Modals/Question.vue:270 msgid "Question added successfully" msgstr "crwdns150510:0crwdne150510:0" -#: frontend/src/components/Modals/Question.vue:319 +#: frontend/src/components/Modals/Question.vue:322 msgid "Question updated successfully" msgstr "crwdns150512:0crwdne150512:0" @@ -4379,7 +4397,7 @@ msgstr "crwdns150516:0{0}crwdnd150516:0{1}crwdne150516:0" msgid "Questions" msgstr "crwdns150518:0crwdne150518:0" -#: frontend/src/pages/QuizForm.vue:427 +#: frontend/src/pages/QuizForm.vue:430 msgid "Questions deleted successfully" msgstr "crwdns150520:0crwdne150520:0" @@ -4397,13 +4415,13 @@ msgid "Quiz ID" msgstr "crwdns150524:0crwdne150524:0" #. Label of a Link in the LMS Workspace -#: frontend/src/pages/QuizPage.vue:56 frontend/src/pages/QuizPage.vue:62 -#: lms/lms/workspace/lms/lms.json +#: frontend/src/pages/QuizPage.vue:57 lms/lms/workspace/lms/lms.json msgid "Quiz Submission" msgstr "crwdns150526:0crwdne150526:0" -#: frontend/src/pages/QuizSubmission.vue:128 -#: frontend/src/pages/QuizSubmissionList.vue:106 +#: frontend/src/pages/QuizSubmission.vue:131 +#: frontend/src/pages/QuizSubmissionList.vue:122 +#: frontend/src/pages/QuizSubmissionList.vue:127 msgid "Quiz Submissions" msgstr "crwdns150528:0crwdne150528:0" @@ -4416,7 +4434,7 @@ msgstr "crwdns150530:0crwdne150530:0" msgid "Quiz Title" msgstr "crwdns150532:0crwdne150532:0" -#: frontend/src/pages/QuizForm.vue:339 +#: frontend/src/pages/QuizForm.vue:342 msgid "Quiz created successfully" msgstr "crwdns150534:0crwdne150534:0" @@ -4424,7 +4442,7 @@ msgstr "crwdns150534:0crwdne150534:0" msgid "Quiz is not available to Guest users. Please login to continue." msgstr "crwdns150536:0crwdne150536:0" -#: frontend/src/pages/QuizForm.vue:358 +#: frontend/src/pages/QuizForm.vue:361 msgid "Quiz updated successfully" msgstr "crwdns150538:0crwdne150538:0" @@ -4434,8 +4452,8 @@ msgid "Quiz will appear at the bottom of the lesson." msgstr "crwdns150540:0crwdne150540:0" #: frontend/src/components/AppSidebar.vue:530 -#: frontend/src/pages/QuizForm.vue:438 frontend/src/pages/Quizzes.vue:138 -#: frontend/src/pages/Quizzes.vue:148 +#: frontend/src/pages/QuizForm.vue:441 frontend/src/pages/Quizzes.vue:140 +#: frontend/src/pages/Quizzes.vue:150 lms/www/lms.py:229 msgid "Quizzes" msgstr "crwdns150542:0crwdne150542:0" @@ -4513,7 +4531,7 @@ msgstr "crwdns150566:0crwdne150566:0" msgid "Related Courses" msgstr "crwdns150568:0crwdne150568:0" -#: frontend/src/pages/BatchForm.vue:77 frontend/src/pages/CourseForm.vue:100 +#: frontend/src/pages/BatchForm.vue:77 frontend/src/pages/CourseForm.vue:96 msgid "Remove" msgstr "crwdns151490:0crwdne151490:0" @@ -4607,7 +4625,7 @@ msgstr "crwdns150602:0#{0}crwdne150602:0" msgid "Row #{0} Start time cannot be outside the batch duration." msgstr "crwdns150604:0#{0}crwdne150604:0" -#: lms/lms/doctype/lms_quiz/lms_quiz.py:34 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:32 msgid "Rows {0} have the duplicate questions." msgstr "crwdns150606:0{0}crwdne150606:0" @@ -4631,6 +4649,11 @@ msgstr "crwdns151650:0crwdne151650:0" msgid "SCORM Package Path" msgstr "crwdns151652:0crwdne151652:0" +#. Label of the seo_tab (Tab Break) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "SEO" +msgstr "crwdns154534:0crwdne154534:0" + #. Option for the 'Day' (Select) field in DocType 'Evaluator Schedule' #. Option for the 'Day' (Select) field in DocType 'LMS Certificate Request' #: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json @@ -4644,7 +4667,7 @@ msgstr "crwdns150610:0crwdne150610:0" #: frontend/src/components/Modals/Event.vue:101 #: frontend/src/components/Modals/Event.vue:129 #: frontend/src/pages/AssignmentForm.vue:21 frontend/src/pages/BatchForm.vue:8 -#: frontend/src/pages/CourseForm.vue:21 frontend/src/pages/JobCreation.vue:8 +#: frontend/src/pages/CourseForm.vue:17 frontend/src/pages/JobCreation.vue:8 #: frontend/src/pages/LessonForm.vue:14 frontend/src/pages/ProgramForm.vue:7 #: frontend/src/pages/QuizForm.vue:34 frontend/src/pages/QuizSubmission.vue:14 #: lms/public/js/common_functions.js:405 @@ -4673,7 +4696,7 @@ msgstr "crwdns150620:0crwdne150620:0" #. Label of the score (Int) field in DocType 'LMS Quiz Submission' #: frontend/src/pages/QuizSubmission.vue:39 -#: frontend/src/pages/QuizSubmissionList.vue:91 +#: frontend/src/pages/QuizSubmissionList.vue:107 #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json #: lms/templates/quiz/quiz.html:148 msgid "Score" @@ -4767,7 +4790,7 @@ msgstr "crwdns154477:0crwdne154477:0" #: frontend/src/components/AppSidebar.vue:556 #: frontend/src/components/Modals/Settings.vue:7 -#: frontend/src/pages/BatchForm.vue:148 frontend/src/pages/CourseForm.vue:162 +#: frontend/src/pages/BatchForm.vue:148 frontend/src/pages/CourseForm.vue:158 #: frontend/src/pages/ProfileRoles.vue:4 frontend/src/pages/QuizForm.vue:79 msgid "Settings" msgstr "crwdns150648:0crwdne150648:0" @@ -4781,7 +4804,7 @@ msgid "Short Description" msgstr "crwdns152513:0crwdne152513:0" #. Label of the short_introduction (Small Text) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:39 +#: frontend/src/pages/CourseForm.vue:35 #: lms/lms/doctype/lms_course/lms_course.json msgid "Short Introduction" msgstr "crwdns150652:0crwdne150652:0" @@ -4892,10 +4915,6 @@ msgstr "crwdns150692:0crwdne150692:0" msgid "Skip" msgstr "crwdns150696:0crwdne150696:0" -#: frontend/src/components/OnboardingBanner.vue:3 -msgid "Skip Onboarding" -msgstr "crwdns151796:0crwdne151796:0" - #: lms/lms/doctype/course_evaluator/course_evaluator.py:63 msgid "Slot Times are overlapping for some schedules." msgstr "crwdns150698:0crwdne150698:0" @@ -5009,8 +5028,9 @@ msgstr "crwdns150730:0crwdne150730:0" #. Label of the tab_4_tab (Tab Break) field in DocType 'LMS Course' #. Label of the statistics (Check) field in DocType 'LMS Settings' #: frontend/src/components/BatchStudents.vue:5 +#: frontend/src/pages/Statistics.vue:322 #: lms/lms/doctype/lms_course/lms_course.json -#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:136 +#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:182 msgid "Statistics" msgstr "crwdns150732:0crwdne150732:0" @@ -5110,7 +5130,7 @@ msgstr "crwdns152136:0crwdne152136:0" #: frontend/src/components/Modals/AssessmentModal.vue:9 #: frontend/src/components/Modals/BatchCourseModal.vue:9 #: frontend/src/components/Modals/EvaluationModal.vue:9 -#: frontend/src/components/Modals/Question.vue:341 +#: frontend/src/components/Modals/Question.vue:344 #: frontend/src/components/Quiz.vue:218 lms/templates/assignment.html:9 #: lms/templates/livecode/extension_footer.html:25 #: lms/templates/quiz/quiz.html:128 lms/templates/reviews.html:163 @@ -5135,18 +5155,18 @@ msgstr "crwdns150766:0{0}crwdne150766:0" #: frontend/src/components/Modals/AnnouncementModal.vue:99 #: frontend/src/components/Modals/AssessmentModal.vue:73 #: frontend/src/components/Modals/BulkCertificates.vue:121 -#: frontend/src/components/Modals/ChapterModal.vue:151 -#: frontend/src/components/Modals/ChapterModal.vue:196 +#: frontend/src/components/Modals/ChapterModal.vue:154 +#: frontend/src/components/Modals/ChapterModal.vue:199 #: frontend/src/components/Modals/Event.vue:255 #: frontend/src/components/Modals/Event.vue:310 -#: frontend/src/components/Modals/Question.vue:267 -#: frontend/src/components/Modals/Question.vue:318 -#: frontend/src/pages/AssignmentForm.vue:155 -#: frontend/src/pages/CourseForm.vue:472 frontend/src/pages/ProgramForm.vue:229 -#: frontend/src/pages/ProgramForm.vue:251 -#: frontend/src/pages/ProgramForm.vue:272 -#: frontend/src/pages/ProgramForm.vue:298 frontend/src/pages/QuizForm.vue:339 -#: frontend/src/pages/QuizForm.vue:358 frontend/src/pages/QuizForm.vue:427 +#: frontend/src/components/Modals/Question.vue:270 +#: frontend/src/components/Modals/Question.vue:321 +#: frontend/src/pages/AssignmentForm.vue:158 +#: frontend/src/pages/CourseForm.vue:470 frontend/src/pages/ProgramForm.vue:232 +#: frontend/src/pages/ProgramForm.vue:254 +#: frontend/src/pages/ProgramForm.vue:275 +#: frontend/src/pages/ProgramForm.vue:301 frontend/src/pages/QuizForm.vue:342 +#: frontend/src/pages/QuizForm.vue:361 frontend/src/pages/QuizForm.vue:430 msgid "Success" msgstr "crwdns150768:0crwdne150768:0" @@ -5164,7 +5184,7 @@ msgstr "crwdns150770:0crwdne150770:0" msgid "Sunday" msgstr "crwdns150772:0crwdne150772:0" -#: lms/lms/api.py:1026 +#: lms/lms/api.py:1027 msgid "Suspicious pattern found in {0}: {1}" msgstr "crwdns151930:0{0}crwdnd151930:0{1}crwdne151930:0" @@ -5220,7 +5240,7 @@ msgid "System Manager" msgstr "crwdns150774:0crwdne150774:0" #. Label of the tags (Data) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:121 +#: frontend/src/pages/CourseForm.vue:117 #: lms/lms/doctype/lms_course/lms_course.json msgid "Tags" msgstr "crwdns150776:0crwdne150776:0" @@ -5325,6 +5345,10 @@ msgstr "crwdns150806:0crwdne150806:0" msgid "There are no courses matching the criteria. Keep an eye out, fresh learning experiences are on the way soon!" msgstr "crwdns154207:0crwdne154207:0" +#: frontend/src/pages/Jobs.vue:84 +msgid "There are no jobs available at the moment. Open a job opportunity or check here again later." +msgstr "crwdns154536:0crwdne154536:0" + #: frontend/src/pages/CertifiedParticipants.vue:92 msgid "There are no participants matching this criteria." msgstr "crwdns152294:0crwdne152294:0" @@ -5384,9 +5408,11 @@ msgstr "crwdns150820:0crwdne150820:0" msgid "This course is free." msgstr "crwdns150822:0crwdne150822:0" -#: frontend/src/pages/SCORMChapter.vue:201 -msgid "This is a chapter in the course {0}" -msgstr "crwdns151654:0{0}crwdne151654:0" +#. Description of the 'Meta Description' (Small Text) field in DocType 'LMS +#. Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "This description will be shown on lists and pages without meta description" +msgstr "crwdns154538:0crwdne154538:0" #: frontend/src/pages/Lesson.vue:16 msgid "This lesson is not available for preview. Please enroll in the course to access it." @@ -5482,10 +5508,10 @@ msgstr "crwdns150848:0crwdne150848:0" #: frontend/src/components/Modals/DiscussionModal.vue:18 #: frontend/src/components/Modals/LiveClassModal.vue:23 #: frontend/src/pages/AssignmentForm.vue:32 -#: frontend/src/pages/Assignments.vue:152 frontend/src/pages/BatchForm.vue:19 -#: frontend/src/pages/CourseForm.vue:33 frontend/src/pages/JobCreation.vue:20 +#: frontend/src/pages/Assignments.vue:155 frontend/src/pages/BatchForm.vue:19 +#: frontend/src/pages/CourseForm.vue:29 frontend/src/pages/JobCreation.vue:20 #: frontend/src/pages/ProgramForm.vue:11 frontend/src/pages/Programs.vue:116 -#: frontend/src/pages/QuizForm.vue:48 frontend/src/pages/Quizzes.vue:116 +#: frontend/src/pages/QuizForm.vue:48 frontend/src/pages/Quizzes.vue:118 #: lms/lms/doctype/cohort/cohort.json #: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json #: lms/lms/doctype/cohort_web_page/cohort_web_page.json @@ -5507,7 +5533,7 @@ msgstr "crwdns150848:0crwdne150848:0" msgid "Title" msgstr "crwdns150850:0crwdne150850:0" -#: frontend/src/components/Modals/ChapterModal.vue:172 +#: frontend/src/components/Modals/ChapterModal.vue:175 msgid "Title is required" msgstr "crwdns151656:0crwdne151656:0" @@ -5539,7 +5565,7 @@ msgid "Total" msgstr "crwdns150864:0crwdne150864:0" #. Label of the total_marks (Int) field in DocType 'LMS Quiz' -#: frontend/src/pages/QuizForm.vue:67 frontend/src/pages/Quizzes.vue:121 +#: frontend/src/pages/QuizForm.vue:67 frontend/src/pages/Quizzes.vue:123 #: lms/lms/doctype/lms_quiz/lms_quiz.json msgid "Total Marks" msgstr "crwdns150866:0crwdne150866:0" @@ -5577,7 +5603,7 @@ msgstr "crwdns150876:0crwdne150876:0" #: frontend/src/components/Modals/AssessmentModal.vue:22 #: frontend/src/components/Modals/Question.vue:54 #: frontend/src/pages/AssignmentForm.vue:39 -#: frontend/src/pages/Assignments.vue:30 frontend/src/pages/Assignments.vue:157 +#: frontend/src/pages/Assignments.vue:30 frontend/src/pages/Assignments.vue:160 #: frontend/src/pages/JobCreation.vue:33 frontend/src/pages/Jobs.vue:55 #: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/lms/doctype/lms_assignment/lms_assignment.json @@ -5624,7 +5650,7 @@ msgstr "crwdns150890:0crwdne150890:0" msgid "Unlisted" msgstr "crwdns150892:0crwdne150892:0" -#: frontend/src/pages/Batches.vue:293 +#: frontend/src/pages/Batches.vue:295 msgid "Unpublished" msgstr "crwdns152296:0crwdne152296:0" @@ -5646,8 +5672,8 @@ msgstr "crwdns150898:0crwdne150898:0" #. Option for the 'Status' (Select) field in DocType 'Cohort' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request' #. Label of the upcoming (Check) field in DocType 'LMS Course' -#: frontend/src/pages/Batches.vue:291 frontend/src/pages/CourseForm.vue:185 -#: frontend/src/pages/Courses.vue:284 lms/lms/doctype/cohort/cohort.json +#: frontend/src/pages/Batches.vue:293 frontend/src/pages/CourseForm.vue:181 +#: frontend/src/pages/Courses.vue:287 lms/lms/doctype/cohort/cohort.json #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_course/lms_course.json msgid "Upcoming" @@ -5672,7 +5698,7 @@ msgstr "crwdns150906:0crwdne150906:0" msgid "Update Password" msgstr "crwdns150908:0crwdne150908:0" -#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:81 +#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:77 msgid "Upload" msgstr "crwdns151498:0crwdne151498:0" @@ -5778,6 +5804,10 @@ msgstr "crwdns150942:0crwdne150942:0" msgid "Visit Batch" msgstr "crwdns150944:0crwdne150944:0" +#: frontend/src/pages/JobDetail.vue:38 +msgid "Visit Website" +msgstr "crwdns154540:0crwdne154540:0" + #: lms/templates/emails/batch_confirmation.html:23 msgid "Visit the following link to view your " msgstr "crwdns150946:0crwdne150946:0" @@ -5899,7 +5929,7 @@ msgstr "crwdns150984:0crwdne150984:0" msgid "You are not a mentor of the course {0}" msgstr "crwdns150986:0{0}crwdne150986:0" -#: frontend/src/components/CourseOutline.vue:323 +#: frontend/src/components/CourseOutline.vue:324 msgid "You are not enrolled" msgstr "crwdns151658:0crwdne151658:0" @@ -6123,11 +6153,7 @@ msgstr "crwdns151064:0crwdne151064:0" msgid "out of" msgstr "crwdns151066:0crwdne151066:0" -#: frontend/src/components/JobCard.vue:30 -msgid "posted" -msgstr "crwdns152300:0crwdne152300:0" - -#: frontend/src/pages/QuizForm.vue:386 +#: frontend/src/pages/QuizForm.vue:389 msgid "question_detail" msgstr "crwdns151070:0crwdne151070:0" @@ -6147,7 +6173,7 @@ msgstr "crwdns152184:0crwdne152184:0" msgid "you can" msgstr "crwdns151076:0crwdne151076:0" -#: lms/lms/api.py:816 lms/lms/api.py:824 +#: lms/lms/api.py:817 lms/lms/api.py:825 msgid "{0} Settings not found" msgstr "crwdns151078:0{0}crwdne151078:0" diff --git a/lms/locale/es.po b/lms/locale/es.po index e233cec8..5ae12112 100644 --- a/lms/locale/es.po +++ b/lms/locale/es.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n" -"POT-Creation-Date: 2025-04-04 16:04+0000\n" -"PO-Revision-Date: 2025-04-08 03:58\n" +"POT-Creation-Date: 2025-04-11 16:04+0000\n" +"PO-Revision-Date: 2025-04-14 06:01\n" "Last-Translator: jannat@frappe.io\n" "Language-Team: Spanish\n" "MIME-Version: 1.0\n" @@ -71,7 +71,7 @@ msgstr "Estadísticas" msgid "A course cannot have both paid certificate and certificate of completion." msgstr "" -#: frontend/src/pages/CourseForm.vue:41 +#: frontend/src/pages/CourseForm.vue:37 msgid "A one line introduction to the course that appears on the course card" msgstr "Una introducción de una línea al curso que aparece en la tarjeta del curso." @@ -145,7 +145,6 @@ msgid "Add a Student" msgstr "Añadir a un estudiante" #: frontend/src/components/AppSidebar.vue:514 -#: frontend/src/components/OnboardingBanner.vue:56 msgid "Add a chapter" msgstr "Añadir un capítulo" @@ -153,16 +152,15 @@ msgstr "Añadir un capítulo" msgid "Add a course" msgstr "Añadir un curso" -#: frontend/src/pages/CourseForm.vue:137 +#: frontend/src/pages/CourseForm.vue:133 msgid "Add a keyword and then press enter" msgstr "" #: frontend/src/components/AppSidebar.vue:515 -#: frontend/src/components/OnboardingBanner.vue:81 msgid "Add a lesson" msgstr "Añadir una lección" -#: frontend/src/components/Modals/Question.vue:146 +#: frontend/src/components/Modals/Question.vue:147 #: frontend/src/pages/QuizForm.vue:183 msgid "Add a new question" msgstr "Añadir una nueva pregunta" @@ -235,7 +233,7 @@ msgid "Admin" msgstr "Admin" #. Name of a role -#: frontend/src/pages/Batches.vue:282 lms/lms/doctype/lms_badge/lms_badge.json +#: frontend/src/pages/Batches.vue:284 lms/lms/doctype/lms_badge/lms_badge.json msgid "All" msgstr "Todos" @@ -259,7 +257,7 @@ msgstr "" msgid "All Submissions" msgstr "Todas las entregas" -#: lms/lms/doctype/lms_quiz/lms_quiz.py:46 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:44 msgid "All questions should have the same marks if the limit is set." msgstr "Todas las preguntas deberían tener las mismas marcas si el límite está establecido." @@ -294,7 +292,7 @@ msgstr "Ya está Registrado" #. Label of the amount (Currency) field in DocType 'LMS Batch' #. Label of the course_price (Currency) field in DocType 'LMS Course' #. Label of the amount (Currency) field in DocType 'LMS Payment' -#: frontend/src/pages/BatchForm.vue:209 frontend/src/pages/CourseForm.vue:221 +#: frontend/src/pages/BatchForm.vue:209 frontend/src/pages/CourseForm.vue:217 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_payment/lms_payment.json @@ -346,7 +344,7 @@ msgstr "" msgid "Answer" msgstr "Respuesta" -#: frontend/src/pages/CourseForm.vue:85 frontend/src/pages/CourseForm.vue:103 +#: frontend/src/pages/CourseForm.vue:81 frontend/src/pages/CourseForm.vue:99 msgid "Appears on the course card in the course list" msgstr "Aparece en la tarjeta del curso en la lista de cursos." @@ -354,11 +352,11 @@ msgstr "Aparece en la tarjeta del curso en la lista de cursos." msgid "Appears when the batch URL is shared on any online platform" msgstr "Aparece cuando la URL del grupo se comparte en cualquier plataforma en línea" -#: frontend/src/pages/JobDetail.vue:121 +#: frontend/src/pages/JobDetail.vue:128 msgid "Applications Received" msgstr "Solicitudes recibidas" -#: frontend/src/pages/JobDetail.vue:42 +#: frontend/src/pages/JobDetail.vue:48 msgid "Apply" msgstr "Postularse" @@ -389,7 +387,7 @@ msgstr "Aprobado" msgid "Apps" msgstr "Apps" -#: frontend/src/pages/Batches.vue:292 +#: frontend/src/pages/Batches.vue:294 msgid "Archived" msgstr "Archivado" @@ -401,11 +399,6 @@ msgstr "" msgid "Are you sure you want to login to your Frappe Cloud dashboard?" msgstr "" -#. Label of the user_category (Check) field in DocType 'LMS Settings' -#: lms/lms/doctype/lms_settings/lms_settings.json -msgid "Ask User Category during Signup" -msgstr "Preguntar categoría de usuario durante el registro" - #. 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 @@ -470,6 +463,10 @@ msgstr "Adjunto de la asignación" msgid "Assignment Submission Template" msgstr "Plantilla de entrega de tareas" +#: frontend/src/pages/AssignmentSubmissionList.vue:223 +msgid "Assignment Submissions" +msgstr "" + #. Label of the assignment_title (Data) field in DocType 'LMS Assignment #. Submission' #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json @@ -480,7 +477,7 @@ msgstr "Título de la tarea" msgid "Assignment for Lesson {0} by {1} already exists." msgstr "Ya existe una asignación para la lección {0} por {1}." -#: frontend/src/pages/AssignmentForm.vue:155 +#: frontend/src/pages/AssignmentForm.vue:158 msgid "Assignment saved successfully" msgstr "" @@ -490,7 +487,8 @@ msgid "Assignment will appear at the bottom of the lesson." msgstr "La tarea aparecerá al final de la lección." #: frontend/src/components/AppSidebar.vue:531 -#: frontend/src/pages/AssignmentForm.vue:174 +#: frontend/src/pages/AssignmentForm.vue:177 +#: frontend/src/pages/Assignments.vue:193 lms/www/lms.py:251 msgid "Assignments" msgstr "Asignaciones" @@ -656,8 +654,8 @@ msgid "Batch:" msgstr "Lote:" #. Label of the batches (Check) field in DocType 'LMS Settings' -#: frontend/src/pages/Batches.vue:302 -#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:63 +#: frontend/src/pages/Batches.vue:304 frontend/src/pages/Batches.vue:311 +#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:105 msgid "Batches" msgstr "Lotes" @@ -675,7 +673,7 @@ msgstr "Atentamente," #. Label of the billing_details_section (Section Break) field in DocType 'LMS #. Payment' -#: frontend/src/pages/Billing.vue:8 +#: frontend/src/pages/Billing.vue:8 frontend/src/pages/Billing.vue:363 #: lms/lms/doctype/lms_payment/lms_payment.json msgid "Billing Details" msgstr "Detalles de facturación" @@ -757,8 +755,9 @@ msgstr "Ropa casual" #. Label of the category (Link) field in DocType 'LMS Course' #: frontend/src/pages/BatchForm.vue:190 frontend/src/pages/Batches.vue:55 #: frontend/src/pages/CertifiedParticipants.vue:37 -#: frontend/src/pages/CourseForm.vue:148 frontend/src/pages/Courses.vue:51 -#: frontend/src/pages/JobDetail.vue:96 lms/lms/doctype/lms_batch/lms_batch.json +#: frontend/src/pages/CourseForm.vue:144 frontend/src/pages/Courses.vue:51 +#: frontend/src/pages/JobDetail.vue:103 +#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/public/js/common_functions.js:316 lms/templates/signup-form.html:22 @@ -813,7 +812,7 @@ msgstr "" #: frontend/src/components/Modals/Event.vue:371 #: frontend/src/pages/BatchForm.vue:37 frontend/src/pages/Batches.vue:38 #: frontend/src/pages/CourseCertification.vue:10 -#: frontend/src/pages/CourseCertification.vue:133 +#: frontend/src/pages/CourseCertification.vue:135 #: frontend/src/pages/Courses.vue:34 lms/fixtures/custom_field.json #: lms/lms/doctype/certification/certification.json #: lms/lms/doctype/lms_batch/lms_batch.json @@ -837,7 +836,8 @@ msgid "Certified" msgstr "" #. Label of the certified_participants (Check) field in DocType 'LMS Settings' -#: frontend/src/pages/CertifiedParticipants.vue:161 +#: frontend/src/pages/CertifiedParticipants.vue:164 +#: frontend/src/pages/CertifiedParticipants.vue:171 #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Certified Participants" msgstr "Participantes certificados" @@ -864,11 +864,11 @@ msgstr "Capítulo" msgid "Chapter Reference" msgstr "Referencia del capítulo" -#: frontend/src/components/Modals/ChapterModal.vue:152 +#: frontend/src/components/Modals/ChapterModal.vue:155 msgid "Chapter added successfully" msgstr "" -#: frontend/src/components/Modals/ChapterModal.vue:196 +#: frontend/src/components/Modals/ChapterModal.vue:199 msgid "Chapter updated successfully" msgstr "" @@ -1117,7 +1117,7 @@ msgid "Completed by Students" msgstr "" #. Label of the enable_certification (Check) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:213 +#: frontend/src/pages/CourseForm.vue:209 #: lms/lms/doctype/lms_course/lms_course.json msgid "Completion Certificate" msgstr "Certificado de finalización" @@ -1179,7 +1179,7 @@ msgid "Continue Learning" msgstr "Continuar aprendiendo" #. Option for the 'Type' (Select) field in DocType 'Job Opportunity' -#: frontend/src/pages/Jobs.vue:146 +#: frontend/src/pages/Jobs.vue:163 #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Contract" msgstr "Contrato" @@ -1294,6 +1294,7 @@ msgstr "Curso Completado" #. Name of a role #: frontend/src/pages/ProfileRoles.vue:16 #: lms/lms/doctype/course_chapter/course_chapter.json +#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_program/lms_program.json @@ -1307,7 +1308,7 @@ msgstr "Creador del curso" msgid "Course Data" msgstr "Datos del Curso" -#: frontend/src/pages/CourseForm.vue:50 +#: frontend/src/pages/CourseForm.vue:46 msgid "Course Description" msgstr "Descripción del curso" @@ -1316,7 +1317,7 @@ msgstr "Descripción del curso" msgid "Course Evaluator" msgstr "Evaluador del curso" -#: frontend/src/pages/CourseForm.vue:63 +#: frontend/src/pages/CourseForm.vue:59 msgid "Course Image" msgstr "Imagen del curso" @@ -1330,7 +1331,7 @@ msgstr "Instructor del curso" msgid "Course Lesson" msgstr "Lección del curso" -#: lms/www/lms.py:30 +#: lms/www/lms.py:70 msgid "Course List" msgstr "Lista de Cursos" @@ -1338,7 +1339,7 @@ msgstr "Lista de Cursos" msgid "Course Name" msgstr "Nombre del Curso" -#: frontend/src/pages/CourseDetail.vue:76 frontend/src/pages/CourseForm.vue:241 +#: frontend/src/pages/CourseDetail.vue:76 frontend/src/pages/CourseForm.vue:237 msgid "Course Outline" msgstr "" @@ -1370,7 +1371,7 @@ msgstr "Estadísticas del curso" msgid "Course Title" msgstr "Título del curso" -#: frontend/src/pages/ProgramForm.vue:229 +#: frontend/src/pages/ProgramForm.vue:232 msgid "Course added to program" msgstr "" @@ -1378,11 +1379,11 @@ msgstr "" msgid "Course already added to the batch." msgstr "Curso ya agregado al lote." -#: frontend/src/pages/CourseForm.vue:472 +#: frontend/src/pages/CourseForm.vue:470 msgid "Course deleted successfully" msgstr "" -#: frontend/src/pages/ProgramForm.vue:298 +#: frontend/src/pages/ProgramForm.vue:301 msgid "Course moved successfully" msgstr "" @@ -1400,8 +1401,9 @@ msgstr "El curso {0} ya se ha agregado a este lote." #: frontend/src/components/BatchStudents.vue:92 #: frontend/src/components/Modals/BatchStudentProgress.vue:79 #: frontend/src/pages/BatchDetail.vue:21 frontend/src/pages/BatchDetail.vue:70 -#: frontend/src/pages/CourseCertification.vue:125 -#: frontend/src/pages/Courses.vue:301 frontend/src/pages/Statistics.vue:21 +#: frontend/src/pages/CourseCertification.vue:127 +#: frontend/src/pages/Courses.vue:304 frontend/src/pages/Courses.vue:311 +#: frontend/src/pages/Statistics.vue:21 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Courses" @@ -1443,7 +1445,6 @@ msgid "Create a batch" msgstr "" #: frontend/src/components/AppSidebar.vue:513 -#: frontend/src/components/OnboardingBanner.vue:30 msgid "Create a course" msgstr "" @@ -1467,7 +1468,7 @@ msgstr "" msgid "Create your first quiz" msgstr "" -#: frontend/src/pages/Assignments.vue:163 frontend/src/pages/Courses.vue:292 +#: frontend/src/pages/Assignments.vue:166 frontend/src/pages/Courses.vue:295 msgid "Created" msgstr "Creado" @@ -1482,7 +1483,7 @@ msgstr "" #. Label of the currency (Link) field in DocType 'LMS Batch' #. Label of the currency (Link) field in DocType 'LMS Course' #. Label of the currency (Link) field in DocType 'LMS Payment' -#: frontend/src/pages/BatchForm.vue:217 frontend/src/pages/CourseForm.vue:226 +#: frontend/src/pages/BatchForm.vue:217 frontend/src/pages/CourseForm.vue:222 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_payment/lms_payment.json @@ -1585,9 +1586,9 @@ msgstr "Divisa / modena predeterminada" msgid "Degree Type" msgstr "Tipo de Grado" -#: frontend/src/components/CourseOutline.vue:247 -#: frontend/src/components/CourseOutline.vue:305 -#: frontend/src/pages/CourseForm.vue:485 +#: frontend/src/components/CourseOutline.vue:248 +#: frontend/src/components/CourseOutline.vue:306 +#: frontend/src/pages/CourseForm.vue:483 msgid "Delete" msgstr "Eliminar" @@ -1595,27 +1596,27 @@ msgstr "Eliminar" msgid "Delete Chapter" msgstr "" -#: frontend/src/pages/CourseForm.vue:479 +#: frontend/src/pages/CourseForm.vue:477 msgid "Delete Course" msgstr "" -#: frontend/src/components/CourseOutline.vue:299 +#: frontend/src/components/CourseOutline.vue:300 msgid "Delete this chapter?" msgstr "" -#: frontend/src/components/CourseOutline.vue:241 +#: frontend/src/components/CourseOutline.vue:242 msgid "Delete this lesson?" msgstr "" -#: frontend/src/pages/CourseForm.vue:480 +#: frontend/src/pages/CourseForm.vue:478 msgid "Deleting the course will also delete all its chapters and lessons. Are you sure you want to delete this course?" msgstr "" -#: frontend/src/components/CourseOutline.vue:300 +#: frontend/src/components/CourseOutline.vue:301 msgid "Deleting this chapter will also delete all its lessons and permanently remove it from the course. This action cannot be undone. Are you sure you want to continue?" msgstr "" -#: frontend/src/components/CourseOutline.vue:242 +#: frontend/src/components/CourseOutline.vue:243 msgid "Deleting this lesson will permanently remove it from the course. This action cannot be undone. Are you sure you want to continue?" msgstr "" @@ -1654,11 +1655,11 @@ msgstr "Escritorio" #: frontend/src/components/Modals/DiscussionModal.vue:22 #: frontend/src/pages/AssignmentForm.vue:27 frontend/src/pages/BatchForm.vue:14 -#: frontend/src/pages/CourseForm.vue:29 frontend/src/pages/QuizForm.vue:42 +#: frontend/src/pages/CourseForm.vue:25 frontend/src/pages/QuizForm.vue:42 msgid "Details" msgstr "Detalles" -#: frontend/src/pages/CourseForm.vue:195 +#: frontend/src/pages/CourseForm.vue:191 msgid "Disable Self Enrollment" msgstr "Deshabilitar la autoinscripción" @@ -1667,6 +1668,11 @@ msgstr "Deshabilitar la autoinscripción" msgid "Disable Self Learning" msgstr "Desactivar autoaprendizaje" +#. Label of the disable_signup (Check) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Disable Signup" +msgstr "" + #. Label of the disabled (Check) field in DocType 'Job Opportunity' #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Disabled" @@ -1808,7 +1814,7 @@ msgstr "Empleado" msgid "Enable" msgstr "Habilitar" -#: lms/lms/doctype/lms_settings/lms_settings.py:20 +#: lms/lms/doctype/lms_settings/lms_settings.py:21 msgid "Enable Google API in Google Settings to send calendar invites for evaluations." msgstr "Habilite la API de Google en la configuración de Google para enviar invitaciones de calendario para evaluaciones." @@ -1867,7 +1873,7 @@ msgstr "Hora de finalización" msgid "Enroll Now" msgstr "Inscribirse ahora" -#: frontend/src/pages/Batches.vue:295 frontend/src/pages/Courses.vue:294 +#: frontend/src/pages/Batches.vue:297 frontend/src/pages/Courses.vue:297 msgid "Enrolled" msgstr "" @@ -1902,7 +1908,7 @@ msgstr "Error al inscribirse" msgid "Enrollments" msgstr "Inscripciones" -#: lms/lms/doctype/lms_settings/lms_settings.py:25 +#: lms/lms/doctype/lms_settings/lms_settings.py:26 msgid "Enter Client Id and Client Secret in Google Settings to send calendar invites for evaluations." msgstr "Ingrese el ID del cliente y el secreto del cliente en la configuración de Google para enviar invitaciones al calendario para evaluaciones." @@ -1921,19 +1927,19 @@ msgstr "Ingrese la respuesta correcta" #: frontend/src/components/Assignment.vue:287 #: frontend/src/components/Modals/AnnouncementModal.vue:105 #: frontend/src/components/Modals/BulkCertificates.vue:115 -#: frontend/src/components/Modals/ChapterModal.vue:157 -#: frontend/src/components/Modals/ChapterModal.vue:164 -#: frontend/src/components/Modals/ChapterModal.vue:200 -#: frontend/src/components/Modals/Question.vue:251 -#: frontend/src/components/Modals/Question.vue:272 -#: frontend/src/components/Modals/Question.vue:329 -#: frontend/src/components/Modals/StudentModal.vue:70 +#: frontend/src/components/Modals/ChapterModal.vue:160 +#: frontend/src/components/Modals/ChapterModal.vue:167 +#: frontend/src/components/Modals/ChapterModal.vue:203 +#: frontend/src/components/Modals/Question.vue:252 +#: frontend/src/components/Modals/Question.vue:275 +#: frontend/src/components/Modals/Question.vue:332 +#: frontend/src/components/Modals/StudentModal.vue:73 #: frontend/src/components/Quiz.vue:592 #: frontend/src/components/SettingDetails.vue:62 -#: frontend/src/pages/AssignmentForm.vue:139 -#: frontend/src/pages/AssignmentForm.vue:159 frontend/src/pages/Billing.vue:261 -#: frontend/src/pages/QuizForm.vue:346 frontend/src/pages/QuizForm.vue:361 -#: frontend/src/pages/QuizSubmission.vue:147 +#: frontend/src/pages/AssignmentForm.vue:142 +#: frontend/src/pages/AssignmentForm.vue:162 frontend/src/pages/Billing.vue:262 +#: frontend/src/pages/QuizForm.vue:349 frontend/src/pages/QuizForm.vue:364 +#: frontend/src/pages/QuizSubmission.vue:150 msgid "Error" msgstr "Error" @@ -1982,7 +1988,7 @@ msgstr "La evaluación se guardó correctamente" #. Label of the evaluator (Link) field in DocType 'LMS Course' #: frontend/src/components/Modals/BatchCourseModal.vue:26 #: frontend/src/components/Modals/BulkCertificates.vue:22 -#: frontend/src/pages/CourseForm.vue:232 frontend/src/pages/ProfileRoles.vue:22 +#: frontend/src/pages/CourseForm.vue:228 frontend/src/pages/ProfileRoles.vue:22 #: lms/lms/doctype/batch_course/batch_course.json #: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json @@ -2100,7 +2106,7 @@ msgstr "Falla" #. Label of the featured (Check) field in DocType 'LMS Course' #: frontend/src/components/CourseCard.vue:16 -#: frontend/src/pages/CourseForm.vue:190 +#: frontend/src/pages/CourseForm.vue:186 #: lms/lms/doctype/lms_course/lms_course.json msgid "Featured" msgstr "Destacados" @@ -2149,10 +2155,6 @@ msgstr "Horario fijo de 9 a 5" msgid "Flexible Time" msgstr "Horario flexible" -#: frontend/src/pages/QuizForm.vue:459 -msgid "Form to create and edit quizzes" -msgstr "Formulario para crear y editar cuestionarios" - #. Option for the 'Attire Preference' (Select) field in DocType 'User' #: lms/fixtures/custom_field.json msgid "Formal Wear" @@ -2163,7 +2165,7 @@ msgid "Free" msgstr "Gratis" #. Option for the 'Type' (Select) field in DocType 'Job Opportunity' -#: frontend/src/pages/Jobs.vue:147 +#: frontend/src/pages/Jobs.vue:164 #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Freelance" msgstr "Freelance" @@ -2207,7 +2209,7 @@ msgid "Full Name" msgstr "Nombre completo" #. Option for the 'Type' (Select) field in DocType 'Job Opportunity' -#: frontend/src/pages/Jobs.vue:144 +#: frontend/src/pages/Jobs.vue:161 #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Full Time" msgstr "Tiempo completo" @@ -2385,7 +2387,7 @@ msgstr "Estoy buscando un trabajo" msgid "I am unavailable" msgstr "No estoy disponible" -#: frontend/src/pages/QuizForm.vue:380 +#: frontend/src/pages/QuizForm.vue:383 msgid "ID" msgstr "Identificador" @@ -2395,6 +2397,11 @@ msgstr "Identificador" msgid "Icon" msgstr "Icono" +#. Label of the user_category (Check) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Identify User Persona" +msgstr "" + #: frontend/src/components/LessonHelp.vue:11 msgid "If Include in Preview is enabled for a lesson then the lesson will also be accessible to non logged in users." msgstr "Si la opción Incluir en vista previa está habilitada para una lección, la lección también será accesible para usuarios que no hayan iniciado sesión." @@ -2425,7 +2432,7 @@ msgstr "Si tiene alguna pregunta o necesita ayuda, no dude en ponerse en contact msgid "If you set an amount here, then the USD equivalent setting will not get applied." msgstr "Si establece una cantidad aquí, entonces no se aplicará el ajuste equivalente en USD." -#: lms/lms/doctype/lms_quiz/lms_quiz.py:63 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:61 msgid "If you want open ended questions then make sure each question in the quiz is of open ended type." msgstr "Si desea preguntas abiertas, asegúrese de que cada pregunta del cuestionario sea de tipo abierto." @@ -2451,7 +2458,7 @@ msgstr "Imagen" msgid "Image search powered by" msgstr "Búsqueda de imágenes con tecnología" -#: lms/lms/doctype/lms_quiz/lms_quiz.py:221 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:219 msgid "Image: Corrupted Data Stream" msgstr "Imagen: Flujo de datos corruptos" @@ -2540,7 +2547,7 @@ msgstr "Notas del instructor" #. Label of the instructors (Table MultiSelect) field in DocType 'LMS Batch' #. Label of the instructors (Rating) field in DocType 'LMS Batch Feedback' #. Label of the instructors (Table MultiSelect) field in DocType 'LMS Course' -#: frontend/src/pages/BatchForm.vue:93 frontend/src/pages/CourseForm.vue:155 +#: frontend/src/pages/BatchForm.vue:93 frontend/src/pages/CourseForm.vue:151 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json #: lms/lms/doctype/lms_course/lms_course.json @@ -2565,10 +2572,14 @@ msgstr "Introducción" msgid "Invalid Invite Code." msgstr "Código de invitación inválido." -#: lms/lms/doctype/course_lesson/course_lesson.py:20 +#: lms/lms/doctype/course_lesson/course_lesson.py:19 msgid "Invalid Quiz ID" msgstr "ID de cuestionario no válido" +#: lms/lms/doctype/course_lesson/course_lesson.py:33 +msgid "Invalid Quiz ID in content" +msgstr "" + #. Label of the invite_code (Data) field in DocType 'Cohort Subgroup' #. Label of the invite_code (Data) field in DocType 'Invite Request' #: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json @@ -2607,11 +2618,6 @@ msgstr "" msgid "Is Correct" msgstr "Es correcto" -#. Label of the is_onboarding_complete (Check) field in DocType 'LMS Settings' -#: lms/lms/doctype/lms_settings/lms_settings.json -msgid "Is Onboarding Complete" -msgstr "¿Se ha completado la incorporación?" - #. Label of the is_scorm_package (Check) field in DocType 'Course Chapter' #. Label of the is_scorm_package (Check) field in DocType 'Course Lesson' #: lms/lms/doctype/course_chapter/course_chapter.json @@ -2650,7 +2656,7 @@ msgstr "Emitido el" msgid "Items in Sidebar" msgstr "Elementos en la barra lateral" -#: frontend/src/pages/ProgramForm.vue:272 +#: frontend/src/pages/ProgramForm.vue:275 msgid "Items removed successfully" msgstr "" @@ -2677,7 +2683,7 @@ msgstr "Título de la bolsa de trabajo" msgid "Job Details" msgstr "Detalles del Puesto" -#: lms/www/lms.py:111 +#: lms/www/lms.py:159 msgid "Job Openings" msgstr "Vacantes abiertas" @@ -2700,6 +2706,7 @@ msgstr "Título del trabajo" #. Label of the jobs (Check) field in DocType 'LMS Settings' #: frontend/src/pages/JobDetail.vue:10 frontend/src/pages/Jobs.vue:8 +#: frontend/src/pages/Jobs.vue:170 #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Jobs" msgstr "Trabajos" @@ -2923,7 +2930,6 @@ msgstr "Fuente LMS" #: lms/job/doctype/lms_job_application/lms_job_application.json #: lms/lms/doctype/cohort_join_request/cohort_join_request.json #: lms/lms/doctype/course_chapter/course_chapter.json -#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/function/function.json #: lms/lms/doctype/industry/industry.json #: lms/lms/doctype/lms_assignment/lms_assignment.json @@ -3035,7 +3041,7 @@ msgstr "Calificación con letras (por ejemplo, A, B-)" msgid "Limit Questions To" msgstr "Limitar preguntas a" -#: lms/lms/doctype/lms_quiz/lms_quiz.py:40 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:38 msgid "Limit cannot be greater than or equal to the number of questions in the quiz." msgstr "El límite no puede ser mayor o igual al número de preguntas del cuestionario." @@ -3055,12 +3061,8 @@ msgstr "ID de LinkedIn" msgid "Links" msgstr "Enlaces" -#: frontend/src/pages/Quizzes.vue:149 -msgid "List of quizzes" -msgstr "Lista de cuestionarios" - #. Option for the 'Status' (Select) field in DocType 'Cohort' -#: frontend/src/pages/Courses.vue:278 lms/lms/doctype/cohort/cohort.json +#: frontend/src/pages/Courses.vue:281 lms/lms/doctype/cohort/cohort.json msgid "Live" msgstr "En vivo" @@ -3092,7 +3094,7 @@ msgstr "Local" #. Label of the location (Data) field in DocType 'Job Opportunity' #. Label of the location (Data) field in DocType 'Education Detail' #. Label of the location (Data) field in DocType 'Work Experience' -#: frontend/src/pages/JobCreation.vue:26 frontend/src/pages/JobDetail.vue:85 +#: frontend/src/pages/JobCreation.vue:26 frontend/src/pages/JobDetail.vue:92 #: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/lms/doctype/education_detail/education_detail.json #: lms/lms/doctype/work_experience/work_experience.json @@ -3114,7 +3116,7 @@ msgstr "Iniciar sesión" msgid "Login to Frappe Cloud?" msgstr "" -#: frontend/src/pages/JobDetail.vue:48 +#: frontend/src/pages/JobDetail.vue:54 msgid "Login to apply" msgstr "Iniciar sesión para aplicar al puesto" @@ -3171,7 +3173,7 @@ msgstr "Marcar como leído" #. Label of the marks (Int) field in DocType 'LMS Quiz Result' #: frontend/src/components/Modals/Question.vue:50 #: frontend/src/components/Modals/Question.vue:99 -#: frontend/src/components/Quiz.vue:96 frontend/src/pages/QuizForm.vue:390 +#: frontend/src/components/Quiz.vue:96 frontend/src/pages/QuizForm.vue:393 #: frontend/src/pages/QuizSubmission.vue:65 #: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json #: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json @@ -3233,7 +3235,7 @@ msgstr "Medio:" #. Label of the member (Link) field in DocType 'LMS Quiz Submission' #: frontend/src/pages/AssignmentSubmissionList.vue:14 #: frontend/src/pages/QuizSubmission.vue:31 -#: frontend/src/pages/QuizSubmissionList.vue:86 +#: frontend/src/pages/QuizSubmissionList.vue:102 #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_submission/exercise_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json @@ -3314,7 +3316,7 @@ msgstr "Tipo de miembro" msgid "Member Username" msgstr "" -#: frontend/src/pages/ProgramForm.vue:251 +#: frontend/src/pages/ProgramForm.vue:254 msgid "Member added to program" msgstr "" @@ -3378,6 +3380,11 @@ msgstr "Plantilla de creación de solicitud de mentor" msgid "Mentor Request Status Update Template" msgstr "Plantilla de actualización del estado de la solicitud de mentor" +#. Label of the meta_description (Small Text) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Meta Description" +msgstr "Metadescripción" + #. Label of the meta_image (Attach Image) field in DocType 'LMS Batch' #: frontend/src/pages/BatchForm.vue:44 lms/lms/doctype/lms_batch/lms_batch.json #: lms/public/js/common_functions.js:362 @@ -3400,6 +3407,7 @@ msgstr "" #. Name of a role #: frontend/src/pages/ProfileRoles.vue:10 #: lms/lms/doctype/course_evaluator/course_evaluator.json +#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/lms_assignment/lms_assignment.json #: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json #: lms/lms/doctype/lms_batch/lms_batch.json @@ -3459,12 +3467,13 @@ msgstr "Mi calendario" #. Option for the 'Event' (Select) field in DocType 'LMS Badge' #: frontend/src/pages/Assignments.vue:18 frontend/src/pages/Batches.vue:17 -#: frontend/src/pages/Courses.vue:17 frontend/src/pages/Courses.vue:281 +#: frontend/src/pages/Courses.vue:17 frontend/src/pages/Courses.vue:284 #: frontend/src/pages/Programs.vue:14 lms/lms/doctype/lms_badge/lms_badge.json msgid "New" msgstr "Nuevo" -#: frontend/src/pages/AssignmentForm.vue:178 +#: frontend/src/pages/AssignmentForm.vue:181 +#: frontend/src/pages/AssignmentForm.vue:197 msgid "New Assignment" msgstr "" @@ -3472,11 +3481,11 @@ msgstr "" msgid "New Assignment Submission" msgstr "Nuevo envío de la tarea" -#: lms/public/js/common_functions.js:255 lms/www/lms.py:89 +#: lms/public/js/common_functions.js:255 lms/www/lms.py:134 msgid "New Batch" msgstr "Nuevo lote" -#: lms/www/lms.py:40 +#: frontend/src/pages/CourseForm.vue:577 lms/www/lms.py:78 msgid "New Course" msgstr "Nuevo curso" @@ -3504,7 +3513,7 @@ msgstr "" msgid "New Question" msgstr "Nueva pregunta" -#: frontend/src/pages/QuizForm.vue:450 frontend/src/pages/QuizForm.vue:458 +#: frontend/src/pages/QuizForm.vue:453 frontend/src/pages/QuizForm.vue:461 #: frontend/src/pages/Quizzes.vue:18 msgid "New Quiz" msgstr "Nuevo cuestionario" @@ -3599,9 +3608,9 @@ msgstr "" msgid "No introduction" msgstr "No hay introducción" -#: frontend/src/pages/Jobs.vue:77 -msgid "No jobs posted" -msgstr "No hay trabajos publicados" +#: frontend/src/pages/Jobs.vue:80 +msgid "No jobs found" +msgstr "" #: frontend/src/components/LiveClass.vue:71 msgid "No live classes scheduled" @@ -3615,6 +3624,10 @@ msgstr "" msgid "No programs found" msgstr "" +#: frontend/src/pages/QuizSubmissionList.vue:52 +msgid "No quiz submissions found. Please check again later." +msgstr "" + #: frontend/src/pages/Quizzes.vue:61 msgid "No quizzes found" msgstr "" @@ -3624,6 +3637,7 @@ msgid "No slots available for this date." msgstr "No hay cupos disponibles para esta fecha." #: frontend/src/pages/AssignmentSubmissionList.vue:67 +#: frontend/src/pages/QuizSubmissionList.vue:49 msgid "No submissions" msgstr "" @@ -3724,11 +3738,11 @@ msgstr "" msgid "Only files of type {0} will be accepted." msgstr "Sólo se aceptarán archivos del tipo {0}." -#: frontend/src/pages/CourseForm.vue:509 frontend/src/utils/index.js:549 +#: frontend/src/pages/CourseForm.vue:507 frontend/src/utils/index.js:550 msgid "Only image file is allowed." msgstr "Sólo se permiten archivos de imagen." -#: frontend/src/components/Modals/ChapterModal.vue:218 +#: frontend/src/components/Modals/ChapterModal.vue:221 msgid "Only zip files are allowed" msgstr "" @@ -3786,7 +3800,7 @@ msgstr "Opción 4" msgid "Order ID" msgstr "ID de pedido" -#: frontend/src/pages/JobDetail.vue:74 +#: frontend/src/pages/JobDetail.vue:81 msgid "Organisation" msgstr "Organización" @@ -3835,7 +3849,7 @@ msgid "Paid Batch" msgstr "Lote pagó" #. Label of the paid_certificate (Check) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:218 +#: frontend/src/pages/CourseForm.vue:214 #: lms/lms/doctype/lms_course/lms_course.json msgid "Paid Certificate" msgstr "" @@ -3845,7 +3859,7 @@ msgid "Paid Certificate after Evaluation" msgstr "" #. Label of the paid_course (Check) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:208 +#: frontend/src/pages/CourseForm.vue:204 #: lms/lms/doctype/lms_course/lms_course.json msgid "Paid Course" msgstr "Cursos Pagos" @@ -3855,7 +3869,7 @@ msgid "Pan Number" msgstr "Número NIF" #. Option for the 'Type' (Select) field in DocType 'Job Opportunity' -#: frontend/src/pages/Jobs.vue:145 +#: frontend/src/pages/Jobs.vue:162 #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Part Time" msgstr "Tiempo parcial" @@ -3877,7 +3891,7 @@ msgstr "Aprobar" #. Label of the passing_percentage (Int) field in DocType 'LMS Quiz' #. Label of the passing_percentage (Int) field in DocType 'LMS Quiz Submission' -#: frontend/src/pages/QuizForm.vue:72 frontend/src/pages/Quizzes.vue:127 +#: frontend/src/pages/QuizForm.vue:72 frontend/src/pages/Quizzes.vue:129 #: lms/lms/doctype/lms_quiz/lms_quiz.json #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json msgid "Passing Percentage" @@ -3888,7 +3902,7 @@ msgstr "Porcentaje de aprobación" msgid "Password" msgstr "Contraseña" -#: frontend/src/pages/CourseForm.vue:113 +#: frontend/src/pages/CourseForm.vue:109 msgid "Paste the youtube link of a short video introducing the course" msgstr "Pegue el enlace de YouTube de un video corto que presenta el curso." @@ -3980,7 +3994,7 @@ msgstr "Pendiente" #. Label of the percentage (Int) field in DocType 'LMS Quiz Submission' #: frontend/src/pages/QuizSubmission.vue:44 -#: frontend/src/pages/QuizSubmissionList.vue:97 +#: frontend/src/pages/QuizSubmissionList.vue:113 #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json msgid "Percentage" msgstr "Porcentaje" @@ -4002,7 +4016,7 @@ msgstr "Número de teléfono" msgid "Please Login" msgstr "Por favor, inicie sesión" -#: lms/lms/doctype/lms_settings/lms_settings.py:33 +#: lms/lms/doctype/lms_settings/lms_settings.py:34 msgid "Please add {1} for {3} to send calendar invites for evaluations." msgstr "Agregue {1} para {3} para enviar invitaciones de calendario para evaluaciones." @@ -4026,7 +4040,7 @@ msgstr "" msgid "Please enable Zoom Settings to use this feature." msgstr "Habilite la configuración de Zoom para utilizar esta funcionalidad." -#: frontend/src/components/CourseOutline.vue:324 +#: frontend/src/components/CourseOutline.vue:325 msgid "Please enroll for this course to view this lesson" msgstr "" @@ -4063,7 +4077,7 @@ msgstr "Por favor, instale la aplicación de pagos para crear un grupo de pagos. msgid "Please install the Payments app to create a paid courses." msgstr "Instale la aplicación Pagos para crear un curso pago." -#: frontend/src/pages/Billing.vue:253 +#: frontend/src/pages/Billing.vue:254 msgid "Please let us know where you heard about us from." msgstr "Por favor, háganos saber dónde se enteró de nosotros." @@ -4112,7 +4126,7 @@ msgstr "" msgid "Please take appropriate action at {0}" msgstr "Tome las medidas adecuadas en {0}" -#: frontend/src/components/Modals/ChapterModal.vue:175 +#: frontend/src/components/Modals/ChapterModal.vue:178 msgid "Please upload a SCORM package" msgstr "" @@ -4158,7 +4172,7 @@ msgstr "Publicar" msgid "Postal Code" msgstr "Codigo postal" -#: frontend/src/pages/JobDetail.vue:107 +#: frontend/src/pages/JobDetail.vue:114 msgid "Posted on" msgstr "Publicado el" @@ -4193,7 +4207,7 @@ msgstr "Ubicación preferida" msgid "Preview Image" msgstr "Previsualizar imagen" -#: frontend/src/pages/CourseForm.vue:111 +#: frontend/src/pages/CourseForm.vue:107 msgid "Preview Video" msgstr "Vista previa del video" @@ -4208,7 +4222,7 @@ msgid "Pricing" msgstr "Precios" #. Label of the pricing_tab (Tab Break) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:202 +#: frontend/src/pages/CourseForm.vue:198 #: lms/lms/doctype/lms_course/lms_course.json msgid "Pricing and Certification" msgstr "" @@ -4272,6 +4286,10 @@ msgstr "" msgid "Program Members" msgstr "" +#: frontend/src/pages/Programs.vue:219 lms/www/lms.py:273 +msgid "Programs" +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/BatchStudents.vue:75 @@ -4301,7 +4319,7 @@ msgstr "Publicar en la página del participante" #. Label of the published (Check) field in DocType 'LMS Course' #: frontend/src/components/Modals/BulkCertificates.vue:51 #: frontend/src/components/Modals/Event.vue:108 -#: frontend/src/pages/BatchForm.vue:27 frontend/src/pages/CourseForm.vue:172 +#: frontend/src/pages/BatchForm.vue:27 frontend/src/pages/CourseForm.vue:168 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/public/js/common_functions.js:266 @@ -4314,7 +4332,7 @@ msgid "Published Courses" msgstr "Cursos Publicados" #. Label of the published_on (Date) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:176 +#: frontend/src/pages/CourseForm.vue:172 #: lms/lms/doctype/lms_course/lms_course.json msgid "Published On" msgstr "Publicado el" @@ -4333,7 +4351,7 @@ msgstr "" #. Label of the question (Text) field in DocType 'LMS Quiz Result' #: frontend/src/components/Assignment.vue:20 #: frontend/src/components/Modals/Question.vue:38 -#: frontend/src/pages/AssignmentForm.vue:45 frontend/src/pages/QuizForm.vue:385 +#: frontend/src/pages/AssignmentForm.vue:45 frontend/src/pages/QuizForm.vue:388 #: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/lms_assignment/lms_assignment.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json @@ -4358,11 +4376,11 @@ msgstr "Detalle de la pregunta" msgid "Question Name" msgstr "Nombre de la Pregunta" -#: frontend/src/components/Modals/Question.vue:267 +#: frontend/src/components/Modals/Question.vue:270 msgid "Question added successfully" msgstr "Pregunta añadida correctamente" -#: frontend/src/components/Modals/Question.vue:319 +#: frontend/src/components/Modals/Question.vue:322 msgid "Question updated successfully" msgstr "Pregunta actualizada correctamente" @@ -4379,7 +4397,7 @@ msgstr "Pregunta {0} de {1}" msgid "Questions" msgstr "Preguntas" -#: frontend/src/pages/QuizForm.vue:427 +#: frontend/src/pages/QuizForm.vue:430 msgid "Questions deleted successfully" msgstr "Preguntas eliminadas correctamente" @@ -4397,13 +4415,13 @@ msgid "Quiz ID" msgstr "ID del cuestionario" #. Label of a Link in the LMS Workspace -#: frontend/src/pages/QuizPage.vue:56 frontend/src/pages/QuizPage.vue:62 -#: lms/lms/workspace/lms/lms.json +#: frontend/src/pages/QuizPage.vue:57 lms/lms/workspace/lms/lms.json msgid "Quiz Submission" msgstr "Envíos de cuestionarios" -#: frontend/src/pages/QuizSubmission.vue:128 -#: frontend/src/pages/QuizSubmissionList.vue:106 +#: frontend/src/pages/QuizSubmission.vue:131 +#: frontend/src/pages/QuizSubmissionList.vue:122 +#: frontend/src/pages/QuizSubmissionList.vue:127 msgid "Quiz Submissions" msgstr "Envíos de cuestionarios" @@ -4416,7 +4434,7 @@ msgstr "Resumen del cuestionario" msgid "Quiz Title" msgstr "Título del cuestionario" -#: frontend/src/pages/QuizForm.vue:339 +#: frontend/src/pages/QuizForm.vue:342 msgid "Quiz created successfully" msgstr "Cuestionario creado correctamente" @@ -4424,7 +4442,7 @@ msgstr "Cuestionario creado correctamente" msgid "Quiz is not available to Guest users. Please login to continue." msgstr "El cuestionario no está disponible para usuarios invitados. Por favor inicie sesión para continuar." -#: frontend/src/pages/QuizForm.vue:358 +#: frontend/src/pages/QuizForm.vue:361 msgid "Quiz updated successfully" msgstr "Cuestionario actualizado correctamente" @@ -4434,8 +4452,8 @@ msgid "Quiz will appear at the bottom of the lesson." msgstr "El cuestionario aparecerá al final de la lección." #: frontend/src/components/AppSidebar.vue:530 -#: frontend/src/pages/QuizForm.vue:438 frontend/src/pages/Quizzes.vue:138 -#: frontend/src/pages/Quizzes.vue:148 +#: frontend/src/pages/QuizForm.vue:441 frontend/src/pages/Quizzes.vue:140 +#: frontend/src/pages/Quizzes.vue:150 lms/www/lms.py:229 msgid "Quizzes" msgstr "Cuestionarios" @@ -4513,7 +4531,7 @@ msgstr "Rechazado" msgid "Related Courses" msgstr "Cursos relacionados" -#: frontend/src/pages/BatchForm.vue:77 frontend/src/pages/CourseForm.vue:100 +#: frontend/src/pages/BatchForm.vue:77 frontend/src/pages/CourseForm.vue:96 msgid "Remove" msgstr "Eliminar" @@ -4607,7 +4625,7 @@ msgstr "Fila #{0} La hora de inicio no puede ser mayor o igual que la hora final msgid "Row #{0} Start time cannot be outside the batch duration." msgstr "Fila #{0} La hora de inicio no puede estar fuera de la duración del lote." -#: lms/lms/doctype/lms_quiz/lms_quiz.py:34 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:32 msgid "Rows {0} have the duplicate questions." msgstr "Las filas {0} tienen preguntas duplicadas." @@ -4631,6 +4649,11 @@ msgstr "" msgid "SCORM Package Path" msgstr "" +#. Label of the seo_tab (Tab Break) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "SEO" +msgstr "" + #. Option for the 'Day' (Select) field in DocType 'Evaluator Schedule' #. Option for the 'Day' (Select) field in DocType 'LMS Certificate Request' #: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json @@ -4644,7 +4667,7 @@ msgstr "Sábado" #: frontend/src/components/Modals/Event.vue:101 #: frontend/src/components/Modals/Event.vue:129 #: frontend/src/pages/AssignmentForm.vue:21 frontend/src/pages/BatchForm.vue:8 -#: frontend/src/pages/CourseForm.vue:21 frontend/src/pages/JobCreation.vue:8 +#: frontend/src/pages/CourseForm.vue:17 frontend/src/pages/JobCreation.vue:8 #: frontend/src/pages/LessonForm.vue:14 frontend/src/pages/ProgramForm.vue:7 #: frontend/src/pages/QuizForm.vue:34 frontend/src/pages/QuizSubmission.vue:14 #: lms/public/js/common_functions.js:405 @@ -4673,7 +4696,7 @@ msgstr "Alcance" #. Label of the score (Int) field in DocType 'LMS Quiz Submission' #: frontend/src/pages/QuizSubmission.vue:39 -#: frontend/src/pages/QuizSubmissionList.vue:91 +#: frontend/src/pages/QuizSubmissionList.vue:107 #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json #: lms/templates/quiz/quiz.html:148 msgid "Score" @@ -4767,7 +4790,7 @@ msgstr "" #: frontend/src/components/AppSidebar.vue:556 #: frontend/src/components/Modals/Settings.vue:7 -#: frontend/src/pages/BatchForm.vue:148 frontend/src/pages/CourseForm.vue:162 +#: frontend/src/pages/BatchForm.vue:148 frontend/src/pages/CourseForm.vue:158 #: frontend/src/pages/ProfileRoles.vue:4 frontend/src/pages/QuizForm.vue:79 msgid "Settings" msgstr "Configuración" @@ -4781,7 +4804,7 @@ msgid "Short Description" msgstr "" #. Label of the short_introduction (Small Text) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:39 +#: frontend/src/pages/CourseForm.vue:35 #: lms/lms/doctype/lms_course/lms_course.json msgid "Short Introduction" msgstr "Breve introducción" @@ -4892,10 +4915,6 @@ msgstr "Habilidades" msgid "Skip" msgstr "Omitir" -#: frontend/src/components/OnboardingBanner.vue:3 -msgid "Skip Onboarding" -msgstr "" - #: lms/lms/doctype/course_evaluator/course_evaluator.py:63 msgid "Slot Times are overlapping for some schedules." msgstr "Los horarios de las franjas horarias se superponen." @@ -5009,8 +5028,9 @@ msgstr "Estado" #. Label of the tab_4_tab (Tab Break) field in DocType 'LMS Course' #. Label of the statistics (Check) field in DocType 'LMS Settings' #: frontend/src/components/BatchStudents.vue:5 +#: frontend/src/pages/Statistics.vue:322 #: lms/lms/doctype/lms_course/lms_course.json -#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:136 +#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:182 msgid "Statistics" msgstr "Estadísticas" @@ -5110,7 +5130,7 @@ msgstr "" #: frontend/src/components/Modals/AssessmentModal.vue:9 #: frontend/src/components/Modals/BatchCourseModal.vue:9 #: frontend/src/components/Modals/EvaluationModal.vue:9 -#: frontend/src/components/Modals/Question.vue:341 +#: frontend/src/components/Modals/Question.vue:344 #: frontend/src/components/Quiz.vue:218 lms/templates/assignment.html:9 #: lms/templates/livecode/extension_footer.html:25 #: lms/templates/quiz/quiz.html:128 lms/templates/reviews.html:163 @@ -5135,18 +5155,18 @@ msgstr "Enviado {0}" #: frontend/src/components/Modals/AnnouncementModal.vue:99 #: frontend/src/components/Modals/AssessmentModal.vue:73 #: frontend/src/components/Modals/BulkCertificates.vue:121 -#: frontend/src/components/Modals/ChapterModal.vue:151 -#: frontend/src/components/Modals/ChapterModal.vue:196 +#: frontend/src/components/Modals/ChapterModal.vue:154 +#: frontend/src/components/Modals/ChapterModal.vue:199 #: frontend/src/components/Modals/Event.vue:255 #: frontend/src/components/Modals/Event.vue:310 -#: frontend/src/components/Modals/Question.vue:267 -#: frontend/src/components/Modals/Question.vue:318 -#: frontend/src/pages/AssignmentForm.vue:155 -#: frontend/src/pages/CourseForm.vue:472 frontend/src/pages/ProgramForm.vue:229 -#: frontend/src/pages/ProgramForm.vue:251 -#: frontend/src/pages/ProgramForm.vue:272 -#: frontend/src/pages/ProgramForm.vue:298 frontend/src/pages/QuizForm.vue:339 -#: frontend/src/pages/QuizForm.vue:358 frontend/src/pages/QuizForm.vue:427 +#: frontend/src/components/Modals/Question.vue:270 +#: frontend/src/components/Modals/Question.vue:321 +#: frontend/src/pages/AssignmentForm.vue:158 +#: frontend/src/pages/CourseForm.vue:470 frontend/src/pages/ProgramForm.vue:232 +#: frontend/src/pages/ProgramForm.vue:254 +#: frontend/src/pages/ProgramForm.vue:275 +#: frontend/src/pages/ProgramForm.vue:301 frontend/src/pages/QuizForm.vue:342 +#: frontend/src/pages/QuizForm.vue:361 frontend/src/pages/QuizForm.vue:430 msgid "Success" msgstr "Éxito" @@ -5164,7 +5184,7 @@ msgstr "Resumen" msgid "Sunday" msgstr "Domingo" -#: lms/lms/api.py:1026 +#: lms/lms/api.py:1027 msgid "Suspicious pattern found in {0}: {1}" msgstr "" @@ -5220,7 +5240,7 @@ msgid "System Manager" msgstr "Administrador del sistema" #. Label of the tags (Data) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:121 +#: frontend/src/pages/CourseForm.vue:117 #: lms/lms/doctype/lms_course/lms_course.json msgid "Tags" msgstr "Etiquetas" @@ -5325,6 +5345,10 @@ msgstr "No hay capítulos en este curso. Crea y administra capítulos desde aqu msgid "There are no courses matching the criteria. Keep an eye out, fresh learning experiences are on the way soon!" msgstr "" +#: frontend/src/pages/Jobs.vue:84 +msgid "There are no jobs available at the moment. Open a job opportunity or check here again later." +msgstr "" + #: frontend/src/pages/CertifiedParticipants.vue:92 msgid "There are no participants matching this criteria." msgstr "" @@ -5384,8 +5408,10 @@ msgstr "Este curso tiene:" msgid "This course is free." msgstr "Este curso es gratuito." -#: frontend/src/pages/SCORMChapter.vue:201 -msgid "This is a chapter in the course {0}" +#. Description of the 'Meta Description' (Small Text) field in DocType 'LMS +#. Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "This description will be shown on lists and pages without meta description" msgstr "" #: frontend/src/pages/Lesson.vue:16 @@ -5482,10 +5508,10 @@ msgstr "Horarios:" #: frontend/src/components/Modals/DiscussionModal.vue:18 #: frontend/src/components/Modals/LiveClassModal.vue:23 #: frontend/src/pages/AssignmentForm.vue:32 -#: frontend/src/pages/Assignments.vue:152 frontend/src/pages/BatchForm.vue:19 -#: frontend/src/pages/CourseForm.vue:33 frontend/src/pages/JobCreation.vue:20 +#: frontend/src/pages/Assignments.vue:155 frontend/src/pages/BatchForm.vue:19 +#: frontend/src/pages/CourseForm.vue:29 frontend/src/pages/JobCreation.vue:20 #: frontend/src/pages/ProgramForm.vue:11 frontend/src/pages/Programs.vue:116 -#: frontend/src/pages/QuizForm.vue:48 frontend/src/pages/Quizzes.vue:116 +#: frontend/src/pages/QuizForm.vue:48 frontend/src/pages/Quizzes.vue:118 #: lms/lms/doctype/cohort/cohort.json #: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json #: lms/lms/doctype/cohort_web_page/cohort_web_page.json @@ -5507,7 +5533,7 @@ msgstr "Horarios:" msgid "Title" msgstr "Nombre" -#: frontend/src/components/Modals/ChapterModal.vue:172 +#: frontend/src/components/Modals/ChapterModal.vue:175 msgid "Title is required" msgstr "" @@ -5539,7 +5565,7 @@ msgid "Total" msgstr "Total" #. Label of the total_marks (Int) field in DocType 'LMS Quiz' -#: frontend/src/pages/QuizForm.vue:67 frontend/src/pages/Quizzes.vue:121 +#: frontend/src/pages/QuizForm.vue:67 frontend/src/pages/Quizzes.vue:123 #: lms/lms/doctype/lms_quiz/lms_quiz.json msgid "Total Marks" msgstr "Marcas totales" @@ -5577,7 +5603,7 @@ msgstr "Twitter" #: frontend/src/components/Modals/AssessmentModal.vue:22 #: frontend/src/components/Modals/Question.vue:54 #: frontend/src/pages/AssignmentForm.vue:39 -#: frontend/src/pages/Assignments.vue:30 frontend/src/pages/Assignments.vue:157 +#: frontend/src/pages/Assignments.vue:30 frontend/src/pages/Assignments.vue:160 #: frontend/src/pages/JobCreation.vue:33 frontend/src/pages/Jobs.vue:55 #: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/lms/doctype/lms_assignment/lms_assignment.json @@ -5624,7 +5650,7 @@ msgstr "En Revisión" msgid "Unlisted" msgstr "No listado" -#: frontend/src/pages/Batches.vue:293 +#: frontend/src/pages/Batches.vue:295 msgid "Unpublished" msgstr "" @@ -5646,8 +5672,8 @@ msgstr "Rol no estructurado" #. Option for the 'Status' (Select) field in DocType 'Cohort' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request' #. Label of the upcoming (Check) field in DocType 'LMS Course' -#: frontend/src/pages/Batches.vue:291 frontend/src/pages/CourseForm.vue:185 -#: frontend/src/pages/Courses.vue:284 lms/lms/doctype/cohort/cohort.json +#: frontend/src/pages/Batches.vue:293 frontend/src/pages/CourseForm.vue:181 +#: frontend/src/pages/Courses.vue:287 lms/lms/doctype/cohort/cohort.json #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_course/lms_course.json msgid "Upcoming" @@ -5672,7 +5698,7 @@ msgstr "Actualizar" msgid "Update Password" msgstr "Actualizar contraseña" -#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:81 +#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:77 msgid "Upload" msgstr "Subir" @@ -5778,6 +5804,10 @@ msgstr "Visibilidad" msgid "Visit Batch" msgstr "Visitar el Grupo" +#: frontend/src/pages/JobDetail.vue:38 +msgid "Visit Website" +msgstr "" + #: lms/templates/emails/batch_confirmation.html:23 msgid "Visit the following link to view your " msgstr "Visita el siguiente enlace para ver tu " @@ -5899,7 +5929,7 @@ msgstr "No eres miembro de este lote. Consulte nuestros próximos lotes." msgid "You are not a mentor of the course {0}" msgstr "No eres mentor del curso {0}" -#: frontend/src/components/CourseOutline.vue:323 +#: frontend/src/components/CourseOutline.vue:324 msgid "You are not enrolled" msgstr "" @@ -6123,11 +6153,7 @@ msgstr "de" msgid "out of" msgstr "fuera de" -#: frontend/src/components/JobCard.vue:30 -msgid "posted" -msgstr "" - -#: frontend/src/pages/QuizForm.vue:386 +#: frontend/src/pages/QuizForm.vue:389 msgid "question_detail" msgstr "pregunta_detalle" @@ -6147,7 +6173,7 @@ msgstr "" msgid "you can" msgstr "puedes" -#: lms/lms/api.py:816 lms/lms/api.py:824 +#: lms/lms/api.py:817 lms/lms/api.py:825 msgid "{0} Settings not found" msgstr "Configuraciones {0} no encontradas" diff --git a/lms/locale/fa.po b/lms/locale/fa.po index 349fa3bb..3b140ae3 100644 --- a/lms/locale/fa.po +++ b/lms/locale/fa.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n" -"POT-Creation-Date: 2025-04-04 16:04+0000\n" -"PO-Revision-Date: 2025-04-08 03:58\n" +"POT-Creation-Date: 2025-04-11 16:04+0000\n" +"PO-Revision-Date: 2025-04-14 06:01\n" "Last-Translator: jannat@frappe.io\n" "Language-Team: Persian\n" "MIME-Version: 1.0\n" @@ -71,7 +71,7 @@ msgstr "" msgid "A course cannot have both paid certificate and certificate of completion." msgstr "" -#: frontend/src/pages/CourseForm.vue:41 +#: frontend/src/pages/CourseForm.vue:37 msgid "A one line introduction to the course that appears on the course card" msgstr "" @@ -145,7 +145,6 @@ msgid "Add a Student" msgstr "افزودن دانش‌آموز" #: frontend/src/components/AppSidebar.vue:514 -#: frontend/src/components/OnboardingBanner.vue:56 msgid "Add a chapter" msgstr "" @@ -153,16 +152,15 @@ msgstr "" msgid "Add a course" msgstr "افزودن دوره" -#: frontend/src/pages/CourseForm.vue:137 +#: frontend/src/pages/CourseForm.vue:133 msgid "Add a keyword and then press enter" msgstr "یک کلمه کلیدی اضافه کنید و سپس اینتر را فشار دهید" #: frontend/src/components/AppSidebar.vue:515 -#: frontend/src/components/OnboardingBanner.vue:81 msgid "Add a lesson" msgstr "" -#: frontend/src/components/Modals/Question.vue:146 +#: frontend/src/components/Modals/Question.vue:147 #: frontend/src/pages/QuizForm.vue:183 msgid "Add a new question" msgstr "" @@ -235,7 +233,7 @@ msgid "Admin" msgstr "ادمین" #. Name of a role -#: frontend/src/pages/Batches.vue:282 lms/lms/doctype/lms_badge/lms_badge.json +#: frontend/src/pages/Batches.vue:284 lms/lms/doctype/lms_badge/lms_badge.json msgid "All" msgstr "همه" @@ -259,7 +257,7 @@ msgstr "" msgid "All Submissions" msgstr "همه موارد ارسالی" -#: lms/lms/doctype/lms_quiz/lms_quiz.py:46 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:44 msgid "All questions should have the same marks if the limit is set." msgstr "در صورت تعیین حد مجاز، همه سؤالات باید نمرات یکسانی داشته باشند." @@ -294,7 +292,7 @@ msgstr "قبلا ثبت شده است" #. Label of the amount (Currency) field in DocType 'LMS Batch' #. Label of the course_price (Currency) field in DocType 'LMS Course' #. Label of the amount (Currency) field in DocType 'LMS Payment' -#: frontend/src/pages/BatchForm.vue:209 frontend/src/pages/CourseForm.vue:221 +#: frontend/src/pages/BatchForm.vue:209 frontend/src/pages/CourseForm.vue:217 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_payment/lms_payment.json @@ -346,7 +344,7 @@ msgstr "" msgid "Answer" msgstr "پاسخ" -#: frontend/src/pages/CourseForm.vue:85 frontend/src/pages/CourseForm.vue:103 +#: frontend/src/pages/CourseForm.vue:81 frontend/src/pages/CourseForm.vue:99 msgid "Appears on the course card in the course list" msgstr "" @@ -354,11 +352,11 @@ msgstr "" msgid "Appears when the batch URL is shared on any online platform" msgstr "" -#: frontend/src/pages/JobDetail.vue:121 +#: frontend/src/pages/JobDetail.vue:128 msgid "Applications Received" msgstr "درخواست های دریافت شده" -#: frontend/src/pages/JobDetail.vue:42 +#: frontend/src/pages/JobDetail.vue:48 msgid "Apply" msgstr "درخواست دادن" @@ -389,7 +387,7 @@ msgstr "تایید شده" msgid "Apps" msgstr "برنامه ها" -#: frontend/src/pages/Batches.vue:292 +#: frontend/src/pages/Batches.vue:294 msgid "Archived" msgstr "بایگانی شد" @@ -401,11 +399,6 @@ msgstr "" msgid "Are you sure you want to login to your Frappe Cloud dashboard?" msgstr "" -#. Label of the user_category (Check) field in DocType 'LMS Settings' -#: lms/lms/doctype/lms_settings/lms_settings.json -msgid "Ask User Category during Signup" -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 @@ -470,6 +463,10 @@ msgstr "ضمیمه تکلیف" msgid "Assignment Submission Template" msgstr "" +#: frontend/src/pages/AssignmentSubmissionList.vue:223 +msgid "Assignment Submissions" +msgstr "" + #. Label of the assignment_title (Data) field in DocType 'LMS Assignment #. Submission' #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json @@ -480,7 +477,7 @@ msgstr "عنوان تکلیف" msgid "Assignment for Lesson {0} by {1} already exists." msgstr "تکلیف برای درس {0} توسط {1} از قبل وجود دارد." -#: frontend/src/pages/AssignmentForm.vue:155 +#: frontend/src/pages/AssignmentForm.vue:158 msgid "Assignment saved successfully" msgstr "" @@ -490,7 +487,8 @@ msgid "Assignment will appear at the bottom of the lesson." msgstr "تکلیف زیر درس نشان داده می‌شود." #: frontend/src/components/AppSidebar.vue:531 -#: frontend/src/pages/AssignmentForm.vue:174 +#: frontend/src/pages/AssignmentForm.vue:177 +#: frontend/src/pages/Assignments.vue:193 lms/www/lms.py:251 msgid "Assignments" msgstr "تکالیف" @@ -656,8 +654,8 @@ msgid "Batch:" msgstr "دسته:" #. Label of the batches (Check) field in DocType 'LMS Settings' -#: frontend/src/pages/Batches.vue:302 -#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:63 +#: frontend/src/pages/Batches.vue:304 frontend/src/pages/Batches.vue:311 +#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:105 msgid "Batches" msgstr "" @@ -675,7 +673,7 @@ msgstr "با احترام" #. Label of the billing_details_section (Section Break) field in DocType 'LMS #. Payment' -#: frontend/src/pages/Billing.vue:8 +#: frontend/src/pages/Billing.vue:8 frontend/src/pages/Billing.vue:363 #: lms/lms/doctype/lms_payment/lms_payment.json msgid "Billing Details" msgstr "جزئیات صورتحساب" @@ -757,8 +755,9 @@ msgstr "" #. Label of the category (Link) field in DocType 'LMS Course' #: frontend/src/pages/BatchForm.vue:190 frontend/src/pages/Batches.vue:55 #: frontend/src/pages/CertifiedParticipants.vue:37 -#: frontend/src/pages/CourseForm.vue:148 frontend/src/pages/Courses.vue:51 -#: frontend/src/pages/JobDetail.vue:96 lms/lms/doctype/lms_batch/lms_batch.json +#: frontend/src/pages/CourseForm.vue:144 frontend/src/pages/Courses.vue:51 +#: frontend/src/pages/JobDetail.vue:103 +#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/public/js/common_functions.js:316 lms/templates/signup-form.html:22 @@ -813,7 +812,7 @@ msgstr "" #: frontend/src/components/Modals/Event.vue:371 #: frontend/src/pages/BatchForm.vue:37 frontend/src/pages/Batches.vue:38 #: frontend/src/pages/CourseCertification.vue:10 -#: frontend/src/pages/CourseCertification.vue:133 +#: frontend/src/pages/CourseCertification.vue:135 #: frontend/src/pages/Courses.vue:34 lms/fixtures/custom_field.json #: lms/lms/doctype/certification/certification.json #: lms/lms/doctype/lms_batch/lms_batch.json @@ -837,7 +836,8 @@ msgid "Certified" msgstr "گواهی شده" #. Label of the certified_participants (Check) field in DocType 'LMS Settings' -#: frontend/src/pages/CertifiedParticipants.vue:161 +#: frontend/src/pages/CertifiedParticipants.vue:164 +#: frontend/src/pages/CertifiedParticipants.vue:171 #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Certified Participants" msgstr "" @@ -864,11 +864,11 @@ msgstr "فصل" msgid "Chapter Reference" msgstr "" -#: frontend/src/components/Modals/ChapterModal.vue:152 +#: frontend/src/components/Modals/ChapterModal.vue:155 msgid "Chapter added successfully" msgstr "فصل با موفقیت اضافه شد" -#: frontend/src/components/Modals/ChapterModal.vue:196 +#: frontend/src/components/Modals/ChapterModal.vue:199 msgid "Chapter updated successfully" msgstr "فصل با موفقیت به روز شد" @@ -1117,7 +1117,7 @@ msgid "Completed by Students" msgstr "" #. Label of the enable_certification (Check) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:213 +#: frontend/src/pages/CourseForm.vue:209 #: lms/lms/doctype/lms_course/lms_course.json msgid "Completion Certificate" msgstr "" @@ -1179,7 +1179,7 @@ msgid "Continue Learning" msgstr "" #. Option for the 'Type' (Select) field in DocType 'Job Opportunity' -#: frontend/src/pages/Jobs.vue:146 +#: frontend/src/pages/Jobs.vue:163 #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Contract" msgstr "قرارداد" @@ -1294,6 +1294,7 @@ msgstr "" #. Name of a role #: frontend/src/pages/ProfileRoles.vue:16 #: lms/lms/doctype/course_chapter/course_chapter.json +#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_program/lms_program.json @@ -1307,7 +1308,7 @@ msgstr "" msgid "Course Data" msgstr "" -#: frontend/src/pages/CourseForm.vue:50 +#: frontend/src/pages/CourseForm.vue:46 msgid "Course Description" msgstr "" @@ -1316,7 +1317,7 @@ msgstr "" msgid "Course Evaluator" msgstr "ارزیاب دوره" -#: frontend/src/pages/CourseForm.vue:63 +#: frontend/src/pages/CourseForm.vue:59 msgid "Course Image" msgstr "تصویر دوره" @@ -1330,7 +1331,7 @@ msgstr "مدرس دوره" msgid "Course Lesson" msgstr "درس دوره" -#: lms/www/lms.py:30 +#: lms/www/lms.py:70 msgid "Course List" msgstr "" @@ -1338,7 +1339,7 @@ msgstr "" msgid "Course Name" msgstr "اسم دوره" -#: frontend/src/pages/CourseDetail.vue:76 frontend/src/pages/CourseForm.vue:241 +#: frontend/src/pages/CourseDetail.vue:76 frontend/src/pages/CourseForm.vue:237 msgid "Course Outline" msgstr "طرح کلی دوره" @@ -1370,7 +1371,7 @@ msgstr "" msgid "Course Title" msgstr "عنوان دوره" -#: frontend/src/pages/ProgramForm.vue:229 +#: frontend/src/pages/ProgramForm.vue:232 msgid "Course added to program" msgstr "" @@ -1378,11 +1379,11 @@ msgstr "" msgid "Course already added to the batch." msgstr "دوره قبلاً به دسته اضافه شده است." -#: frontend/src/pages/CourseForm.vue:472 +#: frontend/src/pages/CourseForm.vue:470 msgid "Course deleted successfully" msgstr "دوره با موفقیت حذف شد" -#: frontend/src/pages/ProgramForm.vue:298 +#: frontend/src/pages/ProgramForm.vue:301 msgid "Course moved successfully" msgstr "" @@ -1400,8 +1401,9 @@ msgstr "دوره {0} قبلاً به این دسته اضافه شده است." #: frontend/src/components/BatchStudents.vue:92 #: frontend/src/components/Modals/BatchStudentProgress.vue:79 #: frontend/src/pages/BatchDetail.vue:21 frontend/src/pages/BatchDetail.vue:70 -#: frontend/src/pages/CourseCertification.vue:125 -#: frontend/src/pages/Courses.vue:301 frontend/src/pages/Statistics.vue:21 +#: frontend/src/pages/CourseCertification.vue:127 +#: frontend/src/pages/Courses.vue:304 frontend/src/pages/Courses.vue:311 +#: frontend/src/pages/Statistics.vue:21 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Courses" @@ -1443,7 +1445,6 @@ msgid "Create a batch" msgstr "" #: frontend/src/components/AppSidebar.vue:513 -#: frontend/src/components/OnboardingBanner.vue:30 msgid "Create a course" msgstr "" @@ -1467,7 +1468,7 @@ msgstr "" msgid "Create your first quiz" msgstr "" -#: frontend/src/pages/Assignments.vue:163 frontend/src/pages/Courses.vue:292 +#: frontend/src/pages/Assignments.vue:166 frontend/src/pages/Courses.vue:295 msgid "Created" msgstr "ایجاد شده" @@ -1482,7 +1483,7 @@ msgstr "" #. Label of the currency (Link) field in DocType 'LMS Batch' #. Label of the currency (Link) field in DocType 'LMS Course' #. Label of the currency (Link) field in DocType 'LMS Payment' -#: frontend/src/pages/BatchForm.vue:217 frontend/src/pages/CourseForm.vue:226 +#: frontend/src/pages/BatchForm.vue:217 frontend/src/pages/CourseForm.vue:222 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_payment/lms_payment.json @@ -1585,9 +1586,9 @@ msgstr "ارز پیش‌فرض" msgid "Degree Type" msgstr "نوع مدرک" -#: frontend/src/components/CourseOutline.vue:247 -#: frontend/src/components/CourseOutline.vue:305 -#: frontend/src/pages/CourseForm.vue:485 +#: frontend/src/components/CourseOutline.vue:248 +#: frontend/src/components/CourseOutline.vue:306 +#: frontend/src/pages/CourseForm.vue:483 msgid "Delete" msgstr "حذف" @@ -1595,27 +1596,27 @@ msgstr "حذف" msgid "Delete Chapter" msgstr "حذف فصل" -#: frontend/src/pages/CourseForm.vue:479 +#: frontend/src/pages/CourseForm.vue:477 msgid "Delete Course" msgstr "حذف دوره" -#: frontend/src/components/CourseOutline.vue:299 +#: frontend/src/components/CourseOutline.vue:300 msgid "Delete this chapter?" msgstr "این فصل حذف شود؟" -#: frontend/src/components/CourseOutline.vue:241 +#: frontend/src/components/CourseOutline.vue:242 msgid "Delete this lesson?" msgstr "این درس حذف شود؟" -#: frontend/src/pages/CourseForm.vue:480 +#: frontend/src/pages/CourseForm.vue:478 msgid "Deleting the course will also delete all its chapters and lessons. Are you sure you want to delete this course?" msgstr "" -#: frontend/src/components/CourseOutline.vue:300 +#: frontend/src/components/CourseOutline.vue:301 msgid "Deleting this chapter will also delete all its lessons and permanently remove it from the course. This action cannot be undone. Are you sure you want to continue?" msgstr "با حذف این فصل، تمام دروس آن نیز حذف می‌شود و برای همیشه از دوره حذف می‌شود. این عمل قابل بازگشت نیست. آیا مطمئن هستید که می‌خواهید ادامه دهید؟" -#: frontend/src/components/CourseOutline.vue:242 +#: frontend/src/components/CourseOutline.vue:243 msgid "Deleting this lesson will permanently remove it from the course. This action cannot be undone. Are you sure you want to continue?" msgstr "حذف این درس آن را برای همیشه از دوره حذف می‌کند. این عمل قابل بازگشت نیست. آیا مطمئن هستید که می‌خواهید ادامه دهید؟" @@ -1650,15 +1651,15 @@ msgstr "شرح" #: frontend/src/components/Apps.vue:51 msgid "Desk" -msgstr "" +msgstr "میز کار" #: frontend/src/components/Modals/DiscussionModal.vue:22 #: frontend/src/pages/AssignmentForm.vue:27 frontend/src/pages/BatchForm.vue:14 -#: frontend/src/pages/CourseForm.vue:29 frontend/src/pages/QuizForm.vue:42 +#: frontend/src/pages/CourseForm.vue:25 frontend/src/pages/QuizForm.vue:42 msgid "Details" msgstr "جزئیات" -#: frontend/src/pages/CourseForm.vue:195 +#: frontend/src/pages/CourseForm.vue:191 msgid "Disable Self Enrollment" msgstr "غیرفعال کردن ثبت نام خود" @@ -1667,6 +1668,11 @@ msgstr "غیرفعال کردن ثبت نام خود" msgid "Disable Self Learning" msgstr "خودآموزی را غیرفعال کنید" +#. Label of the disable_signup (Check) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Disable Signup" +msgstr "" + #. Label of the disabled (Check) field in DocType 'Job Opportunity' #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Disabled" @@ -1808,7 +1814,7 @@ msgstr "کارمند" msgid "Enable" msgstr "فعال کردن" -#: lms/lms/doctype/lms_settings/lms_settings.py:20 +#: lms/lms/doctype/lms_settings/lms_settings.py:21 msgid "Enable Google API in Google Settings to send calendar invites for evaluations." msgstr "" @@ -1867,7 +1873,7 @@ msgstr "زمان پایان" msgid "Enroll Now" msgstr "" -#: frontend/src/pages/Batches.vue:295 frontend/src/pages/Courses.vue:294 +#: frontend/src/pages/Batches.vue:297 frontend/src/pages/Courses.vue:297 msgid "Enrolled" msgstr "" @@ -1902,7 +1908,7 @@ msgstr "" msgid "Enrollments" msgstr "" -#: lms/lms/doctype/lms_settings/lms_settings.py:25 +#: lms/lms/doctype/lms_settings/lms_settings.py:26 msgid "Enter Client Id and Client Secret in Google Settings to send calendar invites for evaluations." msgstr "" @@ -1921,19 +1927,19 @@ msgstr "پاسخ صحیح را وارد کنید" #: frontend/src/components/Assignment.vue:287 #: frontend/src/components/Modals/AnnouncementModal.vue:105 #: frontend/src/components/Modals/BulkCertificates.vue:115 -#: frontend/src/components/Modals/ChapterModal.vue:157 -#: frontend/src/components/Modals/ChapterModal.vue:164 -#: frontend/src/components/Modals/ChapterModal.vue:200 -#: frontend/src/components/Modals/Question.vue:251 -#: frontend/src/components/Modals/Question.vue:272 -#: frontend/src/components/Modals/Question.vue:329 -#: frontend/src/components/Modals/StudentModal.vue:70 +#: frontend/src/components/Modals/ChapterModal.vue:160 +#: frontend/src/components/Modals/ChapterModal.vue:167 +#: frontend/src/components/Modals/ChapterModal.vue:203 +#: frontend/src/components/Modals/Question.vue:252 +#: frontend/src/components/Modals/Question.vue:275 +#: frontend/src/components/Modals/Question.vue:332 +#: frontend/src/components/Modals/StudentModal.vue:73 #: frontend/src/components/Quiz.vue:592 #: frontend/src/components/SettingDetails.vue:62 -#: frontend/src/pages/AssignmentForm.vue:139 -#: frontend/src/pages/AssignmentForm.vue:159 frontend/src/pages/Billing.vue:261 -#: frontend/src/pages/QuizForm.vue:346 frontend/src/pages/QuizForm.vue:361 -#: frontend/src/pages/QuizSubmission.vue:147 +#: frontend/src/pages/AssignmentForm.vue:142 +#: frontend/src/pages/AssignmentForm.vue:162 frontend/src/pages/Billing.vue:262 +#: frontend/src/pages/QuizForm.vue:349 frontend/src/pages/QuizForm.vue:364 +#: frontend/src/pages/QuizSubmission.vue:150 msgid "Error" msgstr "خطا" @@ -1982,7 +1988,7 @@ msgstr "" #. Label of the evaluator (Link) field in DocType 'LMS Course' #: frontend/src/components/Modals/BatchCourseModal.vue:26 #: frontend/src/components/Modals/BulkCertificates.vue:22 -#: frontend/src/pages/CourseForm.vue:232 frontend/src/pages/ProfileRoles.vue:22 +#: frontend/src/pages/CourseForm.vue:228 frontend/src/pages/ProfileRoles.vue:22 #: lms/lms/doctype/batch_course/batch_course.json #: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json @@ -2100,7 +2106,7 @@ msgstr "" #. Label of the featured (Check) field in DocType 'LMS Course' #: frontend/src/components/CourseCard.vue:16 -#: frontend/src/pages/CourseForm.vue:190 +#: frontend/src/pages/CourseForm.vue:186 #: lms/lms/doctype/lms_course/lms_course.json msgid "Featured" msgstr "ویژه" @@ -2149,10 +2155,6 @@ msgstr "" msgid "Flexible Time" msgstr "" -#: frontend/src/pages/QuizForm.vue:459 -msgid "Form to create and edit quizzes" -msgstr "" - #. Option for the 'Attire Preference' (Select) field in DocType 'User' #: lms/fixtures/custom_field.json msgid "Formal Wear" @@ -2163,7 +2165,7 @@ msgid "Free" msgstr "رایگان" #. Option for the 'Type' (Select) field in DocType 'Job Opportunity' -#: frontend/src/pages/Jobs.vue:147 +#: frontend/src/pages/Jobs.vue:164 #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Freelance" msgstr "" @@ -2207,7 +2209,7 @@ msgid "Full Name" msgstr "نام و نام خانوادگی" #. Option for the 'Type' (Select) field in DocType 'Job Opportunity' -#: frontend/src/pages/Jobs.vue:144 +#: frontend/src/pages/Jobs.vue:161 #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Full Time" msgstr "تمام وقت" @@ -2385,7 +2387,7 @@ msgstr "" msgid "I am unavailable" msgstr "من در دسترس نیستم" -#: frontend/src/pages/QuizForm.vue:380 +#: frontend/src/pages/QuizForm.vue:383 msgid "ID" msgstr "شناسه" @@ -2395,6 +2397,11 @@ msgstr "شناسه" msgid "Icon" msgstr "آیکون" +#. Label of the user_category (Check) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Identify User Persona" +msgstr "" + #: frontend/src/components/LessonHelp.vue:11 msgid "If Include in Preview is enabled for a lesson then the lesson will also be accessible to non logged in users." msgstr "" @@ -2425,7 +2432,7 @@ msgstr "اگر سوالی دارید یا نیاز به کمک دارید، با msgid "If you set an amount here, then the USD equivalent setting will not get applied." msgstr "" -#: lms/lms/doctype/lms_quiz/lms_quiz.py:63 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:61 msgid "If you want open ended questions then make sure each question in the quiz is of open ended type." msgstr "" @@ -2451,7 +2458,7 @@ msgstr "تصویر" msgid "Image search powered by" msgstr "" -#: lms/lms/doctype/lms_quiz/lms_quiz.py:221 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:219 msgid "Image: Corrupted Data Stream" msgstr "" @@ -2540,7 +2547,7 @@ msgstr "یادداشت های مدرس" #. Label of the instructors (Table MultiSelect) field in DocType 'LMS Batch' #. Label of the instructors (Rating) field in DocType 'LMS Batch Feedback' #. Label of the instructors (Table MultiSelect) field in DocType 'LMS Course' -#: frontend/src/pages/BatchForm.vue:93 frontend/src/pages/CourseForm.vue:155 +#: frontend/src/pages/BatchForm.vue:93 frontend/src/pages/CourseForm.vue:151 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json #: lms/lms/doctype/lms_course/lms_course.json @@ -2565,10 +2572,14 @@ msgstr "معرفی" msgid "Invalid Invite Code." msgstr "" -#: lms/lms/doctype/course_lesson/course_lesson.py:20 +#: lms/lms/doctype/course_lesson/course_lesson.py:19 msgid "Invalid Quiz ID" msgstr "" +#: lms/lms/doctype/course_lesson/course_lesson.py:33 +msgid "Invalid Quiz ID in content" +msgstr "" + #. Label of the invite_code (Data) field in DocType 'Cohort Subgroup' #. Label of the invite_code (Data) field in DocType 'Invite Request' #: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json @@ -2607,11 +2618,6 @@ msgstr "" msgid "Is Correct" msgstr "" -#. Label of the is_onboarding_complete (Check) field in DocType 'LMS Settings' -#: lms/lms/doctype/lms_settings/lms_settings.json -msgid "Is Onboarding Complete" -msgstr "" - #. Label of the is_scorm_package (Check) field in DocType 'Course Chapter' #. Label of the is_scorm_package (Check) field in DocType 'Course Lesson' #: lms/lms/doctype/course_chapter/course_chapter.json @@ -2650,7 +2656,7 @@ msgstr "صادر شده در" msgid "Items in Sidebar" msgstr "موارد موجود در نوار کناری" -#: frontend/src/pages/ProgramForm.vue:272 +#: frontend/src/pages/ProgramForm.vue:275 msgid "Items removed successfully" msgstr "آیتم‌ها با موفقیت حذف شدند" @@ -2677,7 +2683,7 @@ msgstr "" msgid "Job Details" msgstr "" -#: lms/www/lms.py:111 +#: lms/www/lms.py:159 msgid "Job Openings" msgstr "فرصت های شغلی" @@ -2700,6 +2706,7 @@ msgstr "عنوان شغلی" #. Label of the jobs (Check) field in DocType 'LMS Settings' #: frontend/src/pages/JobDetail.vue:10 frontend/src/pages/Jobs.vue:8 +#: frontend/src/pages/Jobs.vue:170 #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Jobs" msgstr "شغل ها" @@ -2923,7 +2930,6 @@ msgstr "منبع LMS" #: lms/job/doctype/lms_job_application/lms_job_application.json #: lms/lms/doctype/cohort_join_request/cohort_join_request.json #: lms/lms/doctype/course_chapter/course_chapter.json -#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/function/function.json #: lms/lms/doctype/industry/industry.json #: lms/lms/doctype/lms_assignment/lms_assignment.json @@ -3035,7 +3041,7 @@ msgstr "" msgid "Limit Questions To" msgstr "" -#: lms/lms/doctype/lms_quiz/lms_quiz.py:40 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:38 msgid "Limit cannot be greater than or equal to the number of questions in the quiz." msgstr "" @@ -3055,12 +3061,8 @@ msgstr "" msgid "Links" msgstr "پیوندها" -#: frontend/src/pages/Quizzes.vue:149 -msgid "List of quizzes" -msgstr "" - #. Option for the 'Status' (Select) field in DocType 'Cohort' -#: frontend/src/pages/Courses.vue:278 lms/lms/doctype/cohort/cohort.json +#: frontend/src/pages/Courses.vue:281 lms/lms/doctype/cohort/cohort.json msgid "Live" msgstr "فعال" @@ -3092,7 +3094,7 @@ msgstr "محلی" #. Label of the location (Data) field in DocType 'Job Opportunity' #. Label of the location (Data) field in DocType 'Education Detail' #. Label of the location (Data) field in DocType 'Work Experience' -#: frontend/src/pages/JobCreation.vue:26 frontend/src/pages/JobDetail.vue:85 +#: frontend/src/pages/JobCreation.vue:26 frontend/src/pages/JobDetail.vue:92 #: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/lms/doctype/education_detail/education_detail.json #: lms/lms/doctype/work_experience/work_experience.json @@ -3114,7 +3116,7 @@ msgstr "وارد شدن" msgid "Login to Frappe Cloud?" msgstr "ورود به Frappe Cloud?" -#: frontend/src/pages/JobDetail.vue:48 +#: frontend/src/pages/JobDetail.vue:54 msgid "Login to apply" msgstr "" @@ -3171,7 +3173,7 @@ msgstr "علامت‌گذاری به عنوان خوانده شد" #. Label of the marks (Int) field in DocType 'LMS Quiz Result' #: frontend/src/components/Modals/Question.vue:50 #: frontend/src/components/Modals/Question.vue:99 -#: frontend/src/components/Quiz.vue:96 frontend/src/pages/QuizForm.vue:390 +#: frontend/src/components/Quiz.vue:96 frontend/src/pages/QuizForm.vue:393 #: frontend/src/pages/QuizSubmission.vue:65 #: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json #: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json @@ -3233,7 +3235,7 @@ msgstr "متوسط:" #. Label of the member (Link) field in DocType 'LMS Quiz Submission' #: frontend/src/pages/AssignmentSubmissionList.vue:14 #: frontend/src/pages/QuizSubmission.vue:31 -#: frontend/src/pages/QuizSubmissionList.vue:86 +#: frontend/src/pages/QuizSubmissionList.vue:102 #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_submission/exercise_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json @@ -3314,7 +3316,7 @@ msgstr "نوع عضو" msgid "Member Username" msgstr "نام کاربری عضو" -#: frontend/src/pages/ProgramForm.vue:251 +#: frontend/src/pages/ProgramForm.vue:254 msgid "Member added to program" msgstr "" @@ -3378,6 +3380,11 @@ msgstr "" msgid "Mentor Request Status Update Template" msgstr "" +#. Label of the meta_description (Small Text) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Meta Description" +msgstr "توضیحات متا" + #. Label of the meta_image (Attach Image) field in DocType 'LMS Batch' #: frontend/src/pages/BatchForm.vue:44 lms/lms/doctype/lms_batch/lms_batch.json #: lms/public/js/common_functions.js:362 @@ -3400,6 +3407,7 @@ msgstr "" #. Name of a role #: frontend/src/pages/ProfileRoles.vue:10 #: lms/lms/doctype/course_evaluator/course_evaluator.json +#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/lms_assignment/lms_assignment.json #: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json #: lms/lms/doctype/lms_batch/lms_batch.json @@ -3459,12 +3467,13 @@ msgstr "تقویم من" #. Option for the 'Event' (Select) field in DocType 'LMS Badge' #: frontend/src/pages/Assignments.vue:18 frontend/src/pages/Batches.vue:17 -#: frontend/src/pages/Courses.vue:17 frontend/src/pages/Courses.vue:281 +#: frontend/src/pages/Courses.vue:17 frontend/src/pages/Courses.vue:284 #: frontend/src/pages/Programs.vue:14 lms/lms/doctype/lms_badge/lms_badge.json msgid "New" msgstr "جدید" -#: frontend/src/pages/AssignmentForm.vue:178 +#: frontend/src/pages/AssignmentForm.vue:181 +#: frontend/src/pages/AssignmentForm.vue:197 msgid "New Assignment" msgstr "" @@ -3472,11 +3481,11 @@ msgstr "" msgid "New Assignment Submission" msgstr "" -#: lms/public/js/common_functions.js:255 lms/www/lms.py:89 +#: lms/public/js/common_functions.js:255 lms/www/lms.py:134 msgid "New Batch" msgstr "دسته جدید" -#: lms/www/lms.py:40 +#: frontend/src/pages/CourseForm.vue:577 lms/www/lms.py:78 msgid "New Course" msgstr "دوره جدید" @@ -3504,7 +3513,7 @@ msgstr "" msgid "New Question" msgstr "" -#: frontend/src/pages/QuizForm.vue:450 frontend/src/pages/QuizForm.vue:458 +#: frontend/src/pages/QuizForm.vue:453 frontend/src/pages/QuizForm.vue:461 #: frontend/src/pages/Quizzes.vue:18 msgid "New Quiz" msgstr "" @@ -3599,8 +3608,8 @@ msgstr "" msgid "No introduction" msgstr "" -#: frontend/src/pages/Jobs.vue:77 -msgid "No jobs posted" +#: frontend/src/pages/Jobs.vue:80 +msgid "No jobs found" msgstr "" #: frontend/src/components/LiveClass.vue:71 @@ -3615,6 +3624,10 @@ msgstr "" msgid "No programs found" msgstr "" +#: frontend/src/pages/QuizSubmissionList.vue:52 +msgid "No quiz submissions found. Please check again later." +msgstr "" + #: frontend/src/pages/Quizzes.vue:61 msgid "No quizzes found" msgstr "" @@ -3624,6 +3637,7 @@ msgid "No slots available for this date." msgstr "" #: frontend/src/pages/AssignmentSubmissionList.vue:67 +#: frontend/src/pages/QuizSubmissionList.vue:49 msgid "No submissions" msgstr "ارسالی وجود ندارد" @@ -3724,11 +3738,11 @@ msgstr "" msgid "Only files of type {0} will be accepted." msgstr "فقط فایل هایی از نوع {0} پذیرفته می‌شوند." -#: frontend/src/pages/CourseForm.vue:509 frontend/src/utils/index.js:549 +#: frontend/src/pages/CourseForm.vue:507 frontend/src/utils/index.js:550 msgid "Only image file is allowed." msgstr "" -#: frontend/src/components/Modals/ChapterModal.vue:218 +#: frontend/src/components/Modals/ChapterModal.vue:221 msgid "Only zip files are allowed" msgstr "فقط فایل های zip مجاز هستند" @@ -3786,7 +3800,7 @@ msgstr "انتخاب کردن 4" msgid "Order ID" msgstr "" -#: frontend/src/pages/JobDetail.vue:74 +#: frontend/src/pages/JobDetail.vue:81 msgid "Organisation" msgstr "" @@ -3835,7 +3849,7 @@ msgid "Paid Batch" msgstr "" #. Label of the paid_certificate (Check) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:218 +#: frontend/src/pages/CourseForm.vue:214 #: lms/lms/doctype/lms_course/lms_course.json msgid "Paid Certificate" msgstr "" @@ -3845,7 +3859,7 @@ msgid "Paid Certificate after Evaluation" msgstr "" #. Label of the paid_course (Check) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:208 +#: frontend/src/pages/CourseForm.vue:204 #: lms/lms/doctype/lms_course/lms_course.json msgid "Paid Course" msgstr "" @@ -3855,7 +3869,7 @@ msgid "Pan Number" msgstr "" #. Option for the 'Type' (Select) field in DocType 'Job Opportunity' -#: frontend/src/pages/Jobs.vue:145 +#: frontend/src/pages/Jobs.vue:162 #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Part Time" msgstr "پاره وقت" @@ -3877,7 +3891,7 @@ msgstr "" #. Label of the passing_percentage (Int) field in DocType 'LMS Quiz' #. Label of the passing_percentage (Int) field in DocType 'LMS Quiz Submission' -#: frontend/src/pages/QuizForm.vue:72 frontend/src/pages/Quizzes.vue:127 +#: frontend/src/pages/QuizForm.vue:72 frontend/src/pages/Quizzes.vue:129 #: lms/lms/doctype/lms_quiz/lms_quiz.json #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json msgid "Passing Percentage" @@ -3888,7 +3902,7 @@ msgstr "" msgid "Password" msgstr "گذرواژه" -#: frontend/src/pages/CourseForm.vue:113 +#: frontend/src/pages/CourseForm.vue:109 msgid "Paste the youtube link of a short video introducing the course" msgstr "" @@ -3980,7 +3994,7 @@ msgstr "انتظار" #. Label of the percentage (Int) field in DocType 'LMS Quiz Submission' #: frontend/src/pages/QuizSubmission.vue:44 -#: frontend/src/pages/QuizSubmissionList.vue:97 +#: frontend/src/pages/QuizSubmissionList.vue:113 #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json msgid "Percentage" msgstr "درصد" @@ -4002,7 +4016,7 @@ msgstr "شماره تلفن" msgid "Please Login" msgstr "" -#: lms/lms/doctype/lms_settings/lms_settings.py:33 +#: lms/lms/doctype/lms_settings/lms_settings.py:34 msgid "Please add {1} for {3} to send calendar invites for evaluations." msgstr "" @@ -4026,7 +4040,7 @@ msgstr "" msgid "Please enable Zoom Settings to use this feature." msgstr "" -#: frontend/src/components/CourseOutline.vue:324 +#: frontend/src/components/CourseOutline.vue:325 msgid "Please enroll for this course to view this lesson" msgstr "لطفا برای مشاهده این درس در این دوره ثبت نام کنید" @@ -4041,7 +4055,7 @@ msgstr "لطفا یک عنوان وارد کنید." #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:40 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:125 msgid "Please enter a valid URL." -msgstr "" +msgstr "لطفاً یک URL معتبر وارد کنید." #: frontend/src/components/Modals/LiveClassModal.vue:182 msgid "Please enter a valid time in the format HH:mm." @@ -4063,7 +4077,7 @@ msgstr "" msgid "Please install the Payments app to create a paid courses." msgstr "" -#: frontend/src/pages/Billing.vue:253 +#: frontend/src/pages/Billing.vue:254 msgid "Please let us know where you heard about us from." msgstr "" @@ -4112,7 +4126,7 @@ msgstr "لطفاً یک منطقه زمانی انتخاب کنید." msgid "Please take appropriate action at {0}" msgstr "" -#: frontend/src/components/Modals/ChapterModal.vue:175 +#: frontend/src/components/Modals/ChapterModal.vue:178 msgid "Please upload a SCORM package" msgstr "" @@ -4158,7 +4172,7 @@ msgstr "پست" msgid "Postal Code" msgstr "کد پستی" -#: frontend/src/pages/JobDetail.vue:107 +#: frontend/src/pages/JobDetail.vue:114 msgid "Posted on" msgstr "" @@ -4193,7 +4207,7 @@ msgstr "" msgid "Preview Image" msgstr "پیش نمایش تصویر" -#: frontend/src/pages/CourseForm.vue:111 +#: frontend/src/pages/CourseForm.vue:107 msgid "Preview Video" msgstr "" @@ -4208,7 +4222,7 @@ msgid "Pricing" msgstr "قیمت گذاری" #. Label of the pricing_tab (Tab Break) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:202 +#: frontend/src/pages/CourseForm.vue:198 #: lms/lms/doctype/lms_course/lms_course.json msgid "Pricing and Certification" msgstr "" @@ -4272,6 +4286,10 @@ msgstr "" msgid "Program Members" msgstr "" +#: frontend/src/pages/Programs.vue:219 lms/www/lms.py:273 +msgid "Programs" +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/BatchStudents.vue:75 @@ -4301,7 +4319,7 @@ msgstr "" #. Label of the published (Check) field in DocType 'LMS Course' #: frontend/src/components/Modals/BulkCertificates.vue:51 #: frontend/src/components/Modals/Event.vue:108 -#: frontend/src/pages/BatchForm.vue:27 frontend/src/pages/CourseForm.vue:172 +#: frontend/src/pages/BatchForm.vue:27 frontend/src/pages/CourseForm.vue:168 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/public/js/common_functions.js:266 @@ -4314,7 +4332,7 @@ msgid "Published Courses" msgstr "" #. Label of the published_on (Date) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:176 +#: frontend/src/pages/CourseForm.vue:172 #: lms/lms/doctype/lms_course/lms_course.json msgid "Published On" msgstr "منتشر شده در" @@ -4333,7 +4351,7 @@ msgstr "" #. Label of the question (Text) field in DocType 'LMS Quiz Result' #: frontend/src/components/Assignment.vue:20 #: frontend/src/components/Modals/Question.vue:38 -#: frontend/src/pages/AssignmentForm.vue:45 frontend/src/pages/QuizForm.vue:385 +#: frontend/src/pages/AssignmentForm.vue:45 frontend/src/pages/QuizForm.vue:388 #: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/lms_assignment/lms_assignment.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json @@ -4358,11 +4376,11 @@ msgstr "" msgid "Question Name" msgstr "" -#: frontend/src/components/Modals/Question.vue:267 +#: frontend/src/components/Modals/Question.vue:270 msgid "Question added successfully" msgstr "" -#: frontend/src/components/Modals/Question.vue:319 +#: frontend/src/components/Modals/Question.vue:322 msgid "Question updated successfully" msgstr "" @@ -4379,7 +4397,7 @@ msgstr "سوال {0} از {1}" msgid "Questions" msgstr "سوالات" -#: frontend/src/pages/QuizForm.vue:427 +#: frontend/src/pages/QuizForm.vue:430 msgid "Questions deleted successfully" msgstr "" @@ -4397,13 +4415,13 @@ msgid "Quiz ID" msgstr "شناسه آزمون" #. Label of a Link in the LMS Workspace -#: frontend/src/pages/QuizPage.vue:56 frontend/src/pages/QuizPage.vue:62 -#: lms/lms/workspace/lms/lms.json +#: frontend/src/pages/QuizPage.vue:57 lms/lms/workspace/lms/lms.json msgid "Quiz Submission" msgstr "" -#: frontend/src/pages/QuizSubmission.vue:128 -#: frontend/src/pages/QuizSubmissionList.vue:106 +#: frontend/src/pages/QuizSubmission.vue:131 +#: frontend/src/pages/QuizSubmissionList.vue:122 +#: frontend/src/pages/QuizSubmissionList.vue:127 msgid "Quiz Submissions" msgstr "" @@ -4416,7 +4434,7 @@ msgstr "" msgid "Quiz Title" msgstr "" -#: frontend/src/pages/QuizForm.vue:339 +#: frontend/src/pages/QuizForm.vue:342 msgid "Quiz created successfully" msgstr "" @@ -4424,7 +4442,7 @@ msgstr "" msgid "Quiz is not available to Guest users. Please login to continue." msgstr "آزمون برای کاربران مهمان در دسترس نیست. لطفا برای ادامه وارد شوید." -#: frontend/src/pages/QuizForm.vue:358 +#: frontend/src/pages/QuizForm.vue:361 msgid "Quiz updated successfully" msgstr "" @@ -4434,8 +4452,8 @@ msgid "Quiz will appear at the bottom of the lesson." msgstr "تکلیف زیر درس نشان داده می‌شود." #: frontend/src/components/AppSidebar.vue:530 -#: frontend/src/pages/QuizForm.vue:438 frontend/src/pages/Quizzes.vue:138 -#: frontend/src/pages/Quizzes.vue:148 +#: frontend/src/pages/QuizForm.vue:441 frontend/src/pages/Quizzes.vue:140 +#: frontend/src/pages/Quizzes.vue:150 lms/www/lms.py:229 msgid "Quizzes" msgstr "" @@ -4513,7 +4531,7 @@ msgstr "رد شده" msgid "Related Courses" msgstr "" -#: frontend/src/pages/BatchForm.vue:77 frontend/src/pages/CourseForm.vue:100 +#: frontend/src/pages/BatchForm.vue:77 frontend/src/pages/CourseForm.vue:96 msgid "Remove" msgstr "حدف" @@ -4607,7 +4625,7 @@ msgstr "" msgid "Row #{0} Start time cannot be outside the batch duration." msgstr "" -#: lms/lms/doctype/lms_quiz/lms_quiz.py:34 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:32 msgid "Rows {0} have the duplicate questions." msgstr "" @@ -4631,6 +4649,11 @@ msgstr "" msgid "SCORM Package Path" msgstr "" +#. Label of the seo_tab (Tab Break) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "SEO" +msgstr "" + #. Option for the 'Day' (Select) field in DocType 'Evaluator Schedule' #. Option for the 'Day' (Select) field in DocType 'LMS Certificate Request' #: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json @@ -4644,7 +4667,7 @@ msgstr "شنبه" #: frontend/src/components/Modals/Event.vue:101 #: frontend/src/components/Modals/Event.vue:129 #: frontend/src/pages/AssignmentForm.vue:21 frontend/src/pages/BatchForm.vue:8 -#: frontend/src/pages/CourseForm.vue:21 frontend/src/pages/JobCreation.vue:8 +#: frontend/src/pages/CourseForm.vue:17 frontend/src/pages/JobCreation.vue:8 #: frontend/src/pages/LessonForm.vue:14 frontend/src/pages/ProgramForm.vue:7 #: frontend/src/pages/QuizForm.vue:34 frontend/src/pages/QuizSubmission.vue:14 #: lms/public/js/common_functions.js:405 @@ -4673,7 +4696,7 @@ msgstr "محدوده" #. Label of the score (Int) field in DocType 'LMS Quiz Submission' #: frontend/src/pages/QuizSubmission.vue:39 -#: frontend/src/pages/QuizSubmissionList.vue:91 +#: frontend/src/pages/QuizSubmissionList.vue:107 #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json #: lms/templates/quiz/quiz.html:148 msgid "Score" @@ -4767,7 +4790,7 @@ msgstr "" #: frontend/src/components/AppSidebar.vue:556 #: frontend/src/components/Modals/Settings.vue:7 -#: frontend/src/pages/BatchForm.vue:148 frontend/src/pages/CourseForm.vue:162 +#: frontend/src/pages/BatchForm.vue:148 frontend/src/pages/CourseForm.vue:158 #: frontend/src/pages/ProfileRoles.vue:4 frontend/src/pages/QuizForm.vue:79 msgid "Settings" msgstr "تنظیمات" @@ -4781,7 +4804,7 @@ msgid "Short Description" msgstr "شرح کوتاه" #. Label of the short_introduction (Small Text) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:39 +#: frontend/src/pages/CourseForm.vue:35 #: lms/lms/doctype/lms_course/lms_course.json msgid "Short Introduction" msgstr "" @@ -4892,10 +4915,6 @@ msgstr "مهارت ها" msgid "Skip" msgstr "پرش کنید" -#: frontend/src/components/OnboardingBanner.vue:3 -msgid "Skip Onboarding" -msgstr "" - #: lms/lms/doctype/course_evaluator/course_evaluator.py:63 msgid "Slot Times are overlapping for some schedules." msgstr "" @@ -5009,8 +5028,9 @@ msgstr "حالت" #. Label of the tab_4_tab (Tab Break) field in DocType 'LMS Course' #. Label of the statistics (Check) field in DocType 'LMS Settings' #: frontend/src/components/BatchStudents.vue:5 +#: frontend/src/pages/Statistics.vue:322 #: lms/lms/doctype/lms_course/lms_course.json -#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:136 +#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:182 msgid "Statistics" msgstr "آمار" @@ -5110,7 +5130,7 @@ msgstr "ارسال توسط" #: frontend/src/components/Modals/AssessmentModal.vue:9 #: frontend/src/components/Modals/BatchCourseModal.vue:9 #: frontend/src/components/Modals/EvaluationModal.vue:9 -#: frontend/src/components/Modals/Question.vue:341 +#: frontend/src/components/Modals/Question.vue:344 #: frontend/src/components/Quiz.vue:218 lms/templates/assignment.html:9 #: lms/templates/livecode/extension_footer.html:25 #: lms/templates/quiz/quiz.html:128 lms/templates/reviews.html:163 @@ -5135,18 +5155,18 @@ msgstr "" #: frontend/src/components/Modals/AnnouncementModal.vue:99 #: frontend/src/components/Modals/AssessmentModal.vue:73 #: frontend/src/components/Modals/BulkCertificates.vue:121 -#: frontend/src/components/Modals/ChapterModal.vue:151 -#: frontend/src/components/Modals/ChapterModal.vue:196 +#: frontend/src/components/Modals/ChapterModal.vue:154 +#: frontend/src/components/Modals/ChapterModal.vue:199 #: frontend/src/components/Modals/Event.vue:255 #: frontend/src/components/Modals/Event.vue:310 -#: frontend/src/components/Modals/Question.vue:267 -#: frontend/src/components/Modals/Question.vue:318 -#: frontend/src/pages/AssignmentForm.vue:155 -#: frontend/src/pages/CourseForm.vue:472 frontend/src/pages/ProgramForm.vue:229 -#: frontend/src/pages/ProgramForm.vue:251 -#: frontend/src/pages/ProgramForm.vue:272 -#: frontend/src/pages/ProgramForm.vue:298 frontend/src/pages/QuizForm.vue:339 -#: frontend/src/pages/QuizForm.vue:358 frontend/src/pages/QuizForm.vue:427 +#: frontend/src/components/Modals/Question.vue:270 +#: frontend/src/components/Modals/Question.vue:321 +#: frontend/src/pages/AssignmentForm.vue:158 +#: frontend/src/pages/CourseForm.vue:470 frontend/src/pages/ProgramForm.vue:232 +#: frontend/src/pages/ProgramForm.vue:254 +#: frontend/src/pages/ProgramForm.vue:275 +#: frontend/src/pages/ProgramForm.vue:301 frontend/src/pages/QuizForm.vue:342 +#: frontend/src/pages/QuizForm.vue:361 frontend/src/pages/QuizForm.vue:430 msgid "Success" msgstr "موفقیت" @@ -5164,7 +5184,7 @@ msgstr "خلاصه" msgid "Sunday" msgstr "یک‌شنبه" -#: lms/lms/api.py:1026 +#: lms/lms/api.py:1027 msgid "Suspicious pattern found in {0}: {1}" msgstr "" @@ -5220,7 +5240,7 @@ msgid "System Manager" msgstr "مدیر سیستم" #. Label of the tags (Data) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:121 +#: frontend/src/pages/CourseForm.vue:117 #: lms/lms/doctype/lms_course/lms_course.json msgid "Tags" msgstr "تگ‌ها" @@ -5325,6 +5345,10 @@ msgstr "" msgid "There are no courses matching the criteria. Keep an eye out, fresh learning experiences are on the way soon!" msgstr "" +#: frontend/src/pages/Jobs.vue:84 +msgid "There are no jobs available at the moment. Open a job opportunity or check here again later." +msgstr "" + #: frontend/src/pages/CertifiedParticipants.vue:92 msgid "There are no participants matching this criteria." msgstr "" @@ -5384,9 +5408,11 @@ msgstr "" msgid "This course is free." msgstr "" -#: frontend/src/pages/SCORMChapter.vue:201 -msgid "This is a chapter in the course {0}" -msgstr "این یک فصل از دوره {0} است" +#. Description of the 'Meta Description' (Small Text) field in DocType 'LMS +#. Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "This description will be shown on lists and pages without meta description" +msgstr "" #: frontend/src/pages/Lesson.vue:16 msgid "This lesson is not available for preview. Please enroll in the course to access it." @@ -5482,10 +5508,10 @@ msgstr "" #: frontend/src/components/Modals/DiscussionModal.vue:18 #: frontend/src/components/Modals/LiveClassModal.vue:23 #: frontend/src/pages/AssignmentForm.vue:32 -#: frontend/src/pages/Assignments.vue:152 frontend/src/pages/BatchForm.vue:19 -#: frontend/src/pages/CourseForm.vue:33 frontend/src/pages/JobCreation.vue:20 +#: frontend/src/pages/Assignments.vue:155 frontend/src/pages/BatchForm.vue:19 +#: frontend/src/pages/CourseForm.vue:29 frontend/src/pages/JobCreation.vue:20 #: frontend/src/pages/ProgramForm.vue:11 frontend/src/pages/Programs.vue:116 -#: frontend/src/pages/QuizForm.vue:48 frontend/src/pages/Quizzes.vue:116 +#: frontend/src/pages/QuizForm.vue:48 frontend/src/pages/Quizzes.vue:118 #: lms/lms/doctype/cohort/cohort.json #: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json #: lms/lms/doctype/cohort_web_page/cohort_web_page.json @@ -5507,7 +5533,7 @@ msgstr "" msgid "Title" msgstr "عنوان" -#: frontend/src/components/Modals/ChapterModal.vue:172 +#: frontend/src/components/Modals/ChapterModal.vue:175 msgid "Title is required" msgstr "عنوان الزامی است" @@ -5539,7 +5565,7 @@ msgid "Total" msgstr "جمع" #. Label of the total_marks (Int) field in DocType 'LMS Quiz' -#: frontend/src/pages/QuizForm.vue:67 frontend/src/pages/Quizzes.vue:121 +#: frontend/src/pages/QuizForm.vue:67 frontend/src/pages/Quizzes.vue:123 #: lms/lms/doctype/lms_quiz/lms_quiz.json msgid "Total Marks" msgstr "" @@ -5577,7 +5603,7 @@ msgstr "توییتر" #: frontend/src/components/Modals/AssessmentModal.vue:22 #: frontend/src/components/Modals/Question.vue:54 #: frontend/src/pages/AssignmentForm.vue:39 -#: frontend/src/pages/Assignments.vue:30 frontend/src/pages/Assignments.vue:157 +#: frontend/src/pages/Assignments.vue:30 frontend/src/pages/Assignments.vue:160 #: frontend/src/pages/JobCreation.vue:33 frontend/src/pages/Jobs.vue:55 #: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/lms/doctype/lms_assignment/lms_assignment.json @@ -5624,7 +5650,7 @@ msgstr "تحت بررسی" msgid "Unlisted" msgstr "" -#: frontend/src/pages/Batches.vue:293 +#: frontend/src/pages/Batches.vue:295 msgid "Unpublished" msgstr "منتشر نشده" @@ -5646,8 +5672,8 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'Cohort' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request' #. Label of the upcoming (Check) field in DocType 'LMS Course' -#: frontend/src/pages/Batches.vue:291 frontend/src/pages/CourseForm.vue:185 -#: frontend/src/pages/Courses.vue:284 lms/lms/doctype/cohort/cohort.json +#: frontend/src/pages/Batches.vue:293 frontend/src/pages/CourseForm.vue:181 +#: frontend/src/pages/Courses.vue:287 lms/lms/doctype/cohort/cohort.json #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_course/lms_course.json msgid "Upcoming" @@ -5672,7 +5698,7 @@ msgstr "به روز رسانی" msgid "Update Password" msgstr "به‌روزرسانی گذرواژه" -#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:81 +#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:77 msgid "Upload" msgstr "آپلود" @@ -5778,6 +5804,10 @@ msgstr "دید" msgid "Visit Batch" msgstr "" +#: frontend/src/pages/JobDetail.vue:38 +msgid "Visit Website" +msgstr "" + #: lms/templates/emails/batch_confirmation.html:23 msgid "Visit the following link to view your " msgstr "" @@ -5899,7 +5929,7 @@ msgstr "" msgid "You are not a mentor of the course {0}" msgstr "" -#: frontend/src/components/CourseOutline.vue:323 +#: frontend/src/components/CourseOutline.vue:324 msgid "You are not enrolled" msgstr "شما ثبت نام نکرده‌اید" @@ -6123,11 +6153,7 @@ msgstr "از" msgid "out of" msgstr "از" -#: frontend/src/components/JobCard.vue:30 -msgid "posted" -msgstr "" - -#: frontend/src/pages/QuizForm.vue:386 +#: frontend/src/pages/QuizForm.vue:389 msgid "question_detail" msgstr "" @@ -6147,7 +6173,7 @@ msgstr "هفته ها" msgid "you can" msgstr "" -#: lms/lms/api.py:816 lms/lms/api.py:824 +#: lms/lms/api.py:817 lms/lms/api.py:825 msgid "{0} Settings not found" msgstr "" diff --git a/lms/locale/fr.po b/lms/locale/fr.po index 843b607d..11800696 100644 --- a/lms/locale/fr.po +++ b/lms/locale/fr.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n" -"POT-Creation-Date: 2025-04-04 16:04+0000\n" -"PO-Revision-Date: 2025-04-08 03:58\n" +"POT-Creation-Date: 2025-04-11 16:04+0000\n" +"PO-Revision-Date: 2025-04-14 06:00\n" "Last-Translator: jannat@frappe.io\n" "Language-Team: French\n" "MIME-Version: 1.0\n" @@ -71,7 +71,7 @@ msgstr "" msgid "A course cannot have both paid certificate and certificate of completion." msgstr "" -#: frontend/src/pages/CourseForm.vue:41 +#: frontend/src/pages/CourseForm.vue:37 msgid "A one line introduction to the course that appears on the course card" msgstr "" @@ -145,7 +145,6 @@ msgid "Add a Student" msgstr "Ajouter un élève" #: frontend/src/components/AppSidebar.vue:514 -#: frontend/src/components/OnboardingBanner.vue:56 msgid "Add a chapter" msgstr "" @@ -153,16 +152,15 @@ msgstr "" msgid "Add a course" msgstr "Ajouter un cours" -#: frontend/src/pages/CourseForm.vue:137 +#: frontend/src/pages/CourseForm.vue:133 msgid "Add a keyword and then press enter" msgstr "" #: frontend/src/components/AppSidebar.vue:515 -#: frontend/src/components/OnboardingBanner.vue:81 msgid "Add a lesson" msgstr "" -#: frontend/src/components/Modals/Question.vue:146 +#: frontend/src/components/Modals/Question.vue:147 #: frontend/src/pages/QuizForm.vue:183 msgid "Add a new question" msgstr "" @@ -235,7 +233,7 @@ msgid "Admin" msgstr "Administrateur" #. Name of a role -#: frontend/src/pages/Batches.vue:282 lms/lms/doctype/lms_badge/lms_badge.json +#: frontend/src/pages/Batches.vue:284 lms/lms/doctype/lms_badge/lms_badge.json msgid "All" msgstr "Tout" @@ -259,7 +257,7 @@ msgstr "" msgid "All Submissions" msgstr "Tous les envois" -#: lms/lms/doctype/lms_quiz/lms_quiz.py:46 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:44 msgid "All questions should have the same marks if the limit is set." msgstr "Toutes les questions doivent avoir les mêmes notes si la limite est fixée." @@ -294,7 +292,7 @@ msgstr "Déjà Inscrit" #. Label of the amount (Currency) field in DocType 'LMS Batch' #. Label of the course_price (Currency) field in DocType 'LMS Course' #. Label of the amount (Currency) field in DocType 'LMS Payment' -#: frontend/src/pages/BatchForm.vue:209 frontend/src/pages/CourseForm.vue:221 +#: frontend/src/pages/BatchForm.vue:209 frontend/src/pages/CourseForm.vue:217 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_payment/lms_payment.json @@ -346,7 +344,7 @@ msgstr "" msgid "Answer" msgstr "Réponse" -#: frontend/src/pages/CourseForm.vue:85 frontend/src/pages/CourseForm.vue:103 +#: frontend/src/pages/CourseForm.vue:81 frontend/src/pages/CourseForm.vue:99 msgid "Appears on the course card in the course list" msgstr "" @@ -354,11 +352,11 @@ msgstr "" msgid "Appears when the batch URL is shared on any online platform" msgstr "" -#: frontend/src/pages/JobDetail.vue:121 +#: frontend/src/pages/JobDetail.vue:128 msgid "Applications Received" msgstr "Applications reçues" -#: frontend/src/pages/JobDetail.vue:42 +#: frontend/src/pages/JobDetail.vue:48 msgid "Apply" msgstr "" @@ -389,7 +387,7 @@ msgstr "Approuvé" msgid "Apps" msgstr "" -#: frontend/src/pages/Batches.vue:292 +#: frontend/src/pages/Batches.vue:294 msgid "Archived" msgstr "Archivé" @@ -401,11 +399,6 @@ msgstr "" msgid "Are you sure you want to login to your Frappe Cloud dashboard?" msgstr "" -#. Label of the user_category (Check) field in DocType 'LMS Settings' -#: lms/lms/doctype/lms_settings/lms_settings.json -msgid "Ask User Category during Signup" -msgstr "Demandez la catégorie de l'utilisateur lors de l'inscription" - #. 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 @@ -470,6 +463,10 @@ msgstr "Pièce jointe de l'évaluation" msgid "Assignment Submission Template" msgstr "Modèle de soumission d'un travail" +#: frontend/src/pages/AssignmentSubmissionList.vue:223 +msgid "Assignment Submissions" +msgstr "" + #. Label of the assignment_title (Data) field in DocType 'LMS Assignment #. Submission' #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json @@ -480,7 +477,7 @@ msgstr "Titre du devoir" msgid "Assignment for Lesson {0} by {1} already exists." msgstr "Le devoir pour la leçon {0} de {1} existe déjà." -#: frontend/src/pages/AssignmentForm.vue:155 +#: frontend/src/pages/AssignmentForm.vue:158 msgid "Assignment saved successfully" msgstr "" @@ -490,7 +487,8 @@ msgid "Assignment will appear at the bottom of the lesson." msgstr "Le devoir apparaîtra au bas de la leçon." #: frontend/src/components/AppSidebar.vue:531 -#: frontend/src/pages/AssignmentForm.vue:174 +#: frontend/src/pages/AssignmentForm.vue:177 +#: frontend/src/pages/Assignments.vue:193 lms/www/lms.py:251 msgid "Assignments" msgstr "Affectations" @@ -656,8 +654,8 @@ msgid "Batch:" msgstr "Lot:" #. Label of the batches (Check) field in DocType 'LMS Settings' -#: frontend/src/pages/Batches.vue:302 -#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:63 +#: frontend/src/pages/Batches.vue:304 frontend/src/pages/Batches.vue:311 +#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:105 msgid "Batches" msgstr "Lots" @@ -675,7 +673,7 @@ msgstr "Cordialement" #. Label of the billing_details_section (Section Break) field in DocType 'LMS #. Payment' -#: frontend/src/pages/Billing.vue:8 +#: frontend/src/pages/Billing.vue:8 frontend/src/pages/Billing.vue:363 #: lms/lms/doctype/lms_payment/lms_payment.json msgid "Billing Details" msgstr "Détails de la Facturation" @@ -757,8 +755,9 @@ msgstr "" #. Label of the category (Link) field in DocType 'LMS Course' #: frontend/src/pages/BatchForm.vue:190 frontend/src/pages/Batches.vue:55 #: frontend/src/pages/CertifiedParticipants.vue:37 -#: frontend/src/pages/CourseForm.vue:148 frontend/src/pages/Courses.vue:51 -#: frontend/src/pages/JobDetail.vue:96 lms/lms/doctype/lms_batch/lms_batch.json +#: frontend/src/pages/CourseForm.vue:144 frontend/src/pages/Courses.vue:51 +#: frontend/src/pages/JobDetail.vue:103 +#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/public/js/common_functions.js:316 lms/templates/signup-form.html:22 @@ -813,7 +812,7 @@ msgstr "" #: frontend/src/components/Modals/Event.vue:371 #: frontend/src/pages/BatchForm.vue:37 frontend/src/pages/Batches.vue:38 #: frontend/src/pages/CourseCertification.vue:10 -#: frontend/src/pages/CourseCertification.vue:133 +#: frontend/src/pages/CourseCertification.vue:135 #: frontend/src/pages/Courses.vue:34 lms/fixtures/custom_field.json #: lms/lms/doctype/certification/certification.json #: lms/lms/doctype/lms_batch/lms_batch.json @@ -837,7 +836,8 @@ msgid "Certified" msgstr "" #. Label of the certified_participants (Check) field in DocType 'LMS Settings' -#: frontend/src/pages/CertifiedParticipants.vue:161 +#: frontend/src/pages/CertifiedParticipants.vue:164 +#: frontend/src/pages/CertifiedParticipants.vue:171 #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Certified Participants" msgstr "Participants certifiés" @@ -864,11 +864,11 @@ msgstr "Chapitre" msgid "Chapter Reference" msgstr "Référence de chapitre" -#: frontend/src/components/Modals/ChapterModal.vue:152 +#: frontend/src/components/Modals/ChapterModal.vue:155 msgid "Chapter added successfully" msgstr "" -#: frontend/src/components/Modals/ChapterModal.vue:196 +#: frontend/src/components/Modals/ChapterModal.vue:199 msgid "Chapter updated successfully" msgstr "" @@ -1117,7 +1117,7 @@ msgid "Completed by Students" msgstr "" #. Label of the enable_certification (Check) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:213 +#: frontend/src/pages/CourseForm.vue:209 #: lms/lms/doctype/lms_course/lms_course.json msgid "Completion Certificate" msgstr "" @@ -1179,7 +1179,7 @@ msgid "Continue Learning" msgstr "" #. Option for the 'Type' (Select) field in DocType 'Job Opportunity' -#: frontend/src/pages/Jobs.vue:146 +#: frontend/src/pages/Jobs.vue:163 #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Contract" msgstr "Contrat" @@ -1294,6 +1294,7 @@ msgstr "Cours terminé" #. Name of a role #: frontend/src/pages/ProfileRoles.vue:16 #: lms/lms/doctype/course_chapter/course_chapter.json +#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_program/lms_program.json @@ -1307,7 +1308,7 @@ msgstr "Créateur de cours" msgid "Course Data" msgstr "Données du cours" -#: frontend/src/pages/CourseForm.vue:50 +#: frontend/src/pages/CourseForm.vue:46 msgid "Course Description" msgstr "Description du cours" @@ -1316,7 +1317,7 @@ msgstr "Description du cours" msgid "Course Evaluator" msgstr "Évaluateur de cours" -#: frontend/src/pages/CourseForm.vue:63 +#: frontend/src/pages/CourseForm.vue:59 msgid "Course Image" msgstr "Image du cours" @@ -1330,7 +1331,7 @@ msgstr "Enseignant du cours" msgid "Course Lesson" msgstr "Leçon de cours" -#: lms/www/lms.py:30 +#: lms/www/lms.py:70 msgid "Course List" msgstr "Liste de cours" @@ -1338,7 +1339,7 @@ msgstr "Liste de cours" msgid "Course Name" msgstr "Nom du cours" -#: frontend/src/pages/CourseDetail.vue:76 frontend/src/pages/CourseForm.vue:241 +#: frontend/src/pages/CourseDetail.vue:76 frontend/src/pages/CourseForm.vue:237 msgid "Course Outline" msgstr "" @@ -1370,7 +1371,7 @@ msgstr "Statistiques du cours" msgid "Course Title" msgstr "Titre du cours" -#: frontend/src/pages/ProgramForm.vue:229 +#: frontend/src/pages/ProgramForm.vue:232 msgid "Course added to program" msgstr "" @@ -1378,11 +1379,11 @@ msgstr "" msgid "Course already added to the batch." msgstr "Cours déjà ajouté au lot." -#: frontend/src/pages/CourseForm.vue:472 +#: frontend/src/pages/CourseForm.vue:470 msgid "Course deleted successfully" msgstr "" -#: frontend/src/pages/ProgramForm.vue:298 +#: frontend/src/pages/ProgramForm.vue:301 msgid "Course moved successfully" msgstr "" @@ -1400,8 +1401,9 @@ msgstr "Le cours {0} a déjà été ajouté à ce lot." #: frontend/src/components/BatchStudents.vue:92 #: frontend/src/components/Modals/BatchStudentProgress.vue:79 #: frontend/src/pages/BatchDetail.vue:21 frontend/src/pages/BatchDetail.vue:70 -#: frontend/src/pages/CourseCertification.vue:125 -#: frontend/src/pages/Courses.vue:301 frontend/src/pages/Statistics.vue:21 +#: frontend/src/pages/CourseCertification.vue:127 +#: frontend/src/pages/Courses.vue:304 frontend/src/pages/Courses.vue:311 +#: frontend/src/pages/Statistics.vue:21 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Courses" @@ -1443,7 +1445,6 @@ msgid "Create a batch" msgstr "" #: frontend/src/components/AppSidebar.vue:513 -#: frontend/src/components/OnboardingBanner.vue:30 msgid "Create a course" msgstr "" @@ -1467,7 +1468,7 @@ msgstr "" msgid "Create your first quiz" msgstr "" -#: frontend/src/pages/Assignments.vue:163 frontend/src/pages/Courses.vue:292 +#: frontend/src/pages/Assignments.vue:166 frontend/src/pages/Courses.vue:295 msgid "Created" msgstr "Créé" @@ -1482,7 +1483,7 @@ msgstr "" #. Label of the currency (Link) field in DocType 'LMS Batch' #. Label of the currency (Link) field in DocType 'LMS Course' #. Label of the currency (Link) field in DocType 'LMS Payment' -#: frontend/src/pages/BatchForm.vue:217 frontend/src/pages/CourseForm.vue:226 +#: frontend/src/pages/BatchForm.vue:217 frontend/src/pages/CourseForm.vue:222 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_payment/lms_payment.json @@ -1585,9 +1586,9 @@ msgstr "Devise par Défaut" msgid "Degree Type" msgstr "Type de diplôme" -#: frontend/src/components/CourseOutline.vue:247 -#: frontend/src/components/CourseOutline.vue:305 -#: frontend/src/pages/CourseForm.vue:485 +#: frontend/src/components/CourseOutline.vue:248 +#: frontend/src/components/CourseOutline.vue:306 +#: frontend/src/pages/CourseForm.vue:483 msgid "Delete" msgstr "Supprimer" @@ -1595,27 +1596,27 @@ msgstr "Supprimer" msgid "Delete Chapter" msgstr "" -#: frontend/src/pages/CourseForm.vue:479 +#: frontend/src/pages/CourseForm.vue:477 msgid "Delete Course" msgstr "" -#: frontend/src/components/CourseOutline.vue:299 +#: frontend/src/components/CourseOutline.vue:300 msgid "Delete this chapter?" msgstr "" -#: frontend/src/components/CourseOutline.vue:241 +#: frontend/src/components/CourseOutline.vue:242 msgid "Delete this lesson?" msgstr "" -#: frontend/src/pages/CourseForm.vue:480 +#: frontend/src/pages/CourseForm.vue:478 msgid "Deleting the course will also delete all its chapters and lessons. Are you sure you want to delete this course?" msgstr "" -#: frontend/src/components/CourseOutline.vue:300 +#: frontend/src/components/CourseOutline.vue:301 msgid "Deleting this chapter will also delete all its lessons and permanently remove it from the course. This action cannot be undone. Are you sure you want to continue?" msgstr "" -#: frontend/src/components/CourseOutline.vue:242 +#: frontend/src/components/CourseOutline.vue:243 msgid "Deleting this lesson will permanently remove it from the course. This action cannot be undone. Are you sure you want to continue?" msgstr "" @@ -1650,15 +1651,15 @@ msgstr "" #: frontend/src/components/Apps.vue:51 msgid "Desk" -msgstr "" +msgstr "Bureau" #: frontend/src/components/Modals/DiscussionModal.vue:22 #: frontend/src/pages/AssignmentForm.vue:27 frontend/src/pages/BatchForm.vue:14 -#: frontend/src/pages/CourseForm.vue:29 frontend/src/pages/QuizForm.vue:42 +#: frontend/src/pages/CourseForm.vue:25 frontend/src/pages/QuizForm.vue:42 msgid "Details" msgstr "Détails" -#: frontend/src/pages/CourseForm.vue:195 +#: frontend/src/pages/CourseForm.vue:191 msgid "Disable Self Enrollment" msgstr "Désactiver l'auto-inscription" @@ -1667,6 +1668,11 @@ msgstr "Désactiver l'auto-inscription" msgid "Disable Self Learning" msgstr "Désactiver l'auto-apprentissage" +#. Label of the disable_signup (Check) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Disable Signup" +msgstr "" + #. Label of the disabled (Check) field in DocType 'Job Opportunity' #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Disabled" @@ -1791,12 +1797,12 @@ msgstr "Modèle d'email" #. Label of the email_templates_tab (Tab Break) field in DocType 'LMS Settings' #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Email Templates" -msgstr "" +msgstr "Modèles d’Email" #. Label of the show_emails (Check) field in DocType 'LMS Settings' #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Emails" -msgstr "" +msgstr "E-mails" #. Option for the 'User Category' (Select) field in DocType 'User' #: lms/fixtures/custom_field.json lms/templates/signup-form.html:25 @@ -1808,7 +1814,7 @@ msgstr "Employé" msgid "Enable" msgstr "Activer" -#: lms/lms/doctype/lms_settings/lms_settings.py:20 +#: lms/lms/doctype/lms_settings/lms_settings.py:21 msgid "Enable Google API in Google Settings to send calendar invites for evaluations." msgstr "" @@ -1867,7 +1873,7 @@ msgstr "Heure de Fin" msgid "Enroll Now" msgstr "" -#: frontend/src/pages/Batches.vue:295 frontend/src/pages/Courses.vue:294 +#: frontend/src/pages/Batches.vue:297 frontend/src/pages/Courses.vue:297 msgid "Enrolled" msgstr "" @@ -1902,7 +1908,7 @@ msgstr "" msgid "Enrollments" msgstr "" -#: lms/lms/doctype/lms_settings/lms_settings.py:25 +#: lms/lms/doctype/lms_settings/lms_settings.py:26 msgid "Enter Client Id and Client Secret in Google Settings to send calendar invites for evaluations." msgstr "" @@ -1921,19 +1927,19 @@ msgstr "" #: frontend/src/components/Assignment.vue:287 #: frontend/src/components/Modals/AnnouncementModal.vue:105 #: frontend/src/components/Modals/BulkCertificates.vue:115 -#: frontend/src/components/Modals/ChapterModal.vue:157 -#: frontend/src/components/Modals/ChapterModal.vue:164 -#: frontend/src/components/Modals/ChapterModal.vue:200 -#: frontend/src/components/Modals/Question.vue:251 -#: frontend/src/components/Modals/Question.vue:272 -#: frontend/src/components/Modals/Question.vue:329 -#: frontend/src/components/Modals/StudentModal.vue:70 +#: frontend/src/components/Modals/ChapterModal.vue:160 +#: frontend/src/components/Modals/ChapterModal.vue:167 +#: frontend/src/components/Modals/ChapterModal.vue:203 +#: frontend/src/components/Modals/Question.vue:252 +#: frontend/src/components/Modals/Question.vue:275 +#: frontend/src/components/Modals/Question.vue:332 +#: frontend/src/components/Modals/StudentModal.vue:73 #: frontend/src/components/Quiz.vue:592 #: frontend/src/components/SettingDetails.vue:62 -#: frontend/src/pages/AssignmentForm.vue:139 -#: frontend/src/pages/AssignmentForm.vue:159 frontend/src/pages/Billing.vue:261 -#: frontend/src/pages/QuizForm.vue:346 frontend/src/pages/QuizForm.vue:361 -#: frontend/src/pages/QuizSubmission.vue:147 +#: frontend/src/pages/AssignmentForm.vue:142 +#: frontend/src/pages/AssignmentForm.vue:162 frontend/src/pages/Billing.vue:262 +#: frontend/src/pages/QuizForm.vue:349 frontend/src/pages/QuizForm.vue:364 +#: frontend/src/pages/QuizSubmission.vue:150 msgid "Error" msgstr "Erreur" @@ -1982,7 +1988,7 @@ msgstr "" #. Label of the evaluator (Link) field in DocType 'LMS Course' #: frontend/src/components/Modals/BatchCourseModal.vue:26 #: frontend/src/components/Modals/BulkCertificates.vue:22 -#: frontend/src/pages/CourseForm.vue:232 frontend/src/pages/ProfileRoles.vue:22 +#: frontend/src/pages/CourseForm.vue:228 frontend/src/pages/ProfileRoles.vue:22 #: lms/lms/doctype/batch_course/batch_course.json #: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json @@ -2100,7 +2106,7 @@ msgstr "" #. Label of the featured (Check) field in DocType 'LMS Course' #: frontend/src/components/CourseCard.vue:16 -#: frontend/src/pages/CourseForm.vue:190 +#: frontend/src/pages/CourseForm.vue:186 #: lms/lms/doctype/lms_course/lms_course.json msgid "Featured" msgstr "En vedette" @@ -2149,10 +2155,6 @@ msgstr "" msgid "Flexible Time" msgstr "" -#: frontend/src/pages/QuizForm.vue:459 -msgid "Form to create and edit quizzes" -msgstr "" - #. Option for the 'Attire Preference' (Select) field in DocType 'User' #: lms/fixtures/custom_field.json msgid "Formal Wear" @@ -2163,7 +2165,7 @@ msgid "Free" msgstr "" #. Option for the 'Type' (Select) field in DocType 'Job Opportunity' -#: frontend/src/pages/Jobs.vue:147 +#: frontend/src/pages/Jobs.vue:164 #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Freelance" msgstr "" @@ -2207,7 +2209,7 @@ msgid "Full Name" msgstr "Nom Complet" #. Option for the 'Type' (Select) field in DocType 'Job Opportunity' -#: frontend/src/pages/Jobs.vue:144 +#: frontend/src/pages/Jobs.vue:161 #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Full Time" msgstr "" @@ -2385,7 +2387,7 @@ msgstr "" msgid "I am unavailable" msgstr "" -#: frontend/src/pages/QuizForm.vue:380 +#: frontend/src/pages/QuizForm.vue:383 msgid "ID" msgstr "" @@ -2395,6 +2397,11 @@ msgstr "" msgid "Icon" msgstr "Icône" +#. Label of the user_category (Check) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Identify User Persona" +msgstr "" + #: frontend/src/components/LessonHelp.vue:11 msgid "If Include in Preview is enabled for a lesson then the lesson will also be accessible to non logged in users." msgstr "" @@ -2425,7 +2432,7 @@ msgstr "" msgid "If you set an amount here, then the USD equivalent setting will not get applied." msgstr "" -#: lms/lms/doctype/lms_quiz/lms_quiz.py:63 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:61 msgid "If you want open ended questions then make sure each question in the quiz is of open ended type." msgstr "" @@ -2451,7 +2458,7 @@ msgstr "Image" msgid "Image search powered by" msgstr "" -#: lms/lms/doctype/lms_quiz/lms_quiz.py:221 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:219 msgid "Image: Corrupted Data Stream" msgstr "" @@ -2540,7 +2547,7 @@ msgstr "" #. Label of the instructors (Table MultiSelect) field in DocType 'LMS Batch' #. Label of the instructors (Rating) field in DocType 'LMS Batch Feedback' #. Label of the instructors (Table MultiSelect) field in DocType 'LMS Course' -#: frontend/src/pages/BatchForm.vue:93 frontend/src/pages/CourseForm.vue:155 +#: frontend/src/pages/BatchForm.vue:93 frontend/src/pages/CourseForm.vue:151 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json #: lms/lms/doctype/lms_course/lms_course.json @@ -2565,10 +2572,14 @@ msgstr "" msgid "Invalid Invite Code." msgstr "" -#: lms/lms/doctype/course_lesson/course_lesson.py:20 +#: lms/lms/doctype/course_lesson/course_lesson.py:19 msgid "Invalid Quiz ID" msgstr "" +#: lms/lms/doctype/course_lesson/course_lesson.py:33 +msgid "Invalid Quiz ID in content" +msgstr "" + #. Label of the invite_code (Data) field in DocType 'Cohort Subgroup' #. Label of the invite_code (Data) field in DocType 'Invite Request' #: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json @@ -2607,11 +2618,6 @@ msgstr "" msgid "Is Correct" msgstr "" -#. Label of the is_onboarding_complete (Check) field in DocType 'LMS Settings' -#: lms/lms/doctype/lms_settings/lms_settings.json -msgid "Is Onboarding Complete" -msgstr "" - #. Label of the is_scorm_package (Check) field in DocType 'Course Chapter' #. Label of the is_scorm_package (Check) field in DocType 'Course Lesson' #: lms/lms/doctype/course_chapter/course_chapter.json @@ -2650,7 +2656,7 @@ msgstr "" msgid "Items in Sidebar" msgstr "" -#: frontend/src/pages/ProgramForm.vue:272 +#: frontend/src/pages/ProgramForm.vue:275 msgid "Items removed successfully" msgstr "" @@ -2677,7 +2683,7 @@ msgstr "" msgid "Job Details" msgstr "" -#: lms/www/lms.py:111 +#: lms/www/lms.py:159 msgid "Job Openings" msgstr "Offres d'emploi" @@ -2700,6 +2706,7 @@ msgstr "Titre de l'Emploi" #. Label of the jobs (Check) field in DocType 'LMS Settings' #: frontend/src/pages/JobDetail.vue:10 frontend/src/pages/Jobs.vue:8 +#: frontend/src/pages/Jobs.vue:170 #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Jobs" msgstr "Emplois" @@ -2923,7 +2930,6 @@ msgstr "" #: lms/job/doctype/lms_job_application/lms_job_application.json #: lms/lms/doctype/cohort_join_request/cohort_join_request.json #: lms/lms/doctype/course_chapter/course_chapter.json -#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/function/function.json #: lms/lms/doctype/industry/industry.json #: lms/lms/doctype/lms_assignment/lms_assignment.json @@ -3035,7 +3041,7 @@ msgstr "" msgid "Limit Questions To" msgstr "" -#: lms/lms/doctype/lms_quiz/lms_quiz.py:40 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:38 msgid "Limit cannot be greater than or equal to the number of questions in the quiz." msgstr "" @@ -3055,12 +3061,8 @@ msgstr "" msgid "Links" msgstr "Liens" -#: frontend/src/pages/Quizzes.vue:149 -msgid "List of quizzes" -msgstr "" - #. Option for the 'Status' (Select) field in DocType 'Cohort' -#: frontend/src/pages/Courses.vue:278 lms/lms/doctype/cohort/cohort.json +#: frontend/src/pages/Courses.vue:281 lms/lms/doctype/cohort/cohort.json msgid "Live" msgstr "" @@ -3092,7 +3094,7 @@ msgstr "Locale" #. Label of the location (Data) field in DocType 'Job Opportunity' #. Label of the location (Data) field in DocType 'Education Detail' #. Label of the location (Data) field in DocType 'Work Experience' -#: frontend/src/pages/JobCreation.vue:26 frontend/src/pages/JobDetail.vue:85 +#: frontend/src/pages/JobCreation.vue:26 frontend/src/pages/JobDetail.vue:92 #: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/lms/doctype/education_detail/education_detail.json #: lms/lms/doctype/work_experience/work_experience.json @@ -3114,7 +3116,7 @@ msgstr "Connexion" msgid "Login to Frappe Cloud?" msgstr "" -#: frontend/src/pages/JobDetail.vue:48 +#: frontend/src/pages/JobDetail.vue:54 msgid "Login to apply" msgstr "" @@ -3161,7 +3163,7 @@ msgstr "" #: frontend/src/pages/Notifications.vue:12 msgid "Mark all as read" -msgstr "" +msgstr "Marquer tout comme lu" #: frontend/src/pages/Notifications.vue:40 msgid "Mark as read" @@ -3171,7 +3173,7 @@ msgstr "" #. Label of the marks (Int) field in DocType 'LMS Quiz Result' #: frontend/src/components/Modals/Question.vue:50 #: frontend/src/components/Modals/Question.vue:99 -#: frontend/src/components/Quiz.vue:96 frontend/src/pages/QuizForm.vue:390 +#: frontend/src/components/Quiz.vue:96 frontend/src/pages/QuizForm.vue:393 #: frontend/src/pages/QuizSubmission.vue:65 #: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json #: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json @@ -3233,7 +3235,7 @@ msgstr "Moyen:" #. Label of the member (Link) field in DocType 'LMS Quiz Submission' #: frontend/src/pages/AssignmentSubmissionList.vue:14 #: frontend/src/pages/QuizSubmission.vue:31 -#: frontend/src/pages/QuizSubmissionList.vue:86 +#: frontend/src/pages/QuizSubmissionList.vue:102 #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_submission/exercise_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json @@ -3314,7 +3316,7 @@ msgstr "" msgid "Member Username" msgstr "" -#: frontend/src/pages/ProgramForm.vue:251 +#: frontend/src/pages/ProgramForm.vue:254 msgid "Member added to program" msgstr "" @@ -3378,6 +3380,11 @@ msgstr "" msgid "Mentor Request Status Update Template" msgstr "" +#. Label of the meta_description (Small Text) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Meta Description" +msgstr "" + #. Label of the meta_image (Attach Image) field in DocType 'LMS Batch' #: frontend/src/pages/BatchForm.vue:44 lms/lms/doctype/lms_batch/lms_batch.json #: lms/public/js/common_functions.js:362 @@ -3400,6 +3407,7 @@ msgstr "" #. Name of a role #: frontend/src/pages/ProfileRoles.vue:10 #: lms/lms/doctype/course_evaluator/course_evaluator.json +#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/lms_assignment/lms_assignment.json #: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json #: lms/lms/doctype/lms_batch/lms_batch.json @@ -3459,12 +3467,13 @@ msgstr "" #. Option for the 'Event' (Select) field in DocType 'LMS Badge' #: frontend/src/pages/Assignments.vue:18 frontend/src/pages/Batches.vue:17 -#: frontend/src/pages/Courses.vue:17 frontend/src/pages/Courses.vue:281 +#: frontend/src/pages/Courses.vue:17 frontend/src/pages/Courses.vue:284 #: frontend/src/pages/Programs.vue:14 lms/lms/doctype/lms_badge/lms_badge.json msgid "New" msgstr "Nouveau" -#: frontend/src/pages/AssignmentForm.vue:178 +#: frontend/src/pages/AssignmentForm.vue:181 +#: frontend/src/pages/AssignmentForm.vue:197 msgid "New Assignment" msgstr "" @@ -3472,11 +3481,11 @@ msgstr "" msgid "New Assignment Submission" msgstr "" -#: lms/public/js/common_functions.js:255 lms/www/lms.py:89 +#: lms/public/js/common_functions.js:255 lms/www/lms.py:134 msgid "New Batch" msgstr "" -#: lms/www/lms.py:40 +#: frontend/src/pages/CourseForm.vue:577 lms/www/lms.py:78 msgid "New Course" msgstr "" @@ -3504,7 +3513,7 @@ msgstr "" msgid "New Question" msgstr "" -#: frontend/src/pages/QuizForm.vue:450 frontend/src/pages/QuizForm.vue:458 +#: frontend/src/pages/QuizForm.vue:453 frontend/src/pages/QuizForm.vue:461 #: frontend/src/pages/Quizzes.vue:18 msgid "New Quiz" msgstr "" @@ -3599,8 +3608,8 @@ msgstr "" msgid "No introduction" msgstr "" -#: frontend/src/pages/Jobs.vue:77 -msgid "No jobs posted" +#: frontend/src/pages/Jobs.vue:80 +msgid "No jobs found" msgstr "" #: frontend/src/components/LiveClass.vue:71 @@ -3615,6 +3624,10 @@ msgstr "" msgid "No programs found" msgstr "" +#: frontend/src/pages/QuizSubmissionList.vue:52 +msgid "No quiz submissions found. Please check again later." +msgstr "" + #: frontend/src/pages/Quizzes.vue:61 msgid "No quizzes found" msgstr "" @@ -3624,6 +3637,7 @@ msgid "No slots available for this date." msgstr "" #: frontend/src/pages/AssignmentSubmissionList.vue:67 +#: frontend/src/pages/QuizSubmissionList.vue:49 msgid "No submissions" msgstr "" @@ -3724,11 +3738,11 @@ msgstr "" msgid "Only files of type {0} will be accepted." msgstr "" -#: frontend/src/pages/CourseForm.vue:509 frontend/src/utils/index.js:549 +#: frontend/src/pages/CourseForm.vue:507 frontend/src/utils/index.js:550 msgid "Only image file is allowed." msgstr "" -#: frontend/src/components/Modals/ChapterModal.vue:218 +#: frontend/src/components/Modals/ChapterModal.vue:221 msgid "Only zip files are allowed" msgstr "" @@ -3786,7 +3800,7 @@ msgstr "" msgid "Order ID" msgstr "" -#: frontend/src/pages/JobDetail.vue:74 +#: frontend/src/pages/JobDetail.vue:81 msgid "Organisation" msgstr "" @@ -3835,7 +3849,7 @@ msgid "Paid Batch" msgstr "" #. Label of the paid_certificate (Check) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:218 +#: frontend/src/pages/CourseForm.vue:214 #: lms/lms/doctype/lms_course/lms_course.json msgid "Paid Certificate" msgstr "" @@ -3845,7 +3859,7 @@ msgid "Paid Certificate after Evaluation" msgstr "" #. Label of the paid_course (Check) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:208 +#: frontend/src/pages/CourseForm.vue:204 #: lms/lms/doctype/lms_course/lms_course.json msgid "Paid Course" msgstr "" @@ -3855,7 +3869,7 @@ msgid "Pan Number" msgstr "" #. Option for the 'Type' (Select) field in DocType 'Job Opportunity' -#: frontend/src/pages/Jobs.vue:145 +#: frontend/src/pages/Jobs.vue:162 #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Part Time" msgstr "" @@ -3877,7 +3891,7 @@ msgstr "" #. Label of the passing_percentage (Int) field in DocType 'LMS Quiz' #. Label of the passing_percentage (Int) field in DocType 'LMS Quiz Submission' -#: frontend/src/pages/QuizForm.vue:72 frontend/src/pages/Quizzes.vue:127 +#: frontend/src/pages/QuizForm.vue:72 frontend/src/pages/Quizzes.vue:129 #: lms/lms/doctype/lms_quiz/lms_quiz.json #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json msgid "Passing Percentage" @@ -3888,7 +3902,7 @@ msgstr "" msgid "Password" msgstr "Mot de Passe" -#: frontend/src/pages/CourseForm.vue:113 +#: frontend/src/pages/CourseForm.vue:109 msgid "Paste the youtube link of a short video introducing the course" msgstr "" @@ -3980,7 +3994,7 @@ msgstr "En Attente" #. Label of the percentage (Int) field in DocType 'LMS Quiz Submission' #: frontend/src/pages/QuizSubmission.vue:44 -#: frontend/src/pages/QuizSubmissionList.vue:97 +#: frontend/src/pages/QuizSubmissionList.vue:113 #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json msgid "Percentage" msgstr "Pourcentage" @@ -4002,7 +4016,7 @@ msgstr "Numéro de téléphone" msgid "Please Login" msgstr "" -#: lms/lms/doctype/lms_settings/lms_settings.py:33 +#: lms/lms/doctype/lms_settings/lms_settings.py:34 msgid "Please add {1} for {3} to send calendar invites for evaluations." msgstr "" @@ -4026,7 +4040,7 @@ msgstr "" msgid "Please enable Zoom Settings to use this feature." msgstr "" -#: frontend/src/components/CourseOutline.vue:324 +#: frontend/src/components/CourseOutline.vue:325 msgid "Please enroll for this course to view this lesson" msgstr "" @@ -4063,7 +4077,7 @@ msgstr "" msgid "Please install the Payments app to create a paid courses." msgstr "" -#: frontend/src/pages/Billing.vue:253 +#: frontend/src/pages/Billing.vue:254 msgid "Please let us know where you heard about us from." msgstr "" @@ -4112,7 +4126,7 @@ msgstr "" msgid "Please take appropriate action at {0}" msgstr "" -#: frontend/src/components/Modals/ChapterModal.vue:175 +#: frontend/src/components/Modals/ChapterModal.vue:178 msgid "Please upload a SCORM package" msgstr "" @@ -4158,7 +4172,7 @@ msgstr "Poster" msgid "Postal Code" msgstr "code postal" -#: frontend/src/pages/JobDetail.vue:107 +#: frontend/src/pages/JobDetail.vue:114 msgid "Posted on" msgstr "" @@ -4193,7 +4207,7 @@ msgstr "" msgid "Preview Image" msgstr "" -#: frontend/src/pages/CourseForm.vue:111 +#: frontend/src/pages/CourseForm.vue:107 msgid "Preview Video" msgstr "" @@ -4208,7 +4222,7 @@ msgid "Pricing" msgstr "Tarification" #. Label of the pricing_tab (Tab Break) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:202 +#: frontend/src/pages/CourseForm.vue:198 #: lms/lms/doctype/lms_course/lms_course.json msgid "Pricing and Certification" msgstr "" @@ -4272,6 +4286,10 @@ msgstr "" msgid "Program Members" msgstr "" +#: frontend/src/pages/Programs.vue:219 lms/www/lms.py:273 +msgid "Programs" +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/BatchStudents.vue:75 @@ -4301,7 +4319,7 @@ msgstr "" #. Label of the published (Check) field in DocType 'LMS Course' #: frontend/src/components/Modals/BulkCertificates.vue:51 #: frontend/src/components/Modals/Event.vue:108 -#: frontend/src/pages/BatchForm.vue:27 frontend/src/pages/CourseForm.vue:172 +#: frontend/src/pages/BatchForm.vue:27 frontend/src/pages/CourseForm.vue:168 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/public/js/common_functions.js:266 @@ -4314,7 +4332,7 @@ msgid "Published Courses" msgstr "" #. Label of the published_on (Date) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:176 +#: frontend/src/pages/CourseForm.vue:172 #: lms/lms/doctype/lms_course/lms_course.json msgid "Published On" msgstr "Publié le" @@ -4333,7 +4351,7 @@ msgstr "" #. Label of the question (Text) field in DocType 'LMS Quiz Result' #: frontend/src/components/Assignment.vue:20 #: frontend/src/components/Modals/Question.vue:38 -#: frontend/src/pages/AssignmentForm.vue:45 frontend/src/pages/QuizForm.vue:385 +#: frontend/src/pages/AssignmentForm.vue:45 frontend/src/pages/QuizForm.vue:388 #: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/lms_assignment/lms_assignment.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json @@ -4358,11 +4376,11 @@ msgstr "" msgid "Question Name" msgstr "" -#: frontend/src/components/Modals/Question.vue:267 +#: frontend/src/components/Modals/Question.vue:270 msgid "Question added successfully" msgstr "" -#: frontend/src/components/Modals/Question.vue:319 +#: frontend/src/components/Modals/Question.vue:322 msgid "Question updated successfully" msgstr "" @@ -4379,7 +4397,7 @@ msgstr "" msgid "Questions" msgstr "" -#: frontend/src/pages/QuizForm.vue:427 +#: frontend/src/pages/QuizForm.vue:430 msgid "Questions deleted successfully" msgstr "" @@ -4397,13 +4415,13 @@ msgid "Quiz ID" msgstr "" #. Label of a Link in the LMS Workspace -#: frontend/src/pages/QuizPage.vue:56 frontend/src/pages/QuizPage.vue:62 -#: lms/lms/workspace/lms/lms.json +#: frontend/src/pages/QuizPage.vue:57 lms/lms/workspace/lms/lms.json msgid "Quiz Submission" msgstr "" -#: frontend/src/pages/QuizSubmission.vue:128 -#: frontend/src/pages/QuizSubmissionList.vue:106 +#: frontend/src/pages/QuizSubmission.vue:131 +#: frontend/src/pages/QuizSubmissionList.vue:122 +#: frontend/src/pages/QuizSubmissionList.vue:127 msgid "Quiz Submissions" msgstr "" @@ -4416,7 +4434,7 @@ msgstr "" msgid "Quiz Title" msgstr "" -#: frontend/src/pages/QuizForm.vue:339 +#: frontend/src/pages/QuizForm.vue:342 msgid "Quiz created successfully" msgstr "" @@ -4424,7 +4442,7 @@ msgstr "" msgid "Quiz is not available to Guest users. Please login to continue." msgstr "" -#: frontend/src/pages/QuizForm.vue:358 +#: frontend/src/pages/QuizForm.vue:361 msgid "Quiz updated successfully" msgstr "" @@ -4434,8 +4452,8 @@ msgid "Quiz will appear at the bottom of the lesson." msgstr "" #: frontend/src/components/AppSidebar.vue:530 -#: frontend/src/pages/QuizForm.vue:438 frontend/src/pages/Quizzes.vue:138 -#: frontend/src/pages/Quizzes.vue:148 +#: frontend/src/pages/QuizForm.vue:441 frontend/src/pages/Quizzes.vue:140 +#: frontend/src/pages/Quizzes.vue:150 lms/www/lms.py:229 msgid "Quizzes" msgstr "" @@ -4513,9 +4531,9 @@ msgstr "Rejeté" msgid "Related Courses" msgstr "" -#: frontend/src/pages/BatchForm.vue:77 frontend/src/pages/CourseForm.vue:100 +#: frontend/src/pages/BatchForm.vue:77 frontend/src/pages/CourseForm.vue:96 msgid "Remove" -msgstr "" +msgstr "Supprimer" #: frontend/src/components/Modals/AnnouncementModal.vue:27 msgid "Reply To" @@ -4607,7 +4625,7 @@ msgstr "" msgid "Row #{0} Start time cannot be outside the batch duration." msgstr "" -#: lms/lms/doctype/lms_quiz/lms_quiz.py:34 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:32 msgid "Rows {0} have the duplicate questions." msgstr "" @@ -4631,6 +4649,11 @@ msgstr "" msgid "SCORM Package Path" msgstr "" +#. Label of the seo_tab (Tab Break) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "SEO" +msgstr "" + #. Option for the 'Day' (Select) field in DocType 'Evaluator Schedule' #. Option for the 'Day' (Select) field in DocType 'LMS Certificate Request' #: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json @@ -4644,7 +4667,7 @@ msgstr "Samedi" #: frontend/src/components/Modals/Event.vue:101 #: frontend/src/components/Modals/Event.vue:129 #: frontend/src/pages/AssignmentForm.vue:21 frontend/src/pages/BatchForm.vue:8 -#: frontend/src/pages/CourseForm.vue:21 frontend/src/pages/JobCreation.vue:8 +#: frontend/src/pages/CourseForm.vue:17 frontend/src/pages/JobCreation.vue:8 #: frontend/src/pages/LessonForm.vue:14 frontend/src/pages/ProgramForm.vue:7 #: frontend/src/pages/QuizForm.vue:34 frontend/src/pages/QuizSubmission.vue:14 #: lms/public/js/common_functions.js:405 @@ -4673,7 +4696,7 @@ msgstr "" #. Label of the score (Int) field in DocType 'LMS Quiz Submission' #: frontend/src/pages/QuizSubmission.vue:39 -#: frontend/src/pages/QuizSubmissionList.vue:91 +#: frontend/src/pages/QuizSubmissionList.vue:107 #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json #: lms/templates/quiz/quiz.html:148 msgid "Score" @@ -4767,7 +4790,7 @@ msgstr "" #: frontend/src/components/AppSidebar.vue:556 #: frontend/src/components/Modals/Settings.vue:7 -#: frontend/src/pages/BatchForm.vue:148 frontend/src/pages/CourseForm.vue:162 +#: frontend/src/pages/BatchForm.vue:148 frontend/src/pages/CourseForm.vue:158 #: frontend/src/pages/ProfileRoles.vue:4 frontend/src/pages/QuizForm.vue:79 msgid "Settings" msgstr "Paramètres" @@ -4781,7 +4804,7 @@ msgid "Short Description" msgstr "" #. Label of the short_introduction (Small Text) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:39 +#: frontend/src/pages/CourseForm.vue:35 #: lms/lms/doctype/lms_course/lms_course.json msgid "Short Introduction" msgstr "" @@ -4892,10 +4915,6 @@ msgstr "Compétences" msgid "Skip" msgstr "Sauter" -#: frontend/src/components/OnboardingBanner.vue:3 -msgid "Skip Onboarding" -msgstr "" - #: lms/lms/doctype/course_evaluator/course_evaluator.py:63 msgid "Slot Times are overlapping for some schedules." msgstr "" @@ -5009,8 +5028,9 @@ msgstr "Etat" #. Label of the tab_4_tab (Tab Break) field in DocType 'LMS Course' #. Label of the statistics (Check) field in DocType 'LMS Settings' #: frontend/src/components/BatchStudents.vue:5 +#: frontend/src/pages/Statistics.vue:322 #: lms/lms/doctype/lms_course/lms_course.json -#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:136 +#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:182 msgid "Statistics" msgstr "" @@ -5110,7 +5130,7 @@ msgstr "" #: frontend/src/components/Modals/AssessmentModal.vue:9 #: frontend/src/components/Modals/BatchCourseModal.vue:9 #: frontend/src/components/Modals/EvaluationModal.vue:9 -#: frontend/src/components/Modals/Question.vue:341 +#: frontend/src/components/Modals/Question.vue:344 #: frontend/src/components/Quiz.vue:218 lms/templates/assignment.html:9 #: lms/templates/livecode/extension_footer.html:25 #: lms/templates/quiz/quiz.html:128 lms/templates/reviews.html:163 @@ -5135,18 +5155,18 @@ msgstr "" #: frontend/src/components/Modals/AnnouncementModal.vue:99 #: frontend/src/components/Modals/AssessmentModal.vue:73 #: frontend/src/components/Modals/BulkCertificates.vue:121 -#: frontend/src/components/Modals/ChapterModal.vue:151 -#: frontend/src/components/Modals/ChapterModal.vue:196 +#: frontend/src/components/Modals/ChapterModal.vue:154 +#: frontend/src/components/Modals/ChapterModal.vue:199 #: frontend/src/components/Modals/Event.vue:255 #: frontend/src/components/Modals/Event.vue:310 -#: frontend/src/components/Modals/Question.vue:267 -#: frontend/src/components/Modals/Question.vue:318 -#: frontend/src/pages/AssignmentForm.vue:155 -#: frontend/src/pages/CourseForm.vue:472 frontend/src/pages/ProgramForm.vue:229 -#: frontend/src/pages/ProgramForm.vue:251 -#: frontend/src/pages/ProgramForm.vue:272 -#: frontend/src/pages/ProgramForm.vue:298 frontend/src/pages/QuizForm.vue:339 -#: frontend/src/pages/QuizForm.vue:358 frontend/src/pages/QuizForm.vue:427 +#: frontend/src/components/Modals/Question.vue:270 +#: frontend/src/components/Modals/Question.vue:321 +#: frontend/src/pages/AssignmentForm.vue:158 +#: frontend/src/pages/CourseForm.vue:470 frontend/src/pages/ProgramForm.vue:232 +#: frontend/src/pages/ProgramForm.vue:254 +#: frontend/src/pages/ProgramForm.vue:275 +#: frontend/src/pages/ProgramForm.vue:301 frontend/src/pages/QuizForm.vue:342 +#: frontend/src/pages/QuizForm.vue:361 frontend/src/pages/QuizForm.vue:430 msgid "Success" msgstr "Succès" @@ -5164,7 +5184,7 @@ msgstr "Résumé" msgid "Sunday" msgstr "Dimanche" -#: lms/lms/api.py:1026 +#: lms/lms/api.py:1027 msgid "Suspicious pattern found in {0}: {1}" msgstr "" @@ -5220,7 +5240,7 @@ msgid "System Manager" msgstr "Responsable Système" #. Label of the tags (Data) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:121 +#: frontend/src/pages/CourseForm.vue:117 #: lms/lms/doctype/lms_course/lms_course.json msgid "Tags" msgstr "Balises" @@ -5325,6 +5345,10 @@ msgstr "" msgid "There are no courses matching the criteria. Keep an eye out, fresh learning experiences are on the way soon!" msgstr "" +#: frontend/src/pages/Jobs.vue:84 +msgid "There are no jobs available at the moment. Open a job opportunity or check here again later." +msgstr "" + #: frontend/src/pages/CertifiedParticipants.vue:92 msgid "There are no participants matching this criteria." msgstr "" @@ -5384,8 +5408,10 @@ msgstr "" msgid "This course is free." msgstr "" -#: frontend/src/pages/SCORMChapter.vue:201 -msgid "This is a chapter in the course {0}" +#. Description of the 'Meta Description' (Small Text) field in DocType 'LMS +#. Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "This description will be shown on lists and pages without meta description" msgstr "" #: frontend/src/pages/Lesson.vue:16 @@ -5482,10 +5508,10 @@ msgstr "" #: frontend/src/components/Modals/DiscussionModal.vue:18 #: frontend/src/components/Modals/LiveClassModal.vue:23 #: frontend/src/pages/AssignmentForm.vue:32 -#: frontend/src/pages/Assignments.vue:152 frontend/src/pages/BatchForm.vue:19 -#: frontend/src/pages/CourseForm.vue:33 frontend/src/pages/JobCreation.vue:20 +#: frontend/src/pages/Assignments.vue:155 frontend/src/pages/BatchForm.vue:19 +#: frontend/src/pages/CourseForm.vue:29 frontend/src/pages/JobCreation.vue:20 #: frontend/src/pages/ProgramForm.vue:11 frontend/src/pages/Programs.vue:116 -#: frontend/src/pages/QuizForm.vue:48 frontend/src/pages/Quizzes.vue:116 +#: frontend/src/pages/QuizForm.vue:48 frontend/src/pages/Quizzes.vue:118 #: lms/lms/doctype/cohort/cohort.json #: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json #: lms/lms/doctype/cohort_web_page/cohort_web_page.json @@ -5507,7 +5533,7 @@ msgstr "" msgid "Title" msgstr "Titre" -#: frontend/src/components/Modals/ChapterModal.vue:172 +#: frontend/src/components/Modals/ChapterModal.vue:175 msgid "Title is required" msgstr "" @@ -5539,7 +5565,7 @@ msgid "Total" msgstr "" #. Label of the total_marks (Int) field in DocType 'LMS Quiz' -#: frontend/src/pages/QuizForm.vue:67 frontend/src/pages/Quizzes.vue:121 +#: frontend/src/pages/QuizForm.vue:67 frontend/src/pages/Quizzes.vue:123 #: lms/lms/doctype/lms_quiz/lms_quiz.json msgid "Total Marks" msgstr "" @@ -5577,7 +5603,7 @@ msgstr "" #: frontend/src/components/Modals/AssessmentModal.vue:22 #: frontend/src/components/Modals/Question.vue:54 #: frontend/src/pages/AssignmentForm.vue:39 -#: frontend/src/pages/Assignments.vue:30 frontend/src/pages/Assignments.vue:157 +#: frontend/src/pages/Assignments.vue:30 frontend/src/pages/Assignments.vue:160 #: frontend/src/pages/JobCreation.vue:33 frontend/src/pages/Jobs.vue:55 #: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/lms/doctype/lms_assignment/lms_assignment.json @@ -5624,7 +5650,7 @@ msgstr "En cours de révision" msgid "Unlisted" msgstr "" -#: frontend/src/pages/Batches.vue:293 +#: frontend/src/pages/Batches.vue:295 msgid "Unpublished" msgstr "" @@ -5646,8 +5672,8 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'Cohort' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request' #. Label of the upcoming (Check) field in DocType 'LMS Course' -#: frontend/src/pages/Batches.vue:291 frontend/src/pages/CourseForm.vue:185 -#: frontend/src/pages/Courses.vue:284 lms/lms/doctype/cohort/cohort.json +#: frontend/src/pages/Batches.vue:293 frontend/src/pages/CourseForm.vue:181 +#: frontend/src/pages/Courses.vue:287 lms/lms/doctype/cohort/cohort.json #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_course/lms_course.json msgid "Upcoming" @@ -5672,7 +5698,7 @@ msgstr "Mettre à Jour" msgid "Update Password" msgstr "" -#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:81 +#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:77 msgid "Upload" msgstr "Charger" @@ -5778,6 +5804,10 @@ msgstr "" msgid "Visit Batch" msgstr "" +#: frontend/src/pages/JobDetail.vue:38 +msgid "Visit Website" +msgstr "" + #: lms/templates/emails/batch_confirmation.html:23 msgid "Visit the following link to view your " msgstr "" @@ -5899,7 +5929,7 @@ msgstr "" msgid "You are not a mentor of the course {0}" msgstr "" -#: frontend/src/components/CourseOutline.vue:323 +#: frontend/src/components/CourseOutline.vue:324 msgid "You are not enrolled" msgstr "" @@ -6123,11 +6153,7 @@ msgstr "" msgid "out of" msgstr "sur" -#: frontend/src/components/JobCard.vue:30 -msgid "posted" -msgstr "" - -#: frontend/src/pages/QuizForm.vue:386 +#: frontend/src/pages/QuizForm.vue:389 msgid "question_detail" msgstr "" @@ -6147,7 +6173,7 @@ msgstr "" msgid "you can" msgstr "" -#: lms/lms/api.py:816 lms/lms/api.py:824 +#: lms/lms/api.py:817 lms/lms/api.py:825 msgid "{0} Settings not found" msgstr "" diff --git a/lms/locale/hr.po b/lms/locale/hr.po index 72055560..52ef10de 100644 --- a/lms/locale/hr.po +++ b/lms/locale/hr.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n" -"POT-Creation-Date: 2025-04-04 16:04+0000\n" -"PO-Revision-Date: 2025-04-08 03:58\n" +"POT-Creation-Date: 2025-04-11 16:04+0000\n" +"PO-Revision-Date: 2025-04-15 06:20\n" "Last-Translator: jannat@frappe.io\n" "Language-Team: Croatian\n" "MIME-Version: 1.0\n" @@ -71,7 +71,7 @@ msgstr "Statistika" msgid "A course cannot have both paid certificate and certificate of completion." msgstr "Tečaj ne može imati i plaćenu potvrdu i potvrdu o završetku." -#: frontend/src/pages/CourseForm.vue:41 +#: frontend/src/pages/CourseForm.vue:37 msgid "A one line introduction to the course that appears on the course card" msgstr "Uvod u tečaj u jednom redu koji se pojavljuje na kartici tečaja" @@ -145,7 +145,6 @@ msgid "Add a Student" msgstr "Dodaj Studenta" #: frontend/src/components/AppSidebar.vue:514 -#: frontend/src/components/OnboardingBanner.vue:56 msgid "Add a chapter" msgstr "Dodaj Poglavlje" @@ -153,16 +152,15 @@ msgstr "Dodaj Poglavlje" msgid "Add a course" msgstr "Dodaj Tečaj" -#: frontend/src/pages/CourseForm.vue:137 +#: frontend/src/pages/CourseForm.vue:133 msgid "Add a keyword and then press enter" msgstr "Dodaj ključnu riječ, a zatim pritisnite enter" #: frontend/src/components/AppSidebar.vue:515 -#: frontend/src/components/OnboardingBanner.vue:81 msgid "Add a lesson" msgstr "Dodaj Lekciju" -#: frontend/src/components/Modals/Question.vue:146 +#: frontend/src/components/Modals/Question.vue:147 #: frontend/src/pages/QuizForm.vue:183 msgid "Add a new question" msgstr "Dodaj novo pitanje" @@ -235,7 +233,7 @@ msgid "Admin" msgstr "Administrator" #. Name of a role -#: frontend/src/pages/Batches.vue:282 lms/lms/doctype/lms_badge/lms_badge.json +#: frontend/src/pages/Batches.vue:284 lms/lms/doctype/lms_badge/lms_badge.json msgid "All" msgstr "Sve" @@ -259,7 +257,7 @@ msgstr "Sve Povratne Informacije" msgid "All Submissions" msgstr "Svi Podnesci" -#: lms/lms/doctype/lms_quiz/lms_quiz.py:46 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:44 msgid "All questions should have the same marks if the limit is set." msgstr "" @@ -294,7 +292,7 @@ msgstr "" #. Label of the amount (Currency) field in DocType 'LMS Batch' #. Label of the course_price (Currency) field in DocType 'LMS Course' #. Label of the amount (Currency) field in DocType 'LMS Payment' -#: frontend/src/pages/BatchForm.vue:209 frontend/src/pages/CourseForm.vue:221 +#: frontend/src/pages/BatchForm.vue:209 frontend/src/pages/CourseForm.vue:217 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_payment/lms_payment.json @@ -346,7 +344,7 @@ msgstr "" msgid "Answer" msgstr "Odgovor" -#: frontend/src/pages/CourseForm.vue:85 frontend/src/pages/CourseForm.vue:103 +#: frontend/src/pages/CourseForm.vue:81 frontend/src/pages/CourseForm.vue:99 msgid "Appears on the course card in the course list" msgstr "" @@ -354,11 +352,11 @@ msgstr "" msgid "Appears when the batch URL is shared on any online platform" msgstr "" -#: frontend/src/pages/JobDetail.vue:121 +#: frontend/src/pages/JobDetail.vue:128 msgid "Applications Received" msgstr "" -#: frontend/src/pages/JobDetail.vue:42 +#: frontend/src/pages/JobDetail.vue:48 msgid "Apply" msgstr "Primjeni" @@ -389,7 +387,7 @@ msgstr "" msgid "Apps" msgstr "" -#: frontend/src/pages/Batches.vue:292 +#: frontend/src/pages/Batches.vue:294 msgid "Archived" msgstr "" @@ -401,11 +399,6 @@ msgstr "" msgid "Are you sure you want to login to your Frappe Cloud dashboard?" msgstr "" -#. Label of the user_category (Check) field in DocType 'LMS Settings' -#: lms/lms/doctype/lms_settings/lms_settings.json -msgid "Ask User Category during Signup" -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 @@ -470,6 +463,10 @@ msgstr "" msgid "Assignment Submission Template" msgstr "" +#: frontend/src/pages/AssignmentSubmissionList.vue:223 +msgid "Assignment Submissions" +msgstr "Podnošenje Zadataka" + #. Label of the assignment_title (Data) field in DocType 'LMS Assignment #. Submission' #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json @@ -480,7 +477,7 @@ msgstr "" msgid "Assignment for Lesson {0} by {1} already exists." msgstr "" -#: frontend/src/pages/AssignmentForm.vue:155 +#: frontend/src/pages/AssignmentForm.vue:158 msgid "Assignment saved successfully" msgstr "" @@ -490,7 +487,8 @@ msgid "Assignment will appear at the bottom of the lesson." msgstr "" #: frontend/src/components/AppSidebar.vue:531 -#: frontend/src/pages/AssignmentForm.vue:174 +#: frontend/src/pages/AssignmentForm.vue:177 +#: frontend/src/pages/Assignments.vue:193 lms/www/lms.py:251 msgid "Assignments" msgstr "Dodjele" @@ -656,8 +654,8 @@ msgid "Batch:" msgstr "" #. Label of the batches (Check) field in DocType 'LMS Settings' -#: frontend/src/pages/Batches.vue:302 -#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:63 +#: frontend/src/pages/Batches.vue:304 frontend/src/pages/Batches.vue:311 +#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:105 msgid "Batches" msgstr "" @@ -675,7 +673,7 @@ msgstr "" #. Label of the billing_details_section (Section Break) field in DocType 'LMS #. Payment' -#: frontend/src/pages/Billing.vue:8 +#: frontend/src/pages/Billing.vue:8 frontend/src/pages/Billing.vue:363 #: lms/lms/doctype/lms_payment/lms_payment.json msgid "Billing Details" msgstr "" @@ -757,8 +755,9 @@ msgstr "Ležerna Odjeća" #. Label of the category (Link) field in DocType 'LMS Course' #: frontend/src/pages/BatchForm.vue:190 frontend/src/pages/Batches.vue:55 #: frontend/src/pages/CertifiedParticipants.vue:37 -#: frontend/src/pages/CourseForm.vue:148 frontend/src/pages/Courses.vue:51 -#: frontend/src/pages/JobDetail.vue:96 lms/lms/doctype/lms_batch/lms_batch.json +#: frontend/src/pages/CourseForm.vue:144 frontend/src/pages/Courses.vue:51 +#: frontend/src/pages/JobDetail.vue:103 +#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/public/js/common_functions.js:316 lms/templates/signup-form.html:22 @@ -813,7 +812,7 @@ msgstr "" #: frontend/src/components/Modals/Event.vue:371 #: frontend/src/pages/BatchForm.vue:37 frontend/src/pages/Batches.vue:38 #: frontend/src/pages/CourseCertification.vue:10 -#: frontend/src/pages/CourseCertification.vue:133 +#: frontend/src/pages/CourseCertification.vue:135 #: frontend/src/pages/Courses.vue:34 lms/fixtures/custom_field.json #: lms/lms/doctype/certification/certification.json #: lms/lms/doctype/lms_batch/lms_batch.json @@ -837,7 +836,8 @@ msgid "Certified" msgstr "" #. Label of the certified_participants (Check) field in DocType 'LMS Settings' -#: frontend/src/pages/CertifiedParticipants.vue:161 +#: frontend/src/pages/CertifiedParticipants.vue:164 +#: frontend/src/pages/CertifiedParticipants.vue:171 #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Certified Participants" msgstr "Certificirani Sudionici" @@ -864,11 +864,11 @@ msgstr "Poglavlje" msgid "Chapter Reference" msgstr "" -#: frontend/src/components/Modals/ChapterModal.vue:152 +#: frontend/src/components/Modals/ChapterModal.vue:155 msgid "Chapter added successfully" msgstr "" -#: frontend/src/components/Modals/ChapterModal.vue:196 +#: frontend/src/components/Modals/ChapterModal.vue:199 msgid "Chapter updated successfully" msgstr "" @@ -1117,7 +1117,7 @@ msgid "Completed by Students" msgstr "" #. Label of the enable_certification (Check) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:213 +#: frontend/src/pages/CourseForm.vue:209 #: lms/lms/doctype/lms_course/lms_course.json msgid "Completion Certificate" msgstr "" @@ -1179,7 +1179,7 @@ msgid "Continue Learning" msgstr "" #. Option for the 'Type' (Select) field in DocType 'Job Opportunity' -#: frontend/src/pages/Jobs.vue:146 +#: frontend/src/pages/Jobs.vue:163 #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Contract" msgstr "" @@ -1294,6 +1294,7 @@ msgstr "" #. Name of a role #: frontend/src/pages/ProfileRoles.vue:16 #: lms/lms/doctype/course_chapter/course_chapter.json +#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_program/lms_program.json @@ -1307,7 +1308,7 @@ msgstr "" msgid "Course Data" msgstr "" -#: frontend/src/pages/CourseForm.vue:50 +#: frontend/src/pages/CourseForm.vue:46 msgid "Course Description" msgstr "" @@ -1316,7 +1317,7 @@ msgstr "" msgid "Course Evaluator" msgstr "" -#: frontend/src/pages/CourseForm.vue:63 +#: frontend/src/pages/CourseForm.vue:59 msgid "Course Image" msgstr "" @@ -1330,7 +1331,7 @@ msgstr "" msgid "Course Lesson" msgstr "" -#: lms/www/lms.py:30 +#: lms/www/lms.py:70 msgid "Course List" msgstr "" @@ -1338,7 +1339,7 @@ msgstr "" msgid "Course Name" msgstr "" -#: frontend/src/pages/CourseDetail.vue:76 frontend/src/pages/CourseForm.vue:241 +#: frontend/src/pages/CourseDetail.vue:76 frontend/src/pages/CourseForm.vue:237 msgid "Course Outline" msgstr "" @@ -1370,7 +1371,7 @@ msgstr "" msgid "Course Title" msgstr "" -#: frontend/src/pages/ProgramForm.vue:229 +#: frontend/src/pages/ProgramForm.vue:232 msgid "Course added to program" msgstr "" @@ -1378,11 +1379,11 @@ msgstr "" msgid "Course already added to the batch." msgstr "" -#: frontend/src/pages/CourseForm.vue:472 +#: frontend/src/pages/CourseForm.vue:470 msgid "Course deleted successfully" msgstr "" -#: frontend/src/pages/ProgramForm.vue:298 +#: frontend/src/pages/ProgramForm.vue:301 msgid "Course moved successfully" msgstr "" @@ -1400,8 +1401,9 @@ msgstr "" #: frontend/src/components/BatchStudents.vue:92 #: frontend/src/components/Modals/BatchStudentProgress.vue:79 #: frontend/src/pages/BatchDetail.vue:21 frontend/src/pages/BatchDetail.vue:70 -#: frontend/src/pages/CourseCertification.vue:125 -#: frontend/src/pages/Courses.vue:301 frontend/src/pages/Statistics.vue:21 +#: frontend/src/pages/CourseCertification.vue:127 +#: frontend/src/pages/Courses.vue:304 frontend/src/pages/Courses.vue:311 +#: frontend/src/pages/Statistics.vue:21 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Courses" @@ -1443,7 +1445,6 @@ msgid "Create a batch" msgstr "" #: frontend/src/components/AppSidebar.vue:513 -#: frontend/src/components/OnboardingBanner.vue:30 msgid "Create a course" msgstr "" @@ -1467,7 +1468,7 @@ msgstr "" msgid "Create your first quiz" msgstr "" -#: frontend/src/pages/Assignments.vue:163 frontend/src/pages/Courses.vue:292 +#: frontend/src/pages/Assignments.vue:166 frontend/src/pages/Courses.vue:295 msgid "Created" msgstr "" @@ -1482,7 +1483,7 @@ msgstr "" #. Label of the currency (Link) field in DocType 'LMS Batch' #. Label of the currency (Link) field in DocType 'LMS Course' #. Label of the currency (Link) field in DocType 'LMS Payment' -#: frontend/src/pages/BatchForm.vue:217 frontend/src/pages/CourseForm.vue:226 +#: frontend/src/pages/BatchForm.vue:217 frontend/src/pages/CourseForm.vue:222 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_payment/lms_payment.json @@ -1585,9 +1586,9 @@ msgstr "" msgid "Degree Type" msgstr "" -#: frontend/src/components/CourseOutline.vue:247 -#: frontend/src/components/CourseOutline.vue:305 -#: frontend/src/pages/CourseForm.vue:485 +#: frontend/src/components/CourseOutline.vue:248 +#: frontend/src/components/CourseOutline.vue:306 +#: frontend/src/pages/CourseForm.vue:483 msgid "Delete" msgstr "" @@ -1595,27 +1596,27 @@ msgstr "" msgid "Delete Chapter" msgstr "" -#: frontend/src/pages/CourseForm.vue:479 +#: frontend/src/pages/CourseForm.vue:477 msgid "Delete Course" msgstr "" -#: frontend/src/components/CourseOutline.vue:299 +#: frontend/src/components/CourseOutline.vue:300 msgid "Delete this chapter?" msgstr "" -#: frontend/src/components/CourseOutline.vue:241 +#: frontend/src/components/CourseOutline.vue:242 msgid "Delete this lesson?" msgstr "" -#: frontend/src/pages/CourseForm.vue:480 +#: frontend/src/pages/CourseForm.vue:478 msgid "Deleting the course will also delete all its chapters and lessons. Are you sure you want to delete this course?" msgstr "" -#: frontend/src/components/CourseOutline.vue:300 +#: frontend/src/components/CourseOutline.vue:301 msgid "Deleting this chapter will also delete all its lessons and permanently remove it from the course. This action cannot be undone. Are you sure you want to continue?" msgstr "" -#: frontend/src/components/CourseOutline.vue:242 +#: frontend/src/components/CourseOutline.vue:243 msgid "Deleting this lesson will permanently remove it from the course. This action cannot be undone. Are you sure you want to continue?" msgstr "" @@ -1654,11 +1655,11 @@ msgstr "" #: frontend/src/components/Modals/DiscussionModal.vue:22 #: frontend/src/pages/AssignmentForm.vue:27 frontend/src/pages/BatchForm.vue:14 -#: frontend/src/pages/CourseForm.vue:29 frontend/src/pages/QuizForm.vue:42 +#: frontend/src/pages/CourseForm.vue:25 frontend/src/pages/QuizForm.vue:42 msgid "Details" msgstr "" -#: frontend/src/pages/CourseForm.vue:195 +#: frontend/src/pages/CourseForm.vue:191 msgid "Disable Self Enrollment" msgstr "" @@ -1667,6 +1668,11 @@ msgstr "" msgid "Disable Self Learning" msgstr "" +#. Label of the disable_signup (Check) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Disable Signup" +msgstr "Onemogući Prijavu" + #. Label of the disabled (Check) field in DocType 'Job Opportunity' #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Disabled" @@ -1808,7 +1814,7 @@ msgstr "" msgid "Enable" msgstr "" -#: lms/lms/doctype/lms_settings/lms_settings.py:20 +#: lms/lms/doctype/lms_settings/lms_settings.py:21 msgid "Enable Google API in Google Settings to send calendar invites for evaluations." msgstr "" @@ -1867,7 +1873,7 @@ msgstr "" msgid "Enroll Now" msgstr "" -#: frontend/src/pages/Batches.vue:295 frontend/src/pages/Courses.vue:294 +#: frontend/src/pages/Batches.vue:297 frontend/src/pages/Courses.vue:297 msgid "Enrolled" msgstr "" @@ -1902,7 +1908,7 @@ msgstr "" msgid "Enrollments" msgstr "" -#: lms/lms/doctype/lms_settings/lms_settings.py:25 +#: lms/lms/doctype/lms_settings/lms_settings.py:26 msgid "Enter Client Id and Client Secret in Google Settings to send calendar invites for evaluations." msgstr "" @@ -1921,19 +1927,19 @@ msgstr "" #: frontend/src/components/Assignment.vue:287 #: frontend/src/components/Modals/AnnouncementModal.vue:105 #: frontend/src/components/Modals/BulkCertificates.vue:115 -#: frontend/src/components/Modals/ChapterModal.vue:157 -#: frontend/src/components/Modals/ChapterModal.vue:164 -#: frontend/src/components/Modals/ChapterModal.vue:200 -#: frontend/src/components/Modals/Question.vue:251 -#: frontend/src/components/Modals/Question.vue:272 -#: frontend/src/components/Modals/Question.vue:329 -#: frontend/src/components/Modals/StudentModal.vue:70 +#: frontend/src/components/Modals/ChapterModal.vue:160 +#: frontend/src/components/Modals/ChapterModal.vue:167 +#: frontend/src/components/Modals/ChapterModal.vue:203 +#: frontend/src/components/Modals/Question.vue:252 +#: frontend/src/components/Modals/Question.vue:275 +#: frontend/src/components/Modals/Question.vue:332 +#: frontend/src/components/Modals/StudentModal.vue:73 #: frontend/src/components/Quiz.vue:592 #: frontend/src/components/SettingDetails.vue:62 -#: frontend/src/pages/AssignmentForm.vue:139 -#: frontend/src/pages/AssignmentForm.vue:159 frontend/src/pages/Billing.vue:261 -#: frontend/src/pages/QuizForm.vue:346 frontend/src/pages/QuizForm.vue:361 -#: frontend/src/pages/QuizSubmission.vue:147 +#: frontend/src/pages/AssignmentForm.vue:142 +#: frontend/src/pages/AssignmentForm.vue:162 frontend/src/pages/Billing.vue:262 +#: frontend/src/pages/QuizForm.vue:349 frontend/src/pages/QuizForm.vue:364 +#: frontend/src/pages/QuizSubmission.vue:150 msgid "Error" msgstr "" @@ -1982,7 +1988,7 @@ msgstr "" #. Label of the evaluator (Link) field in DocType 'LMS Course' #: frontend/src/components/Modals/BatchCourseModal.vue:26 #: frontend/src/components/Modals/BulkCertificates.vue:22 -#: frontend/src/pages/CourseForm.vue:232 frontend/src/pages/ProfileRoles.vue:22 +#: frontend/src/pages/CourseForm.vue:228 frontend/src/pages/ProfileRoles.vue:22 #: lms/lms/doctype/batch_course/batch_course.json #: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json @@ -2100,7 +2106,7 @@ msgstr "" #. Label of the featured (Check) field in DocType 'LMS Course' #: frontend/src/components/CourseCard.vue:16 -#: frontend/src/pages/CourseForm.vue:190 +#: frontend/src/pages/CourseForm.vue:186 #: lms/lms/doctype/lms_course/lms_course.json msgid "Featured" msgstr "" @@ -2149,10 +2155,6 @@ msgstr "" msgid "Flexible Time" msgstr "" -#: frontend/src/pages/QuizForm.vue:459 -msgid "Form to create and edit quizzes" -msgstr "" - #. Option for the 'Attire Preference' (Select) field in DocType 'User' #: lms/fixtures/custom_field.json msgid "Formal Wear" @@ -2163,7 +2165,7 @@ msgid "Free" msgstr "" #. Option for the 'Type' (Select) field in DocType 'Job Opportunity' -#: frontend/src/pages/Jobs.vue:147 +#: frontend/src/pages/Jobs.vue:164 #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Freelance" msgstr "" @@ -2207,7 +2209,7 @@ msgid "Full Name" msgstr "" #. Option for the 'Type' (Select) field in DocType 'Job Opportunity' -#: frontend/src/pages/Jobs.vue:144 +#: frontend/src/pages/Jobs.vue:161 #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Full Time" msgstr "" @@ -2385,7 +2387,7 @@ msgstr "" msgid "I am unavailable" msgstr "" -#: frontend/src/pages/QuizForm.vue:380 +#: frontend/src/pages/QuizForm.vue:383 msgid "ID" msgstr "" @@ -2395,6 +2397,11 @@ msgstr "" msgid "Icon" msgstr "" +#. Label of the user_category (Check) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Identify User Persona" +msgstr "" + #: frontend/src/components/LessonHelp.vue:11 msgid "If Include in Preview is enabled for a lesson then the lesson will also be accessible to non logged in users." msgstr "" @@ -2425,7 +2432,7 @@ msgstr "" msgid "If you set an amount here, then the USD equivalent setting will not get applied." msgstr "" -#: lms/lms/doctype/lms_quiz/lms_quiz.py:63 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:61 msgid "If you want open ended questions then make sure each question in the quiz is of open ended type." msgstr "" @@ -2451,7 +2458,7 @@ msgstr "" msgid "Image search powered by" msgstr "" -#: lms/lms/doctype/lms_quiz/lms_quiz.py:221 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:219 msgid "Image: Corrupted Data Stream" msgstr "" @@ -2540,7 +2547,7 @@ msgstr "" #. Label of the instructors (Table MultiSelect) field in DocType 'LMS Batch' #. Label of the instructors (Rating) field in DocType 'LMS Batch Feedback' #. Label of the instructors (Table MultiSelect) field in DocType 'LMS Course' -#: frontend/src/pages/BatchForm.vue:93 frontend/src/pages/CourseForm.vue:155 +#: frontend/src/pages/BatchForm.vue:93 frontend/src/pages/CourseForm.vue:151 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json #: lms/lms/doctype/lms_course/lms_course.json @@ -2565,10 +2572,14 @@ msgstr "" msgid "Invalid Invite Code." msgstr "" -#: lms/lms/doctype/course_lesson/course_lesson.py:20 +#: lms/lms/doctype/course_lesson/course_lesson.py:19 msgid "Invalid Quiz ID" msgstr "" +#: lms/lms/doctype/course_lesson/course_lesson.py:33 +msgid "Invalid Quiz ID in content" +msgstr "" + #. Label of the invite_code (Data) field in DocType 'Cohort Subgroup' #. Label of the invite_code (Data) field in DocType 'Invite Request' #: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json @@ -2607,11 +2618,6 @@ msgstr "" msgid "Is Correct" msgstr "" -#. Label of the is_onboarding_complete (Check) field in DocType 'LMS Settings' -#: lms/lms/doctype/lms_settings/lms_settings.json -msgid "Is Onboarding Complete" -msgstr "" - #. Label of the is_scorm_package (Check) field in DocType 'Course Chapter' #. Label of the is_scorm_package (Check) field in DocType 'Course Lesson' #: lms/lms/doctype/course_chapter/course_chapter.json @@ -2650,7 +2656,7 @@ msgstr "" msgid "Items in Sidebar" msgstr "" -#: frontend/src/pages/ProgramForm.vue:272 +#: frontend/src/pages/ProgramForm.vue:275 msgid "Items removed successfully" msgstr "" @@ -2677,7 +2683,7 @@ msgstr "" msgid "Job Details" msgstr "" -#: lms/www/lms.py:111 +#: lms/www/lms.py:159 msgid "Job Openings" msgstr "" @@ -2700,6 +2706,7 @@ msgstr "" #. Label of the jobs (Check) field in DocType 'LMS Settings' #: frontend/src/pages/JobDetail.vue:10 frontend/src/pages/Jobs.vue:8 +#: frontend/src/pages/Jobs.vue:170 #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Jobs" msgstr "" @@ -2923,7 +2930,6 @@ msgstr "" #: lms/job/doctype/lms_job_application/lms_job_application.json #: lms/lms/doctype/cohort_join_request/cohort_join_request.json #: lms/lms/doctype/course_chapter/course_chapter.json -#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/function/function.json #: lms/lms/doctype/industry/industry.json #: lms/lms/doctype/lms_assignment/lms_assignment.json @@ -3035,7 +3041,7 @@ msgstr "" msgid "Limit Questions To" msgstr "" -#: lms/lms/doctype/lms_quiz/lms_quiz.py:40 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:38 msgid "Limit cannot be greater than or equal to the number of questions in the quiz." msgstr "" @@ -3055,12 +3061,8 @@ msgstr "" msgid "Links" msgstr "" -#: frontend/src/pages/Quizzes.vue:149 -msgid "List of quizzes" -msgstr "" - #. Option for the 'Status' (Select) field in DocType 'Cohort' -#: frontend/src/pages/Courses.vue:278 lms/lms/doctype/cohort/cohort.json +#: frontend/src/pages/Courses.vue:281 lms/lms/doctype/cohort/cohort.json msgid "Live" msgstr "" @@ -3092,7 +3094,7 @@ msgstr "" #. Label of the location (Data) field in DocType 'Job Opportunity' #. Label of the location (Data) field in DocType 'Education Detail' #. Label of the location (Data) field in DocType 'Work Experience' -#: frontend/src/pages/JobCreation.vue:26 frontend/src/pages/JobDetail.vue:85 +#: frontend/src/pages/JobCreation.vue:26 frontend/src/pages/JobDetail.vue:92 #: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/lms/doctype/education_detail/education_detail.json #: lms/lms/doctype/work_experience/work_experience.json @@ -3114,7 +3116,7 @@ msgstr "" msgid "Login to Frappe Cloud?" msgstr "" -#: frontend/src/pages/JobDetail.vue:48 +#: frontend/src/pages/JobDetail.vue:54 msgid "Login to apply" msgstr "" @@ -3171,7 +3173,7 @@ msgstr "" #. Label of the marks (Int) field in DocType 'LMS Quiz Result' #: frontend/src/components/Modals/Question.vue:50 #: frontend/src/components/Modals/Question.vue:99 -#: frontend/src/components/Quiz.vue:96 frontend/src/pages/QuizForm.vue:390 +#: frontend/src/components/Quiz.vue:96 frontend/src/pages/QuizForm.vue:393 #: frontend/src/pages/QuizSubmission.vue:65 #: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json #: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json @@ -3233,7 +3235,7 @@ msgstr "" #. Label of the member (Link) field in DocType 'LMS Quiz Submission' #: frontend/src/pages/AssignmentSubmissionList.vue:14 #: frontend/src/pages/QuizSubmission.vue:31 -#: frontend/src/pages/QuizSubmissionList.vue:86 +#: frontend/src/pages/QuizSubmissionList.vue:102 #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_submission/exercise_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json @@ -3314,7 +3316,7 @@ msgstr "" msgid "Member Username" msgstr "" -#: frontend/src/pages/ProgramForm.vue:251 +#: frontend/src/pages/ProgramForm.vue:254 msgid "Member added to program" msgstr "" @@ -3378,6 +3380,11 @@ msgstr "" msgid "Mentor Request Status Update Template" msgstr "" +#. Label of the meta_description (Small Text) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Meta Description" +msgstr "" + #. Label of the meta_image (Attach Image) field in DocType 'LMS Batch' #: frontend/src/pages/BatchForm.vue:44 lms/lms/doctype/lms_batch/lms_batch.json #: lms/public/js/common_functions.js:362 @@ -3400,6 +3407,7 @@ msgstr "" #. Name of a role #: frontend/src/pages/ProfileRoles.vue:10 #: lms/lms/doctype/course_evaluator/course_evaluator.json +#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/lms_assignment/lms_assignment.json #: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json #: lms/lms/doctype/lms_batch/lms_batch.json @@ -3459,12 +3467,13 @@ msgstr "" #. Option for the 'Event' (Select) field in DocType 'LMS Badge' #: frontend/src/pages/Assignments.vue:18 frontend/src/pages/Batches.vue:17 -#: frontend/src/pages/Courses.vue:17 frontend/src/pages/Courses.vue:281 +#: frontend/src/pages/Courses.vue:17 frontend/src/pages/Courses.vue:284 #: frontend/src/pages/Programs.vue:14 lms/lms/doctype/lms_badge/lms_badge.json msgid "New" msgstr "" -#: frontend/src/pages/AssignmentForm.vue:178 +#: frontend/src/pages/AssignmentForm.vue:181 +#: frontend/src/pages/AssignmentForm.vue:197 msgid "New Assignment" msgstr "" @@ -3472,11 +3481,11 @@ msgstr "" msgid "New Assignment Submission" msgstr "" -#: lms/public/js/common_functions.js:255 lms/www/lms.py:89 +#: lms/public/js/common_functions.js:255 lms/www/lms.py:134 msgid "New Batch" msgstr "" -#: lms/www/lms.py:40 +#: frontend/src/pages/CourseForm.vue:577 lms/www/lms.py:78 msgid "New Course" msgstr "" @@ -3504,7 +3513,7 @@ msgstr "" msgid "New Question" msgstr "" -#: frontend/src/pages/QuizForm.vue:450 frontend/src/pages/QuizForm.vue:458 +#: frontend/src/pages/QuizForm.vue:453 frontend/src/pages/QuizForm.vue:461 #: frontend/src/pages/Quizzes.vue:18 msgid "New Quiz" msgstr "" @@ -3599,9 +3608,9 @@ msgstr "" msgid "No introduction" msgstr "" -#: frontend/src/pages/Jobs.vue:77 -msgid "No jobs posted" -msgstr "" +#: frontend/src/pages/Jobs.vue:80 +msgid "No jobs found" +msgstr "Nema pronađenih poslova" #: frontend/src/components/LiveClass.vue:71 msgid "No live classes scheduled" @@ -3615,6 +3624,10 @@ msgstr "" msgid "No programs found" msgstr "" +#: frontend/src/pages/QuizSubmissionList.vue:52 +msgid "No quiz submissions found. Please check again later." +msgstr "" + #: frontend/src/pages/Quizzes.vue:61 msgid "No quizzes found" msgstr "" @@ -3624,6 +3637,7 @@ msgid "No slots available for this date." msgstr "" #: frontend/src/pages/AssignmentSubmissionList.vue:67 +#: frontend/src/pages/QuizSubmissionList.vue:49 msgid "No submissions" msgstr "" @@ -3724,11 +3738,11 @@ msgstr "" msgid "Only files of type {0} will be accepted." msgstr "" -#: frontend/src/pages/CourseForm.vue:509 frontend/src/utils/index.js:549 +#: frontend/src/pages/CourseForm.vue:507 frontend/src/utils/index.js:550 msgid "Only image file is allowed." msgstr "" -#: frontend/src/components/Modals/ChapterModal.vue:218 +#: frontend/src/components/Modals/ChapterModal.vue:221 msgid "Only zip files are allowed" msgstr "" @@ -3786,7 +3800,7 @@ msgstr "" msgid "Order ID" msgstr "" -#: frontend/src/pages/JobDetail.vue:74 +#: frontend/src/pages/JobDetail.vue:81 msgid "Organisation" msgstr "" @@ -3835,7 +3849,7 @@ msgid "Paid Batch" msgstr "" #. Label of the paid_certificate (Check) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:218 +#: frontend/src/pages/CourseForm.vue:214 #: lms/lms/doctype/lms_course/lms_course.json msgid "Paid Certificate" msgstr "" @@ -3845,7 +3859,7 @@ msgid "Paid Certificate after Evaluation" msgstr "" #. Label of the paid_course (Check) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:208 +#: frontend/src/pages/CourseForm.vue:204 #: lms/lms/doctype/lms_course/lms_course.json msgid "Paid Course" msgstr "" @@ -3855,7 +3869,7 @@ msgid "Pan Number" msgstr "" #. Option for the 'Type' (Select) field in DocType 'Job Opportunity' -#: frontend/src/pages/Jobs.vue:145 +#: frontend/src/pages/Jobs.vue:162 #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Part Time" msgstr "" @@ -3877,7 +3891,7 @@ msgstr "" #. Label of the passing_percentage (Int) field in DocType 'LMS Quiz' #. Label of the passing_percentage (Int) field in DocType 'LMS Quiz Submission' -#: frontend/src/pages/QuizForm.vue:72 frontend/src/pages/Quizzes.vue:127 +#: frontend/src/pages/QuizForm.vue:72 frontend/src/pages/Quizzes.vue:129 #: lms/lms/doctype/lms_quiz/lms_quiz.json #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json msgid "Passing Percentage" @@ -3888,7 +3902,7 @@ msgstr "" msgid "Password" msgstr "" -#: frontend/src/pages/CourseForm.vue:113 +#: frontend/src/pages/CourseForm.vue:109 msgid "Paste the youtube link of a short video introducing the course" msgstr "" @@ -3980,7 +3994,7 @@ msgstr "" #. Label of the percentage (Int) field in DocType 'LMS Quiz Submission' #: frontend/src/pages/QuizSubmission.vue:44 -#: frontend/src/pages/QuizSubmissionList.vue:97 +#: frontend/src/pages/QuizSubmissionList.vue:113 #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json msgid "Percentage" msgstr "" @@ -4002,7 +4016,7 @@ msgstr "" msgid "Please Login" msgstr "" -#: lms/lms/doctype/lms_settings/lms_settings.py:33 +#: lms/lms/doctype/lms_settings/lms_settings.py:34 msgid "Please add {1} for {3} to send calendar invites for evaluations." msgstr "" @@ -4026,7 +4040,7 @@ msgstr "" msgid "Please enable Zoom Settings to use this feature." msgstr "" -#: frontend/src/components/CourseOutline.vue:324 +#: frontend/src/components/CourseOutline.vue:325 msgid "Please enroll for this course to view this lesson" msgstr "" @@ -4063,7 +4077,7 @@ msgstr "" msgid "Please install the Payments app to create a paid courses." msgstr "" -#: frontend/src/pages/Billing.vue:253 +#: frontend/src/pages/Billing.vue:254 msgid "Please let us know where you heard about us from." msgstr "" @@ -4112,7 +4126,7 @@ msgstr "" msgid "Please take appropriate action at {0}" msgstr "" -#: frontend/src/components/Modals/ChapterModal.vue:175 +#: frontend/src/components/Modals/ChapterModal.vue:178 msgid "Please upload a SCORM package" msgstr "" @@ -4158,7 +4172,7 @@ msgstr "" msgid "Postal Code" msgstr "" -#: frontend/src/pages/JobDetail.vue:107 +#: frontend/src/pages/JobDetail.vue:114 msgid "Posted on" msgstr "" @@ -4193,7 +4207,7 @@ msgstr "" msgid "Preview Image" msgstr "" -#: frontend/src/pages/CourseForm.vue:111 +#: frontend/src/pages/CourseForm.vue:107 msgid "Preview Video" msgstr "" @@ -4208,7 +4222,7 @@ msgid "Pricing" msgstr "" #. Label of the pricing_tab (Tab Break) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:202 +#: frontend/src/pages/CourseForm.vue:198 #: lms/lms/doctype/lms_course/lms_course.json msgid "Pricing and Certification" msgstr "" @@ -4272,6 +4286,10 @@ msgstr "" msgid "Program Members" msgstr "" +#: frontend/src/pages/Programs.vue:219 lms/www/lms.py:273 +msgid "Programs" +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/BatchStudents.vue:75 @@ -4301,7 +4319,7 @@ msgstr "" #. Label of the published (Check) field in DocType 'LMS Course' #: frontend/src/components/Modals/BulkCertificates.vue:51 #: frontend/src/components/Modals/Event.vue:108 -#: frontend/src/pages/BatchForm.vue:27 frontend/src/pages/CourseForm.vue:172 +#: frontend/src/pages/BatchForm.vue:27 frontend/src/pages/CourseForm.vue:168 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/public/js/common_functions.js:266 @@ -4314,7 +4332,7 @@ msgid "Published Courses" msgstr "" #. Label of the published_on (Date) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:176 +#: frontend/src/pages/CourseForm.vue:172 #: lms/lms/doctype/lms_course/lms_course.json msgid "Published On" msgstr "" @@ -4333,7 +4351,7 @@ msgstr "" #. Label of the question (Text) field in DocType 'LMS Quiz Result' #: frontend/src/components/Assignment.vue:20 #: frontend/src/components/Modals/Question.vue:38 -#: frontend/src/pages/AssignmentForm.vue:45 frontend/src/pages/QuizForm.vue:385 +#: frontend/src/pages/AssignmentForm.vue:45 frontend/src/pages/QuizForm.vue:388 #: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/lms_assignment/lms_assignment.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json @@ -4358,11 +4376,11 @@ msgstr "" msgid "Question Name" msgstr "" -#: frontend/src/components/Modals/Question.vue:267 +#: frontend/src/components/Modals/Question.vue:270 msgid "Question added successfully" msgstr "" -#: frontend/src/components/Modals/Question.vue:319 +#: frontend/src/components/Modals/Question.vue:322 msgid "Question updated successfully" msgstr "" @@ -4379,7 +4397,7 @@ msgstr "" msgid "Questions" msgstr "" -#: frontend/src/pages/QuizForm.vue:427 +#: frontend/src/pages/QuizForm.vue:430 msgid "Questions deleted successfully" msgstr "" @@ -4397,13 +4415,13 @@ msgid "Quiz ID" msgstr "" #. Label of a Link in the LMS Workspace -#: frontend/src/pages/QuizPage.vue:56 frontend/src/pages/QuizPage.vue:62 -#: lms/lms/workspace/lms/lms.json +#: frontend/src/pages/QuizPage.vue:57 lms/lms/workspace/lms/lms.json msgid "Quiz Submission" msgstr "" -#: frontend/src/pages/QuizSubmission.vue:128 -#: frontend/src/pages/QuizSubmissionList.vue:106 +#: frontend/src/pages/QuizSubmission.vue:131 +#: frontend/src/pages/QuizSubmissionList.vue:122 +#: frontend/src/pages/QuizSubmissionList.vue:127 msgid "Quiz Submissions" msgstr "" @@ -4416,7 +4434,7 @@ msgstr "" msgid "Quiz Title" msgstr "" -#: frontend/src/pages/QuizForm.vue:339 +#: frontend/src/pages/QuizForm.vue:342 msgid "Quiz created successfully" msgstr "" @@ -4424,7 +4442,7 @@ msgstr "" msgid "Quiz is not available to Guest users. Please login to continue." msgstr "" -#: frontend/src/pages/QuizForm.vue:358 +#: frontend/src/pages/QuizForm.vue:361 msgid "Quiz updated successfully" msgstr "" @@ -4434,8 +4452,8 @@ msgid "Quiz will appear at the bottom of the lesson." msgstr "" #: frontend/src/components/AppSidebar.vue:530 -#: frontend/src/pages/QuizForm.vue:438 frontend/src/pages/Quizzes.vue:138 -#: frontend/src/pages/Quizzes.vue:148 +#: frontend/src/pages/QuizForm.vue:441 frontend/src/pages/Quizzes.vue:140 +#: frontend/src/pages/Quizzes.vue:150 lms/www/lms.py:229 msgid "Quizzes" msgstr "" @@ -4513,7 +4531,7 @@ msgstr "" msgid "Related Courses" msgstr "" -#: frontend/src/pages/BatchForm.vue:77 frontend/src/pages/CourseForm.vue:100 +#: frontend/src/pages/BatchForm.vue:77 frontend/src/pages/CourseForm.vue:96 msgid "Remove" msgstr "" @@ -4607,7 +4625,7 @@ msgstr "" msgid "Row #{0} Start time cannot be outside the batch duration." msgstr "" -#: lms/lms/doctype/lms_quiz/lms_quiz.py:34 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:32 msgid "Rows {0} have the duplicate questions." msgstr "" @@ -4631,6 +4649,11 @@ msgstr "" msgid "SCORM Package Path" msgstr "" +#. Label of the seo_tab (Tab Break) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "SEO" +msgstr "SEO" + #. Option for the 'Day' (Select) field in DocType 'Evaluator Schedule' #. Option for the 'Day' (Select) field in DocType 'LMS Certificate Request' #: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json @@ -4644,7 +4667,7 @@ msgstr "" #: frontend/src/components/Modals/Event.vue:101 #: frontend/src/components/Modals/Event.vue:129 #: frontend/src/pages/AssignmentForm.vue:21 frontend/src/pages/BatchForm.vue:8 -#: frontend/src/pages/CourseForm.vue:21 frontend/src/pages/JobCreation.vue:8 +#: frontend/src/pages/CourseForm.vue:17 frontend/src/pages/JobCreation.vue:8 #: frontend/src/pages/LessonForm.vue:14 frontend/src/pages/ProgramForm.vue:7 #: frontend/src/pages/QuizForm.vue:34 frontend/src/pages/QuizSubmission.vue:14 #: lms/public/js/common_functions.js:405 @@ -4673,7 +4696,7 @@ msgstr "" #. Label of the score (Int) field in DocType 'LMS Quiz Submission' #: frontend/src/pages/QuizSubmission.vue:39 -#: frontend/src/pages/QuizSubmissionList.vue:91 +#: frontend/src/pages/QuizSubmissionList.vue:107 #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json #: lms/templates/quiz/quiz.html:148 msgid "Score" @@ -4767,7 +4790,7 @@ msgstr "" #: frontend/src/components/AppSidebar.vue:556 #: frontend/src/components/Modals/Settings.vue:7 -#: frontend/src/pages/BatchForm.vue:148 frontend/src/pages/CourseForm.vue:162 +#: frontend/src/pages/BatchForm.vue:148 frontend/src/pages/CourseForm.vue:158 #: frontend/src/pages/ProfileRoles.vue:4 frontend/src/pages/QuizForm.vue:79 msgid "Settings" msgstr "" @@ -4781,7 +4804,7 @@ msgid "Short Description" msgstr "" #. Label of the short_introduction (Small Text) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:39 +#: frontend/src/pages/CourseForm.vue:35 #: lms/lms/doctype/lms_course/lms_course.json msgid "Short Introduction" msgstr "" @@ -4892,10 +4915,6 @@ msgstr "" msgid "Skip" msgstr "" -#: frontend/src/components/OnboardingBanner.vue:3 -msgid "Skip Onboarding" -msgstr "" - #: lms/lms/doctype/course_evaluator/course_evaluator.py:63 msgid "Slot Times are overlapping for some schedules." msgstr "" @@ -5009,8 +5028,9 @@ msgstr "" #. Label of the tab_4_tab (Tab Break) field in DocType 'LMS Course' #. Label of the statistics (Check) field in DocType 'LMS Settings' #: frontend/src/components/BatchStudents.vue:5 +#: frontend/src/pages/Statistics.vue:322 #: lms/lms/doctype/lms_course/lms_course.json -#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:136 +#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:182 msgid "Statistics" msgstr "" @@ -5110,7 +5130,7 @@ msgstr "" #: frontend/src/components/Modals/AssessmentModal.vue:9 #: frontend/src/components/Modals/BatchCourseModal.vue:9 #: frontend/src/components/Modals/EvaluationModal.vue:9 -#: frontend/src/components/Modals/Question.vue:341 +#: frontend/src/components/Modals/Question.vue:344 #: frontend/src/components/Quiz.vue:218 lms/templates/assignment.html:9 #: lms/templates/livecode/extension_footer.html:25 #: lms/templates/quiz/quiz.html:128 lms/templates/reviews.html:163 @@ -5135,18 +5155,18 @@ msgstr "" #: frontend/src/components/Modals/AnnouncementModal.vue:99 #: frontend/src/components/Modals/AssessmentModal.vue:73 #: frontend/src/components/Modals/BulkCertificates.vue:121 -#: frontend/src/components/Modals/ChapterModal.vue:151 -#: frontend/src/components/Modals/ChapterModal.vue:196 +#: frontend/src/components/Modals/ChapterModal.vue:154 +#: frontend/src/components/Modals/ChapterModal.vue:199 #: frontend/src/components/Modals/Event.vue:255 #: frontend/src/components/Modals/Event.vue:310 -#: frontend/src/components/Modals/Question.vue:267 -#: frontend/src/components/Modals/Question.vue:318 -#: frontend/src/pages/AssignmentForm.vue:155 -#: frontend/src/pages/CourseForm.vue:472 frontend/src/pages/ProgramForm.vue:229 -#: frontend/src/pages/ProgramForm.vue:251 -#: frontend/src/pages/ProgramForm.vue:272 -#: frontend/src/pages/ProgramForm.vue:298 frontend/src/pages/QuizForm.vue:339 -#: frontend/src/pages/QuizForm.vue:358 frontend/src/pages/QuizForm.vue:427 +#: frontend/src/components/Modals/Question.vue:270 +#: frontend/src/components/Modals/Question.vue:321 +#: frontend/src/pages/AssignmentForm.vue:158 +#: frontend/src/pages/CourseForm.vue:470 frontend/src/pages/ProgramForm.vue:232 +#: frontend/src/pages/ProgramForm.vue:254 +#: frontend/src/pages/ProgramForm.vue:275 +#: frontend/src/pages/ProgramForm.vue:301 frontend/src/pages/QuizForm.vue:342 +#: frontend/src/pages/QuizForm.vue:361 frontend/src/pages/QuizForm.vue:430 msgid "Success" msgstr "" @@ -5164,7 +5184,7 @@ msgstr "" msgid "Sunday" msgstr "" -#: lms/lms/api.py:1026 +#: lms/lms/api.py:1027 msgid "Suspicious pattern found in {0}: {1}" msgstr "" @@ -5220,7 +5240,7 @@ msgid "System Manager" msgstr "" #. Label of the tags (Data) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:121 +#: frontend/src/pages/CourseForm.vue:117 #: lms/lms/doctype/lms_course/lms_course.json msgid "Tags" msgstr "" @@ -5325,6 +5345,10 @@ msgstr "" msgid "There are no courses matching the criteria. Keep an eye out, fresh learning experiences are on the way soon!" msgstr "" +#: frontend/src/pages/Jobs.vue:84 +msgid "There are no jobs available at the moment. Open a job opportunity or check here again later." +msgstr "" + #: frontend/src/pages/CertifiedParticipants.vue:92 msgid "There are no participants matching this criteria." msgstr "" @@ -5384,8 +5408,10 @@ msgstr "" msgid "This course is free." msgstr "" -#: frontend/src/pages/SCORMChapter.vue:201 -msgid "This is a chapter in the course {0}" +#. Description of the 'Meta Description' (Small Text) field in DocType 'LMS +#. Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "This description will be shown on lists and pages without meta description" msgstr "" #: frontend/src/pages/Lesson.vue:16 @@ -5482,10 +5508,10 @@ msgstr "" #: frontend/src/components/Modals/DiscussionModal.vue:18 #: frontend/src/components/Modals/LiveClassModal.vue:23 #: frontend/src/pages/AssignmentForm.vue:32 -#: frontend/src/pages/Assignments.vue:152 frontend/src/pages/BatchForm.vue:19 -#: frontend/src/pages/CourseForm.vue:33 frontend/src/pages/JobCreation.vue:20 +#: frontend/src/pages/Assignments.vue:155 frontend/src/pages/BatchForm.vue:19 +#: frontend/src/pages/CourseForm.vue:29 frontend/src/pages/JobCreation.vue:20 #: frontend/src/pages/ProgramForm.vue:11 frontend/src/pages/Programs.vue:116 -#: frontend/src/pages/QuizForm.vue:48 frontend/src/pages/Quizzes.vue:116 +#: frontend/src/pages/QuizForm.vue:48 frontend/src/pages/Quizzes.vue:118 #: lms/lms/doctype/cohort/cohort.json #: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json #: lms/lms/doctype/cohort_web_page/cohort_web_page.json @@ -5507,7 +5533,7 @@ msgstr "" msgid "Title" msgstr "" -#: frontend/src/components/Modals/ChapterModal.vue:172 +#: frontend/src/components/Modals/ChapterModal.vue:175 msgid "Title is required" msgstr "" @@ -5539,7 +5565,7 @@ msgid "Total" msgstr "" #. Label of the total_marks (Int) field in DocType 'LMS Quiz' -#: frontend/src/pages/QuizForm.vue:67 frontend/src/pages/Quizzes.vue:121 +#: frontend/src/pages/QuizForm.vue:67 frontend/src/pages/Quizzes.vue:123 #: lms/lms/doctype/lms_quiz/lms_quiz.json msgid "Total Marks" msgstr "" @@ -5577,7 +5603,7 @@ msgstr "" #: frontend/src/components/Modals/AssessmentModal.vue:22 #: frontend/src/components/Modals/Question.vue:54 #: frontend/src/pages/AssignmentForm.vue:39 -#: frontend/src/pages/Assignments.vue:30 frontend/src/pages/Assignments.vue:157 +#: frontend/src/pages/Assignments.vue:30 frontend/src/pages/Assignments.vue:160 #: frontend/src/pages/JobCreation.vue:33 frontend/src/pages/Jobs.vue:55 #: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/lms/doctype/lms_assignment/lms_assignment.json @@ -5624,7 +5650,7 @@ msgstr "" msgid "Unlisted" msgstr "" -#: frontend/src/pages/Batches.vue:293 +#: frontend/src/pages/Batches.vue:295 msgid "Unpublished" msgstr "" @@ -5646,8 +5672,8 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'Cohort' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request' #. Label of the upcoming (Check) field in DocType 'LMS Course' -#: frontend/src/pages/Batches.vue:291 frontend/src/pages/CourseForm.vue:185 -#: frontend/src/pages/Courses.vue:284 lms/lms/doctype/cohort/cohort.json +#: frontend/src/pages/Batches.vue:293 frontend/src/pages/CourseForm.vue:181 +#: frontend/src/pages/Courses.vue:287 lms/lms/doctype/cohort/cohort.json #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_course/lms_course.json msgid "Upcoming" @@ -5672,7 +5698,7 @@ msgstr "" msgid "Update Password" msgstr "" -#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:81 +#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:77 msgid "Upload" msgstr "" @@ -5778,6 +5804,10 @@ msgstr "" msgid "Visit Batch" msgstr "" +#: frontend/src/pages/JobDetail.vue:38 +msgid "Visit Website" +msgstr "Posjeti Web Stranicu" + #: lms/templates/emails/batch_confirmation.html:23 msgid "Visit the following link to view your " msgstr "" @@ -5899,7 +5929,7 @@ msgstr "" msgid "You are not a mentor of the course {0}" msgstr "" -#: frontend/src/components/CourseOutline.vue:323 +#: frontend/src/components/CourseOutline.vue:324 msgid "You are not enrolled" msgstr "" @@ -6123,11 +6153,7 @@ msgstr "" msgid "out of" msgstr "" -#: frontend/src/components/JobCard.vue:30 -msgid "posted" -msgstr "" - -#: frontend/src/pages/QuizForm.vue:386 +#: frontend/src/pages/QuizForm.vue:389 msgid "question_detail" msgstr "" @@ -6147,7 +6173,7 @@ msgstr "" msgid "you can" msgstr "" -#: lms/lms/api.py:816 lms/lms/api.py:824 +#: lms/lms/api.py:817 lms/lms/api.py:825 msgid "{0} Settings not found" msgstr "" diff --git a/lms/locale/hu.po b/lms/locale/hu.po index bbda9ce0..7e145675 100644 --- a/lms/locale/hu.po +++ b/lms/locale/hu.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n" -"POT-Creation-Date: 2025-04-04 16:04+0000\n" -"PO-Revision-Date: 2025-04-08 03:58\n" +"POT-Creation-Date: 2025-04-11 16:04+0000\n" +"PO-Revision-Date: 2025-04-14 06:01\n" "Last-Translator: jannat@frappe.io\n" "Language-Team: Hungarian\n" "MIME-Version: 1.0\n" @@ -71,7 +71,7 @@ msgstr "" msgid "A course cannot have both paid certificate and certificate of completion." msgstr "" -#: frontend/src/pages/CourseForm.vue:41 +#: frontend/src/pages/CourseForm.vue:37 msgid "A one line introduction to the course that appears on the course card" msgstr "" @@ -145,7 +145,6 @@ msgid "Add a Student" msgstr "" #: frontend/src/components/AppSidebar.vue:514 -#: frontend/src/components/OnboardingBanner.vue:56 msgid "Add a chapter" msgstr "" @@ -153,16 +152,15 @@ msgstr "" msgid "Add a course" msgstr "" -#: frontend/src/pages/CourseForm.vue:137 +#: frontend/src/pages/CourseForm.vue:133 msgid "Add a keyword and then press enter" msgstr "" #: frontend/src/components/AppSidebar.vue:515 -#: frontend/src/components/OnboardingBanner.vue:81 msgid "Add a lesson" msgstr "" -#: frontend/src/components/Modals/Question.vue:146 +#: frontend/src/components/Modals/Question.vue:147 #: frontend/src/pages/QuizForm.vue:183 msgid "Add a new question" msgstr "" @@ -235,7 +233,7 @@ msgid "Admin" msgstr "" #. Name of a role -#: frontend/src/pages/Batches.vue:282 lms/lms/doctype/lms_badge/lms_badge.json +#: frontend/src/pages/Batches.vue:284 lms/lms/doctype/lms_badge/lms_badge.json msgid "All" msgstr "" @@ -259,7 +257,7 @@ msgstr "" msgid "All Submissions" msgstr "" -#: lms/lms/doctype/lms_quiz/lms_quiz.py:46 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:44 msgid "All questions should have the same marks if the limit is set." msgstr "" @@ -294,7 +292,7 @@ msgstr "Már regisztrált" #. Label of the amount (Currency) field in DocType 'LMS Batch' #. Label of the course_price (Currency) field in DocType 'LMS Course' #. Label of the amount (Currency) field in DocType 'LMS Payment' -#: frontend/src/pages/BatchForm.vue:209 frontend/src/pages/CourseForm.vue:221 +#: frontend/src/pages/BatchForm.vue:209 frontend/src/pages/CourseForm.vue:217 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_payment/lms_payment.json @@ -346,7 +344,7 @@ msgstr "" msgid "Answer" msgstr "" -#: frontend/src/pages/CourseForm.vue:85 frontend/src/pages/CourseForm.vue:103 +#: frontend/src/pages/CourseForm.vue:81 frontend/src/pages/CourseForm.vue:99 msgid "Appears on the course card in the course list" msgstr "" @@ -354,11 +352,11 @@ msgstr "" msgid "Appears when the batch URL is shared on any online platform" msgstr "" -#: frontend/src/pages/JobDetail.vue:121 +#: frontend/src/pages/JobDetail.vue:128 msgid "Applications Received" msgstr "" -#: frontend/src/pages/JobDetail.vue:42 +#: frontend/src/pages/JobDetail.vue:48 msgid "Apply" msgstr "Alkalmaz" @@ -389,7 +387,7 @@ msgstr "" msgid "Apps" msgstr "" -#: frontend/src/pages/Batches.vue:292 +#: frontend/src/pages/Batches.vue:294 msgid "Archived" msgstr "Archivált" @@ -401,11 +399,6 @@ msgstr "" msgid "Are you sure you want to login to your Frappe Cloud dashboard?" msgstr "" -#. Label of the user_category (Check) field in DocType 'LMS Settings' -#: lms/lms/doctype/lms_settings/lms_settings.json -msgid "Ask User Category during Signup" -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 @@ -470,6 +463,10 @@ msgstr "" msgid "Assignment Submission Template" msgstr "" +#: frontend/src/pages/AssignmentSubmissionList.vue:223 +msgid "Assignment Submissions" +msgstr "" + #. Label of the assignment_title (Data) field in DocType 'LMS Assignment #. Submission' #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json @@ -480,7 +477,7 @@ msgstr "" msgid "Assignment for Lesson {0} by {1} already exists." msgstr "" -#: frontend/src/pages/AssignmentForm.vue:155 +#: frontend/src/pages/AssignmentForm.vue:158 msgid "Assignment saved successfully" msgstr "" @@ -490,7 +487,8 @@ msgid "Assignment will appear at the bottom of the lesson." msgstr "" #: frontend/src/components/AppSidebar.vue:531 -#: frontend/src/pages/AssignmentForm.vue:174 +#: frontend/src/pages/AssignmentForm.vue:177 +#: frontend/src/pages/Assignments.vue:193 lms/www/lms.py:251 msgid "Assignments" msgstr "Feladatok" @@ -656,8 +654,8 @@ msgid "Batch:" msgstr "Köteg:" #. Label of the batches (Check) field in DocType 'LMS Settings' -#: frontend/src/pages/Batches.vue:302 -#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:63 +#: frontend/src/pages/Batches.vue:304 frontend/src/pages/Batches.vue:311 +#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:105 msgid "Batches" msgstr "" @@ -675,7 +673,7 @@ msgstr "" #. Label of the billing_details_section (Section Break) field in DocType 'LMS #. Payment' -#: frontend/src/pages/Billing.vue:8 +#: frontend/src/pages/Billing.vue:8 frontend/src/pages/Billing.vue:363 #: lms/lms/doctype/lms_payment/lms_payment.json msgid "Billing Details" msgstr "" @@ -757,8 +755,9 @@ msgstr "" #. Label of the category (Link) field in DocType 'LMS Course' #: frontend/src/pages/BatchForm.vue:190 frontend/src/pages/Batches.vue:55 #: frontend/src/pages/CertifiedParticipants.vue:37 -#: frontend/src/pages/CourseForm.vue:148 frontend/src/pages/Courses.vue:51 -#: frontend/src/pages/JobDetail.vue:96 lms/lms/doctype/lms_batch/lms_batch.json +#: frontend/src/pages/CourseForm.vue:144 frontend/src/pages/Courses.vue:51 +#: frontend/src/pages/JobDetail.vue:103 +#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/public/js/common_functions.js:316 lms/templates/signup-form.html:22 @@ -813,7 +812,7 @@ msgstr "" #: frontend/src/components/Modals/Event.vue:371 #: frontend/src/pages/BatchForm.vue:37 frontend/src/pages/Batches.vue:38 #: frontend/src/pages/CourseCertification.vue:10 -#: frontend/src/pages/CourseCertification.vue:133 +#: frontend/src/pages/CourseCertification.vue:135 #: frontend/src/pages/Courses.vue:34 lms/fixtures/custom_field.json #: lms/lms/doctype/certification/certification.json #: lms/lms/doctype/lms_batch/lms_batch.json @@ -837,7 +836,8 @@ msgid "Certified" msgstr "" #. Label of the certified_participants (Check) field in DocType 'LMS Settings' -#: frontend/src/pages/CertifiedParticipants.vue:161 +#: frontend/src/pages/CertifiedParticipants.vue:164 +#: frontend/src/pages/CertifiedParticipants.vue:171 #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Certified Participants" msgstr "" @@ -864,11 +864,11 @@ msgstr "" msgid "Chapter Reference" msgstr "" -#: frontend/src/components/Modals/ChapterModal.vue:152 +#: frontend/src/components/Modals/ChapterModal.vue:155 msgid "Chapter added successfully" msgstr "" -#: frontend/src/components/Modals/ChapterModal.vue:196 +#: frontend/src/components/Modals/ChapterModal.vue:199 msgid "Chapter updated successfully" msgstr "" @@ -1117,7 +1117,7 @@ msgid "Completed by Students" msgstr "" #. Label of the enable_certification (Check) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:213 +#: frontend/src/pages/CourseForm.vue:209 #: lms/lms/doctype/lms_course/lms_course.json msgid "Completion Certificate" msgstr "" @@ -1179,7 +1179,7 @@ msgid "Continue Learning" msgstr "" #. Option for the 'Type' (Select) field in DocType 'Job Opportunity' -#: frontend/src/pages/Jobs.vue:146 +#: frontend/src/pages/Jobs.vue:163 #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Contract" msgstr "" @@ -1294,6 +1294,7 @@ msgstr "" #. Name of a role #: frontend/src/pages/ProfileRoles.vue:16 #: lms/lms/doctype/course_chapter/course_chapter.json +#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_program/lms_program.json @@ -1307,7 +1308,7 @@ msgstr "" msgid "Course Data" msgstr "" -#: frontend/src/pages/CourseForm.vue:50 +#: frontend/src/pages/CourseForm.vue:46 msgid "Course Description" msgstr "" @@ -1316,7 +1317,7 @@ msgstr "" msgid "Course Evaluator" msgstr "" -#: frontend/src/pages/CourseForm.vue:63 +#: frontend/src/pages/CourseForm.vue:59 msgid "Course Image" msgstr "" @@ -1330,7 +1331,7 @@ msgstr "" msgid "Course Lesson" msgstr "" -#: lms/www/lms.py:30 +#: lms/www/lms.py:70 msgid "Course List" msgstr "" @@ -1338,7 +1339,7 @@ msgstr "" msgid "Course Name" msgstr "" -#: frontend/src/pages/CourseDetail.vue:76 frontend/src/pages/CourseForm.vue:241 +#: frontend/src/pages/CourseDetail.vue:76 frontend/src/pages/CourseForm.vue:237 msgid "Course Outline" msgstr "" @@ -1370,7 +1371,7 @@ msgstr "" msgid "Course Title" msgstr "" -#: frontend/src/pages/ProgramForm.vue:229 +#: frontend/src/pages/ProgramForm.vue:232 msgid "Course added to program" msgstr "" @@ -1378,11 +1379,11 @@ msgstr "" msgid "Course already added to the batch." msgstr "" -#: frontend/src/pages/CourseForm.vue:472 +#: frontend/src/pages/CourseForm.vue:470 msgid "Course deleted successfully" msgstr "" -#: frontend/src/pages/ProgramForm.vue:298 +#: frontend/src/pages/ProgramForm.vue:301 msgid "Course moved successfully" msgstr "" @@ -1400,8 +1401,9 @@ msgstr "" #: frontend/src/components/BatchStudents.vue:92 #: frontend/src/components/Modals/BatchStudentProgress.vue:79 #: frontend/src/pages/BatchDetail.vue:21 frontend/src/pages/BatchDetail.vue:70 -#: frontend/src/pages/CourseCertification.vue:125 -#: frontend/src/pages/Courses.vue:301 frontend/src/pages/Statistics.vue:21 +#: frontend/src/pages/CourseCertification.vue:127 +#: frontend/src/pages/Courses.vue:304 frontend/src/pages/Courses.vue:311 +#: frontend/src/pages/Statistics.vue:21 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Courses" @@ -1443,7 +1445,6 @@ msgid "Create a batch" msgstr "" #: frontend/src/components/AppSidebar.vue:513 -#: frontend/src/components/OnboardingBanner.vue:30 msgid "Create a course" msgstr "" @@ -1467,7 +1468,7 @@ msgstr "" msgid "Create your first quiz" msgstr "" -#: frontend/src/pages/Assignments.vue:163 frontend/src/pages/Courses.vue:292 +#: frontend/src/pages/Assignments.vue:166 frontend/src/pages/Courses.vue:295 msgid "Created" msgstr "Alkotó" @@ -1482,7 +1483,7 @@ msgstr "" #. Label of the currency (Link) field in DocType 'LMS Batch' #. Label of the currency (Link) field in DocType 'LMS Course' #. Label of the currency (Link) field in DocType 'LMS Payment' -#: frontend/src/pages/BatchForm.vue:217 frontend/src/pages/CourseForm.vue:226 +#: frontend/src/pages/BatchForm.vue:217 frontend/src/pages/CourseForm.vue:222 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_payment/lms_payment.json @@ -1585,9 +1586,9 @@ msgstr "" msgid "Degree Type" msgstr "" -#: frontend/src/components/CourseOutline.vue:247 -#: frontend/src/components/CourseOutline.vue:305 -#: frontend/src/pages/CourseForm.vue:485 +#: frontend/src/components/CourseOutline.vue:248 +#: frontend/src/components/CourseOutline.vue:306 +#: frontend/src/pages/CourseForm.vue:483 msgid "Delete" msgstr "" @@ -1595,27 +1596,27 @@ msgstr "" msgid "Delete Chapter" msgstr "" -#: frontend/src/pages/CourseForm.vue:479 +#: frontend/src/pages/CourseForm.vue:477 msgid "Delete Course" msgstr "" -#: frontend/src/components/CourseOutline.vue:299 +#: frontend/src/components/CourseOutline.vue:300 msgid "Delete this chapter?" msgstr "" -#: frontend/src/components/CourseOutline.vue:241 +#: frontend/src/components/CourseOutline.vue:242 msgid "Delete this lesson?" msgstr "" -#: frontend/src/pages/CourseForm.vue:480 +#: frontend/src/pages/CourseForm.vue:478 msgid "Deleting the course will also delete all its chapters and lessons. Are you sure you want to delete this course?" msgstr "" -#: frontend/src/components/CourseOutline.vue:300 +#: frontend/src/components/CourseOutline.vue:301 msgid "Deleting this chapter will also delete all its lessons and permanently remove it from the course. This action cannot be undone. Are you sure you want to continue?" msgstr "" -#: frontend/src/components/CourseOutline.vue:242 +#: frontend/src/components/CourseOutline.vue:243 msgid "Deleting this lesson will permanently remove it from the course. This action cannot be undone. Are you sure you want to continue?" msgstr "" @@ -1654,11 +1655,11 @@ msgstr "" #: frontend/src/components/Modals/DiscussionModal.vue:22 #: frontend/src/pages/AssignmentForm.vue:27 frontend/src/pages/BatchForm.vue:14 -#: frontend/src/pages/CourseForm.vue:29 frontend/src/pages/QuizForm.vue:42 +#: frontend/src/pages/CourseForm.vue:25 frontend/src/pages/QuizForm.vue:42 msgid "Details" msgstr "Részletek" -#: frontend/src/pages/CourseForm.vue:195 +#: frontend/src/pages/CourseForm.vue:191 msgid "Disable Self Enrollment" msgstr "" @@ -1667,6 +1668,11 @@ msgstr "" msgid "Disable Self Learning" msgstr "" +#. Label of the disable_signup (Check) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Disable Signup" +msgstr "" + #. Label of the disabled (Check) field in DocType 'Job Opportunity' #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Disabled" @@ -1773,7 +1779,7 @@ msgstr "" #: frontend/src/components/Evaluators.vue:32 #: frontend/src/components/Members.vue:32 lms/templates/signup-form.html:10 msgid "Email" -msgstr "" +msgstr "E-mail" #: frontend/src/components/Modals/Event.vue:16 msgid "Email ID" @@ -1791,12 +1797,12 @@ msgstr "E-mail sablon" #. Label of the email_templates_tab (Tab Break) field in DocType 'LMS Settings' #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Email Templates" -msgstr "" +msgstr "E-mail sablonok" #. Label of the show_emails (Check) field in DocType 'LMS Settings' #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Emails" -msgstr "" +msgstr "E-mailek" #. Option for the 'User Category' (Select) field in DocType 'User' #: lms/fixtures/custom_field.json lms/templates/signup-form.html:25 @@ -1808,7 +1814,7 @@ msgstr "" msgid "Enable" msgstr "" -#: lms/lms/doctype/lms_settings/lms_settings.py:20 +#: lms/lms/doctype/lms_settings/lms_settings.py:21 msgid "Enable Google API in Google Settings to send calendar invites for evaluations." msgstr "" @@ -1867,7 +1873,7 @@ msgstr "Befejezés dátuma" msgid "Enroll Now" msgstr "" -#: frontend/src/pages/Batches.vue:295 frontend/src/pages/Courses.vue:294 +#: frontend/src/pages/Batches.vue:297 frontend/src/pages/Courses.vue:297 msgid "Enrolled" msgstr "" @@ -1902,7 +1908,7 @@ msgstr "" msgid "Enrollments" msgstr "" -#: lms/lms/doctype/lms_settings/lms_settings.py:25 +#: lms/lms/doctype/lms_settings/lms_settings.py:26 msgid "Enter Client Id and Client Secret in Google Settings to send calendar invites for evaluations." msgstr "" @@ -1921,19 +1927,19 @@ msgstr "" #: frontend/src/components/Assignment.vue:287 #: frontend/src/components/Modals/AnnouncementModal.vue:105 #: frontend/src/components/Modals/BulkCertificates.vue:115 -#: frontend/src/components/Modals/ChapterModal.vue:157 -#: frontend/src/components/Modals/ChapterModal.vue:164 -#: frontend/src/components/Modals/ChapterModal.vue:200 -#: frontend/src/components/Modals/Question.vue:251 -#: frontend/src/components/Modals/Question.vue:272 -#: frontend/src/components/Modals/Question.vue:329 -#: frontend/src/components/Modals/StudentModal.vue:70 +#: frontend/src/components/Modals/ChapterModal.vue:160 +#: frontend/src/components/Modals/ChapterModal.vue:167 +#: frontend/src/components/Modals/ChapterModal.vue:203 +#: frontend/src/components/Modals/Question.vue:252 +#: frontend/src/components/Modals/Question.vue:275 +#: frontend/src/components/Modals/Question.vue:332 +#: frontend/src/components/Modals/StudentModal.vue:73 #: frontend/src/components/Quiz.vue:592 #: frontend/src/components/SettingDetails.vue:62 -#: frontend/src/pages/AssignmentForm.vue:139 -#: frontend/src/pages/AssignmentForm.vue:159 frontend/src/pages/Billing.vue:261 -#: frontend/src/pages/QuizForm.vue:346 frontend/src/pages/QuizForm.vue:361 -#: frontend/src/pages/QuizSubmission.vue:147 +#: frontend/src/pages/AssignmentForm.vue:142 +#: frontend/src/pages/AssignmentForm.vue:162 frontend/src/pages/Billing.vue:262 +#: frontend/src/pages/QuizForm.vue:349 frontend/src/pages/QuizForm.vue:364 +#: frontend/src/pages/QuizSubmission.vue:150 msgid "Error" msgstr "" @@ -1982,7 +1988,7 @@ msgstr "" #. Label of the evaluator (Link) field in DocType 'LMS Course' #: frontend/src/components/Modals/BatchCourseModal.vue:26 #: frontend/src/components/Modals/BulkCertificates.vue:22 -#: frontend/src/pages/CourseForm.vue:232 frontend/src/pages/ProfileRoles.vue:22 +#: frontend/src/pages/CourseForm.vue:228 frontend/src/pages/ProfileRoles.vue:22 #: lms/lms/doctype/batch_course/batch_course.json #: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json @@ -2100,7 +2106,7 @@ msgstr "Nem sikerül" #. Label of the featured (Check) field in DocType 'LMS Course' #: frontend/src/components/CourseCard.vue:16 -#: frontend/src/pages/CourseForm.vue:190 +#: frontend/src/pages/CourseForm.vue:186 #: lms/lms/doctype/lms_course/lms_course.json msgid "Featured" msgstr "Kiemelt" @@ -2149,10 +2155,6 @@ msgstr "" msgid "Flexible Time" msgstr "" -#: frontend/src/pages/QuizForm.vue:459 -msgid "Form to create and edit quizzes" -msgstr "" - #. Option for the 'Attire Preference' (Select) field in DocType 'User' #: lms/fixtures/custom_field.json msgid "Formal Wear" @@ -2163,7 +2165,7 @@ msgid "Free" msgstr "" #. Option for the 'Type' (Select) field in DocType 'Job Opportunity' -#: frontend/src/pages/Jobs.vue:147 +#: frontend/src/pages/Jobs.vue:164 #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Freelance" msgstr "Szabadúszó" @@ -2207,7 +2209,7 @@ msgid "Full Name" msgstr "Teljes név" #. Option for the 'Type' (Select) field in DocType 'Job Opportunity' -#: frontend/src/pages/Jobs.vue:144 +#: frontend/src/pages/Jobs.vue:161 #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Full Time" msgstr "Teljes munkaidőben" @@ -2385,7 +2387,7 @@ msgstr "" msgid "I am unavailable" msgstr "" -#: frontend/src/pages/QuizForm.vue:380 +#: frontend/src/pages/QuizForm.vue:383 msgid "ID" msgstr "" @@ -2395,6 +2397,11 @@ msgstr "" msgid "Icon" msgstr "Ikon" +#. Label of the user_category (Check) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Identify User Persona" +msgstr "" + #: frontend/src/components/LessonHelp.vue:11 msgid "If Include in Preview is enabled for a lesson then the lesson will also be accessible to non logged in users." msgstr "" @@ -2425,7 +2432,7 @@ msgstr "" msgid "If you set an amount here, then the USD equivalent setting will not get applied." msgstr "" -#: lms/lms/doctype/lms_quiz/lms_quiz.py:63 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:61 msgid "If you want open ended questions then make sure each question in the quiz is of open ended type." msgstr "" @@ -2451,7 +2458,7 @@ msgstr "" msgid "Image search powered by" msgstr "" -#: lms/lms/doctype/lms_quiz/lms_quiz.py:221 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:219 msgid "Image: Corrupted Data Stream" msgstr "" @@ -2540,7 +2547,7 @@ msgstr "" #. Label of the instructors (Table MultiSelect) field in DocType 'LMS Batch' #. Label of the instructors (Rating) field in DocType 'LMS Batch Feedback' #. Label of the instructors (Table MultiSelect) field in DocType 'LMS Course' -#: frontend/src/pages/BatchForm.vue:93 frontend/src/pages/CourseForm.vue:155 +#: frontend/src/pages/BatchForm.vue:93 frontend/src/pages/CourseForm.vue:151 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json #: lms/lms/doctype/lms_course/lms_course.json @@ -2565,10 +2572,14 @@ msgstr "Bevezetés" msgid "Invalid Invite Code." msgstr "" -#: lms/lms/doctype/course_lesson/course_lesson.py:20 +#: lms/lms/doctype/course_lesson/course_lesson.py:19 msgid "Invalid Quiz ID" msgstr "" +#: lms/lms/doctype/course_lesson/course_lesson.py:33 +msgid "Invalid Quiz ID in content" +msgstr "" + #. Label of the invite_code (Data) field in DocType 'Cohort Subgroup' #. Label of the invite_code (Data) field in DocType 'Invite Request' #: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json @@ -2607,11 +2618,6 @@ msgstr "" msgid "Is Correct" msgstr "" -#. Label of the is_onboarding_complete (Check) field in DocType 'LMS Settings' -#: lms/lms/doctype/lms_settings/lms_settings.json -msgid "Is Onboarding Complete" -msgstr "" - #. Label of the is_scorm_package (Check) field in DocType 'Course Chapter' #. Label of the is_scorm_package (Check) field in DocType 'Course Lesson' #: lms/lms/doctype/course_chapter/course_chapter.json @@ -2650,7 +2656,7 @@ msgstr "" msgid "Items in Sidebar" msgstr "" -#: frontend/src/pages/ProgramForm.vue:272 +#: frontend/src/pages/ProgramForm.vue:275 msgid "Items removed successfully" msgstr "" @@ -2677,7 +2683,7 @@ msgstr "" msgid "Job Details" msgstr "" -#: lms/www/lms.py:111 +#: lms/www/lms.py:159 msgid "Job Openings" msgstr "" @@ -2700,6 +2706,7 @@ msgstr "Beosztás" #. Label of the jobs (Check) field in DocType 'LMS Settings' #: frontend/src/pages/JobDetail.vue:10 frontend/src/pages/Jobs.vue:8 +#: frontend/src/pages/Jobs.vue:170 #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Jobs" msgstr "" @@ -2923,7 +2930,6 @@ msgstr "" #: lms/job/doctype/lms_job_application/lms_job_application.json #: lms/lms/doctype/cohort_join_request/cohort_join_request.json #: lms/lms/doctype/course_chapter/course_chapter.json -#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/function/function.json #: lms/lms/doctype/industry/industry.json #: lms/lms/doctype/lms_assignment/lms_assignment.json @@ -3035,7 +3041,7 @@ msgstr "" msgid "Limit Questions To" msgstr "" -#: lms/lms/doctype/lms_quiz/lms_quiz.py:40 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:38 msgid "Limit cannot be greater than or equal to the number of questions in the quiz." msgstr "" @@ -3055,12 +3061,8 @@ msgstr "" msgid "Links" msgstr "Összekapcsolások" -#: frontend/src/pages/Quizzes.vue:149 -msgid "List of quizzes" -msgstr "" - #. Option for the 'Status' (Select) field in DocType 'Cohort' -#: frontend/src/pages/Courses.vue:278 lms/lms/doctype/cohort/cohort.json +#: frontend/src/pages/Courses.vue:281 lms/lms/doctype/cohort/cohort.json msgid "Live" msgstr "" @@ -3092,7 +3094,7 @@ msgstr "" #. Label of the location (Data) field in DocType 'Job Opportunity' #. Label of the location (Data) field in DocType 'Education Detail' #. Label of the location (Data) field in DocType 'Work Experience' -#: frontend/src/pages/JobCreation.vue:26 frontend/src/pages/JobDetail.vue:85 +#: frontend/src/pages/JobCreation.vue:26 frontend/src/pages/JobDetail.vue:92 #: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/lms/doctype/education_detail/education_detail.json #: lms/lms/doctype/work_experience/work_experience.json @@ -3112,9 +3114,9 @@ msgstr "Bejelentkezés" #: frontend/src/components/UserDropdown.vue:174 msgid "Login to Frappe Cloud?" -msgstr "" +msgstr "Bejelentkezés a Frappe Cloudba?" -#: frontend/src/pages/JobDetail.vue:48 +#: frontend/src/pages/JobDetail.vue:54 msgid "Login to apply" msgstr "" @@ -3161,7 +3163,7 @@ msgstr "" #: frontend/src/pages/Notifications.vue:12 msgid "Mark all as read" -msgstr "" +msgstr "Mindegyik megjelölése olvasottként" #: frontend/src/pages/Notifications.vue:40 msgid "Mark as read" @@ -3171,7 +3173,7 @@ msgstr "" #. Label of the marks (Int) field in DocType 'LMS Quiz Result' #: frontend/src/components/Modals/Question.vue:50 #: frontend/src/components/Modals/Question.vue:99 -#: frontend/src/components/Quiz.vue:96 frontend/src/pages/QuizForm.vue:390 +#: frontend/src/components/Quiz.vue:96 frontend/src/pages/QuizForm.vue:393 #: frontend/src/pages/QuizSubmission.vue:65 #: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json #: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json @@ -3233,7 +3235,7 @@ msgstr "Közepes:" #. Label of the member (Link) field in DocType 'LMS Quiz Submission' #: frontend/src/pages/AssignmentSubmissionList.vue:14 #: frontend/src/pages/QuizSubmission.vue:31 -#: frontend/src/pages/QuizSubmissionList.vue:86 +#: frontend/src/pages/QuizSubmissionList.vue:102 #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_submission/exercise_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json @@ -3314,7 +3316,7 @@ msgstr "" msgid "Member Username" msgstr "" -#: frontend/src/pages/ProgramForm.vue:251 +#: frontend/src/pages/ProgramForm.vue:254 msgid "Member added to program" msgstr "" @@ -3378,6 +3380,11 @@ msgstr "" msgid "Mentor Request Status Update Template" msgstr "" +#. Label of the meta_description (Small Text) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Meta Description" +msgstr "Meta Leírás" + #. Label of the meta_image (Attach Image) field in DocType 'LMS Batch' #: frontend/src/pages/BatchForm.vue:44 lms/lms/doctype/lms_batch/lms_batch.json #: lms/public/js/common_functions.js:362 @@ -3400,6 +3407,7 @@ msgstr "" #. Name of a role #: frontend/src/pages/ProfileRoles.vue:10 #: lms/lms/doctype/course_evaluator/course_evaluator.json +#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/lms_assignment/lms_assignment.json #: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json #: lms/lms/doctype/lms_batch/lms_batch.json @@ -3459,12 +3467,13 @@ msgstr "" #. Option for the 'Event' (Select) field in DocType 'LMS Badge' #: frontend/src/pages/Assignments.vue:18 frontend/src/pages/Batches.vue:17 -#: frontend/src/pages/Courses.vue:17 frontend/src/pages/Courses.vue:281 +#: frontend/src/pages/Courses.vue:17 frontend/src/pages/Courses.vue:284 #: frontend/src/pages/Programs.vue:14 lms/lms/doctype/lms_badge/lms_badge.json msgid "New" msgstr "" -#: frontend/src/pages/AssignmentForm.vue:178 +#: frontend/src/pages/AssignmentForm.vue:181 +#: frontend/src/pages/AssignmentForm.vue:197 msgid "New Assignment" msgstr "" @@ -3472,11 +3481,11 @@ msgstr "" msgid "New Assignment Submission" msgstr "" -#: lms/public/js/common_functions.js:255 lms/www/lms.py:89 +#: lms/public/js/common_functions.js:255 lms/www/lms.py:134 msgid "New Batch" msgstr "" -#: lms/www/lms.py:40 +#: frontend/src/pages/CourseForm.vue:577 lms/www/lms.py:78 msgid "New Course" msgstr "" @@ -3504,7 +3513,7 @@ msgstr "" msgid "New Question" msgstr "" -#: frontend/src/pages/QuizForm.vue:450 frontend/src/pages/QuizForm.vue:458 +#: frontend/src/pages/QuizForm.vue:453 frontend/src/pages/QuizForm.vue:461 #: frontend/src/pages/Quizzes.vue:18 msgid "New Quiz" msgstr "" @@ -3599,8 +3608,8 @@ msgstr "" msgid "No introduction" msgstr "" -#: frontend/src/pages/Jobs.vue:77 -msgid "No jobs posted" +#: frontend/src/pages/Jobs.vue:80 +msgid "No jobs found" msgstr "" #: frontend/src/components/LiveClass.vue:71 @@ -3615,6 +3624,10 @@ msgstr "" msgid "No programs found" msgstr "" +#: frontend/src/pages/QuizSubmissionList.vue:52 +msgid "No quiz submissions found. Please check again later." +msgstr "" + #: frontend/src/pages/Quizzes.vue:61 msgid "No quizzes found" msgstr "" @@ -3624,6 +3637,7 @@ msgid "No slots available for this date." msgstr "" #: frontend/src/pages/AssignmentSubmissionList.vue:67 +#: frontend/src/pages/QuizSubmissionList.vue:49 msgid "No submissions" msgstr "" @@ -3724,11 +3738,11 @@ msgstr "" msgid "Only files of type {0} will be accepted." msgstr "" -#: frontend/src/pages/CourseForm.vue:509 frontend/src/utils/index.js:549 +#: frontend/src/pages/CourseForm.vue:507 frontend/src/utils/index.js:550 msgid "Only image file is allowed." msgstr "" -#: frontend/src/components/Modals/ChapterModal.vue:218 +#: frontend/src/components/Modals/ChapterModal.vue:221 msgid "Only zip files are allowed" msgstr "" @@ -3786,7 +3800,7 @@ msgstr "4. lehetőség" msgid "Order ID" msgstr "" -#: frontend/src/pages/JobDetail.vue:74 +#: frontend/src/pages/JobDetail.vue:81 msgid "Organisation" msgstr "" @@ -3835,7 +3849,7 @@ msgid "Paid Batch" msgstr "" #. Label of the paid_certificate (Check) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:218 +#: frontend/src/pages/CourseForm.vue:214 #: lms/lms/doctype/lms_course/lms_course.json msgid "Paid Certificate" msgstr "" @@ -3845,7 +3859,7 @@ msgid "Paid Certificate after Evaluation" msgstr "" #. Label of the paid_course (Check) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:208 +#: frontend/src/pages/CourseForm.vue:204 #: lms/lms/doctype/lms_course/lms_course.json msgid "Paid Course" msgstr "" @@ -3855,7 +3869,7 @@ msgid "Pan Number" msgstr "" #. Option for the 'Type' (Select) field in DocType 'Job Opportunity' -#: frontend/src/pages/Jobs.vue:145 +#: frontend/src/pages/Jobs.vue:162 #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Part Time" msgstr "Részmunkaidő" @@ -3877,7 +3891,7 @@ msgstr "" #. Label of the passing_percentage (Int) field in DocType 'LMS Quiz' #. Label of the passing_percentage (Int) field in DocType 'LMS Quiz Submission' -#: frontend/src/pages/QuizForm.vue:72 frontend/src/pages/Quizzes.vue:127 +#: frontend/src/pages/QuizForm.vue:72 frontend/src/pages/Quizzes.vue:129 #: lms/lms/doctype/lms_quiz/lms_quiz.json #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json msgid "Passing Percentage" @@ -3888,7 +3902,7 @@ msgstr "" msgid "Password" msgstr "Jelszó" -#: frontend/src/pages/CourseForm.vue:113 +#: frontend/src/pages/CourseForm.vue:109 msgid "Paste the youtube link of a short video introducing the course" msgstr "" @@ -3980,7 +3994,7 @@ msgstr "" #. Label of the percentage (Int) field in DocType 'LMS Quiz Submission' #: frontend/src/pages/QuizSubmission.vue:44 -#: frontend/src/pages/QuizSubmissionList.vue:97 +#: frontend/src/pages/QuizSubmissionList.vue:113 #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json msgid "Percentage" msgstr "" @@ -4002,7 +4016,7 @@ msgstr "" msgid "Please Login" msgstr "" -#: lms/lms/doctype/lms_settings/lms_settings.py:33 +#: lms/lms/doctype/lms_settings/lms_settings.py:34 msgid "Please add {1} for {3} to send calendar invites for evaluations." msgstr "" @@ -4026,7 +4040,7 @@ msgstr "" msgid "Please enable Zoom Settings to use this feature." msgstr "" -#: frontend/src/components/CourseOutline.vue:324 +#: frontend/src/components/CourseOutline.vue:325 msgid "Please enroll for this course to view this lesson" msgstr "" @@ -4063,7 +4077,7 @@ msgstr "" msgid "Please install the Payments app to create a paid courses." msgstr "" -#: frontend/src/pages/Billing.vue:253 +#: frontend/src/pages/Billing.vue:254 msgid "Please let us know where you heard about us from." msgstr "" @@ -4112,7 +4126,7 @@ msgstr "" msgid "Please take appropriate action at {0}" msgstr "" -#: frontend/src/components/Modals/ChapterModal.vue:175 +#: frontend/src/components/Modals/ChapterModal.vue:178 msgid "Please upload a SCORM package" msgstr "" @@ -4158,7 +4172,7 @@ msgstr "Hozzászólás" msgid "Postal Code" msgstr "" -#: frontend/src/pages/JobDetail.vue:107 +#: frontend/src/pages/JobDetail.vue:114 msgid "Posted on" msgstr "" @@ -4193,7 +4207,7 @@ msgstr "" msgid "Preview Image" msgstr "" -#: frontend/src/pages/CourseForm.vue:111 +#: frontend/src/pages/CourseForm.vue:107 msgid "Preview Video" msgstr "" @@ -4208,7 +4222,7 @@ msgid "Pricing" msgstr "" #. Label of the pricing_tab (Tab Break) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:202 +#: frontend/src/pages/CourseForm.vue:198 #: lms/lms/doctype/lms_course/lms_course.json msgid "Pricing and Certification" msgstr "" @@ -4272,6 +4286,10 @@ msgstr "" msgid "Program Members" msgstr "" +#: frontend/src/pages/Programs.vue:219 lms/www/lms.py:273 +msgid "Programs" +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/BatchStudents.vue:75 @@ -4301,7 +4319,7 @@ msgstr "" #. Label of the published (Check) field in DocType 'LMS Course' #: frontend/src/components/Modals/BulkCertificates.vue:51 #: frontend/src/components/Modals/Event.vue:108 -#: frontend/src/pages/BatchForm.vue:27 frontend/src/pages/CourseForm.vue:172 +#: frontend/src/pages/BatchForm.vue:27 frontend/src/pages/CourseForm.vue:168 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/public/js/common_functions.js:266 @@ -4314,7 +4332,7 @@ msgid "Published Courses" msgstr "" #. Label of the published_on (Date) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:176 +#: frontend/src/pages/CourseForm.vue:172 #: lms/lms/doctype/lms_course/lms_course.json msgid "Published On" msgstr "" @@ -4333,7 +4351,7 @@ msgstr "" #. Label of the question (Text) field in DocType 'LMS Quiz Result' #: frontend/src/components/Assignment.vue:20 #: frontend/src/components/Modals/Question.vue:38 -#: frontend/src/pages/AssignmentForm.vue:45 frontend/src/pages/QuizForm.vue:385 +#: frontend/src/pages/AssignmentForm.vue:45 frontend/src/pages/QuizForm.vue:388 #: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/lms_assignment/lms_assignment.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json @@ -4358,11 +4376,11 @@ msgstr "" msgid "Question Name" msgstr "" -#: frontend/src/components/Modals/Question.vue:267 +#: frontend/src/components/Modals/Question.vue:270 msgid "Question added successfully" msgstr "" -#: frontend/src/components/Modals/Question.vue:319 +#: frontend/src/components/Modals/Question.vue:322 msgid "Question updated successfully" msgstr "" @@ -4379,7 +4397,7 @@ msgstr "" msgid "Questions" msgstr "" -#: frontend/src/pages/QuizForm.vue:427 +#: frontend/src/pages/QuizForm.vue:430 msgid "Questions deleted successfully" msgstr "" @@ -4397,13 +4415,13 @@ msgid "Quiz ID" msgstr "" #. Label of a Link in the LMS Workspace -#: frontend/src/pages/QuizPage.vue:56 frontend/src/pages/QuizPage.vue:62 -#: lms/lms/workspace/lms/lms.json +#: frontend/src/pages/QuizPage.vue:57 lms/lms/workspace/lms/lms.json msgid "Quiz Submission" msgstr "" -#: frontend/src/pages/QuizSubmission.vue:128 -#: frontend/src/pages/QuizSubmissionList.vue:106 +#: frontend/src/pages/QuizSubmission.vue:131 +#: frontend/src/pages/QuizSubmissionList.vue:122 +#: frontend/src/pages/QuizSubmissionList.vue:127 msgid "Quiz Submissions" msgstr "" @@ -4416,7 +4434,7 @@ msgstr "" msgid "Quiz Title" msgstr "" -#: frontend/src/pages/QuizForm.vue:339 +#: frontend/src/pages/QuizForm.vue:342 msgid "Quiz created successfully" msgstr "" @@ -4424,7 +4442,7 @@ msgstr "" msgid "Quiz is not available to Guest users. Please login to continue." msgstr "" -#: frontend/src/pages/QuizForm.vue:358 +#: frontend/src/pages/QuizForm.vue:361 msgid "Quiz updated successfully" msgstr "" @@ -4434,8 +4452,8 @@ msgid "Quiz will appear at the bottom of the lesson." msgstr "" #: frontend/src/components/AppSidebar.vue:530 -#: frontend/src/pages/QuizForm.vue:438 frontend/src/pages/Quizzes.vue:138 -#: frontend/src/pages/Quizzes.vue:148 +#: frontend/src/pages/QuizForm.vue:441 frontend/src/pages/Quizzes.vue:140 +#: frontend/src/pages/Quizzes.vue:150 lms/www/lms.py:229 msgid "Quizzes" msgstr "" @@ -4513,7 +4531,7 @@ msgstr "Elutasítva" msgid "Related Courses" msgstr "" -#: frontend/src/pages/BatchForm.vue:77 frontend/src/pages/CourseForm.vue:100 +#: frontend/src/pages/BatchForm.vue:77 frontend/src/pages/CourseForm.vue:96 msgid "Remove" msgstr "eltávolítás" @@ -4607,7 +4625,7 @@ msgstr "" msgid "Row #{0} Start time cannot be outside the batch duration." msgstr "" -#: lms/lms/doctype/lms_quiz/lms_quiz.py:34 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:32 msgid "Rows {0} have the duplicate questions." msgstr "" @@ -4631,6 +4649,11 @@ msgstr "" msgid "SCORM Package Path" msgstr "" +#. Label of the seo_tab (Tab Break) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "SEO" +msgstr "" + #. Option for the 'Day' (Select) field in DocType 'Evaluator Schedule' #. Option for the 'Day' (Select) field in DocType 'LMS Certificate Request' #: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json @@ -4644,7 +4667,7 @@ msgstr "Szombat" #: frontend/src/components/Modals/Event.vue:101 #: frontend/src/components/Modals/Event.vue:129 #: frontend/src/pages/AssignmentForm.vue:21 frontend/src/pages/BatchForm.vue:8 -#: frontend/src/pages/CourseForm.vue:21 frontend/src/pages/JobCreation.vue:8 +#: frontend/src/pages/CourseForm.vue:17 frontend/src/pages/JobCreation.vue:8 #: frontend/src/pages/LessonForm.vue:14 frontend/src/pages/ProgramForm.vue:7 #: frontend/src/pages/QuizForm.vue:34 frontend/src/pages/QuizSubmission.vue:14 #: lms/public/js/common_functions.js:405 @@ -4673,7 +4696,7 @@ msgstr "terület" #. Label of the score (Int) field in DocType 'LMS Quiz Submission' #: frontend/src/pages/QuizSubmission.vue:39 -#: frontend/src/pages/QuizSubmissionList.vue:91 +#: frontend/src/pages/QuizSubmissionList.vue:107 #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json #: lms/templates/quiz/quiz.html:148 msgid "Score" @@ -4767,7 +4790,7 @@ msgstr "" #: frontend/src/components/AppSidebar.vue:556 #: frontend/src/components/Modals/Settings.vue:7 -#: frontend/src/pages/BatchForm.vue:148 frontend/src/pages/CourseForm.vue:162 +#: frontend/src/pages/BatchForm.vue:148 frontend/src/pages/CourseForm.vue:158 #: frontend/src/pages/ProfileRoles.vue:4 frontend/src/pages/QuizForm.vue:79 msgid "Settings" msgstr "" @@ -4781,7 +4804,7 @@ msgid "Short Description" msgstr "" #. Label of the short_introduction (Small Text) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:39 +#: frontend/src/pages/CourseForm.vue:35 #: lms/lms/doctype/lms_course/lms_course.json msgid "Short Introduction" msgstr "" @@ -4892,10 +4915,6 @@ msgstr "" msgid "Skip" msgstr "Ugrás" -#: frontend/src/components/OnboardingBanner.vue:3 -msgid "Skip Onboarding" -msgstr "" - #: lms/lms/doctype/course_evaluator/course_evaluator.py:63 msgid "Slot Times are overlapping for some schedules." msgstr "" @@ -5009,8 +5028,9 @@ msgstr "" #. Label of the tab_4_tab (Tab Break) field in DocType 'LMS Course' #. Label of the statistics (Check) field in DocType 'LMS Settings' #: frontend/src/components/BatchStudents.vue:5 +#: frontend/src/pages/Statistics.vue:322 #: lms/lms/doctype/lms_course/lms_course.json -#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:136 +#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:182 msgid "Statistics" msgstr "" @@ -5110,7 +5130,7 @@ msgstr "" #: frontend/src/components/Modals/AssessmentModal.vue:9 #: frontend/src/components/Modals/BatchCourseModal.vue:9 #: frontend/src/components/Modals/EvaluationModal.vue:9 -#: frontend/src/components/Modals/Question.vue:341 +#: frontend/src/components/Modals/Question.vue:344 #: frontend/src/components/Quiz.vue:218 lms/templates/assignment.html:9 #: lms/templates/livecode/extension_footer.html:25 #: lms/templates/quiz/quiz.html:128 lms/templates/reviews.html:163 @@ -5135,18 +5155,18 @@ msgstr "" #: frontend/src/components/Modals/AnnouncementModal.vue:99 #: frontend/src/components/Modals/AssessmentModal.vue:73 #: frontend/src/components/Modals/BulkCertificates.vue:121 -#: frontend/src/components/Modals/ChapterModal.vue:151 -#: frontend/src/components/Modals/ChapterModal.vue:196 +#: frontend/src/components/Modals/ChapterModal.vue:154 +#: frontend/src/components/Modals/ChapterModal.vue:199 #: frontend/src/components/Modals/Event.vue:255 #: frontend/src/components/Modals/Event.vue:310 -#: frontend/src/components/Modals/Question.vue:267 -#: frontend/src/components/Modals/Question.vue:318 -#: frontend/src/pages/AssignmentForm.vue:155 -#: frontend/src/pages/CourseForm.vue:472 frontend/src/pages/ProgramForm.vue:229 -#: frontend/src/pages/ProgramForm.vue:251 -#: frontend/src/pages/ProgramForm.vue:272 -#: frontend/src/pages/ProgramForm.vue:298 frontend/src/pages/QuizForm.vue:339 -#: frontend/src/pages/QuizForm.vue:358 frontend/src/pages/QuizForm.vue:427 +#: frontend/src/components/Modals/Question.vue:270 +#: frontend/src/components/Modals/Question.vue:321 +#: frontend/src/pages/AssignmentForm.vue:158 +#: frontend/src/pages/CourseForm.vue:470 frontend/src/pages/ProgramForm.vue:232 +#: frontend/src/pages/ProgramForm.vue:254 +#: frontend/src/pages/ProgramForm.vue:275 +#: frontend/src/pages/ProgramForm.vue:301 frontend/src/pages/QuizForm.vue:342 +#: frontend/src/pages/QuizForm.vue:361 frontend/src/pages/QuizForm.vue:430 msgid "Success" msgstr "" @@ -5164,7 +5184,7 @@ msgstr "Összefoglalás" msgid "Sunday" msgstr "Vasárnap" -#: lms/lms/api.py:1026 +#: lms/lms/api.py:1027 msgid "Suspicious pattern found in {0}: {1}" msgstr "" @@ -5220,7 +5240,7 @@ msgid "System Manager" msgstr "" #. Label of the tags (Data) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:121 +#: frontend/src/pages/CourseForm.vue:117 #: lms/lms/doctype/lms_course/lms_course.json msgid "Tags" msgstr "Címkék" @@ -5325,6 +5345,10 @@ msgstr "" msgid "There are no courses matching the criteria. Keep an eye out, fresh learning experiences are on the way soon!" msgstr "" +#: frontend/src/pages/Jobs.vue:84 +msgid "There are no jobs available at the moment. Open a job opportunity or check here again later." +msgstr "" + #: frontend/src/pages/CertifiedParticipants.vue:92 msgid "There are no participants matching this criteria." msgstr "" @@ -5384,8 +5408,10 @@ msgstr "" msgid "This course is free." msgstr "" -#: frontend/src/pages/SCORMChapter.vue:201 -msgid "This is a chapter in the course {0}" +#. Description of the 'Meta Description' (Small Text) field in DocType 'LMS +#. Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "This description will be shown on lists and pages without meta description" msgstr "" #: frontend/src/pages/Lesson.vue:16 @@ -5482,10 +5508,10 @@ msgstr "" #: frontend/src/components/Modals/DiscussionModal.vue:18 #: frontend/src/components/Modals/LiveClassModal.vue:23 #: frontend/src/pages/AssignmentForm.vue:32 -#: frontend/src/pages/Assignments.vue:152 frontend/src/pages/BatchForm.vue:19 -#: frontend/src/pages/CourseForm.vue:33 frontend/src/pages/JobCreation.vue:20 +#: frontend/src/pages/Assignments.vue:155 frontend/src/pages/BatchForm.vue:19 +#: frontend/src/pages/CourseForm.vue:29 frontend/src/pages/JobCreation.vue:20 #: frontend/src/pages/ProgramForm.vue:11 frontend/src/pages/Programs.vue:116 -#: frontend/src/pages/QuizForm.vue:48 frontend/src/pages/Quizzes.vue:116 +#: frontend/src/pages/QuizForm.vue:48 frontend/src/pages/Quizzes.vue:118 #: lms/lms/doctype/cohort/cohort.json #: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json #: lms/lms/doctype/cohort_web_page/cohort_web_page.json @@ -5507,7 +5533,7 @@ msgstr "" msgid "Title" msgstr "" -#: frontend/src/components/Modals/ChapterModal.vue:172 +#: frontend/src/components/Modals/ChapterModal.vue:175 msgid "Title is required" msgstr "" @@ -5539,7 +5565,7 @@ msgid "Total" msgstr "" #. Label of the total_marks (Int) field in DocType 'LMS Quiz' -#: frontend/src/pages/QuizForm.vue:67 frontend/src/pages/Quizzes.vue:121 +#: frontend/src/pages/QuizForm.vue:67 frontend/src/pages/Quizzes.vue:123 #: lms/lms/doctype/lms_quiz/lms_quiz.json msgid "Total Marks" msgstr "" @@ -5577,7 +5603,7 @@ msgstr "" #: frontend/src/components/Modals/AssessmentModal.vue:22 #: frontend/src/components/Modals/Question.vue:54 #: frontend/src/pages/AssignmentForm.vue:39 -#: frontend/src/pages/Assignments.vue:30 frontend/src/pages/Assignments.vue:157 +#: frontend/src/pages/Assignments.vue:30 frontend/src/pages/Assignments.vue:160 #: frontend/src/pages/JobCreation.vue:33 frontend/src/pages/Jobs.vue:55 #: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/lms/doctype/lms_assignment/lms_assignment.json @@ -5624,7 +5650,7 @@ msgstr "" msgid "Unlisted" msgstr "" -#: frontend/src/pages/Batches.vue:293 +#: frontend/src/pages/Batches.vue:295 msgid "Unpublished" msgstr "" @@ -5646,8 +5672,8 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'Cohort' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request' #. Label of the upcoming (Check) field in DocType 'LMS Course' -#: frontend/src/pages/Batches.vue:291 frontend/src/pages/CourseForm.vue:185 -#: frontend/src/pages/Courses.vue:284 lms/lms/doctype/cohort/cohort.json +#: frontend/src/pages/Batches.vue:293 frontend/src/pages/CourseForm.vue:181 +#: frontend/src/pages/Courses.vue:287 lms/lms/doctype/cohort/cohort.json #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_course/lms_course.json msgid "Upcoming" @@ -5672,7 +5698,7 @@ msgstr "" msgid "Update Password" msgstr "" -#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:81 +#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:77 msgid "Upload" msgstr "Feltöltés" @@ -5778,6 +5804,10 @@ msgstr "" msgid "Visit Batch" msgstr "" +#: frontend/src/pages/JobDetail.vue:38 +msgid "Visit Website" +msgstr "" + #: lms/templates/emails/batch_confirmation.html:23 msgid "Visit the following link to view your " msgstr "" @@ -5899,7 +5929,7 @@ msgstr "" msgid "You are not a mentor of the course {0}" msgstr "" -#: frontend/src/components/CourseOutline.vue:323 +#: frontend/src/components/CourseOutline.vue:324 msgid "You are not enrolled" msgstr "" @@ -6123,11 +6153,7 @@ msgstr "nak,-nek" msgid "out of" msgstr "" -#: frontend/src/components/JobCard.vue:30 -msgid "posted" -msgstr "" - -#: frontend/src/pages/QuizForm.vue:386 +#: frontend/src/pages/QuizForm.vue:389 msgid "question_detail" msgstr "" @@ -6147,7 +6173,7 @@ msgstr "" msgid "you can" msgstr "" -#: lms/lms/api.py:816 lms/lms/api.py:824 +#: lms/lms/api.py:817 lms/lms/api.py:825 msgid "{0} Settings not found" msgstr "" diff --git a/lms/locale/main.pot b/lms/locale/main.pot index 8cc9f873..77db8be8 100644 --- a/lms/locale/main.pot +++ b/lms/locale/main.pot @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Frappe LMS VERSION\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n" -"POT-Creation-Date: 2025-04-04 16:04+0000\n" -"PO-Revision-Date: 2025-04-04 16:04+0000\n" +"POT-Creation-Date: 2025-04-11 16:04+0000\n" +"PO-Revision-Date: 2025-04-11 16:04+0000\n" "Last-Translator: jannat@frappe.io\n" "Language-Team: jannat@frappe.io\n" "MIME-Version: 1.0\n" @@ -69,7 +69,7 @@ msgstr "" msgid "A course cannot have both paid certificate and certificate of completion." msgstr "" -#: frontend/src/pages/CourseForm.vue:41 +#: frontend/src/pages/CourseForm.vue:37 msgid "A one line introduction to the course that appears on the course card" msgstr "" @@ -143,7 +143,6 @@ msgid "Add a Student" msgstr "" #: frontend/src/components/AppSidebar.vue:514 -#: frontend/src/components/OnboardingBanner.vue:56 msgid "Add a chapter" msgstr "" @@ -151,16 +150,15 @@ msgstr "" msgid "Add a course" msgstr "" -#: frontend/src/pages/CourseForm.vue:137 +#: frontend/src/pages/CourseForm.vue:133 msgid "Add a keyword and then press enter" msgstr "" #: frontend/src/components/AppSidebar.vue:515 -#: frontend/src/components/OnboardingBanner.vue:81 msgid "Add a lesson" msgstr "" -#: frontend/src/components/Modals/Question.vue:146 +#: frontend/src/components/Modals/Question.vue:147 #: frontend/src/pages/QuizForm.vue:183 msgid "Add a new question" msgstr "" @@ -233,7 +231,7 @@ msgid "Admin" msgstr "" #. Name of a role -#: frontend/src/pages/Batches.vue:282 lms/lms/doctype/lms_badge/lms_badge.json +#: frontend/src/pages/Batches.vue:284 lms/lms/doctype/lms_badge/lms_badge.json msgid "All" msgstr "" @@ -257,7 +255,7 @@ msgstr "" msgid "All Submissions" msgstr "" -#: lms/lms/doctype/lms_quiz/lms_quiz.py:46 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:44 msgid "All questions should have the same marks if the limit is set." msgstr "" @@ -292,7 +290,7 @@ msgstr "" #. Label of the amount (Currency) field in DocType 'LMS Batch' #. Label of the course_price (Currency) field in DocType 'LMS Course' #. Label of the amount (Currency) field in DocType 'LMS Payment' -#: frontend/src/pages/BatchForm.vue:209 frontend/src/pages/CourseForm.vue:221 +#: frontend/src/pages/BatchForm.vue:209 frontend/src/pages/CourseForm.vue:217 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_payment/lms_payment.json @@ -344,7 +342,7 @@ msgstr "" msgid "Answer" msgstr "" -#: frontend/src/pages/CourseForm.vue:85 frontend/src/pages/CourseForm.vue:103 +#: frontend/src/pages/CourseForm.vue:81 frontend/src/pages/CourseForm.vue:99 msgid "Appears on the course card in the course list" msgstr "" @@ -352,11 +350,11 @@ msgstr "" msgid "Appears when the batch URL is shared on any online platform" msgstr "" -#: frontend/src/pages/JobDetail.vue:121 +#: frontend/src/pages/JobDetail.vue:128 msgid "Applications Received" msgstr "" -#: frontend/src/pages/JobDetail.vue:42 +#: frontend/src/pages/JobDetail.vue:48 msgid "Apply" msgstr "" @@ -387,7 +385,7 @@ msgstr "" msgid "Apps" msgstr "" -#: frontend/src/pages/Batches.vue:292 +#: frontend/src/pages/Batches.vue:294 msgid "Archived" msgstr "" @@ -399,11 +397,6 @@ msgstr "" msgid "Are you sure you want to login to your Frappe Cloud dashboard?" msgstr "" -#. Label of the user_category (Check) field in DocType 'LMS Settings' -#: lms/lms/doctype/lms_settings/lms_settings.json -msgid "Ask User Category during Signup" -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 @@ -468,6 +461,10 @@ msgstr "" msgid "Assignment Submission Template" msgstr "" +#: frontend/src/pages/AssignmentSubmissionList.vue:223 +msgid "Assignment Submissions" +msgstr "" + #. Label of the assignment_title (Data) field in DocType 'LMS Assignment #. Submission' #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json @@ -478,7 +475,7 @@ msgstr "" msgid "Assignment for Lesson {0} by {1} already exists." msgstr "" -#: frontend/src/pages/AssignmentForm.vue:155 +#: frontend/src/pages/AssignmentForm.vue:158 msgid "Assignment saved successfully" msgstr "" @@ -488,7 +485,8 @@ msgid "Assignment will appear at the bottom of the lesson." msgstr "" #: frontend/src/components/AppSidebar.vue:531 -#: frontend/src/pages/AssignmentForm.vue:174 +#: frontend/src/pages/AssignmentForm.vue:177 +#: frontend/src/pages/Assignments.vue:193 lms/www/lms.py:251 msgid "Assignments" msgstr "" @@ -654,8 +652,8 @@ msgid "Batch:" msgstr "" #. Label of the batches (Check) field in DocType 'LMS Settings' -#: frontend/src/pages/Batches.vue:302 -#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:63 +#: frontend/src/pages/Batches.vue:304 frontend/src/pages/Batches.vue:311 +#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:105 msgid "Batches" msgstr "" @@ -673,7 +671,7 @@ msgstr "" #. Label of the billing_details_section (Section Break) field in DocType 'LMS #. Payment' -#: frontend/src/pages/Billing.vue:8 +#: frontend/src/pages/Billing.vue:8 frontend/src/pages/Billing.vue:363 #: lms/lms/doctype/lms_payment/lms_payment.json msgid "Billing Details" msgstr "" @@ -755,8 +753,9 @@ msgstr "" #. Label of the category (Link) field in DocType 'LMS Course' #: frontend/src/pages/BatchForm.vue:190 frontend/src/pages/Batches.vue:55 #: frontend/src/pages/CertifiedParticipants.vue:37 -#: frontend/src/pages/CourseForm.vue:148 frontend/src/pages/Courses.vue:51 -#: frontend/src/pages/JobDetail.vue:96 lms/lms/doctype/lms_batch/lms_batch.json +#: frontend/src/pages/CourseForm.vue:144 frontend/src/pages/Courses.vue:51 +#: frontend/src/pages/JobDetail.vue:103 +#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/public/js/common_functions.js:316 lms/templates/signup-form.html:22 @@ -811,7 +810,7 @@ msgstr "" #: frontend/src/components/Modals/Event.vue:371 #: frontend/src/pages/BatchForm.vue:37 frontend/src/pages/Batches.vue:38 #: frontend/src/pages/CourseCertification.vue:10 -#: frontend/src/pages/CourseCertification.vue:133 +#: frontend/src/pages/CourseCertification.vue:135 #: frontend/src/pages/Courses.vue:34 lms/fixtures/custom_field.json #: lms/lms/doctype/certification/certification.json #: lms/lms/doctype/lms_batch/lms_batch.json @@ -835,7 +834,8 @@ msgid "Certified" msgstr "" #. Label of the certified_participants (Check) field in DocType 'LMS Settings' -#: frontend/src/pages/CertifiedParticipants.vue:161 +#: frontend/src/pages/CertifiedParticipants.vue:164 +#: frontend/src/pages/CertifiedParticipants.vue:171 #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Certified Participants" msgstr "" @@ -862,11 +862,11 @@ msgstr "" msgid "Chapter Reference" msgstr "" -#: frontend/src/components/Modals/ChapterModal.vue:152 +#: frontend/src/components/Modals/ChapterModal.vue:155 msgid "Chapter added successfully" msgstr "" -#: frontend/src/components/Modals/ChapterModal.vue:196 +#: frontend/src/components/Modals/ChapterModal.vue:199 msgid "Chapter updated successfully" msgstr "" @@ -1115,7 +1115,7 @@ msgid "Completed by Students" msgstr "" #. Label of the enable_certification (Check) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:213 +#: frontend/src/pages/CourseForm.vue:209 #: lms/lms/doctype/lms_course/lms_course.json msgid "Completion Certificate" msgstr "" @@ -1177,7 +1177,7 @@ msgid "Continue Learning" msgstr "" #. Option for the 'Type' (Select) field in DocType 'Job Opportunity' -#: frontend/src/pages/Jobs.vue:146 +#: frontend/src/pages/Jobs.vue:163 #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Contract" msgstr "" @@ -1292,6 +1292,7 @@ msgstr "" #. Name of a role #: frontend/src/pages/ProfileRoles.vue:16 #: lms/lms/doctype/course_chapter/course_chapter.json +#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_program/lms_program.json @@ -1305,7 +1306,7 @@ msgstr "" msgid "Course Data" msgstr "" -#: frontend/src/pages/CourseForm.vue:50 +#: frontend/src/pages/CourseForm.vue:46 msgid "Course Description" msgstr "" @@ -1314,7 +1315,7 @@ msgstr "" msgid "Course Evaluator" msgstr "" -#: frontend/src/pages/CourseForm.vue:63 +#: frontend/src/pages/CourseForm.vue:59 msgid "Course Image" msgstr "" @@ -1328,7 +1329,7 @@ msgstr "" msgid "Course Lesson" msgstr "" -#: lms/www/lms.py:30 +#: lms/www/lms.py:70 msgid "Course List" msgstr "" @@ -1336,7 +1337,7 @@ msgstr "" msgid "Course Name" msgstr "" -#: frontend/src/pages/CourseDetail.vue:76 frontend/src/pages/CourseForm.vue:241 +#: frontend/src/pages/CourseDetail.vue:76 frontend/src/pages/CourseForm.vue:237 msgid "Course Outline" msgstr "" @@ -1368,7 +1369,7 @@ msgstr "" msgid "Course Title" msgstr "" -#: frontend/src/pages/ProgramForm.vue:229 +#: frontend/src/pages/ProgramForm.vue:232 msgid "Course added to program" msgstr "" @@ -1376,11 +1377,11 @@ msgstr "" msgid "Course already added to the batch." msgstr "" -#: frontend/src/pages/CourseForm.vue:472 +#: frontend/src/pages/CourseForm.vue:470 msgid "Course deleted successfully" msgstr "" -#: frontend/src/pages/ProgramForm.vue:298 +#: frontend/src/pages/ProgramForm.vue:301 msgid "Course moved successfully" msgstr "" @@ -1398,8 +1399,9 @@ msgstr "" #: frontend/src/components/BatchStudents.vue:92 #: frontend/src/components/Modals/BatchStudentProgress.vue:79 #: frontend/src/pages/BatchDetail.vue:21 frontend/src/pages/BatchDetail.vue:70 -#: frontend/src/pages/CourseCertification.vue:125 -#: frontend/src/pages/Courses.vue:301 frontend/src/pages/Statistics.vue:21 +#: frontend/src/pages/CourseCertification.vue:127 +#: frontend/src/pages/Courses.vue:304 frontend/src/pages/Courses.vue:311 +#: frontend/src/pages/Statistics.vue:21 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Courses" @@ -1441,7 +1443,6 @@ msgid "Create a batch" msgstr "" #: frontend/src/components/AppSidebar.vue:513 -#: frontend/src/components/OnboardingBanner.vue:30 msgid "Create a course" msgstr "" @@ -1465,7 +1466,7 @@ msgstr "" msgid "Create your first quiz" msgstr "" -#: frontend/src/pages/Assignments.vue:163 frontend/src/pages/Courses.vue:292 +#: frontend/src/pages/Assignments.vue:166 frontend/src/pages/Courses.vue:295 msgid "Created" msgstr "" @@ -1480,7 +1481,7 @@ msgstr "" #. Label of the currency (Link) field in DocType 'LMS Batch' #. Label of the currency (Link) field in DocType 'LMS Course' #. Label of the currency (Link) field in DocType 'LMS Payment' -#: frontend/src/pages/BatchForm.vue:217 frontend/src/pages/CourseForm.vue:226 +#: frontend/src/pages/BatchForm.vue:217 frontend/src/pages/CourseForm.vue:222 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_payment/lms_payment.json @@ -1583,9 +1584,9 @@ msgstr "" msgid "Degree Type" msgstr "" -#: frontend/src/components/CourseOutline.vue:247 -#: frontend/src/components/CourseOutline.vue:305 -#: frontend/src/pages/CourseForm.vue:485 +#: frontend/src/components/CourseOutline.vue:248 +#: frontend/src/components/CourseOutline.vue:306 +#: frontend/src/pages/CourseForm.vue:483 msgid "Delete" msgstr "" @@ -1593,27 +1594,27 @@ msgstr "" msgid "Delete Chapter" msgstr "" -#: frontend/src/pages/CourseForm.vue:479 +#: frontend/src/pages/CourseForm.vue:477 msgid "Delete Course" msgstr "" -#: frontend/src/components/CourseOutline.vue:299 +#: frontend/src/components/CourseOutline.vue:300 msgid "Delete this chapter?" msgstr "" -#: frontend/src/components/CourseOutline.vue:241 +#: frontend/src/components/CourseOutline.vue:242 msgid "Delete this lesson?" msgstr "" -#: frontend/src/pages/CourseForm.vue:480 +#: frontend/src/pages/CourseForm.vue:478 msgid "Deleting the course will also delete all its chapters and lessons. Are you sure you want to delete this course?" msgstr "" -#: frontend/src/components/CourseOutline.vue:300 +#: frontend/src/components/CourseOutline.vue:301 msgid "Deleting this chapter will also delete all its lessons and permanently remove it from the course. This action cannot be undone. Are you sure you want to continue?" msgstr "" -#: frontend/src/components/CourseOutline.vue:242 +#: frontend/src/components/CourseOutline.vue:243 msgid "Deleting this lesson will permanently remove it from the course. This action cannot be undone. Are you sure you want to continue?" msgstr "" @@ -1652,11 +1653,11 @@ msgstr "" #: frontend/src/components/Modals/DiscussionModal.vue:22 #: frontend/src/pages/AssignmentForm.vue:27 frontend/src/pages/BatchForm.vue:14 -#: frontend/src/pages/CourseForm.vue:29 frontend/src/pages/QuizForm.vue:42 +#: frontend/src/pages/CourseForm.vue:25 frontend/src/pages/QuizForm.vue:42 msgid "Details" msgstr "" -#: frontend/src/pages/CourseForm.vue:195 +#: frontend/src/pages/CourseForm.vue:191 msgid "Disable Self Enrollment" msgstr "" @@ -1665,6 +1666,11 @@ msgstr "" msgid "Disable Self Learning" msgstr "" +#. Label of the disable_signup (Check) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Disable Signup" +msgstr "" + #. Label of the disabled (Check) field in DocType 'Job Opportunity' #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Disabled" @@ -1806,7 +1812,7 @@ msgstr "" msgid "Enable" msgstr "" -#: lms/lms/doctype/lms_settings/lms_settings.py:20 +#: lms/lms/doctype/lms_settings/lms_settings.py:21 msgid "Enable Google API in Google Settings to send calendar invites for evaluations." msgstr "" @@ -1865,7 +1871,7 @@ msgstr "" msgid "Enroll Now" msgstr "" -#: frontend/src/pages/Batches.vue:295 frontend/src/pages/Courses.vue:294 +#: frontend/src/pages/Batches.vue:297 frontend/src/pages/Courses.vue:297 msgid "Enrolled" msgstr "" @@ -1900,7 +1906,7 @@ msgstr "" msgid "Enrollments" msgstr "" -#: lms/lms/doctype/lms_settings/lms_settings.py:25 +#: lms/lms/doctype/lms_settings/lms_settings.py:26 msgid "Enter Client Id and Client Secret in Google Settings to send calendar invites for evaluations." msgstr "" @@ -1919,19 +1925,19 @@ msgstr "" #: frontend/src/components/Assignment.vue:287 #: frontend/src/components/Modals/AnnouncementModal.vue:105 #: frontend/src/components/Modals/BulkCertificates.vue:115 -#: frontend/src/components/Modals/ChapterModal.vue:157 -#: frontend/src/components/Modals/ChapterModal.vue:164 -#: frontend/src/components/Modals/ChapterModal.vue:200 -#: frontend/src/components/Modals/Question.vue:251 -#: frontend/src/components/Modals/Question.vue:272 -#: frontend/src/components/Modals/Question.vue:329 -#: frontend/src/components/Modals/StudentModal.vue:70 +#: frontend/src/components/Modals/ChapterModal.vue:160 +#: frontend/src/components/Modals/ChapterModal.vue:167 +#: frontend/src/components/Modals/ChapterModal.vue:203 +#: frontend/src/components/Modals/Question.vue:252 +#: frontend/src/components/Modals/Question.vue:275 +#: frontend/src/components/Modals/Question.vue:332 +#: frontend/src/components/Modals/StudentModal.vue:73 #: frontend/src/components/Quiz.vue:592 #: frontend/src/components/SettingDetails.vue:62 -#: frontend/src/pages/AssignmentForm.vue:139 -#: frontend/src/pages/AssignmentForm.vue:159 frontend/src/pages/Billing.vue:261 -#: frontend/src/pages/QuizForm.vue:346 frontend/src/pages/QuizForm.vue:361 -#: frontend/src/pages/QuizSubmission.vue:147 +#: frontend/src/pages/AssignmentForm.vue:142 +#: frontend/src/pages/AssignmentForm.vue:162 frontend/src/pages/Billing.vue:262 +#: frontend/src/pages/QuizForm.vue:349 frontend/src/pages/QuizForm.vue:364 +#: frontend/src/pages/QuizSubmission.vue:150 msgid "Error" msgstr "" @@ -1980,7 +1986,7 @@ msgstr "" #. Label of the evaluator (Link) field in DocType 'LMS Course' #: frontend/src/components/Modals/BatchCourseModal.vue:26 #: frontend/src/components/Modals/BulkCertificates.vue:22 -#: frontend/src/pages/CourseForm.vue:232 frontend/src/pages/ProfileRoles.vue:22 +#: frontend/src/pages/CourseForm.vue:228 frontend/src/pages/ProfileRoles.vue:22 #: lms/lms/doctype/batch_course/batch_course.json #: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json @@ -2098,7 +2104,7 @@ msgstr "" #. Label of the featured (Check) field in DocType 'LMS Course' #: frontend/src/components/CourseCard.vue:16 -#: frontend/src/pages/CourseForm.vue:190 +#: frontend/src/pages/CourseForm.vue:186 #: lms/lms/doctype/lms_course/lms_course.json msgid "Featured" msgstr "" @@ -2147,10 +2153,6 @@ msgstr "" msgid "Flexible Time" msgstr "" -#: frontend/src/pages/QuizForm.vue:459 -msgid "Form to create and edit quizzes" -msgstr "" - #. Option for the 'Attire Preference' (Select) field in DocType 'User' #: lms/fixtures/custom_field.json msgid "Formal Wear" @@ -2161,7 +2163,7 @@ msgid "Free" msgstr "" #. Option for the 'Type' (Select) field in DocType 'Job Opportunity' -#: frontend/src/pages/Jobs.vue:147 +#: frontend/src/pages/Jobs.vue:164 #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Freelance" msgstr "" @@ -2205,7 +2207,7 @@ msgid "Full Name" msgstr "" #. Option for the 'Type' (Select) field in DocType 'Job Opportunity' -#: frontend/src/pages/Jobs.vue:144 +#: frontend/src/pages/Jobs.vue:161 #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Full Time" msgstr "" @@ -2383,7 +2385,7 @@ msgstr "" msgid "I am unavailable" msgstr "" -#: frontend/src/pages/QuizForm.vue:380 +#: frontend/src/pages/QuizForm.vue:383 msgid "ID" msgstr "" @@ -2393,6 +2395,11 @@ msgstr "" msgid "Icon" msgstr "" +#. Label of the user_category (Check) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Identify User Persona" +msgstr "" + #: frontend/src/components/LessonHelp.vue:11 msgid "If Include in Preview is enabled for a lesson then the lesson will also be accessible to non logged in users." msgstr "" @@ -2423,7 +2430,7 @@ msgstr "" msgid "If you set an amount here, then the USD equivalent setting will not get applied." msgstr "" -#: lms/lms/doctype/lms_quiz/lms_quiz.py:63 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:61 msgid "If you want open ended questions then make sure each question in the quiz is of open ended type." msgstr "" @@ -2449,7 +2456,7 @@ msgstr "" msgid "Image search powered by" msgstr "" -#: lms/lms/doctype/lms_quiz/lms_quiz.py:221 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:219 msgid "Image: Corrupted Data Stream" msgstr "" @@ -2538,7 +2545,7 @@ msgstr "" #. Label of the instructors (Table MultiSelect) field in DocType 'LMS Batch' #. Label of the instructors (Rating) field in DocType 'LMS Batch Feedback' #. Label of the instructors (Table MultiSelect) field in DocType 'LMS Course' -#: frontend/src/pages/BatchForm.vue:93 frontend/src/pages/CourseForm.vue:155 +#: frontend/src/pages/BatchForm.vue:93 frontend/src/pages/CourseForm.vue:151 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json #: lms/lms/doctype/lms_course/lms_course.json @@ -2563,10 +2570,14 @@ msgstr "" msgid "Invalid Invite Code." msgstr "" -#: lms/lms/doctype/course_lesson/course_lesson.py:20 +#: lms/lms/doctype/course_lesson/course_lesson.py:19 msgid "Invalid Quiz ID" msgstr "" +#: lms/lms/doctype/course_lesson/course_lesson.py:33 +msgid "Invalid Quiz ID in content" +msgstr "" + #. Label of the invite_code (Data) field in DocType 'Cohort Subgroup' #. Label of the invite_code (Data) field in DocType 'Invite Request' #: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json @@ -2605,11 +2616,6 @@ msgstr "" msgid "Is Correct" msgstr "" -#. Label of the is_onboarding_complete (Check) field in DocType 'LMS Settings' -#: lms/lms/doctype/lms_settings/lms_settings.json -msgid "Is Onboarding Complete" -msgstr "" - #. Label of the is_scorm_package (Check) field in DocType 'Course Chapter' #. Label of the is_scorm_package (Check) field in DocType 'Course Lesson' #: lms/lms/doctype/course_chapter/course_chapter.json @@ -2648,7 +2654,7 @@ msgstr "" msgid "Items in Sidebar" msgstr "" -#: frontend/src/pages/ProgramForm.vue:272 +#: frontend/src/pages/ProgramForm.vue:275 msgid "Items removed successfully" msgstr "" @@ -2675,7 +2681,7 @@ msgstr "" msgid "Job Details" msgstr "" -#: lms/www/lms.py:111 +#: lms/www/lms.py:159 msgid "Job Openings" msgstr "" @@ -2698,6 +2704,7 @@ msgstr "" #. Label of the jobs (Check) field in DocType 'LMS Settings' #: frontend/src/pages/JobDetail.vue:10 frontend/src/pages/Jobs.vue:8 +#: frontend/src/pages/Jobs.vue:170 #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Jobs" msgstr "" @@ -2921,7 +2928,6 @@ msgstr "" #: lms/job/doctype/lms_job_application/lms_job_application.json #: lms/lms/doctype/cohort_join_request/cohort_join_request.json #: lms/lms/doctype/course_chapter/course_chapter.json -#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/function/function.json #: lms/lms/doctype/industry/industry.json #: lms/lms/doctype/lms_assignment/lms_assignment.json @@ -3033,7 +3039,7 @@ msgstr "" msgid "Limit Questions To" msgstr "" -#: lms/lms/doctype/lms_quiz/lms_quiz.py:40 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:38 msgid "Limit cannot be greater than or equal to the number of questions in the quiz." msgstr "" @@ -3053,12 +3059,8 @@ msgstr "" msgid "Links" msgstr "" -#: frontend/src/pages/Quizzes.vue:149 -msgid "List of quizzes" -msgstr "" - #. Option for the 'Status' (Select) field in DocType 'Cohort' -#: frontend/src/pages/Courses.vue:278 lms/lms/doctype/cohort/cohort.json +#: frontend/src/pages/Courses.vue:281 lms/lms/doctype/cohort/cohort.json msgid "Live" msgstr "" @@ -3090,7 +3092,7 @@ msgstr "" #. Label of the location (Data) field in DocType 'Job Opportunity' #. Label of the location (Data) field in DocType 'Education Detail' #. Label of the location (Data) field in DocType 'Work Experience' -#: frontend/src/pages/JobCreation.vue:26 frontend/src/pages/JobDetail.vue:85 +#: frontend/src/pages/JobCreation.vue:26 frontend/src/pages/JobDetail.vue:92 #: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/lms/doctype/education_detail/education_detail.json #: lms/lms/doctype/work_experience/work_experience.json @@ -3112,7 +3114,7 @@ msgstr "" msgid "Login to Frappe Cloud?" msgstr "" -#: frontend/src/pages/JobDetail.vue:48 +#: frontend/src/pages/JobDetail.vue:54 msgid "Login to apply" msgstr "" @@ -3169,7 +3171,7 @@ msgstr "" #. Label of the marks (Int) field in DocType 'LMS Quiz Result' #: frontend/src/components/Modals/Question.vue:50 #: frontend/src/components/Modals/Question.vue:99 -#: frontend/src/components/Quiz.vue:96 frontend/src/pages/QuizForm.vue:390 +#: frontend/src/components/Quiz.vue:96 frontend/src/pages/QuizForm.vue:393 #: frontend/src/pages/QuizSubmission.vue:65 #: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json #: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json @@ -3231,7 +3233,7 @@ msgstr "" #. Label of the member (Link) field in DocType 'LMS Quiz Submission' #: frontend/src/pages/AssignmentSubmissionList.vue:14 #: frontend/src/pages/QuizSubmission.vue:31 -#: frontend/src/pages/QuizSubmissionList.vue:86 +#: frontend/src/pages/QuizSubmissionList.vue:102 #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_submission/exercise_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json @@ -3312,7 +3314,7 @@ msgstr "" msgid "Member Username" msgstr "" -#: frontend/src/pages/ProgramForm.vue:251 +#: frontend/src/pages/ProgramForm.vue:254 msgid "Member added to program" msgstr "" @@ -3376,6 +3378,11 @@ msgstr "" msgid "Mentor Request Status Update Template" msgstr "" +#. Label of the meta_description (Small Text) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Meta Description" +msgstr "" + #. Label of the meta_image (Attach Image) field in DocType 'LMS Batch' #: frontend/src/pages/BatchForm.vue:44 lms/lms/doctype/lms_batch/lms_batch.json #: lms/public/js/common_functions.js:362 @@ -3398,6 +3405,7 @@ msgstr "" #. Name of a role #: frontend/src/pages/ProfileRoles.vue:10 #: lms/lms/doctype/course_evaluator/course_evaluator.json +#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/lms_assignment/lms_assignment.json #: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json #: lms/lms/doctype/lms_batch/lms_batch.json @@ -3457,12 +3465,13 @@ msgstr "" #. Option for the 'Event' (Select) field in DocType 'LMS Badge' #: frontend/src/pages/Assignments.vue:18 frontend/src/pages/Batches.vue:17 -#: frontend/src/pages/Courses.vue:17 frontend/src/pages/Courses.vue:281 +#: frontend/src/pages/Courses.vue:17 frontend/src/pages/Courses.vue:284 #: frontend/src/pages/Programs.vue:14 lms/lms/doctype/lms_badge/lms_badge.json msgid "New" msgstr "" -#: frontend/src/pages/AssignmentForm.vue:178 +#: frontend/src/pages/AssignmentForm.vue:181 +#: frontend/src/pages/AssignmentForm.vue:197 msgid "New Assignment" msgstr "" @@ -3470,11 +3479,11 @@ msgstr "" msgid "New Assignment Submission" msgstr "" -#: lms/public/js/common_functions.js:255 lms/www/lms.py:89 +#: lms/public/js/common_functions.js:255 lms/www/lms.py:134 msgid "New Batch" msgstr "" -#: lms/www/lms.py:40 +#: frontend/src/pages/CourseForm.vue:577 lms/www/lms.py:78 msgid "New Course" msgstr "" @@ -3502,7 +3511,7 @@ msgstr "" msgid "New Question" msgstr "" -#: frontend/src/pages/QuizForm.vue:450 frontend/src/pages/QuizForm.vue:458 +#: frontend/src/pages/QuizForm.vue:453 frontend/src/pages/QuizForm.vue:461 #: frontend/src/pages/Quizzes.vue:18 msgid "New Quiz" msgstr "" @@ -3597,8 +3606,8 @@ msgstr "" msgid "No introduction" msgstr "" -#: frontend/src/pages/Jobs.vue:77 -msgid "No jobs posted" +#: frontend/src/pages/Jobs.vue:80 +msgid "No jobs found" msgstr "" #: frontend/src/components/LiveClass.vue:71 @@ -3613,6 +3622,10 @@ msgstr "" msgid "No programs found" msgstr "" +#: frontend/src/pages/QuizSubmissionList.vue:52 +msgid "No quiz submissions found. Please check again later." +msgstr "" + #: frontend/src/pages/Quizzes.vue:61 msgid "No quizzes found" msgstr "" @@ -3622,6 +3635,7 @@ msgid "No slots available for this date." msgstr "" #: frontend/src/pages/AssignmentSubmissionList.vue:67 +#: frontend/src/pages/QuizSubmissionList.vue:49 msgid "No submissions" msgstr "" @@ -3722,11 +3736,11 @@ msgstr "" msgid "Only files of type {0} will be accepted." msgstr "" -#: frontend/src/pages/CourseForm.vue:509 frontend/src/utils/index.js:549 +#: frontend/src/pages/CourseForm.vue:507 frontend/src/utils/index.js:550 msgid "Only image file is allowed." msgstr "" -#: frontend/src/components/Modals/ChapterModal.vue:218 +#: frontend/src/components/Modals/ChapterModal.vue:221 msgid "Only zip files are allowed" msgstr "" @@ -3784,7 +3798,7 @@ msgstr "" msgid "Order ID" msgstr "" -#: frontend/src/pages/JobDetail.vue:74 +#: frontend/src/pages/JobDetail.vue:81 msgid "Organisation" msgstr "" @@ -3833,7 +3847,7 @@ msgid "Paid Batch" msgstr "" #. Label of the paid_certificate (Check) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:218 +#: frontend/src/pages/CourseForm.vue:214 #: lms/lms/doctype/lms_course/lms_course.json msgid "Paid Certificate" msgstr "" @@ -3843,7 +3857,7 @@ msgid "Paid Certificate after Evaluation" msgstr "" #. Label of the paid_course (Check) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:208 +#: frontend/src/pages/CourseForm.vue:204 #: lms/lms/doctype/lms_course/lms_course.json msgid "Paid Course" msgstr "" @@ -3853,7 +3867,7 @@ msgid "Pan Number" msgstr "" #. Option for the 'Type' (Select) field in DocType 'Job Opportunity' -#: frontend/src/pages/Jobs.vue:145 +#: frontend/src/pages/Jobs.vue:162 #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Part Time" msgstr "" @@ -3875,7 +3889,7 @@ msgstr "" #. Label of the passing_percentage (Int) field in DocType 'LMS Quiz' #. Label of the passing_percentage (Int) field in DocType 'LMS Quiz Submission' -#: frontend/src/pages/QuizForm.vue:72 frontend/src/pages/Quizzes.vue:127 +#: frontend/src/pages/QuizForm.vue:72 frontend/src/pages/Quizzes.vue:129 #: lms/lms/doctype/lms_quiz/lms_quiz.json #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json msgid "Passing Percentage" @@ -3886,7 +3900,7 @@ msgstr "" msgid "Password" msgstr "" -#: frontend/src/pages/CourseForm.vue:113 +#: frontend/src/pages/CourseForm.vue:109 msgid "Paste the youtube link of a short video introducing the course" msgstr "" @@ -3978,7 +3992,7 @@ msgstr "" #. Label of the percentage (Int) field in DocType 'LMS Quiz Submission' #: frontend/src/pages/QuizSubmission.vue:44 -#: frontend/src/pages/QuizSubmissionList.vue:97 +#: frontend/src/pages/QuizSubmissionList.vue:113 #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json msgid "Percentage" msgstr "" @@ -4000,7 +4014,7 @@ msgstr "" msgid "Please Login" msgstr "" -#: lms/lms/doctype/lms_settings/lms_settings.py:33 +#: lms/lms/doctype/lms_settings/lms_settings.py:34 msgid "Please add {1} for {3} to send calendar invites for evaluations." msgstr "" @@ -4024,7 +4038,7 @@ msgstr "" msgid "Please enable Zoom Settings to use this feature." msgstr "" -#: frontend/src/components/CourseOutline.vue:324 +#: frontend/src/components/CourseOutline.vue:325 msgid "Please enroll for this course to view this lesson" msgstr "" @@ -4061,7 +4075,7 @@ msgstr "" msgid "Please install the Payments app to create a paid courses." msgstr "" -#: frontend/src/pages/Billing.vue:253 +#: frontend/src/pages/Billing.vue:254 msgid "Please let us know where you heard about us from." msgstr "" @@ -4110,7 +4124,7 @@ msgstr "" msgid "Please take appropriate action at {0}" msgstr "" -#: frontend/src/components/Modals/ChapterModal.vue:175 +#: frontend/src/components/Modals/ChapterModal.vue:178 msgid "Please upload a SCORM package" msgstr "" @@ -4156,7 +4170,7 @@ msgstr "" msgid "Postal Code" msgstr "" -#: frontend/src/pages/JobDetail.vue:107 +#: frontend/src/pages/JobDetail.vue:114 msgid "Posted on" msgstr "" @@ -4191,7 +4205,7 @@ msgstr "" msgid "Preview Image" msgstr "" -#: frontend/src/pages/CourseForm.vue:111 +#: frontend/src/pages/CourseForm.vue:107 msgid "Preview Video" msgstr "" @@ -4206,7 +4220,7 @@ msgid "Pricing" msgstr "" #. Label of the pricing_tab (Tab Break) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:202 +#: frontend/src/pages/CourseForm.vue:198 #: lms/lms/doctype/lms_course/lms_course.json msgid "Pricing and Certification" msgstr "" @@ -4270,6 +4284,10 @@ msgstr "" msgid "Program Members" msgstr "" +#: frontend/src/pages/Programs.vue:219 lms/www/lms.py:273 +msgid "Programs" +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/BatchStudents.vue:75 @@ -4299,7 +4317,7 @@ msgstr "" #. Label of the published (Check) field in DocType 'LMS Course' #: frontend/src/components/Modals/BulkCertificates.vue:51 #: frontend/src/components/Modals/Event.vue:108 -#: frontend/src/pages/BatchForm.vue:27 frontend/src/pages/CourseForm.vue:172 +#: frontend/src/pages/BatchForm.vue:27 frontend/src/pages/CourseForm.vue:168 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/public/js/common_functions.js:266 @@ -4312,7 +4330,7 @@ msgid "Published Courses" msgstr "" #. Label of the published_on (Date) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:176 +#: frontend/src/pages/CourseForm.vue:172 #: lms/lms/doctype/lms_course/lms_course.json msgid "Published On" msgstr "" @@ -4331,7 +4349,7 @@ msgstr "" #. Label of the question (Text) field in DocType 'LMS Quiz Result' #: frontend/src/components/Assignment.vue:20 #: frontend/src/components/Modals/Question.vue:38 -#: frontend/src/pages/AssignmentForm.vue:45 frontend/src/pages/QuizForm.vue:385 +#: frontend/src/pages/AssignmentForm.vue:45 frontend/src/pages/QuizForm.vue:388 #: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/lms_assignment/lms_assignment.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json @@ -4356,11 +4374,11 @@ msgstr "" msgid "Question Name" msgstr "" -#: frontend/src/components/Modals/Question.vue:267 +#: frontend/src/components/Modals/Question.vue:270 msgid "Question added successfully" msgstr "" -#: frontend/src/components/Modals/Question.vue:319 +#: frontend/src/components/Modals/Question.vue:322 msgid "Question updated successfully" msgstr "" @@ -4377,7 +4395,7 @@ msgstr "" msgid "Questions" msgstr "" -#: frontend/src/pages/QuizForm.vue:427 +#: frontend/src/pages/QuizForm.vue:430 msgid "Questions deleted successfully" msgstr "" @@ -4395,13 +4413,13 @@ msgid "Quiz ID" msgstr "" #. Label of a Link in the LMS Workspace -#: frontend/src/pages/QuizPage.vue:56 frontend/src/pages/QuizPage.vue:62 -#: lms/lms/workspace/lms/lms.json +#: frontend/src/pages/QuizPage.vue:57 lms/lms/workspace/lms/lms.json msgid "Quiz Submission" msgstr "" -#: frontend/src/pages/QuizSubmission.vue:128 -#: frontend/src/pages/QuizSubmissionList.vue:106 +#: frontend/src/pages/QuizSubmission.vue:131 +#: frontend/src/pages/QuizSubmissionList.vue:122 +#: frontend/src/pages/QuizSubmissionList.vue:127 msgid "Quiz Submissions" msgstr "" @@ -4414,7 +4432,7 @@ msgstr "" msgid "Quiz Title" msgstr "" -#: frontend/src/pages/QuizForm.vue:339 +#: frontend/src/pages/QuizForm.vue:342 msgid "Quiz created successfully" msgstr "" @@ -4422,7 +4440,7 @@ msgstr "" msgid "Quiz is not available to Guest users. Please login to continue." msgstr "" -#: frontend/src/pages/QuizForm.vue:358 +#: frontend/src/pages/QuizForm.vue:361 msgid "Quiz updated successfully" msgstr "" @@ -4432,8 +4450,8 @@ msgid "Quiz will appear at the bottom of the lesson." msgstr "" #: frontend/src/components/AppSidebar.vue:530 -#: frontend/src/pages/QuizForm.vue:438 frontend/src/pages/Quizzes.vue:138 -#: frontend/src/pages/Quizzes.vue:148 +#: frontend/src/pages/QuizForm.vue:441 frontend/src/pages/Quizzes.vue:140 +#: frontend/src/pages/Quizzes.vue:150 lms/www/lms.py:229 msgid "Quizzes" msgstr "" @@ -4511,7 +4529,7 @@ msgstr "" msgid "Related Courses" msgstr "" -#: frontend/src/pages/BatchForm.vue:77 frontend/src/pages/CourseForm.vue:100 +#: frontend/src/pages/BatchForm.vue:77 frontend/src/pages/CourseForm.vue:96 msgid "Remove" msgstr "" @@ -4605,7 +4623,7 @@ msgstr "" msgid "Row #{0} Start time cannot be outside the batch duration." msgstr "" -#: lms/lms/doctype/lms_quiz/lms_quiz.py:34 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:32 msgid "Rows {0} have the duplicate questions." msgstr "" @@ -4629,6 +4647,11 @@ msgstr "" msgid "SCORM Package Path" msgstr "" +#. Label of the seo_tab (Tab Break) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "SEO" +msgstr "" + #. Option for the 'Day' (Select) field in DocType 'Evaluator Schedule' #. Option for the 'Day' (Select) field in DocType 'LMS Certificate Request' #: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json @@ -4642,7 +4665,7 @@ msgstr "" #: frontend/src/components/Modals/Event.vue:101 #: frontend/src/components/Modals/Event.vue:129 #: frontend/src/pages/AssignmentForm.vue:21 frontend/src/pages/BatchForm.vue:8 -#: frontend/src/pages/CourseForm.vue:21 frontend/src/pages/JobCreation.vue:8 +#: frontend/src/pages/CourseForm.vue:17 frontend/src/pages/JobCreation.vue:8 #: frontend/src/pages/LessonForm.vue:14 frontend/src/pages/ProgramForm.vue:7 #: frontend/src/pages/QuizForm.vue:34 frontend/src/pages/QuizSubmission.vue:14 #: lms/public/js/common_functions.js:405 @@ -4671,7 +4694,7 @@ msgstr "" #. Label of the score (Int) field in DocType 'LMS Quiz Submission' #: frontend/src/pages/QuizSubmission.vue:39 -#: frontend/src/pages/QuizSubmissionList.vue:91 +#: frontend/src/pages/QuizSubmissionList.vue:107 #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json #: lms/templates/quiz/quiz.html:148 msgid "Score" @@ -4765,7 +4788,7 @@ msgstr "" #: frontend/src/components/AppSidebar.vue:556 #: frontend/src/components/Modals/Settings.vue:7 -#: frontend/src/pages/BatchForm.vue:148 frontend/src/pages/CourseForm.vue:162 +#: frontend/src/pages/BatchForm.vue:148 frontend/src/pages/CourseForm.vue:158 #: frontend/src/pages/ProfileRoles.vue:4 frontend/src/pages/QuizForm.vue:79 msgid "Settings" msgstr "" @@ -4779,7 +4802,7 @@ msgid "Short Description" msgstr "" #. Label of the short_introduction (Small Text) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:39 +#: frontend/src/pages/CourseForm.vue:35 #: lms/lms/doctype/lms_course/lms_course.json msgid "Short Introduction" msgstr "" @@ -4890,10 +4913,6 @@ msgstr "" msgid "Skip" msgstr "" -#: frontend/src/components/OnboardingBanner.vue:3 -msgid "Skip Onboarding" -msgstr "" - #: lms/lms/doctype/course_evaluator/course_evaluator.py:63 msgid "Slot Times are overlapping for some schedules." msgstr "" @@ -5007,8 +5026,9 @@ msgstr "" #. Label of the tab_4_tab (Tab Break) field in DocType 'LMS Course' #. Label of the statistics (Check) field in DocType 'LMS Settings' #: frontend/src/components/BatchStudents.vue:5 +#: frontend/src/pages/Statistics.vue:322 #: lms/lms/doctype/lms_course/lms_course.json -#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:136 +#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:182 msgid "Statistics" msgstr "" @@ -5108,7 +5128,7 @@ msgstr "" #: frontend/src/components/Modals/AssessmentModal.vue:9 #: frontend/src/components/Modals/BatchCourseModal.vue:9 #: frontend/src/components/Modals/EvaluationModal.vue:9 -#: frontend/src/components/Modals/Question.vue:341 +#: frontend/src/components/Modals/Question.vue:344 #: frontend/src/components/Quiz.vue:218 lms/templates/assignment.html:9 #: lms/templates/livecode/extension_footer.html:25 #: lms/templates/quiz/quiz.html:128 lms/templates/reviews.html:163 @@ -5133,18 +5153,18 @@ msgstr "" #: frontend/src/components/Modals/AnnouncementModal.vue:99 #: frontend/src/components/Modals/AssessmentModal.vue:73 #: frontend/src/components/Modals/BulkCertificates.vue:121 -#: frontend/src/components/Modals/ChapterModal.vue:151 -#: frontend/src/components/Modals/ChapterModal.vue:196 +#: frontend/src/components/Modals/ChapterModal.vue:154 +#: frontend/src/components/Modals/ChapterModal.vue:199 #: frontend/src/components/Modals/Event.vue:255 #: frontend/src/components/Modals/Event.vue:310 -#: frontend/src/components/Modals/Question.vue:267 -#: frontend/src/components/Modals/Question.vue:318 -#: frontend/src/pages/AssignmentForm.vue:155 -#: frontend/src/pages/CourseForm.vue:472 frontend/src/pages/ProgramForm.vue:229 -#: frontend/src/pages/ProgramForm.vue:251 -#: frontend/src/pages/ProgramForm.vue:272 -#: frontend/src/pages/ProgramForm.vue:298 frontend/src/pages/QuizForm.vue:339 -#: frontend/src/pages/QuizForm.vue:358 frontend/src/pages/QuizForm.vue:427 +#: frontend/src/components/Modals/Question.vue:270 +#: frontend/src/components/Modals/Question.vue:321 +#: frontend/src/pages/AssignmentForm.vue:158 +#: frontend/src/pages/CourseForm.vue:470 frontend/src/pages/ProgramForm.vue:232 +#: frontend/src/pages/ProgramForm.vue:254 +#: frontend/src/pages/ProgramForm.vue:275 +#: frontend/src/pages/ProgramForm.vue:301 frontend/src/pages/QuizForm.vue:342 +#: frontend/src/pages/QuizForm.vue:361 frontend/src/pages/QuizForm.vue:430 msgid "Success" msgstr "" @@ -5162,7 +5182,7 @@ msgstr "" msgid "Sunday" msgstr "" -#: lms/lms/api.py:1026 +#: lms/lms/api.py:1027 msgid "Suspicious pattern found in {0}: {1}" msgstr "" @@ -5218,7 +5238,7 @@ msgid "System Manager" msgstr "" #. Label of the tags (Data) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:121 +#: frontend/src/pages/CourseForm.vue:117 #: lms/lms/doctype/lms_course/lms_course.json msgid "Tags" msgstr "" @@ -5323,6 +5343,10 @@ msgstr "" msgid "There are no courses matching the criteria. Keep an eye out, fresh learning experiences are on the way soon!" msgstr "" +#: frontend/src/pages/Jobs.vue:84 +msgid "There are no jobs available at the moment. Open a job opportunity or check here again later." +msgstr "" + #: frontend/src/pages/CertifiedParticipants.vue:92 msgid "There are no participants matching this criteria." msgstr "" @@ -5382,8 +5406,10 @@ msgstr "" msgid "This course is free." msgstr "" -#: frontend/src/pages/SCORMChapter.vue:201 -msgid "This is a chapter in the course {0}" +#. Description of the 'Meta Description' (Small Text) field in DocType 'LMS +#. Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "This description will be shown on lists and pages without meta description" msgstr "" #: frontend/src/pages/Lesson.vue:16 @@ -5480,10 +5506,10 @@ msgstr "" #: frontend/src/components/Modals/DiscussionModal.vue:18 #: frontend/src/components/Modals/LiveClassModal.vue:23 #: frontend/src/pages/AssignmentForm.vue:32 -#: frontend/src/pages/Assignments.vue:152 frontend/src/pages/BatchForm.vue:19 -#: frontend/src/pages/CourseForm.vue:33 frontend/src/pages/JobCreation.vue:20 +#: frontend/src/pages/Assignments.vue:155 frontend/src/pages/BatchForm.vue:19 +#: frontend/src/pages/CourseForm.vue:29 frontend/src/pages/JobCreation.vue:20 #: frontend/src/pages/ProgramForm.vue:11 frontend/src/pages/Programs.vue:116 -#: frontend/src/pages/QuizForm.vue:48 frontend/src/pages/Quizzes.vue:116 +#: frontend/src/pages/QuizForm.vue:48 frontend/src/pages/Quizzes.vue:118 #: lms/lms/doctype/cohort/cohort.json #: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json #: lms/lms/doctype/cohort_web_page/cohort_web_page.json @@ -5505,7 +5531,7 @@ msgstr "" msgid "Title" msgstr "" -#: frontend/src/components/Modals/ChapterModal.vue:172 +#: frontend/src/components/Modals/ChapterModal.vue:175 msgid "Title is required" msgstr "" @@ -5537,7 +5563,7 @@ msgid "Total" msgstr "" #. Label of the total_marks (Int) field in DocType 'LMS Quiz' -#: frontend/src/pages/QuizForm.vue:67 frontend/src/pages/Quizzes.vue:121 +#: frontend/src/pages/QuizForm.vue:67 frontend/src/pages/Quizzes.vue:123 #: lms/lms/doctype/lms_quiz/lms_quiz.json msgid "Total Marks" msgstr "" @@ -5575,7 +5601,7 @@ msgstr "" #: frontend/src/components/Modals/AssessmentModal.vue:22 #: frontend/src/components/Modals/Question.vue:54 #: frontend/src/pages/AssignmentForm.vue:39 -#: frontend/src/pages/Assignments.vue:30 frontend/src/pages/Assignments.vue:157 +#: frontend/src/pages/Assignments.vue:30 frontend/src/pages/Assignments.vue:160 #: frontend/src/pages/JobCreation.vue:33 frontend/src/pages/Jobs.vue:55 #: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/lms/doctype/lms_assignment/lms_assignment.json @@ -5622,7 +5648,7 @@ msgstr "" msgid "Unlisted" msgstr "" -#: frontend/src/pages/Batches.vue:293 +#: frontend/src/pages/Batches.vue:295 msgid "Unpublished" msgstr "" @@ -5644,8 +5670,8 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'Cohort' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request' #. Label of the upcoming (Check) field in DocType 'LMS Course' -#: frontend/src/pages/Batches.vue:291 frontend/src/pages/CourseForm.vue:185 -#: frontend/src/pages/Courses.vue:284 lms/lms/doctype/cohort/cohort.json +#: frontend/src/pages/Batches.vue:293 frontend/src/pages/CourseForm.vue:181 +#: frontend/src/pages/Courses.vue:287 lms/lms/doctype/cohort/cohort.json #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_course/lms_course.json msgid "Upcoming" @@ -5670,7 +5696,7 @@ msgstr "" msgid "Update Password" msgstr "" -#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:81 +#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:77 msgid "Upload" msgstr "" @@ -5776,6 +5802,10 @@ msgstr "" msgid "Visit Batch" msgstr "" +#: frontend/src/pages/JobDetail.vue:38 +msgid "Visit Website" +msgstr "" + #: lms/templates/emails/batch_confirmation.html:23 msgid "Visit the following link to view your " msgstr "" @@ -5897,7 +5927,7 @@ msgstr "" msgid "You are not a mentor of the course {0}" msgstr "" -#: frontend/src/components/CourseOutline.vue:323 +#: frontend/src/components/CourseOutline.vue:324 msgid "You are not enrolled" msgstr "" @@ -6121,11 +6151,7 @@ msgstr "" msgid "out of" msgstr "" -#: frontend/src/components/JobCard.vue:30 -msgid "posted" -msgstr "" - -#: frontend/src/pages/QuizForm.vue:386 +#: frontend/src/pages/QuizForm.vue:389 msgid "question_detail" msgstr "" @@ -6145,7 +6171,7 @@ msgstr "" msgid "you can" msgstr "" -#: lms/lms/api.py:816 lms/lms/api.py:824 +#: lms/lms/api.py:817 lms/lms/api.py:825 msgid "{0} Settings not found" msgstr "" diff --git a/lms/locale/pl.po b/lms/locale/pl.po index 9acfc30d..b0646a2f 100644 --- a/lms/locale/pl.po +++ b/lms/locale/pl.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n" -"POT-Creation-Date: 2025-04-04 16:04+0000\n" -"PO-Revision-Date: 2025-04-08 03:58\n" +"POT-Creation-Date: 2025-04-11 16:04+0000\n" +"PO-Revision-Date: 2025-04-14 06:01\n" "Last-Translator: jannat@frappe.io\n" "Language-Team: Polish\n" "MIME-Version: 1.0\n" @@ -71,7 +71,7 @@ msgstr "" msgid "A course cannot have both paid certificate and certificate of completion." msgstr "" -#: frontend/src/pages/CourseForm.vue:41 +#: frontend/src/pages/CourseForm.vue:37 msgid "A one line introduction to the course that appears on the course card" msgstr "" @@ -145,7 +145,6 @@ msgid "Add a Student" msgstr "" #: frontend/src/components/AppSidebar.vue:514 -#: frontend/src/components/OnboardingBanner.vue:56 msgid "Add a chapter" msgstr "" @@ -153,16 +152,15 @@ msgstr "" msgid "Add a course" msgstr "" -#: frontend/src/pages/CourseForm.vue:137 +#: frontend/src/pages/CourseForm.vue:133 msgid "Add a keyword and then press enter" msgstr "" #: frontend/src/components/AppSidebar.vue:515 -#: frontend/src/components/OnboardingBanner.vue:81 msgid "Add a lesson" msgstr "" -#: frontend/src/components/Modals/Question.vue:146 +#: frontend/src/components/Modals/Question.vue:147 #: frontend/src/pages/QuizForm.vue:183 msgid "Add a new question" msgstr "" @@ -235,7 +233,7 @@ msgid "Admin" msgstr "" #. Name of a role -#: frontend/src/pages/Batches.vue:282 lms/lms/doctype/lms_badge/lms_badge.json +#: frontend/src/pages/Batches.vue:284 lms/lms/doctype/lms_badge/lms_badge.json msgid "All" msgstr "" @@ -259,7 +257,7 @@ msgstr "" msgid "All Submissions" msgstr "" -#: lms/lms/doctype/lms_quiz/lms_quiz.py:46 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:44 msgid "All questions should have the same marks if the limit is set." msgstr "" @@ -289,12 +287,12 @@ msgstr "" #: lms/lms/user.py:34 msgid "Already Registered" -msgstr "" +msgstr "Już zarejestrowano" #. Label of the amount (Currency) field in DocType 'LMS Batch' #. Label of the course_price (Currency) field in DocType 'LMS Course' #. Label of the amount (Currency) field in DocType 'LMS Payment' -#: frontend/src/pages/BatchForm.vue:209 frontend/src/pages/CourseForm.vue:221 +#: frontend/src/pages/BatchForm.vue:209 frontend/src/pages/CourseForm.vue:217 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_payment/lms_payment.json @@ -346,7 +344,7 @@ msgstr "" msgid "Answer" msgstr "" -#: frontend/src/pages/CourseForm.vue:85 frontend/src/pages/CourseForm.vue:103 +#: frontend/src/pages/CourseForm.vue:81 frontend/src/pages/CourseForm.vue:99 msgid "Appears on the course card in the course list" msgstr "" @@ -354,13 +352,13 @@ msgstr "" msgid "Appears when the batch URL is shared on any online platform" msgstr "" -#: frontend/src/pages/JobDetail.vue:121 +#: frontend/src/pages/JobDetail.vue:128 msgid "Applications Received" msgstr "" -#: frontend/src/pages/JobDetail.vue:42 +#: frontend/src/pages/JobDetail.vue:48 msgid "Apply" -msgstr "" +msgstr "Zastosuj" #. Label of the apply_gst (Check) field in DocType 'LMS Settings' #: lms/lms/doctype/lms_settings/lms_settings.json @@ -389,9 +387,9 @@ msgstr "" msgid "Apps" msgstr "" -#: frontend/src/pages/Batches.vue:292 +#: frontend/src/pages/Batches.vue:294 msgid "Archived" -msgstr "" +msgstr "W archiwum" #: frontend/src/components/UpcomingEvaluations.vue:170 msgid "Are you sure you want to cancel this evaluation? This action cannot be undone." @@ -399,12 +397,7 @@ msgstr "" #: frontend/src/components/UserDropdown.vue:175 msgid "Are you sure you want to login to your Frappe Cloud dashboard?" -msgstr "" - -#. Label of the user_category (Check) field in DocType 'LMS Settings' -#: lms/lms/doctype/lms_settings/lms_settings.json -msgid "Ask User Category during Signup" -msgstr "" +msgstr "Czy na pewno chcesz zalogować się do panelu Frappe Cloud?" #. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch' #. Label of the assessment (Table) field in DocType 'LMS Batch' @@ -470,6 +463,10 @@ msgstr "" msgid "Assignment Submission Template" msgstr "" +#: frontend/src/pages/AssignmentSubmissionList.vue:223 +msgid "Assignment Submissions" +msgstr "" + #. Label of the assignment_title (Data) field in DocType 'LMS Assignment #. Submission' #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json @@ -480,7 +477,7 @@ msgstr "" msgid "Assignment for Lesson {0} by {1} already exists." msgstr "" -#: frontend/src/pages/AssignmentForm.vue:155 +#: frontend/src/pages/AssignmentForm.vue:158 msgid "Assignment saved successfully" msgstr "" @@ -490,9 +487,10 @@ msgid "Assignment will appear at the bottom of the lesson." msgstr "" #: frontend/src/components/AppSidebar.vue:531 -#: frontend/src/pages/AssignmentForm.vue:174 +#: frontend/src/pages/AssignmentForm.vue:177 +#: frontend/src/pages/Assignments.vue:193 lms/www/lms.py:251 msgid "Assignments" -msgstr "" +msgstr "Przydziały" #: lms/lms/doctype/lms_question/lms_question.py:43 msgid "At least one option must be correct for this question." @@ -656,8 +654,8 @@ msgid "Batch:" msgstr "Grupa:" #. Label of the batches (Check) field in DocType 'LMS Settings' -#: frontend/src/pages/Batches.vue:302 -#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:63 +#: frontend/src/pages/Batches.vue:304 frontend/src/pages/Batches.vue:311 +#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:105 msgid "Batches" msgstr "" @@ -675,7 +673,7 @@ msgstr "" #. Label of the billing_details_section (Section Break) field in DocType 'LMS #. Payment' -#: frontend/src/pages/Billing.vue:8 +#: frontend/src/pages/Billing.vue:8 frontend/src/pages/Billing.vue:363 #: lms/lms/doctype/lms_payment/lms_payment.json msgid "Billing Details" msgstr "" @@ -757,8 +755,9 @@ msgstr "" #. Label of the category (Link) field in DocType 'LMS Course' #: frontend/src/pages/BatchForm.vue:190 frontend/src/pages/Batches.vue:55 #: frontend/src/pages/CertifiedParticipants.vue:37 -#: frontend/src/pages/CourseForm.vue:148 frontend/src/pages/Courses.vue:51 -#: frontend/src/pages/JobDetail.vue:96 lms/lms/doctype/lms_batch/lms_batch.json +#: frontend/src/pages/CourseForm.vue:144 frontend/src/pages/Courses.vue:51 +#: frontend/src/pages/JobDetail.vue:103 +#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/public/js/common_functions.js:316 lms/templates/signup-form.html:22 @@ -813,7 +812,7 @@ msgstr "" #: frontend/src/components/Modals/Event.vue:371 #: frontend/src/pages/BatchForm.vue:37 frontend/src/pages/Batches.vue:38 #: frontend/src/pages/CourseCertification.vue:10 -#: frontend/src/pages/CourseCertification.vue:133 +#: frontend/src/pages/CourseCertification.vue:135 #: frontend/src/pages/Courses.vue:34 lms/fixtures/custom_field.json #: lms/lms/doctype/certification/certification.json #: lms/lms/doctype/lms_batch/lms_batch.json @@ -837,7 +836,8 @@ msgid "Certified" msgstr "" #. Label of the certified_participants (Check) field in DocType 'LMS Settings' -#: frontend/src/pages/CertifiedParticipants.vue:161 +#: frontend/src/pages/CertifiedParticipants.vue:164 +#: frontend/src/pages/CertifiedParticipants.vue:171 #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Certified Participants" msgstr "" @@ -864,11 +864,11 @@ msgstr "" msgid "Chapter Reference" msgstr "" -#: frontend/src/components/Modals/ChapterModal.vue:152 +#: frontend/src/components/Modals/ChapterModal.vue:155 msgid "Chapter added successfully" msgstr "" -#: frontend/src/components/Modals/ChapterModal.vue:196 +#: frontend/src/components/Modals/ChapterModal.vue:199 msgid "Chapter updated successfully" msgstr "" @@ -923,7 +923,7 @@ msgstr "" #: frontend/src/components/Controls/Link.vue:49 msgid "Clear" -msgstr "" +msgstr "Jasny" #. Option for the 'Role Preference' (Select) field in DocType 'User' #: lms/fixtures/custom_field.json @@ -1117,7 +1117,7 @@ msgid "Completed by Students" msgstr "" #. Label of the enable_certification (Check) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:213 +#: frontend/src/pages/CourseForm.vue:209 #: lms/lms/doctype/lms_course/lms_course.json msgid "Completion Certificate" msgstr "" @@ -1145,7 +1145,7 @@ msgstr "" #: frontend/src/components/UserDropdown.vue:180 msgid "Confirm" -msgstr "" +msgstr "Potwierdź" #. Label of the confirmation_email_sent (Check) field in DocType 'LMS Batch #. Enrollment' @@ -1179,7 +1179,7 @@ msgid "Continue Learning" msgstr "" #. Option for the 'Type' (Select) field in DocType 'Job Opportunity' -#: frontend/src/pages/Jobs.vue:146 +#: frontend/src/pages/Jobs.vue:163 #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Contract" msgstr "" @@ -1294,6 +1294,7 @@ msgstr "" #. Name of a role #: frontend/src/pages/ProfileRoles.vue:16 #: lms/lms/doctype/course_chapter/course_chapter.json +#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_program/lms_program.json @@ -1307,7 +1308,7 @@ msgstr "" msgid "Course Data" msgstr "" -#: frontend/src/pages/CourseForm.vue:50 +#: frontend/src/pages/CourseForm.vue:46 msgid "Course Description" msgstr "" @@ -1316,7 +1317,7 @@ msgstr "" msgid "Course Evaluator" msgstr "" -#: frontend/src/pages/CourseForm.vue:63 +#: frontend/src/pages/CourseForm.vue:59 msgid "Course Image" msgstr "" @@ -1330,7 +1331,7 @@ msgstr "" msgid "Course Lesson" msgstr "" -#: lms/www/lms.py:30 +#: lms/www/lms.py:70 msgid "Course List" msgstr "" @@ -1338,7 +1339,7 @@ msgstr "" msgid "Course Name" msgstr "" -#: frontend/src/pages/CourseDetail.vue:76 frontend/src/pages/CourseForm.vue:241 +#: frontend/src/pages/CourseDetail.vue:76 frontend/src/pages/CourseForm.vue:237 msgid "Course Outline" msgstr "" @@ -1370,7 +1371,7 @@ msgstr "" msgid "Course Title" msgstr "" -#: frontend/src/pages/ProgramForm.vue:229 +#: frontend/src/pages/ProgramForm.vue:232 msgid "Course added to program" msgstr "" @@ -1378,11 +1379,11 @@ msgstr "" msgid "Course already added to the batch." msgstr "" -#: frontend/src/pages/CourseForm.vue:472 +#: frontend/src/pages/CourseForm.vue:470 msgid "Course deleted successfully" msgstr "" -#: frontend/src/pages/ProgramForm.vue:298 +#: frontend/src/pages/ProgramForm.vue:301 msgid "Course moved successfully" msgstr "" @@ -1400,8 +1401,9 @@ msgstr "" #: frontend/src/components/BatchStudents.vue:92 #: frontend/src/components/Modals/BatchStudentProgress.vue:79 #: frontend/src/pages/BatchDetail.vue:21 frontend/src/pages/BatchDetail.vue:70 -#: frontend/src/pages/CourseCertification.vue:125 -#: frontend/src/pages/Courses.vue:301 frontend/src/pages/Statistics.vue:21 +#: frontend/src/pages/CourseCertification.vue:127 +#: frontend/src/pages/Courses.vue:304 frontend/src/pages/Courses.vue:311 +#: frontend/src/pages/Statistics.vue:21 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Courses" @@ -1443,7 +1445,6 @@ msgid "Create a batch" msgstr "" #: frontend/src/components/AppSidebar.vue:513 -#: frontend/src/components/OnboardingBanner.vue:30 msgid "Create a course" msgstr "" @@ -1467,9 +1468,9 @@ msgstr "" msgid "Create your first quiz" msgstr "" -#: frontend/src/pages/Assignments.vue:163 frontend/src/pages/Courses.vue:292 +#: frontend/src/pages/Assignments.vue:166 frontend/src/pages/Courses.vue:295 msgid "Created" -msgstr "" +msgstr "utworzył(a)" #: frontend/src/components/AppSidebar.vue:519 msgid "Creating a batch" @@ -1482,7 +1483,7 @@ msgstr "" #. Label of the currency (Link) field in DocType 'LMS Batch' #. Label of the currency (Link) field in DocType 'LMS Course' #. Label of the currency (Link) field in DocType 'LMS Payment' -#: frontend/src/pages/BatchForm.vue:217 frontend/src/pages/CourseForm.vue:226 +#: frontend/src/pages/BatchForm.vue:217 frontend/src/pages/CourseForm.vue:222 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_payment/lms_payment.json @@ -1502,7 +1503,7 @@ msgstr "" #. Label of the custom_component (Code) field in DocType 'LMS Batch' #: lms/lms/doctype/lms_batch/lms_batch.json msgid "Custom HTML" -msgstr "" +msgstr "Niestandardowy HTML" #. Label of the custom_script (Code) field in DocType 'LMS Batch' #: lms/lms/doctype/lms_batch/lms_batch.json @@ -1585,9 +1586,9 @@ msgstr "" msgid "Degree Type" msgstr "" -#: frontend/src/components/CourseOutline.vue:247 -#: frontend/src/components/CourseOutline.vue:305 -#: frontend/src/pages/CourseForm.vue:485 +#: frontend/src/components/CourseOutline.vue:248 +#: frontend/src/components/CourseOutline.vue:306 +#: frontend/src/pages/CourseForm.vue:483 msgid "Delete" msgstr "" @@ -1595,27 +1596,27 @@ msgstr "" msgid "Delete Chapter" msgstr "" -#: frontend/src/pages/CourseForm.vue:479 +#: frontend/src/pages/CourseForm.vue:477 msgid "Delete Course" msgstr "" -#: frontend/src/components/CourseOutline.vue:299 +#: frontend/src/components/CourseOutline.vue:300 msgid "Delete this chapter?" msgstr "" -#: frontend/src/components/CourseOutline.vue:241 +#: frontend/src/components/CourseOutline.vue:242 msgid "Delete this lesson?" msgstr "" -#: frontend/src/pages/CourseForm.vue:480 +#: frontend/src/pages/CourseForm.vue:478 msgid "Deleting the course will also delete all its chapters and lessons. Are you sure you want to delete this course?" msgstr "" -#: frontend/src/components/CourseOutline.vue:300 +#: frontend/src/components/CourseOutline.vue:301 msgid "Deleting this chapter will also delete all its lessons and permanently remove it from the course. This action cannot be undone. Are you sure you want to continue?" msgstr "" -#: frontend/src/components/CourseOutline.vue:242 +#: frontend/src/components/CourseOutline.vue:243 msgid "Deleting this lesson will permanently remove it from the course. This action cannot be undone. Are you sure you want to continue?" msgstr "" @@ -1654,11 +1655,11 @@ msgstr "" #: frontend/src/components/Modals/DiscussionModal.vue:22 #: frontend/src/pages/AssignmentForm.vue:27 frontend/src/pages/BatchForm.vue:14 -#: frontend/src/pages/CourseForm.vue:29 frontend/src/pages/QuizForm.vue:42 +#: frontend/src/pages/CourseForm.vue:25 frontend/src/pages/QuizForm.vue:42 msgid "Details" msgstr "Szczegóły" -#: frontend/src/pages/CourseForm.vue:195 +#: frontend/src/pages/CourseForm.vue:191 msgid "Disable Self Enrollment" msgstr "" @@ -1667,6 +1668,11 @@ msgstr "" msgid "Disable Self Learning" msgstr "" +#. Label of the disable_signup (Check) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Disable Signup" +msgstr "" + #. Label of the disabled (Check) field in DocType 'Job Opportunity' #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Disabled" @@ -1675,7 +1681,7 @@ msgstr "" #: frontend/src/components/DiscussionReplies.vue:55 #: lms/lms/widgets/NoPreviewModal.html:25 lms/templates/reviews.html:159 msgid "Discard" -msgstr "" +msgstr "Odrzucać" #. Label of the show_discussions (Check) field in DocType 'LMS Settings' #: frontend/src/pages/Batch.vue:85 @@ -1749,7 +1755,7 @@ msgstr "" #: frontend/src/pages/Profile.vue:68 msgid "Edit Profile" -msgstr "" +msgstr "Edytuj profil" #: frontend/src/pages/QuizForm.vue:182 msgid "Edit the question" @@ -1777,7 +1783,7 @@ msgstr "" #: frontend/src/components/Modals/Event.vue:16 msgid "Email ID" -msgstr "" +msgstr "ID e-mail" #. Label of the email_sent (Check) field in DocType 'LMS Course Interest' #: lms/lms/doctype/lms_course_interest/lms_course_interest.json @@ -1796,7 +1802,7 @@ msgstr "" #. Label of the show_emails (Check) field in DocType 'LMS Settings' #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Emails" -msgstr "" +msgstr "E-maile" #. Option for the 'User Category' (Select) field in DocType 'User' #: lms/fixtures/custom_field.json lms/templates/signup-form.html:25 @@ -1808,7 +1814,7 @@ msgstr "" msgid "Enable" msgstr "Włączyć" -#: lms/lms/doctype/lms_settings/lms_settings.py:20 +#: lms/lms/doctype/lms_settings/lms_settings.py:21 msgid "Enable Google API in Google Settings to send calendar invites for evaluations." msgstr "" @@ -1867,7 +1873,7 @@ msgstr "Godzina zakończenia" msgid "Enroll Now" msgstr "" -#: frontend/src/pages/Batches.vue:295 frontend/src/pages/Courses.vue:294 +#: frontend/src/pages/Batches.vue:297 frontend/src/pages/Courses.vue:297 msgid "Enrolled" msgstr "" @@ -1902,7 +1908,7 @@ msgstr "" msgid "Enrollments" msgstr "" -#: lms/lms/doctype/lms_settings/lms_settings.py:25 +#: lms/lms/doctype/lms_settings/lms_settings.py:26 msgid "Enter Client Id and Client Secret in Google Settings to send calendar invites for evaluations." msgstr "" @@ -1921,19 +1927,19 @@ msgstr "" #: frontend/src/components/Assignment.vue:287 #: frontend/src/components/Modals/AnnouncementModal.vue:105 #: frontend/src/components/Modals/BulkCertificates.vue:115 -#: frontend/src/components/Modals/ChapterModal.vue:157 -#: frontend/src/components/Modals/ChapterModal.vue:164 -#: frontend/src/components/Modals/ChapterModal.vue:200 -#: frontend/src/components/Modals/Question.vue:251 -#: frontend/src/components/Modals/Question.vue:272 -#: frontend/src/components/Modals/Question.vue:329 -#: frontend/src/components/Modals/StudentModal.vue:70 +#: frontend/src/components/Modals/ChapterModal.vue:160 +#: frontend/src/components/Modals/ChapterModal.vue:167 +#: frontend/src/components/Modals/ChapterModal.vue:203 +#: frontend/src/components/Modals/Question.vue:252 +#: frontend/src/components/Modals/Question.vue:275 +#: frontend/src/components/Modals/Question.vue:332 +#: frontend/src/components/Modals/StudentModal.vue:73 #: frontend/src/components/Quiz.vue:592 #: frontend/src/components/SettingDetails.vue:62 -#: frontend/src/pages/AssignmentForm.vue:139 -#: frontend/src/pages/AssignmentForm.vue:159 frontend/src/pages/Billing.vue:261 -#: frontend/src/pages/QuizForm.vue:346 frontend/src/pages/QuizForm.vue:361 -#: frontend/src/pages/QuizSubmission.vue:147 +#: frontend/src/pages/AssignmentForm.vue:142 +#: frontend/src/pages/AssignmentForm.vue:162 frontend/src/pages/Billing.vue:262 +#: frontend/src/pages/QuizForm.vue:349 frontend/src/pages/QuizForm.vue:364 +#: frontend/src/pages/QuizSubmission.vue:150 msgid "Error" msgstr "" @@ -1982,7 +1988,7 @@ msgstr "" #. Label of the evaluator (Link) field in DocType 'LMS Course' #: frontend/src/components/Modals/BatchCourseModal.vue:26 #: frontend/src/components/Modals/BulkCertificates.vue:22 -#: frontend/src/pages/CourseForm.vue:232 frontend/src/pages/ProfileRoles.vue:22 +#: frontend/src/pages/CourseForm.vue:228 frontend/src/pages/ProfileRoles.vue:22 #: lms/lms/doctype/batch_course/batch_course.json #: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json @@ -2096,14 +2102,14 @@ msgstr "" #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Fail" -msgstr "" +msgstr "Nie powiodło się." #. Label of the featured (Check) field in DocType 'LMS Course' #: frontend/src/components/CourseCard.vue:16 -#: frontend/src/pages/CourseForm.vue:190 +#: frontend/src/pages/CourseForm.vue:186 #: lms/lms/doctype/lms_course/lms_course.json msgid "Featured" -msgstr "" +msgstr "Opisany" #. Label of the feedback (Small Text) field in DocType 'LMS Batch Feedback' #: frontend/src/components/BatchFeedback.vue:29 @@ -2128,7 +2134,7 @@ msgstr "" #. Label of the file_type (Select) field in DocType 'Course Lesson' #: lms/lms/doctype/course_lesson/course_lesson.json msgid "File Type" -msgstr "" +msgstr "Typ pliku" #: frontend/src/pages/Jobs.vue:33 msgid "Find the perfect job for you" @@ -2149,10 +2155,6 @@ msgstr "" msgid "Flexible Time" msgstr "" -#: frontend/src/pages/QuizForm.vue:459 -msgid "Form to create and edit quizzes" -msgstr "" - #. Option for the 'Attire Preference' (Select) field in DocType 'User' #: lms/fixtures/custom_field.json msgid "Formal Wear" @@ -2163,7 +2165,7 @@ msgid "Free" msgstr "" #. Option for the 'Type' (Select) field in DocType 'Job Opportunity' -#: frontend/src/pages/Jobs.vue:147 +#: frontend/src/pages/Jobs.vue:164 #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Freelance" msgstr "" @@ -2207,7 +2209,7 @@ msgid "Full Name" msgstr "Pełne imię i nazwisko" #. Option for the 'Type' (Select) field in DocType 'Job Opportunity' -#: frontend/src/pages/Jobs.vue:144 +#: frontend/src/pages/Jobs.vue:161 #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Full Time" msgstr "" @@ -2218,7 +2220,7 @@ msgstr "" #: lms/lms/doctype/function/function.json #: lms/lms/doctype/preferred_function/preferred_function.json msgid "Function" -msgstr "" +msgstr "Funkcjonować" #: frontend/src/pages/Billing.vue:43 msgid "GST Amount" @@ -2342,7 +2344,7 @@ msgstr "Cześć" #: lms/templates/emails/lms_course_interest.html:3 msgid "Hi {0}," -msgstr "" +msgstr "Cześć {0}," #: lms/templates/emails/lms_invite_request_approved.html:3 msgid "Hi," @@ -2385,7 +2387,7 @@ msgstr "" msgid "I am unavailable" msgstr "" -#: frontend/src/pages/QuizForm.vue:380 +#: frontend/src/pages/QuizForm.vue:383 msgid "ID" msgstr "" @@ -2393,6 +2395,11 @@ msgstr "" #: frontend/src/components/Modals/PageModal.vue:28 #: lms/lms/doctype/lms_sidebar_item/lms_sidebar_item.json msgid "Icon" +msgstr "Ikona" + +#. Label of the user_category (Check) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Identify User Persona" msgstr "" #: frontend/src/components/LessonHelp.vue:11 @@ -2425,7 +2432,7 @@ msgstr "" msgid "If you set an amount here, then the USD equivalent setting will not get applied." msgstr "" -#: lms/lms/doctype/lms_quiz/lms_quiz.py:63 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:61 msgid "If you want open ended questions then make sure each question in the quiz is of open ended type." msgstr "" @@ -2451,7 +2458,7 @@ msgstr "Obraz" msgid "Image search powered by" msgstr "" -#: lms/lms/doctype/lms_quiz/lms_quiz.py:221 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:219 msgid "Image: Corrupted Data Stream" msgstr "" @@ -2493,7 +2500,7 @@ msgstr "" #. Label of the index_ (Int) field in DocType 'LMS Exercise' #: lms/lms/doctype/lms_exercise/lms_exercise.json msgid "Index" -msgstr "" +msgstr "Indeks" #. Label of the index_label (Data) field in DocType 'LMS Exercise' #: lms/lms/doctype/lms_exercise/lms_exercise.json @@ -2540,7 +2547,7 @@ msgstr "" #. Label of the instructors (Table MultiSelect) field in DocType 'LMS Batch' #. Label of the instructors (Rating) field in DocType 'LMS Batch Feedback' #. Label of the instructors (Table MultiSelect) field in DocType 'LMS Course' -#: frontend/src/pages/BatchForm.vue:93 frontend/src/pages/CourseForm.vue:155 +#: frontend/src/pages/BatchForm.vue:93 frontend/src/pages/CourseForm.vue:151 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json #: lms/lms/doctype/lms_course/lms_course.json @@ -2565,10 +2572,14 @@ msgstr "Wprowadzenie" msgid "Invalid Invite Code." msgstr "" -#: lms/lms/doctype/course_lesson/course_lesson.py:20 +#: lms/lms/doctype/course_lesson/course_lesson.py:19 msgid "Invalid Quiz ID" msgstr "" +#: lms/lms/doctype/course_lesson/course_lesson.py:33 +msgid "Invalid Quiz ID in content" +msgstr "" + #. Label of the invite_code (Data) field in DocType 'Cohort Subgroup' #. Label of the invite_code (Data) field in DocType 'Invite Request' #: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json @@ -2607,11 +2618,6 @@ msgstr "" msgid "Is Correct" msgstr "" -#. Label of the is_onboarding_complete (Check) field in DocType 'LMS Settings' -#: lms/lms/doctype/lms_settings/lms_settings.json -msgid "Is Onboarding Complete" -msgstr "" - #. Label of the is_scorm_package (Check) field in DocType 'Course Chapter' #. Label of the is_scorm_package (Check) field in DocType 'Course Lesson' #: lms/lms/doctype/course_chapter/course_chapter.json @@ -2650,7 +2656,7 @@ msgstr "" msgid "Items in Sidebar" msgstr "" -#: frontend/src/pages/ProgramForm.vue:272 +#: frontend/src/pages/ProgramForm.vue:275 msgid "Items removed successfully" msgstr "" @@ -2677,7 +2683,7 @@ msgstr "" msgid "Job Details" msgstr "" -#: lms/www/lms.py:111 +#: lms/www/lms.py:159 msgid "Job Openings" msgstr "" @@ -2700,6 +2706,7 @@ msgstr "Tytuł zadania" #. Label of the jobs (Check) field in DocType 'LMS Settings' #: frontend/src/pages/JobDetail.vue:10 frontend/src/pages/Jobs.vue:8 +#: frontend/src/pages/Jobs.vue:170 #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Jobs" msgstr "" @@ -2923,7 +2930,6 @@ msgstr "" #: lms/job/doctype/lms_job_application/lms_job_application.json #: lms/lms/doctype/cohort_join_request/cohort_join_request.json #: lms/lms/doctype/course_chapter/course_chapter.json -#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/function/function.json #: lms/lms/doctype/industry/industry.json #: lms/lms/doctype/lms_assignment/lms_assignment.json @@ -3035,7 +3041,7 @@ msgstr "" msgid "Limit Questions To" msgstr "" -#: lms/lms/doctype/lms_quiz/lms_quiz.py:40 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:38 msgid "Limit cannot be greater than or equal to the number of questions in the quiz." msgstr "" @@ -3055,12 +3061,8 @@ msgstr "" msgid "Links" msgstr "Linki" -#: frontend/src/pages/Quizzes.vue:149 -msgid "List of quizzes" -msgstr "" - #. Option for the 'Status' (Select) field in DocType 'Cohort' -#: frontend/src/pages/Courses.vue:278 lms/lms/doctype/cohort/cohort.json +#: frontend/src/pages/Courses.vue:281 lms/lms/doctype/cohort/cohort.json msgid "Live" msgstr "" @@ -3082,7 +3084,7 @@ msgstr "" #: frontend/src/pages/QuizSubmissionList.vue:39 #: frontend/src/pages/Quizzes.vue:51 msgid "Load More" -msgstr "" +msgstr "Załaduj więcej" #. Option for the 'Auto Recording' (Select) field in DocType 'LMS Live Class' #: lms/lms/doctype/lms_live_class/lms_live_class.json @@ -3092,7 +3094,7 @@ msgstr "" #. Label of the location (Data) field in DocType 'Job Opportunity' #. Label of the location (Data) field in DocType 'Education Detail' #. Label of the location (Data) field in DocType 'Work Experience' -#: frontend/src/pages/JobCreation.vue:26 frontend/src/pages/JobDetail.vue:85 +#: frontend/src/pages/JobCreation.vue:26 frontend/src/pages/JobDetail.vue:92 #: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/lms/doctype/education_detail/education_detail.json #: lms/lms/doctype/work_experience/work_experience.json @@ -3108,13 +3110,13 @@ msgstr "" #: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:188 #: frontend/src/pages/Lesson.vue:25 msgid "Login" -msgstr "" +msgstr "Zaloguj się" #: frontend/src/components/UserDropdown.vue:174 msgid "Login to Frappe Cloud?" msgstr "" -#: frontend/src/pages/JobDetail.vue:48 +#: frontend/src/pages/JobDetail.vue:54 msgid "Login to apply" msgstr "" @@ -3171,7 +3173,7 @@ msgstr "" #. Label of the marks (Int) field in DocType 'LMS Quiz Result' #: frontend/src/components/Modals/Question.vue:50 #: frontend/src/components/Modals/Question.vue:99 -#: frontend/src/components/Quiz.vue:96 frontend/src/pages/QuizForm.vue:390 +#: frontend/src/components/Quiz.vue:96 frontend/src/pages/QuizForm.vue:393 #: frontend/src/pages/QuizSubmission.vue:65 #: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json #: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json @@ -3233,7 +3235,7 @@ msgstr "Średni:" #. Label of the member (Link) field in DocType 'LMS Quiz Submission' #: frontend/src/pages/AssignmentSubmissionList.vue:14 #: frontend/src/pages/QuizSubmission.vue:31 -#: frontend/src/pages/QuizSubmissionList.vue:86 +#: frontend/src/pages/QuizSubmissionList.vue:102 #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_submission/exercise_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json @@ -3314,7 +3316,7 @@ msgstr "" msgid "Member Username" msgstr "" -#: frontend/src/pages/ProgramForm.vue:251 +#: frontend/src/pages/ProgramForm.vue:254 msgid "Member added to program" msgstr "" @@ -3378,16 +3380,21 @@ msgstr "" msgid "Mentor Request Status Update Template" msgstr "" +#. Label of the meta_description (Small Text) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Meta Description" +msgstr "Opis meta" + #. Label of the meta_image (Attach Image) field in DocType 'LMS Batch' #: frontend/src/pages/BatchForm.vue:44 lms/lms/doctype/lms_batch/lms_batch.json #: lms/public/js/common_functions.js:362 msgid "Meta Image" -msgstr "" +msgstr "Obraz meta" #. Label of the milestone (Check) field in DocType 'LMS Batch Timetable' #: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json msgid "Milestone" -msgstr "" +msgstr "Kamień milowy" #: frontend/src/pages/Statistics.vue:81 msgid "Milestones" @@ -3400,6 +3407,7 @@ msgstr "" #. Name of a role #: frontend/src/pages/ProfileRoles.vue:10 #: lms/lms/doctype/course_evaluator/course_evaluator.json +#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/lms_assignment/lms_assignment.json #: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json #: lms/lms/doctype/lms_batch/lms_batch.json @@ -3442,7 +3450,7 @@ msgstr "" #: frontend/src/components/AppSidebar.vue:39 msgid "More" -msgstr "" +msgstr "Więcej" #. Label of the multiple (Check) field in DocType 'LMS Question' #: lms/lms/doctype/lms_question/lms_question.json @@ -3459,12 +3467,13 @@ msgstr "" #. Option for the 'Event' (Select) field in DocType 'LMS Badge' #: frontend/src/pages/Assignments.vue:18 frontend/src/pages/Batches.vue:17 -#: frontend/src/pages/Courses.vue:17 frontend/src/pages/Courses.vue:281 +#: frontend/src/pages/Courses.vue:17 frontend/src/pages/Courses.vue:284 #: frontend/src/pages/Programs.vue:14 lms/lms/doctype/lms_badge/lms_badge.json msgid "New" msgstr "" -#: frontend/src/pages/AssignmentForm.vue:178 +#: frontend/src/pages/AssignmentForm.vue:181 +#: frontend/src/pages/AssignmentForm.vue:197 msgid "New Assignment" msgstr "" @@ -3472,11 +3481,11 @@ msgstr "" msgid "New Assignment Submission" msgstr "" -#: lms/public/js/common_functions.js:255 lms/www/lms.py:89 +#: lms/public/js/common_functions.js:255 lms/www/lms.py:134 msgid "New Batch" msgstr "" -#: lms/www/lms.py:40 +#: frontend/src/pages/CourseForm.vue:577 lms/www/lms.py:78 msgid "New Course" msgstr "" @@ -3504,7 +3513,7 @@ msgstr "" msgid "New Question" msgstr "" -#: frontend/src/pages/QuizForm.vue:450 frontend/src/pages/QuizForm.vue:458 +#: frontend/src/pages/QuizForm.vue:453 frontend/src/pages/QuizForm.vue:461 #: frontend/src/pages/Quizzes.vue:18 msgid "New Quiz" msgstr "" @@ -3524,7 +3533,7 @@ msgstr "" #: frontend/src/components/Discussions.vue:4 #: frontend/src/components/Discussions.vue:59 msgid "New {0}" -msgstr "" +msgstr "Nowy rekord \"{0}\"" #: frontend/src/components/Quiz.vue:213 frontend/src/pages/Lesson.vue:85 msgid "Next" @@ -3599,8 +3608,8 @@ msgstr "" msgid "No introduction" msgstr "" -#: frontend/src/pages/Jobs.vue:77 -msgid "No jobs posted" +#: frontend/src/pages/Jobs.vue:80 +msgid "No jobs found" msgstr "" #: frontend/src/components/LiveClass.vue:71 @@ -3615,6 +3624,10 @@ msgstr "" msgid "No programs found" msgstr "" +#: frontend/src/pages/QuizSubmissionList.vue:52 +msgid "No quiz submissions found. Please check again later." +msgstr "" + #: frontend/src/pages/Quizzes.vue:61 msgid "No quizzes found" msgstr "" @@ -3624,6 +3637,7 @@ msgid "No slots available for this date." msgstr "" #: frontend/src/pages/AssignmentSubmissionList.vue:67 +#: frontend/src/pages/QuizSubmissionList.vue:49 msgid "No submissions" msgstr "" @@ -3669,7 +3683,7 @@ msgstr "" #: frontend/src/components/SettingDetails.vue:10 #: frontend/src/pages/QuizSubmission.vue:9 msgid "Not Saved" -msgstr "" +msgstr "Niezapisany" #: frontend/src/pages/Notifications.vue:54 msgid "Nothing to see here." @@ -3678,7 +3692,7 @@ msgstr "" #. Label of the notifications (Check) field in DocType 'LMS Settings' #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Notifications" -msgstr "" +msgstr "Powiadomienia" #: lms/lms/widgets/NoPreviewModal.html:30 msgid "Notify me when available" @@ -3724,11 +3738,11 @@ msgstr "" msgid "Only files of type {0} will be accepted." msgstr "" -#: frontend/src/pages/CourseForm.vue:509 frontend/src/utils/index.js:549 +#: frontend/src/pages/CourseForm.vue:507 frontend/src/utils/index.js:550 msgid "Only image file is allowed." msgstr "" -#: frontend/src/components/Modals/ChapterModal.vue:218 +#: frontend/src/components/Modals/ChapterModal.vue:221 msgid "Only zip files are allowed" msgstr "" @@ -3759,34 +3773,34 @@ msgstr "" #: frontend/src/components/Modals/Question.vue:64 #: lms/lms/doctype/lms_option/lms_option.json msgid "Option" -msgstr "" +msgstr "Opcja" #. Label of the option_1 (Small Text) field in DocType 'LMS Question' #: lms/lms/doctype/lms_question/lms_question.json msgid "Option 1" -msgstr "" +msgstr "Opcja 1" #. Label of the option_2 (Small Text) field in DocType 'LMS Question' #: lms/lms/doctype/lms_question/lms_question.json msgid "Option 2" -msgstr "" +msgstr "Opcja 2" #. Label of the option_3 (Small Text) field in DocType 'LMS Question' #: lms/lms/doctype/lms_question/lms_question.json msgid "Option 3" -msgstr "" +msgstr "Opcja 3" #. Label of the option_4 (Small Text) field in DocType 'LMS Question' #: lms/lms/doctype/lms_question/lms_question.json msgid "Option 4" -msgstr "" +msgstr "Opcja 4" #. Label of the order_id (Data) field in DocType 'LMS Payment' #: lms/lms/doctype/lms_payment/lms_payment.json msgid "Order ID" msgstr "" -#: frontend/src/pages/JobDetail.vue:74 +#: frontend/src/pages/JobDetail.vue:81 msgid "Organisation" msgstr "" @@ -3835,7 +3849,7 @@ msgid "Paid Batch" msgstr "" #. Label of the paid_certificate (Check) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:218 +#: frontend/src/pages/CourseForm.vue:214 #: lms/lms/doctype/lms_course/lms_course.json msgid "Paid Certificate" msgstr "" @@ -3845,7 +3859,7 @@ msgid "Paid Certificate after Evaluation" msgstr "" #. Label of the paid_course (Check) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:208 +#: frontend/src/pages/CourseForm.vue:204 #: lms/lms/doctype/lms_course/lms_course.json msgid "Paid Course" msgstr "" @@ -3855,7 +3869,7 @@ msgid "Pan Number" msgstr "" #. Option for the 'Type' (Select) field in DocType 'Job Opportunity' -#: frontend/src/pages/Jobs.vue:145 +#: frontend/src/pages/Jobs.vue:162 #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Part Time" msgstr "" @@ -3877,7 +3891,7 @@ msgstr "" #. Label of the passing_percentage (Int) field in DocType 'LMS Quiz' #. Label of the passing_percentage (Int) field in DocType 'LMS Quiz Submission' -#: frontend/src/pages/QuizForm.vue:72 frontend/src/pages/Quizzes.vue:127 +#: frontend/src/pages/QuizForm.vue:72 frontend/src/pages/Quizzes.vue:129 #: lms/lms/doctype/lms_quiz/lms_quiz.json #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json msgid "Passing Percentage" @@ -3886,9 +3900,9 @@ msgstr "" #. Label of the password (Password) field in DocType 'LMS Live Class' #: lms/lms/doctype/lms_live_class/lms_live_class.json msgid "Password" -msgstr "" +msgstr "Hasło" -#: frontend/src/pages/CourseForm.vue:113 +#: frontend/src/pages/CourseForm.vue:109 msgid "Paste the youtube link of a short video introducing the course" msgstr "" @@ -3980,7 +3994,7 @@ msgstr "" #. Label of the percentage (Int) field in DocType 'LMS Quiz Submission' #: frontend/src/pages/QuizSubmission.vue:44 -#: frontend/src/pages/QuizSubmissionList.vue:97 +#: frontend/src/pages/QuizSubmissionList.vue:113 #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json msgid "Percentage" msgstr "Procent" @@ -4002,17 +4016,17 @@ msgstr "" msgid "Please Login" msgstr "" -#: lms/lms/doctype/lms_settings/lms_settings.py:33 +#: lms/lms/doctype/lms_settings/lms_settings.py:34 msgid "Please add {1} for {3} to send calendar invites for evaluations." msgstr "" #: lms/lms/user.py:75 msgid "Please ask your administrator to verify your sign-up" -msgstr "" +msgstr "Proszę skontaktować się z administratorem, aby sprawdzić swój znak w górę" #: lms/lms/user.py:73 msgid "Please check your email for verification" -msgstr "" +msgstr "Proszę sprawdzić pocztę do weryfikacji" #: lms/templates/emails/community_course_membership.html:7 msgid "Please click on the following button to set your new password" @@ -4026,7 +4040,7 @@ msgstr "" msgid "Please enable Zoom Settings to use this feature." msgstr "" -#: frontend/src/components/CourseOutline.vue:324 +#: frontend/src/components/CourseOutline.vue:325 msgid "Please enroll for this course to view this lesson" msgstr "" @@ -4063,7 +4077,7 @@ msgstr "" msgid "Please install the Payments app to create a paid courses." msgstr "" -#: frontend/src/pages/Billing.vue:253 +#: frontend/src/pages/Billing.vue:254 msgid "Please let us know where you heard about us from." msgstr "" @@ -4112,7 +4126,7 @@ msgstr "" msgid "Please take appropriate action at {0}" msgstr "" -#: frontend/src/components/Modals/ChapterModal.vue:175 +#: frontend/src/components/Modals/ChapterModal.vue:178 msgid "Please upload a SCORM package" msgstr "" @@ -4152,13 +4166,13 @@ msgstr "" #: frontend/src/components/DiscussionReplies.vue:52 #: frontend/src/components/DiscussionReplies.vue:87 msgid "Post" -msgstr "" +msgstr "Stanowisko" #: frontend/src/pages/Billing.vue:95 msgid "Postal Code" msgstr "" -#: frontend/src/pages/JobDetail.vue:107 +#: frontend/src/pages/JobDetail.vue:114 msgid "Posted on" msgstr "" @@ -4193,13 +4207,13 @@ msgstr "" msgid "Preview Image" msgstr "" -#: frontend/src/pages/CourseForm.vue:111 +#: frontend/src/pages/CourseForm.vue:107 msgid "Preview Video" msgstr "" #: frontend/src/pages/Lesson.vue:50 msgid "Previous" -msgstr "" +msgstr "Wstecz" #. Label of the pricing_tab (Tab Break) field in DocType 'LMS Batch' #: lms/lms/doctype/lms_batch/lms_batch.json @@ -4208,7 +4222,7 @@ msgid "Pricing" msgstr "" #. Label of the pricing_tab (Tab Break) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:202 +#: frontend/src/pages/CourseForm.vue:198 #: lms/lms/doctype/lms_course/lms_course.json msgid "Pricing and Certification" msgstr "" @@ -4231,7 +4245,7 @@ msgstr "" #. Option for the 'Visibility' (Select) field in DocType 'LMS Batch Old' #: lms/lms/doctype/lms_batch_old/lms_batch_old.json msgid "Private" -msgstr "" +msgstr "Prywatny" #. Description of the 'Hide my Private Information from others' (Check) field #. in DocType 'User' @@ -4272,6 +4286,10 @@ msgstr "" msgid "Program Members" msgstr "" +#: frontend/src/pages/Programs.vue:219 lms/www/lms.py:273 +msgid "Programs" +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/BatchStudents.vue:75 @@ -4290,7 +4308,7 @@ msgstr "Postępu (%)" #: lms/lms/doctype/cohort_web_page/cohort_web_page.json #: lms/lms/doctype/lms_batch_old/lms_batch_old.json msgid "Public" -msgstr "" +msgstr "Publiczny" #. Label of the published (Check) field in DocType 'LMS Certificate' #: lms/lms/doctype/lms_certificate/lms_certificate.json @@ -4301,12 +4319,12 @@ msgstr "" #. Label of the published (Check) field in DocType 'LMS Course' #: frontend/src/components/Modals/BulkCertificates.vue:51 #: frontend/src/components/Modals/Event.vue:108 -#: frontend/src/pages/BatchForm.vue:27 frontend/src/pages/CourseForm.vue:172 +#: frontend/src/pages/BatchForm.vue:27 frontend/src/pages/CourseForm.vue:168 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/public/js/common_functions.js:266 msgid "Published" -msgstr "" +msgstr "Opublikowany" #: lms/lms/web_template/lms_statistics/lms_statistics.html:14 #: lms/templates/statistics.html:4 @@ -4314,7 +4332,7 @@ msgid "Published Courses" msgstr "" #. Label of the published_on (Date) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:176 +#: frontend/src/pages/CourseForm.vue:172 #: lms/lms/doctype/lms_course/lms_course.json msgid "Published On" msgstr "Opublikowany" @@ -4333,7 +4351,7 @@ msgstr "" #. Label of the question (Text) field in DocType 'LMS Quiz Result' #: frontend/src/components/Assignment.vue:20 #: frontend/src/components/Modals/Question.vue:38 -#: frontend/src/pages/AssignmentForm.vue:45 frontend/src/pages/QuizForm.vue:385 +#: frontend/src/pages/AssignmentForm.vue:45 frontend/src/pages/QuizForm.vue:388 #: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/lms_assignment/lms_assignment.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json @@ -4358,11 +4376,11 @@ msgstr "" msgid "Question Name" msgstr "" -#: frontend/src/components/Modals/Question.vue:267 +#: frontend/src/components/Modals/Question.vue:270 msgid "Question added successfully" msgstr "" -#: frontend/src/components/Modals/Question.vue:319 +#: frontend/src/components/Modals/Question.vue:322 msgid "Question updated successfully" msgstr "" @@ -4379,7 +4397,7 @@ msgstr "" msgid "Questions" msgstr "" -#: frontend/src/pages/QuizForm.vue:427 +#: frontend/src/pages/QuizForm.vue:430 msgid "Questions deleted successfully" msgstr "" @@ -4397,13 +4415,13 @@ msgid "Quiz ID" msgstr "" #. Label of a Link in the LMS Workspace -#: frontend/src/pages/QuizPage.vue:56 frontend/src/pages/QuizPage.vue:62 -#: lms/lms/workspace/lms/lms.json +#: frontend/src/pages/QuizPage.vue:57 lms/lms/workspace/lms/lms.json msgid "Quiz Submission" msgstr "" -#: frontend/src/pages/QuizSubmission.vue:128 -#: frontend/src/pages/QuizSubmissionList.vue:106 +#: frontend/src/pages/QuizSubmission.vue:131 +#: frontend/src/pages/QuizSubmissionList.vue:122 +#: frontend/src/pages/QuizSubmissionList.vue:127 msgid "Quiz Submissions" msgstr "" @@ -4416,7 +4434,7 @@ msgstr "" msgid "Quiz Title" msgstr "" -#: frontend/src/pages/QuizForm.vue:339 +#: frontend/src/pages/QuizForm.vue:342 msgid "Quiz created successfully" msgstr "" @@ -4424,7 +4442,7 @@ msgstr "" msgid "Quiz is not available to Guest users. Please login to continue." msgstr "" -#: frontend/src/pages/QuizForm.vue:358 +#: frontend/src/pages/QuizForm.vue:361 msgid "Quiz updated successfully" msgstr "" @@ -4434,8 +4452,8 @@ msgid "Quiz will appear at the bottom of the lesson." msgstr "" #: frontend/src/components/AppSidebar.vue:530 -#: frontend/src/pages/QuizForm.vue:438 frontend/src/pages/Quizzes.vue:138 -#: frontend/src/pages/Quizzes.vue:148 +#: frontend/src/pages/QuizForm.vue:441 frontend/src/pages/Quizzes.vue:140 +#: frontend/src/pages/Quizzes.vue:150 lms/www/lms.py:229 msgid "Quizzes" msgstr "" @@ -4495,7 +4513,7 @@ msgstr "" #: lms/lms/user.py:36 msgid "Registered but disabled" -msgstr "" +msgstr "Zarejestrowałem się, ale wyłączone" #. Option for the 'Status' (Select) field in DocType 'Cohort Join Request' #. Option for the 'Status' (Select) field in DocType 'Invite Request' @@ -4513,9 +4531,9 @@ msgstr "Odrzucono" msgid "Related Courses" msgstr "" -#: frontend/src/pages/BatchForm.vue:77 frontend/src/pages/CourseForm.vue:100 +#: frontend/src/pages/BatchForm.vue:77 frontend/src/pages/CourseForm.vue:96 msgid "Remove" -msgstr "" +msgstr "Usunąć" #: frontend/src/components/Modals/AnnouncementModal.vue:27 msgid "Reply To" @@ -4575,7 +4593,7 @@ msgstr "Przeglądy" #: lms/lms/doctype/cohort_staff/cohort_staff.json #: lms/lms/doctype/lms_enrollment/lms_enrollment.json msgid "Role" -msgstr "" +msgstr "Rola" #. Label of the role (Select) field in DocType 'User' #: lms/fixtures/custom_field.json @@ -4607,7 +4625,7 @@ msgstr "" msgid "Row #{0} Start time cannot be outside the batch duration." msgstr "" -#: lms/lms/doctype/lms_quiz/lms_quiz.py:34 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:32 msgid "Rows {0} have the duplicate questions." msgstr "" @@ -4631,6 +4649,11 @@ msgstr "" msgid "SCORM Package Path" msgstr "" +#. Label of the seo_tab (Tab Break) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "SEO" +msgstr "" + #. Option for the 'Day' (Select) field in DocType 'Evaluator Schedule' #. Option for the 'Day' (Select) field in DocType 'LMS Certificate Request' #: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json @@ -4644,7 +4667,7 @@ msgstr "Sobota" #: frontend/src/components/Modals/Event.vue:101 #: frontend/src/components/Modals/Event.vue:129 #: frontend/src/pages/AssignmentForm.vue:21 frontend/src/pages/BatchForm.vue:8 -#: frontend/src/pages/CourseForm.vue:21 frontend/src/pages/JobCreation.vue:8 +#: frontend/src/pages/CourseForm.vue:17 frontend/src/pages/JobCreation.vue:8 #: frontend/src/pages/LessonForm.vue:14 frontend/src/pages/ProgramForm.vue:7 #: frontend/src/pages/QuizForm.vue:34 frontend/src/pages/QuizSubmission.vue:14 #: lms/public/js/common_functions.js:405 @@ -4673,7 +4696,7 @@ msgstr "Zakres" #. Label of the score (Int) field in DocType 'LMS Quiz Submission' #: frontend/src/pages/QuizSubmission.vue:39 -#: frontend/src/pages/QuizSubmissionList.vue:91 +#: frontend/src/pages/QuizSubmissionList.vue:107 #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json #: lms/templates/quiz/quiz.html:148 msgid "Score" @@ -4767,7 +4790,7 @@ msgstr "" #: frontend/src/components/AppSidebar.vue:556 #: frontend/src/components/Modals/Settings.vue:7 -#: frontend/src/pages/BatchForm.vue:148 frontend/src/pages/CourseForm.vue:162 +#: frontend/src/pages/BatchForm.vue:148 frontend/src/pages/CourseForm.vue:158 #: frontend/src/pages/ProfileRoles.vue:4 frontend/src/pages/QuizForm.vue:79 msgid "Settings" msgstr "" @@ -4781,7 +4804,7 @@ msgid "Short Description" msgstr "" #. Label of the short_introduction (Small Text) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:39 +#: frontend/src/pages/CourseForm.vue:35 #: lms/lms/doctype/lms_course/lms_course.json msgid "Short Introduction" msgstr "" @@ -4846,11 +4869,11 @@ msgstr "Elementy paska bocznego" #: lms/lms/user.py:29 msgid "Sign Up is disabled" -msgstr "" +msgstr "Zapisz się jest wyłączony" #: lms/templates/signup-form.html:53 msgid "Sign up" -msgstr "" +msgstr "Rejestracja" #. Label of the signup_email (Data) field in DocType 'Invite Request' #: lms/lms/doctype/invite_request/invite_request.json @@ -4890,11 +4913,7 @@ msgstr "" #: lms/templates/onboarding_header.html:6 msgid "Skip" -msgstr "" - -#: frontend/src/components/OnboardingBanner.vue:3 -msgid "Skip Onboarding" -msgstr "" +msgstr "Pominąć" #: lms/lms/doctype/course_evaluator/course_evaluator.py:63 msgid "Slot Times are overlapping for some schedules." @@ -5009,8 +5028,9 @@ msgstr "" #. Label of the tab_4_tab (Tab Break) field in DocType 'LMS Course' #. Label of the statistics (Check) field in DocType 'LMS Settings' #: frontend/src/components/BatchStudents.vue:5 +#: frontend/src/pages/Statistics.vue:322 #: lms/lms/doctype/lms_course/lms_course.json -#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:136 +#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:182 msgid "Statistics" msgstr "" @@ -5110,7 +5130,7 @@ msgstr "" #: frontend/src/components/Modals/AssessmentModal.vue:9 #: frontend/src/components/Modals/BatchCourseModal.vue:9 #: frontend/src/components/Modals/EvaluationModal.vue:9 -#: frontend/src/components/Modals/Question.vue:341 +#: frontend/src/components/Modals/Question.vue:344 #: frontend/src/components/Quiz.vue:218 lms/templates/assignment.html:9 #: lms/templates/livecode/extension_footer.html:25 #: lms/templates/quiz/quiz.html:128 lms/templates/reviews.html:163 @@ -5135,18 +5155,18 @@ msgstr "" #: frontend/src/components/Modals/AnnouncementModal.vue:99 #: frontend/src/components/Modals/AssessmentModal.vue:73 #: frontend/src/components/Modals/BulkCertificates.vue:121 -#: frontend/src/components/Modals/ChapterModal.vue:151 -#: frontend/src/components/Modals/ChapterModal.vue:196 +#: frontend/src/components/Modals/ChapterModal.vue:154 +#: frontend/src/components/Modals/ChapterModal.vue:199 #: frontend/src/components/Modals/Event.vue:255 #: frontend/src/components/Modals/Event.vue:310 -#: frontend/src/components/Modals/Question.vue:267 -#: frontend/src/components/Modals/Question.vue:318 -#: frontend/src/pages/AssignmentForm.vue:155 -#: frontend/src/pages/CourseForm.vue:472 frontend/src/pages/ProgramForm.vue:229 -#: frontend/src/pages/ProgramForm.vue:251 -#: frontend/src/pages/ProgramForm.vue:272 -#: frontend/src/pages/ProgramForm.vue:298 frontend/src/pages/QuizForm.vue:339 -#: frontend/src/pages/QuizForm.vue:358 frontend/src/pages/QuizForm.vue:427 +#: frontend/src/components/Modals/Question.vue:270 +#: frontend/src/components/Modals/Question.vue:321 +#: frontend/src/pages/AssignmentForm.vue:158 +#: frontend/src/pages/CourseForm.vue:470 frontend/src/pages/ProgramForm.vue:232 +#: frontend/src/pages/ProgramForm.vue:254 +#: frontend/src/pages/ProgramForm.vue:275 +#: frontend/src/pages/ProgramForm.vue:301 frontend/src/pages/QuizForm.vue:342 +#: frontend/src/pages/QuizForm.vue:361 frontend/src/pages/QuizForm.vue:430 msgid "Success" msgstr "" @@ -5164,7 +5184,7 @@ msgstr "Podsumowanie" msgid "Sunday" msgstr "Niedziela" -#: lms/lms/api.py:1026 +#: lms/lms/api.py:1027 msgid "Suspicious pattern found in {0}: {1}" msgstr "" @@ -5220,10 +5240,10 @@ msgid "System Manager" msgstr "" #. Label of the tags (Data) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:121 +#: frontend/src/pages/CourseForm.vue:117 #: lms/lms/doctype/lms_course/lms_course.json msgid "Tags" -msgstr "" +msgstr "Tagi" #: lms/templates/emails/community_course_membership.html:18 #: lms/templates/emails/mentor_request_creation_email.html:8 @@ -5247,7 +5267,7 @@ msgstr "" #: lms/lms/user.py:40 msgid "Temporarily Disabled" -msgstr "" +msgstr "Czasowo niedostępne" #: lms/lms/utils.py:436 msgid "Terms of Use" @@ -5325,6 +5345,10 @@ msgstr "" msgid "There are no courses matching the criteria. Keep an eye out, fresh learning experiences are on the way soon!" msgstr "" +#: frontend/src/pages/Jobs.vue:84 +msgid "There are no jobs available at the moment. Open a job opportunity or check here again later." +msgstr "" + #: frontend/src/pages/CertifiedParticipants.vue:92 msgid "There are no participants matching this criteria." msgstr "" @@ -5384,8 +5408,10 @@ msgstr "" msgid "This course is free." msgstr "" -#: frontend/src/pages/SCORMChapter.vue:201 -msgid "This is a chapter in the course {0}" +#. Description of the 'Meta Description' (Small Text) field in DocType 'LMS +#. Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "This description will be shown on lists and pages without meta description" msgstr "" #: frontend/src/pages/Lesson.vue:16 @@ -5482,10 +5508,10 @@ msgstr "" #: frontend/src/components/Modals/DiscussionModal.vue:18 #: frontend/src/components/Modals/LiveClassModal.vue:23 #: frontend/src/pages/AssignmentForm.vue:32 -#: frontend/src/pages/Assignments.vue:152 frontend/src/pages/BatchForm.vue:19 -#: frontend/src/pages/CourseForm.vue:33 frontend/src/pages/JobCreation.vue:20 +#: frontend/src/pages/Assignments.vue:155 frontend/src/pages/BatchForm.vue:19 +#: frontend/src/pages/CourseForm.vue:29 frontend/src/pages/JobCreation.vue:20 #: frontend/src/pages/ProgramForm.vue:11 frontend/src/pages/Programs.vue:116 -#: frontend/src/pages/QuizForm.vue:48 frontend/src/pages/Quizzes.vue:116 +#: frontend/src/pages/QuizForm.vue:48 frontend/src/pages/Quizzes.vue:118 #: lms/lms/doctype/cohort/cohort.json #: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json #: lms/lms/doctype/cohort_web_page/cohort_web_page.json @@ -5507,7 +5533,7 @@ msgstr "" msgid "Title" msgstr "" -#: frontend/src/components/Modals/ChapterModal.vue:172 +#: frontend/src/components/Modals/ChapterModal.vue:175 msgid "Title is required" msgstr "" @@ -5532,14 +5558,14 @@ msgstr "" #: lms/lms/user.py:41 msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour" -msgstr "" +msgstr "Zbyt wielu użytkowników podpisało się niedawno, więc rejestracja jest wyłączona. Proszę spróbować za godzinę" #: frontend/src/pages/Billing.vue:53 msgid "Total" msgstr "" #. Label of the total_marks (Int) field in DocType 'LMS Quiz' -#: frontend/src/pages/QuizForm.vue:67 frontend/src/pages/Quizzes.vue:121 +#: frontend/src/pages/QuizForm.vue:67 frontend/src/pages/Quizzes.vue:123 #: lms/lms/doctype/lms_quiz/lms_quiz.json msgid "Total Marks" msgstr "" @@ -5577,7 +5603,7 @@ msgstr "" #: frontend/src/components/Modals/AssessmentModal.vue:22 #: frontend/src/components/Modals/Question.vue:54 #: frontend/src/pages/AssignmentForm.vue:39 -#: frontend/src/pages/Assignments.vue:30 frontend/src/pages/Assignments.vue:157 +#: frontend/src/pages/Assignments.vue:30 frontend/src/pages/Assignments.vue:160 #: frontend/src/pages/JobCreation.vue:33 frontend/src/pages/Jobs.vue:55 #: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/lms/doctype/lms_assignment/lms_assignment.json @@ -5624,7 +5650,7 @@ msgstr "" msgid "Unlisted" msgstr "" -#: frontend/src/pages/Batches.vue:293 +#: frontend/src/pages/Batches.vue:295 msgid "Unpublished" msgstr "" @@ -5646,8 +5672,8 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'Cohort' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request' #. Label of the upcoming (Check) field in DocType 'LMS Course' -#: frontend/src/pages/Batches.vue:291 frontend/src/pages/CourseForm.vue:185 -#: frontend/src/pages/Courses.vue:284 lms/lms/doctype/cohort/cohort.json +#: frontend/src/pages/Batches.vue:293 frontend/src/pages/CourseForm.vue:181 +#: frontend/src/pages/Courses.vue:287 lms/lms/doctype/cohort/cohort.json #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_course/lms_course.json msgid "Upcoming" @@ -5672,9 +5698,9 @@ msgstr "" msgid "Update Password" msgstr "" -#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:81 +#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:77 msgid "Upload" -msgstr "" +msgstr "Prześlij" #: frontend/src/components/Assignment.vue:81 msgid "Upload File" @@ -5729,7 +5755,7 @@ msgstr "" #: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/invite_request/invite_request.json msgid "Username" -msgstr "" +msgstr "Nazwa użytkownika" #. Label of a shortcut in the LMS Workspace #: lms/lms/workspace/lms/lms.json @@ -5743,7 +5769,7 @@ msgstr "" #: lms/templates/signup-form.html:83 msgid "Valid email and name required" -msgstr "" +msgstr "Wymagany poprawny adres e-mail i imię" #. Label of the value (Rating) field in DocType 'LMS Batch Feedback' #: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json @@ -5778,6 +5804,10 @@ msgstr "" msgid "Visit Batch" msgstr "" +#: frontend/src/pages/JobDetail.vue:38 +msgid "Visit Website" +msgstr "" + #: lms/templates/emails/batch_confirmation.html:23 msgid "Visit the following link to view your " msgstr "" @@ -5808,7 +5838,7 @@ msgstr "" #: frontend/src/components/Modals/PageModal.vue:23 #: lms/lms/doctype/lms_sidebar_item/lms_sidebar_item.json msgid "Web Page" -msgstr "" +msgstr "Strona" #. Option for the 'Day' (Select) field in DocType 'Evaluator Schedule' #. Option for the 'Day' (Select) field in DocType 'LMS Certificate Request' @@ -5899,7 +5929,7 @@ msgstr "" msgid "You are not a mentor of the course {0}" msgstr "" -#: frontend/src/components/CourseOutline.vue:323 +#: frontend/src/components/CourseOutline.vue:324 msgid "You are not enrolled" msgstr "" @@ -6117,17 +6147,13 @@ msgstr "" #: lms/templates/quiz/quiz.html:106 msgid "of" -msgstr "" +msgstr "z" #: lms/templates/quiz/quiz.js:141 msgid "out of" msgstr "spośród" -#: frontend/src/components/JobCard.vue:30 -msgid "posted" -msgstr "" - -#: frontend/src/pages/QuizForm.vue:386 +#: frontend/src/pages/QuizForm.vue:389 msgid "question_detail" msgstr "" @@ -6147,7 +6173,7 @@ msgstr "" msgid "you can" msgstr "" -#: lms/lms/api.py:816 lms/lms/api.py:824 +#: lms/lms/api.py:817 lms/lms/api.py:825 msgid "{0} Settings not found" msgstr "" @@ -6197,7 +6223,7 @@ msgstr "" #: lms/lms/utils.py:636 lms/lms/utils.py:642 msgid "{0} mentioned you in a comment in {1}" -msgstr "" +msgstr "{0} wspomniał o Tobie w komentarzu w {1}" #: lms/lms/utils.py:458 msgid "{0}k" @@ -6231,5 +6257,5 @@ msgstr "" #. Count format of shortcut in the LMS Workspace #: lms/lms/workspace/lms/lms.json msgid "{} Published" -msgstr "" +msgstr "{} Opublikowany" diff --git a/lms/locale/pt.po b/lms/locale/pt.po index ab6f22b8..6f8f15c0 100644 --- a/lms/locale/pt.po +++ b/lms/locale/pt.po @@ -2,10 +2,10 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n" -"POT-Creation-Date: 2025-03-21 16:04+0000\n" -"PO-Revision-Date: 2025-03-23 01:31\n" +"POT-Creation-Date: 2025-04-11 16:04+0000\n" +"PO-Revision-Date: 2025-04-16 06:20\n" "Last-Translator: jannat@frappe.io\n" -"Language-Team: Portuguese, Brazilian\n" +"Language-Team: Portuguese\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -13,10 +13,10 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Crowdin-Project: frappe\n" "X-Crowdin-Project-ID: 639578\n" -"X-Crowdin-Language: pt-BR\n" +"X-Crowdin-Language: pt-PT\n" "X-Crowdin-File: /[frappe.lms] develop/lms/locale/main.pot\n" "X-Crowdin-File-ID: 90\n" -"Language: pt_BR\n" +"Language: pt_PT\n" #: lms/templates/emails/assignment_submission.html:5 msgid " Please evaluate and grade it." @@ -71,7 +71,7 @@ msgstr "" msgid "A course cannot have both paid certificate and certificate of completion." msgstr "" -#: frontend/src/pages/CourseForm.vue:40 +#: frontend/src/pages/CourseForm.vue:37 msgid "A one line introduction to the course that appears on the course card" msgstr "" @@ -105,25 +105,26 @@ 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 "Ativo" +msgstr "" #: frontend/src/components/Assessments.vue:11 #: frontend/src/components/BatchCourses.vue:11 #: frontend/src/components/BatchStudents.vue:117 #: frontend/src/components/Categories.vue:26 +#: frontend/src/components/Evaluators.vue:37 #: frontend/src/components/LiveClass.vue:11 #: frontend/src/components/Members.vue:43 frontend/src/pages/ProgramForm.vue:30 #: frontend/src/pages/ProgramForm.vue:92 frontend/src/pages/ProgramForm.vue:137 msgid "Add" -msgstr "Adicionar" +msgstr "" -#: frontend/src/components/CourseOutline.vue:11 +#: frontend/src/components/CourseOutline.vue:18 #: frontend/src/components/CreateOutline.vue:18 #: frontend/src/components/Modals/ChapterModal.vue:5 msgid "Add Chapter" msgstr "" -#: frontend/src/components/CourseOutline.vue:129 +#: frontend/src/components/CourseOutline.vue:136 msgid "Add Lesson" msgstr "" @@ -143,7 +144,7 @@ msgstr "" msgid "Add a Student" msgstr "" -#: frontend/src/components/OnboardingBanner.vue:56 +#: frontend/src/components/AppSidebar.vue:514 msgid "Add a chapter" msgstr "" @@ -151,15 +152,15 @@ msgstr "" msgid "Add a course" msgstr "" -#: frontend/src/pages/CourseForm.vue:136 +#: frontend/src/pages/CourseForm.vue:133 msgid "Add a keyword and then press enter" msgstr "" -#: frontend/src/components/OnboardingBanner.vue:81 +#: frontend/src/components/AppSidebar.vue:515 msgid "Add a lesson" msgstr "" -#: frontend/src/components/Modals/Question.vue:144 +#: frontend/src/components/Modals/Question.vue:147 #: frontend/src/pages/QuizForm.vue:183 msgid "Add a new question" msgstr "" @@ -184,19 +185,35 @@ msgstr "" msgid "Add at least one possible answer for this question: {0}" msgstr "" +#: frontend/src/components/AppSidebar.vue:479 +msgid "Add courses to your batch" +msgstr "" + +#: frontend/src/components/AppSidebar.vue:459 +msgid "Add students to your batch" +msgstr "" + #: frontend/src/components/Modals/PageModal.vue:6 msgid "Add web page to sidebar" msgstr "" -#: frontend/src/components/Assignment.vue:65 +#: frontend/src/components/Assignment.vue:68 msgid "Add your assignment as {0}" msgstr "" +#: frontend/src/components/AppSidebar.vue:395 +msgid "Add your first chapter" +msgstr "" + +#: frontend/src/components/AppSidebar.vue:410 +msgid "Add your first lesson" +msgstr "" + #. Label of the address (Link) field in DocType 'LMS Payment' #: 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" @@ -216,9 +233,9 @@ msgid "Admin" msgstr "" #. Name of a role -#: frontend/src/pages/Batches.vue:285 lms/lms/doctype/lms_badge/lms_badge.json +#: frontend/src/pages/Batches.vue:284 lms/lms/doctype/lms_badge/lms_badge.json msgid "All" -msgstr "Todos" +msgstr "" #: frontend/src/pages/Batches.vue:26 msgid "All Batches" @@ -240,7 +257,7 @@ msgstr "" msgid "All Submissions" msgstr "" -#: lms/lms/doctype/lms_quiz/lms_quiz.py:46 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:44 msgid "All questions should have the same marks if the limit is set." msgstr "" @@ -275,13 +292,13 @@ msgstr "" #. Label of the amount (Currency) field in DocType 'LMS Batch' #. Label of the course_price (Currency) field in DocType 'LMS Course' #. Label of the amount (Currency) field in DocType 'LMS Payment' -#: frontend/src/pages/BatchForm.vue:209 frontend/src/pages/CourseForm.vue:220 +#: frontend/src/pages/BatchForm.vue:209 frontend/src/pages/CourseForm.vue:217 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_payment/lms_payment.json #: lms/public/js/common_functions.js:379 msgid "Amount" -msgstr "Montante" +msgstr "" #. Label of the amount_usd (Currency) field in DocType 'LMS Batch' #. Label of the amount_usd (Currency) field in DocType 'LMS Course' @@ -327,7 +344,7 @@ msgstr "" msgid "Answer" msgstr "" -#: frontend/src/pages/CourseForm.vue:84 frontend/src/pages/CourseForm.vue:102 +#: frontend/src/pages/CourseForm.vue:81 frontend/src/pages/CourseForm.vue:99 msgid "Appears on the course card in the course list" msgstr "" @@ -335,11 +352,11 @@ msgstr "" msgid "Appears when the batch URL is shared on any online platform" msgstr "" -#: frontend/src/pages/JobDetail.vue:121 +#: frontend/src/pages/JobDetail.vue:128 msgid "Applications Received" msgstr "" -#: frontend/src/pages/JobDetail.vue:42 +#: frontend/src/pages/JobDetail.vue:48 msgid "Apply" msgstr "" @@ -370,7 +387,7 @@ msgstr "" msgid "Apps" msgstr "" -#: frontend/src/pages/Batches.vue:292 +#: frontend/src/pages/Batches.vue:294 msgid "Archived" msgstr "" @@ -382,11 +399,6 @@ msgstr "" msgid "Are you sure you want to login to your Frappe Cloud dashboard?" msgstr "" -#. Label of the user_category (Check) field in DocType 'LMS Settings' -#: lms/lms/doctype/lms_settings/lms_settings.json -msgid "Ask User Category during Signup" -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 @@ -415,6 +427,7 @@ msgid "Assessment {0} has already been added to this batch." msgstr "" #. Label of the show_assessments (Check) field in DocType 'LMS Settings' +#: frontend/src/components/AppSidebar.vue:527 #: frontend/src/components/Assessments.vue:5 #: frontend/src/components/BatchStudents.vue:68 #: frontend/src/components/BatchStudents.vue:101 @@ -431,7 +444,7 @@ msgstr "" #. Lesson' #. Label of the assignment (Link) field in DocType 'LMS Assignment Submission' #: frontend/src/pages/AssignmentSubmissionList.vue:12 -#: frontend/src/utils/assignment.js:26 +#: frontend/src/utils/assignment.js:24 #: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/templates/assignment.html:3 @@ -450,6 +463,10 @@ msgstr "" msgid "Assignment Submission Template" msgstr "" +#: frontend/src/pages/AssignmentSubmissionList.vue:223 +msgid "Assignment Submissions" +msgstr "" + #. Label of the assignment_title (Data) field in DocType 'LMS Assignment #. Submission' #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json @@ -460,7 +477,7 @@ msgstr "" msgid "Assignment for Lesson {0} by {1} already exists." msgstr "" -#: frontend/src/pages/AssignmentForm.vue:155 +#: frontend/src/pages/AssignmentForm.vue:158 msgid "Assignment saved successfully" msgstr "" @@ -469,7 +486,9 @@ msgstr "" msgid "Assignment will appear at the bottom of the lesson." msgstr "" -#: frontend/src/pages/AssignmentForm.vue:174 +#: frontend/src/components/AppSidebar.vue:531 +#: frontend/src/pages/AssignmentForm.vue:177 +#: frontend/src/pages/Assignments.vue:193 lms/www/lms.py:251 msgid "Assignments" msgstr "" @@ -484,7 +503,7 @@ msgstr "" #: frontend/src/pages/ProfileEvaluator.vue:123 msgid "Authorize Google Calendar Access" -msgstr "Autorizar acesso ao Google Agenda" +msgstr "" #. Option for the 'Event' (Select) field in DocType 'LMS Badge' #: lms/lms/doctype/lms_badge/lms_badge.json @@ -538,7 +557,7 @@ msgstr "" #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_live_class/lms_live_class.json msgid "Batch" -msgstr "Lote" +msgstr "" #. Label of the batch_confirmation_template (Link) field in DocType 'LMS #. Settings' @@ -626,7 +645,7 @@ msgstr "" msgid "Batch end date cannot be before the batch start date" msgstr "" -#: lms/lms/api.py:236 +#: lms/lms/api.py:238 msgid "Batch is sold out." msgstr "" @@ -635,8 +654,8 @@ msgid "Batch:" msgstr "" #. Label of the batches (Check) field in DocType 'LMS Settings' -#: frontend/src/pages/Batches.vue:300 -#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:63 +#: frontend/src/pages/Batches.vue:304 frontend/src/pages/Batches.vue:311 +#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:105 msgid "Batches" msgstr "" @@ -654,7 +673,7 @@ msgstr "" #. Label of the billing_details_section (Section Break) field in DocType 'LMS #. Payment' -#: frontend/src/pages/Billing.vue:8 +#: frontend/src/pages/Billing.vue:8 frontend/src/pages/Billing.vue:363 #: lms/lms/doctype/lms_payment/lms_payment.json msgid "Billing Details" msgstr "" @@ -682,7 +701,7 @@ msgstr "" #. Label of the branch (Data) field in DocType 'User' #: lms/fixtures/custom_field.json msgid "Branch" -msgstr "Filial" +msgstr "" #. Option for the 'User Category' (Select) field in DocType 'User' #: lms/fixtures/custom_field.json lms/templates/signup-form.html:23 @@ -718,7 +737,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 "Cancelado" +msgstr "" #. Label of the carrer_preference_details (Section Break) field in DocType #. 'User' @@ -736,8 +755,9 @@ msgstr "" #. Label of the category (Link) field in DocType 'LMS Course' #: frontend/src/pages/BatchForm.vue:190 frontend/src/pages/Batches.vue:55 #: frontend/src/pages/CertifiedParticipants.vue:37 -#: frontend/src/pages/CourseForm.vue:147 frontend/src/pages/Courses.vue:51 -#: frontend/src/pages/JobDetail.vue:96 lms/lms/doctype/lms_batch/lms_batch.json +#: frontend/src/pages/CourseForm.vue:144 frontend/src/pages/Courses.vue:51 +#: frontend/src/pages/JobDetail.vue:103 +#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/public/js/common_functions.js:316 lms/templates/signup-form.html:22 @@ -746,7 +766,7 @@ msgstr "" #: frontend/src/components/Categories.vue:22 msgid "Category Name" -msgstr "Nome da Categoria" +msgstr "" #. Label of the certificate (Link) field in DocType 'LMS Enrollment' #. Label of a shortcut in the LMS Workspace @@ -787,11 +807,12 @@ msgstr "" #. Enrollment' #. Label of a Card Break in the LMS Workspace #. Label of a Link in the LMS Workspace +#: frontend/src/components/AppSidebar.vue:535 #: frontend/src/components/CourseCard.vue:111 #: frontend/src/components/Modals/Event.vue:371 #: frontend/src/pages/BatchForm.vue:37 frontend/src/pages/Batches.vue:38 #: frontend/src/pages/CourseCertification.vue:10 -#: frontend/src/pages/CourseCertification.vue:133 +#: frontend/src/pages/CourseCertification.vue:135 #: frontend/src/pages/Courses.vue:34 lms/fixtures/custom_field.json #: lms/lms/doctype/certification/certification.json #: lms/lms/doctype/lms_batch/lms_batch.json @@ -815,7 +836,8 @@ msgid "Certified" msgstr "" #. Label of the certified_participants (Check) field in DocType 'LMS Settings' -#: frontend/src/pages/CertifiedParticipants.vue:161 +#: frontend/src/pages/CertifiedParticipants.vue:164 +#: frontend/src/pages/CertifiedParticipants.vue:171 #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Certified Participants" msgstr "" @@ -824,7 +846,7 @@ msgstr "" msgid "Change" msgstr "" -#: frontend/src/components/Assignment.vue:340 +#: frontend/src/components/Assignment.vue:341 msgid "Changes saved successfully" msgstr "" @@ -842,11 +864,11 @@ msgstr "" msgid "Chapter Reference" msgstr "" -#: frontend/src/components/Modals/ChapterModal.vue:154 +#: frontend/src/components/Modals/ChapterModal.vue:155 msgid "Chapter added successfully" msgstr "" -#: frontend/src/components/Modals/ChapterModal.vue:198 +#: frontend/src/components/Modals/ChapterModal.vue:199 msgid "Chapter updated successfully" msgstr "" @@ -857,7 +879,7 @@ msgstr "" #: frontend/src/components/Quiz.vue:205 lms/templates/quiz/quiz.html:120 msgid "Check" -msgstr "Verifica" +msgstr "" #: lms/templates/emails/mention_template.html:10 msgid "Check Discussion" @@ -878,7 +900,7 @@ msgstr "" msgid "Choices" msgstr "" -#: frontend/src/components/Quiz.vue:610 lms/templates/quiz/quiz.html:53 +#: frontend/src/components/Quiz.vue:613 lms/templates/quiz/quiz.html:53 msgid "Choose all answers that apply" msgstr "" @@ -886,14 +908,14 @@ msgstr "" msgid "Choose an icon" msgstr "" -#: frontend/src/components/Quiz.vue:611 lms/templates/quiz/quiz.html:53 +#: frontend/src/components/Quiz.vue:614 lms/templates/quiz/quiz.html:53 msgid "Choose one answer" msgstr "" #. Label of the city (Data) field in DocType 'User' #: frontend/src/pages/Billing.vue:81 lms/fixtures/custom_field.json msgid "City" -msgstr "Cidade" +msgstr "" #: lms/templates/emails/live_class_reminder.html:10 msgid "Class:" @@ -915,19 +937,19 @@ msgstr "" #. Label of the client_id (Data) field in DocType 'Zoom Settings' #: lms/lms/doctype/zoom_settings/zoom_settings.json msgid "Client ID" -msgstr "ID do Cliente" +msgstr "" #. Label of the client_secret (Password) field in DocType 'Zoom Settings' #: lms/lms/doctype/zoom_settings/zoom_settings.json msgid "Client Secret" -msgstr "Segredo do cliente" +msgstr "" #. Option for the 'Status' (Select) field in DocType 'Job Opportunity' #. Option for the 'Membership' (Select) field in DocType 'LMS Batch Old' #: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/lms/doctype/lms_batch_old/lms_batch_old.json msgid "Closed" -msgstr "Fechado" +msgstr "" #. Option for the 'Auto Recording' (Select) field in DocType 'LMS Live Class' #: lms/lms/doctype/lms_live_class/lms_live_class.json @@ -937,7 +959,7 @@ msgstr "" #. Label of the code (Code) field in DocType 'LMS Exercise' #: lms/lms/doctype/lms_exercise/lms_exercise.json msgid "Code" -msgstr "Código" +msgstr "" #. Name of a DocType #. Label of the cohort (Link) field in DocType 'Cohort Join Request' @@ -986,7 +1008,7 @@ msgstr "" msgid "Collaboration Preference" msgstr "" -#: frontend/src/components/CourseOutline.vue:14 +#: frontend/src/components/CourseOutline.vue:21 msgid "Collapse all chapters" msgstr "" @@ -1006,15 +1028,15 @@ msgstr "" #. Label of the comments (Text Editor) field in DocType 'LMS Assignment #. Submission' #. Label of the comments (Small Text) field in DocType 'LMS Mentor Request' -#: frontend/src/components/Assignment.vue:166 +#: frontend/src/components/Assignment.vue:164 #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_submission/exercise_submission.json #: 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:145 +#: frontend/src/components/Assignment.vue:142 msgid "Comments by Evaluator" msgstr "" @@ -1023,7 +1045,7 @@ msgstr "" #: lms/job/doctype/lms_job_application/lms_job_application.json #: lms/lms/doctype/work_experience/work_experience.json msgid "Company" -msgstr "Empresa" +msgstr "" #. Label of the company_details_section (Section Break) field in DocType 'Job #. Opportunity' @@ -1048,7 +1070,7 @@ msgstr "" #: frontend/src/pages/JobCreation.vue:70 #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Company Name" -msgstr "Nome da Empresa" +msgstr "" #. Label of the company_type (Select) field in DocType 'User' #: lms/fixtures/custom_field.json @@ -1066,7 +1088,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 "Concluído" +msgstr "" #: lms/templates/emails/lms_invite_request_approved.html:7 msgid "Complete Sign Up" @@ -1088,14 +1110,14 @@ msgstr "" #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/widgets/CourseCard.html:78 msgid "Completed" -msgstr "Concluído" +msgstr "" -#: frontend/src/components/BatchStudents.vue:369 +#: frontend/src/components/BatchStudents.vue:370 msgid "Completed by Students" msgstr "" #. Label of the enable_certification (Check) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:212 +#: frontend/src/pages/CourseForm.vue:209 #: lms/lms/doctype/lms_course/lms_course.json msgid "Completion Certificate" msgstr "" @@ -1157,10 +1179,10 @@ msgid "Continue Learning" msgstr "" #. Option for the 'Type' (Select) field in DocType 'Job Opportunity' -#: frontend/src/pages/Jobs.vue:146 +#: frontend/src/pages/Jobs.vue:163 #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Contract" -msgstr "Contrato" +msgstr "" #: lms/lms/utils.py:438 msgid "Cookie Policy" @@ -1193,7 +1215,7 @@ msgstr "" #: frontend/src/pages/Billing.vue:92 lms/fixtures/custom_field.json #: lms/lms/doctype/payment_country/payment_country.json msgid "Country" -msgstr "País" +msgstr "" #. Label of the course (Link) field in DocType 'Batch Course' #. Label of the course (Link) field in DocType 'Cohort' @@ -1272,6 +1294,7 @@ msgstr "" #. Name of a role #: frontend/src/pages/ProfileRoles.vue:16 #: lms/lms/doctype/course_chapter/course_chapter.json +#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_program/lms_program.json @@ -1285,7 +1308,7 @@ msgstr "" msgid "Course Data" msgstr "" -#: frontend/src/pages/CourseForm.vue:49 +#: frontend/src/pages/CourseForm.vue:46 msgid "Course Description" msgstr "" @@ -1294,7 +1317,7 @@ msgstr "" msgid "Course Evaluator" msgstr "" -#: frontend/src/pages/CourseForm.vue:62 +#: frontend/src/pages/CourseForm.vue:59 msgid "Course Image" msgstr "" @@ -1308,7 +1331,7 @@ msgstr "" msgid "Course Lesson" msgstr "" -#: lms/www/lms.py:30 +#: lms/www/lms.py:70 msgid "Course List" msgstr "" @@ -1316,7 +1339,7 @@ msgstr "" msgid "Course Name" msgstr "" -#: frontend/src/pages/CourseDetail.vue:76 +#: frontend/src/pages/CourseDetail.vue:76 frontend/src/pages/CourseForm.vue:237 msgid "Course Outline" msgstr "" @@ -1348,7 +1371,7 @@ msgstr "" msgid "Course Title" msgstr "" -#: frontend/src/pages/ProgramForm.vue:229 +#: frontend/src/pages/ProgramForm.vue:232 msgid "Course added to program" msgstr "" @@ -1356,11 +1379,11 @@ msgstr "" msgid "Course already added to the batch." msgstr "" -#: frontend/src/pages/CourseForm.vue:469 +#: frontend/src/pages/CourseForm.vue:470 msgid "Course deleted successfully" msgstr "" -#: frontend/src/pages/ProgramForm.vue:298 +#: frontend/src/pages/ProgramForm.vue:301 msgid "Course moved successfully" msgstr "" @@ -1378,8 +1401,9 @@ msgstr "" #: frontend/src/components/BatchStudents.vue:92 #: frontend/src/components/Modals/BatchStudentProgress.vue:79 #: frontend/src/pages/BatchDetail.vue:21 frontend/src/pages/BatchDetail.vue:70 -#: frontend/src/pages/CourseCertification.vue:125 -#: frontend/src/pages/Courses.vue:298 frontend/src/pages/Statistics.vue:21 +#: frontend/src/pages/CourseCertification.vue:127 +#: frontend/src/pages/Courses.vue:304 frontend/src/pages/Courses.vue:311 +#: frontend/src/pages/Statistics.vue:21 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Courses" @@ -1390,7 +1414,7 @@ msgstr "" msgid "Courses Completed" msgstr "" -#: frontend/src/components/BatchCourses.vue:151 +#: frontend/src/components/BatchCourses.vue:154 msgid "Courses deleted successfully" msgstr "" @@ -1402,7 +1426,7 @@ msgstr "" #: frontend/src/components/Modals/ChapterModal.vue:9 #: frontend/src/pages/Programs.vue:108 msgid "Create" -msgstr "Criar" +msgstr "" #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.js:7 msgid "Create Certificate" @@ -1416,34 +1440,66 @@ msgstr "" msgid "Create a Live Class" msgstr "" -#: frontend/src/components/OnboardingBanner.vue:30 +#: frontend/src/components/AppSidebar.vue:522 +msgid "Create a batch" +msgstr "" + +#: frontend/src/components/AppSidebar.vue:513 msgid "Create a course" msgstr "" +#: frontend/src/components/AppSidebar.vue:523 +msgid "Create a live class" +msgstr "" + #: frontend/src/components/Modals/Question.vue:31 msgid "Create a new question" msgstr "" -#: frontend/src/pages/Assignments.vue:163 frontend/src/pages/Courses.vue:291 +#: frontend/src/components/AppSidebar.vue:449 +msgid "Create your first batch" +msgstr "" + +#: frontend/src/components/AppSidebar.vue:383 +msgid "Create your first course" +msgstr "" + +#: frontend/src/components/AppSidebar.vue:428 +msgid "Create your first quiz" +msgstr "" + +#: frontend/src/pages/Assignments.vue:166 frontend/src/pages/Courses.vue:295 msgid "Created" msgstr "" +#: frontend/src/components/AppSidebar.vue:519 +msgid "Creating a batch" +msgstr "" + +#: frontend/src/components/AppSidebar.vue:510 +msgid "Creating a course" +msgstr "" + #. Label of the currency (Link) field in DocType 'LMS Batch' #. Label of the currency (Link) field in DocType 'LMS Course' #. Label of the currency (Link) field in DocType 'LMS Payment' -#: frontend/src/pages/BatchForm.vue:217 frontend/src/pages/CourseForm.vue:225 +#: frontend/src/pages/BatchForm.vue:217 frontend/src/pages/CourseForm.vue:222 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_payment/lms_payment.json #: lms/public/js/common_functions.js:387 msgid "Currency" -msgstr "Moeda" +msgstr "" #. Label of the current_lesson (Link) field in DocType 'LMS Enrollment' #: lms/lms/doctype/lms_enrollment/lms_enrollment.json msgid "Current Lesson" msgstr "" +#: frontend/src/components/AppSidebar.vue:541 +msgid "Custom Certificate Templates" +msgstr "" + #. Label of the custom_component (Code) field in DocType 'LMS Batch' #: lms/lms/doctype/lms_batch/lms_batch.json msgid "Custom HTML" @@ -1485,7 +1541,7 @@ msgstr "" #: lms/lms/doctype/scheduled_flow/scheduled_flow.json #: lms/templates/quiz/quiz.html:149 msgid "Date" -msgstr "Data" +msgstr "" #. Label of the section_break_glxh (Section Break) field in DocType 'LMS Live #. Class' @@ -1511,7 +1567,7 @@ msgstr "" #: lms/templates/emails/mentor_request_creation_email.html:2 #: lms/templates/emails/mentor_request_status_update_email.html:2 msgid "Dear" -msgstr "Caro" +msgstr "" #: lms/templates/emails/batch_confirmation.html:2 #: lms/templates/emails/batch_start_reminder.html:2 @@ -1530,37 +1586,37 @@ msgstr "" msgid "Degree Type" msgstr "" -#: frontend/src/components/CourseOutline.vue:240 -#: frontend/src/components/CourseOutline.vue:298 -#: frontend/src/pages/CourseForm.vue:15 frontend/src/pages/CourseForm.vue:482 +#: frontend/src/components/CourseOutline.vue:248 +#: frontend/src/components/CourseOutline.vue:306 +#: frontend/src/pages/CourseForm.vue:483 msgid "Delete" -msgstr "Excluir" +msgstr "" -#: frontend/src/components/CourseOutline.vue:52 +#: frontend/src/components/CourseOutline.vue:59 msgid "Delete Chapter" msgstr "" -#: frontend/src/pages/CourseForm.vue:476 +#: frontend/src/pages/CourseForm.vue:477 msgid "Delete Course" msgstr "" -#: frontend/src/components/CourseOutline.vue:292 +#: frontend/src/components/CourseOutline.vue:300 msgid "Delete this chapter?" msgstr "" -#: frontend/src/components/CourseOutline.vue:234 +#: frontend/src/components/CourseOutline.vue:242 msgid "Delete this lesson?" msgstr "" -#: frontend/src/pages/CourseForm.vue:477 +#: frontend/src/pages/CourseForm.vue:478 msgid "Deleting the course will also delete all its chapters and lessons. Are you sure you want to delete this course?" msgstr "" -#: frontend/src/components/CourseOutline.vue:293 +#: frontend/src/components/CourseOutline.vue:301 msgid "Deleting this chapter will also delete all its lessons and permanently remove it from the course. This action cannot be undone. Are you sure you want to continue?" msgstr "" -#: frontend/src/components/CourseOutline.vue:235 +#: frontend/src/components/CourseOutline.vue:243 msgid "Deleting this lesson will permanently remove it from the course. This action cannot be undone. Are you sure you want to continue?" msgstr "" @@ -1591,7 +1647,7 @@ msgstr "" #: lms/lms/doctype/work_experience/work_experience.json #: lms/public/js/common_functions.js:342 msgid "Description" -msgstr "Descrição" +msgstr "" #: frontend/src/components/Apps.vue:51 msgid "Desk" @@ -1599,11 +1655,11 @@ msgstr "" #: frontend/src/components/Modals/DiscussionModal.vue:22 #: frontend/src/pages/AssignmentForm.vue:27 frontend/src/pages/BatchForm.vue:14 -#: frontend/src/pages/CourseForm.vue:28 frontend/src/pages/QuizForm.vue:42 +#: frontend/src/pages/CourseForm.vue:25 frontend/src/pages/QuizForm.vue:42 msgid "Details" msgstr "" -#: frontend/src/pages/CourseForm.vue:194 +#: frontend/src/pages/CourseForm.vue:191 msgid "Disable Self Enrollment" msgstr "" @@ -1612,10 +1668,15 @@ msgstr "" msgid "Disable Self Learning" msgstr "" +#. Label of the disable_signup (Check) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Disable Signup" +msgstr "" + #. Label of the disabled (Check) field in DocType 'Job Opportunity' #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Disabled" -msgstr "Desativado" +msgstr "" #: frontend/src/components/DiscussionReplies.vue:55 #: lms/lms/widgets/NoPreviewModal.html:25 lms/templates/reviews.html:159 @@ -1635,7 +1696,7 @@ msgstr "" #: lms/lms/doctype/lms_assignment/lms_assignment.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json msgid "Document" -msgstr "Documento" +msgstr "" #: lms/templates/emails/payment_reminder.html:11 msgid "Don’t miss this opportunity to enhance your skills. Click below to complete your enrollment" @@ -1658,7 +1719,7 @@ msgstr "" #: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json #: lms/lms/doctype/lms_live_class/lms_live_class.json msgid "Duration" -msgstr "Duração" +msgstr "" #. Label of the duration (Data) field in DocType 'LMS Quiz' #: frontend/src/pages/QuizForm.vue:63 lms/lms/doctype/lms_quiz/lms_quiz.json @@ -1685,9 +1746,9 @@ msgstr "" #: frontend/src/pages/JobDetail.vue:31 frontend/src/pages/Lesson.vue:66 #: frontend/src/pages/Profile.vue:32 frontend/src/pages/Programs.vue:53 msgid "Edit" -msgstr "Editar" +msgstr "" -#: frontend/src/components/CourseOutline.vue:45 +#: frontend/src/components/CourseOutline.vue:52 #: frontend/src/components/Modals/ChapterModal.vue:5 msgid "Edit Chapter" msgstr "" @@ -1715,6 +1776,7 @@ msgstr "" msgid "Education Details" msgstr "" +#: frontend/src/components/Evaluators.vue:32 #: frontend/src/components/Members.vue:32 lms/templates/signup-form.html:10 msgid "Email" msgstr "" @@ -1745,14 +1807,14 @@ msgstr "" #. Option for the 'User Category' (Select) field in DocType 'User' #: lms/fixtures/custom_field.json lms/templates/signup-form.html:25 msgid "Employee" -msgstr "Colaborador" +msgstr "" #. Label of the enable (Check) field in DocType 'Zoom Settings' #: lms/lms/doctype/zoom_settings/zoom_settings.json msgid "Enable" -msgstr "Permitir" +msgstr "" -#: lms/lms/doctype/lms_settings/lms_settings.py:20 +#: lms/lms/doctype/lms_settings/lms_settings.py:21 msgid "Enable Google API in Google Settings to send calendar invites for evaluations." msgstr "" @@ -1780,7 +1842,7 @@ msgstr "" #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/public/js/common_functions.js:282 msgid "End Date" -msgstr "Data Final" +msgstr "" #. Label of the end_date (Date) field in DocType 'Education Detail' #: lms/lms/doctype/education_detail/education_detail.json @@ -1811,7 +1873,7 @@ msgstr "" msgid "Enroll Now" msgstr "" -#: frontend/src/pages/Batches.vue:289 frontend/src/pages/Courses.vue:289 +#: frontend/src/pages/Batches.vue:297 frontend/src/pages/Courses.vue:297 msgid "Enrolled" msgstr "" @@ -1834,7 +1896,7 @@ msgstr "" msgid "Enrollment Count" msgstr "" -#: lms/lms/utils.py:1897 +#: lms/lms/utils.py:1898 msgid "Enrollment Failed" msgstr "" @@ -1846,11 +1908,11 @@ msgstr "" msgid "Enrollments" msgstr "" -#: lms/lms/doctype/lms_settings/lms_settings.py:25 +#: lms/lms/doctype/lms_settings/lms_settings.py:26 msgid "Enter Client Id and Client Secret in Google Settings to send calendar invites for evaluations." msgstr "" -#: frontend/src/components/Assignment.vue:110 +#: frontend/src/components/Assignment.vue:113 msgid "Enter a URL" msgstr "" @@ -1862,24 +1924,24 @@ msgstr "" msgid "Enter the correct answer" msgstr "" -#: frontend/src/components/Assignment.vue:286 +#: frontend/src/components/Assignment.vue:287 #: frontend/src/components/Modals/AnnouncementModal.vue:105 #: frontend/src/components/Modals/BulkCertificates.vue:115 -#: frontend/src/components/Modals/ChapterModal.vue:159 -#: frontend/src/components/Modals/ChapterModal.vue:166 -#: frontend/src/components/Modals/ChapterModal.vue:202 -#: frontend/src/components/Modals/Question.vue:249 -#: frontend/src/components/Modals/Question.vue:269 -#: frontend/src/components/Modals/Question.vue:326 -#: frontend/src/components/Modals/StudentModal.vue:67 -#: frontend/src/components/Quiz.vue:589 +#: frontend/src/components/Modals/ChapterModal.vue:160 +#: frontend/src/components/Modals/ChapterModal.vue:167 +#: frontend/src/components/Modals/ChapterModal.vue:203 +#: frontend/src/components/Modals/Question.vue:252 +#: frontend/src/components/Modals/Question.vue:275 +#: frontend/src/components/Modals/Question.vue:332 +#: frontend/src/components/Modals/StudentModal.vue:73 +#: frontend/src/components/Quiz.vue:592 #: frontend/src/components/SettingDetails.vue:62 -#: frontend/src/pages/AssignmentForm.vue:139 -#: frontend/src/pages/AssignmentForm.vue:159 frontend/src/pages/Billing.vue:261 -#: frontend/src/pages/QuizForm.vue:346 frontend/src/pages/QuizForm.vue:361 -#: frontend/src/pages/QuizSubmission.vue:147 +#: frontend/src/pages/AssignmentForm.vue:142 +#: frontend/src/pages/AssignmentForm.vue:162 frontend/src/pages/Billing.vue:262 +#: frontend/src/pages/QuizForm.vue:349 frontend/src/pages/QuizForm.vue:364 +#: frontend/src/pages/QuizSubmission.vue:150 msgid "Error" -msgstr "Erro" +msgstr "" #: lms/lms/doctype/lms_batch/lms_batch.py:180 msgid "Error creating live class. Please try again. {0}" @@ -1926,7 +1988,7 @@ msgstr "" #. Label of the evaluator (Link) field in DocType 'LMS Course' #: frontend/src/components/Modals/BatchCourseModal.vue:26 #: frontend/src/components/Modals/BulkCertificates.vue:22 -#: frontend/src/pages/CourseForm.vue:231 frontend/src/pages/ProfileRoles.vue:22 +#: frontend/src/pages/CourseForm.vue:228 frontend/src/pages/ProfileRoles.vue:22 #: lms/lms/doctype/batch_course/batch_course.json #: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json @@ -1998,7 +2060,7 @@ msgstr "" msgid "Exercise Title" msgstr "" -#: frontend/src/components/CourseOutline.vue:14 +#: frontend/src/components/CourseOutline.vue:21 msgid "Expand all chapters" msgstr "" @@ -2044,7 +2106,7 @@ msgstr "" #. Label of the featured (Check) field in DocType 'LMS Course' #: frontend/src/components/CourseCard.vue:16 -#: frontend/src/pages/CourseForm.vue:189 +#: frontend/src/pages/CourseForm.vue:186 #: lms/lms/doctype/lms_course/lms_course.json msgid "Featured" msgstr "" @@ -2053,16 +2115,16 @@ msgstr "" #: frontend/src/components/BatchFeedback.vue:29 #: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json msgid "Feedback" -msgstr "Comentários" +msgstr "" -#: frontend/src/components/Assignment.vue:61 +#: frontend/src/components/Assignment.vue:64 msgid "Feel free to make edits to your submission if needed." msgstr "" #. Label of the field_to_check (Select) field in DocType 'LMS Badge' #: lms/lms/doctype/lms_badge/lms_badge.json msgid "Field To Check" -msgstr "Campo a verificar" +msgstr "" #. Label of the major (Data) field in DocType 'Education Detail' #: lms/lms/doctype/education_detail/education_detail.json @@ -2093,10 +2155,6 @@ msgstr "" msgid "Flexible Time" msgstr "" -#: frontend/src/pages/QuizForm.vue:459 -msgid "Form to create and edit quizzes" -msgstr "" - #. Option for the 'Attire Preference' (Select) field in DocType 'User' #: lms/fixtures/custom_field.json msgid "Formal Wear" @@ -2107,7 +2165,7 @@ msgid "Free" msgstr "" #. Option for the 'Type' (Select) field in DocType 'Job Opportunity' -#: frontend/src/pages/Jobs.vue:147 +#: frontend/src/pages/Jobs.vue:164 #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Freelance" msgstr "" @@ -2133,15 +2191,17 @@ msgstr "" #: frontend/src/pages/ProfileEvaluator.vue:85 #: 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 msgid "From Date" -msgstr "Data De" +msgstr "" +#. Label of the full_name (Data) field in DocType 'Course Evaluator' #. Label of the full_name (Data) field in DocType 'Invite Request' #. Label of the full_name (Data) field in DocType 'LMS Program Member' +#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/invite_request/invite_request.json #: lms/lms/doctype/lms_program_member/lms_program_member.json #: lms/templates/signup-form.html:5 @@ -2149,7 +2209,7 @@ msgid "Full Name" msgstr "" #. Option for the 'Type' (Select) field in DocType 'Job Opportunity' -#: frontend/src/pages/Jobs.vue:144 +#: frontend/src/pages/Jobs.vue:161 #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Full Time" msgstr "" @@ -2215,7 +2275,7 @@ msgid "Google Meet Link" msgstr "" #. Label of the grade (Data) field in DocType 'Education Detail' -#: frontend/src/components/Assignment.vue:160 +#: frontend/src/components/Assignment.vue:158 #: lms/lms/doctype/education_detail/education_detail.json msgid "Grade" msgstr "" @@ -2230,7 +2290,7 @@ msgstr "" msgid "Grade Type" msgstr "" -#: frontend/src/components/Assignment.vue:155 +#: frontend/src/components/Assignment.vue:153 msgid "Grading" msgstr "" @@ -2253,6 +2313,10 @@ msgstr "" msgid "Hello" msgstr "" +#: frontend/src/components/AppSidebar.vue:80 +msgid "Help" +msgstr "" + #: frontend/src/components/BatchFeedback.vue:11 msgid "Help Us Improve" msgstr "" @@ -2323,7 +2387,7 @@ msgstr "" msgid "I am unavailable" msgstr "" -#: frontend/src/pages/QuizForm.vue:380 +#: frontend/src/pages/QuizForm.vue:383 msgid "ID" msgstr "" @@ -2333,6 +2397,11 @@ msgstr "" msgid "Icon" msgstr "" +#. Label of the user_category (Check) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Identify User Persona" +msgstr "" + #: frontend/src/components/LessonHelp.vue:11 msgid "If Include in Preview is enabled for a lesson then the lesson will also be accessible to non logged in users." msgstr "" @@ -2363,7 +2432,7 @@ msgstr "" msgid "If you set an amount here, then the USD equivalent setting will not get applied." msgstr "" -#: lms/lms/doctype/lms_quiz/lms_quiz.py:63 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:61 msgid "If you want open ended questions then make sure each question in the quiz is of open ended type." msgstr "" @@ -2382,14 +2451,14 @@ msgstr "" #: lms/lms/doctype/lms_badge/lms_badge.json #: lms/lms/doctype/lms_exercise/lms_exercise.json msgid "Image" -msgstr "Imagem" +msgstr "" #: frontend/src/components/Modals/EditCoverImage.vue:58 #: frontend/src/components/UnsplashImageBrowser.vue:52 msgid "Image search powered by" msgstr "" -#: lms/lms/doctype/lms_quiz/lms_quiz.py:221 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:219 msgid "Image: Corrupted Data Stream" msgstr "" @@ -2402,7 +2471,7 @@ msgstr "" #: 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 @@ -2478,7 +2547,7 @@ msgstr "" #. Label of the instructors (Table MultiSelect) field in DocType 'LMS Batch' #. Label of the instructors (Rating) field in DocType 'LMS Batch Feedback' #. Label of the instructors (Table MultiSelect) field in DocType 'LMS Course' -#: frontend/src/pages/BatchForm.vue:93 frontend/src/pages/CourseForm.vue:154 +#: frontend/src/pages/BatchForm.vue:93 frontend/src/pages/CourseForm.vue:151 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json #: lms/lms/doctype/lms_course/lms_course.json @@ -2494,14 +2563,23 @@ msgstr "" msgid "Interest" msgstr "" +#: frontend/src/components/AppSidebar.vue:502 +#: frontend/src/components/AppSidebar.vue:505 +msgid "Introduction" +msgstr "" + #: lms/lms/doctype/invite_request/invite_request.py:83 msgid "Invalid Invite Code." msgstr "" -#: lms/lms/doctype/course_lesson/course_lesson.py:20 +#: lms/lms/doctype/course_lesson/course_lesson.py:19 msgid "Invalid Quiz ID" msgstr "" +#: lms/lms/doctype/course_lesson/course_lesson.py:33 +msgid "Invalid Quiz ID in content" +msgstr "" + #. Label of the invite_code (Data) field in DocType 'Cohort Subgroup' #. Label of the invite_code (Data) field in DocType 'Invite Request' #: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json @@ -2524,6 +2602,10 @@ msgstr "" msgid "Invite Request" msgstr "" +#: frontend/src/components/AppSidebar.vue:438 +msgid "Invite your team and students" +msgstr "" + #. Label of the is_correct (Check) field in DocType 'LMS Option' #. Label of the is_correct_1 (Check) field in DocType 'LMS Question' #. Label of the is_correct_2 (Check) field in DocType 'LMS Question' @@ -2536,11 +2618,6 @@ msgstr "" msgid "Is Correct" msgstr "" -#. Label of the is_onboarding_complete (Check) field in DocType 'LMS Settings' -#: lms/lms/doctype/lms_settings/lms_settings.json -msgid "Is Onboarding Complete" -msgstr "" - #. Label of the is_scorm_package (Check) field in DocType 'Course Chapter' #. Label of the is_scorm_package (Check) field in DocType 'Course Lesson' #: lms/lms/doctype/course_chapter/course_chapter.json @@ -2557,6 +2634,10 @@ msgstr "" msgid "Issue Date" msgstr "" +#: frontend/src/components/AppSidebar.vue:538 +msgid "Issue a Certificate" +msgstr "" + #. Label of the issued_on (Date) field in DocType 'LMS Badge Assignment' #: frontend/src/pages/CourseCertification.vue:27 #: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json @@ -2575,7 +2656,7 @@ msgstr "" msgid "Items in Sidebar" msgstr "" -#: frontend/src/pages/ProgramForm.vue:272 +#: frontend/src/pages/ProgramForm.vue:275 msgid "Items removed successfully" msgstr "" @@ -2602,7 +2683,7 @@ msgstr "" msgid "Job Details" msgstr "" -#: lms/www/lms.py:111 +#: lms/www/lms.py:159 msgid "Job Openings" msgstr "" @@ -2625,6 +2706,7 @@ msgstr "" #. Label of the jobs (Check) field in DocType 'LMS Settings' #: frontend/src/pages/JobDetail.vue:10 frontend/src/pages/Jobs.vue:8 +#: frontend/src/pages/Jobs.vue:170 #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Jobs" msgstr "" @@ -2848,7 +2930,6 @@ msgstr "" #: lms/job/doctype/lms_job_application/lms_job_application.json #: lms/lms/doctype/cohort_join_request/cohort_join_request.json #: lms/lms/doctype/course_chapter/course_chapter.json -#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/function/function.json #: lms/lms/doctype/industry/industry.json #: lms/lms/doctype/lms_assignment/lms_assignment.json @@ -2960,7 +3041,7 @@ msgstr "" msgid "Limit Questions To" msgstr "" -#: lms/lms/doctype/lms_quiz/lms_quiz.py:40 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:38 msgid "Limit cannot be greater than or equal to the number of questions in the quiz." msgstr "" @@ -2980,12 +3061,8 @@ msgstr "" msgid "Links" msgstr "" -#: frontend/src/pages/Quizzes.vue:149 -msgid "List of quizzes" -msgstr "" - #. Option for the 'Status' (Select) field in DocType 'Cohort' -#: frontend/src/pages/Courses.vue:279 lms/lms/doctype/cohort/cohort.json +#: frontend/src/pages/Courses.vue:281 lms/lms/doctype/cohort/cohort.json msgid "Live" msgstr "" @@ -3017,19 +3094,18 @@ msgstr "" #. Label of the location (Data) field in DocType 'Job Opportunity' #. Label of the location (Data) field in DocType 'Education Detail' #. Label of the location (Data) field in DocType 'Work Experience' -#: frontend/src/pages/JobCreation.vue:26 frontend/src/pages/JobDetail.vue:85 +#: frontend/src/pages/JobCreation.vue:26 frontend/src/pages/JobDetail.vue:92 #: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/lms/doctype/education_detail/education_detail.json #: lms/lms/doctype/work_experience/work_experience.json msgid "Location" -msgstr "Localização" +msgstr "" #. Label of the location_preference (Select) field in DocType 'User' #: lms/fixtures/custom_field.json msgid "Location Preference" msgstr "" -#: frontend/src/components/AssignmentBlock.vue:13 #: frontend/src/components/NoPermission.vue:28 #: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:188 #: frontend/src/pages/Lesson.vue:25 @@ -3040,7 +3116,7 @@ msgstr "" msgid "Login to Frappe Cloud?" msgstr "" -#: frontend/src/pages/JobDetail.vue:48 +#: frontend/src/pages/JobDetail.vue:54 msgid "Login to apply" msgstr "" @@ -3097,7 +3173,7 @@ msgstr "" #. Label of the marks (Int) field in DocType 'LMS Quiz Result' #: frontend/src/components/Modals/Question.vue:50 #: frontend/src/components/Modals/Question.vue:99 -#: frontend/src/components/Quiz.vue:96 frontend/src/pages/QuizForm.vue:390 +#: frontend/src/components/Quiz.vue:96 frontend/src/pages/QuizForm.vue:393 #: frontend/src/pages/QuizSubmission.vue:65 #: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json #: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json @@ -3129,7 +3205,7 @@ msgstr "" #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/public/js/common_functions.js:309 msgid "Medium" -msgstr "Médio" +msgstr "" #. Label of the medium (Data) field in DocType 'User' #: lms/fixtures/custom_field.json @@ -3159,7 +3235,7 @@ msgstr "" #. Label of the member (Link) field in DocType 'LMS Quiz Submission' #: frontend/src/pages/AssignmentSubmissionList.vue:14 #: frontend/src/pages/QuizSubmission.vue:31 -#: frontend/src/pages/QuizSubmissionList.vue:86 +#: frontend/src/pages/QuizSubmissionList.vue:102 #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_submission/exercise_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json @@ -3240,7 +3316,7 @@ msgstr "" msgid "Member Username" msgstr "" -#: frontend/src/pages/ProgramForm.vue:251 +#: frontend/src/pages/ProgramForm.vue:254 msgid "Member added to program" msgstr "" @@ -3304,6 +3380,11 @@ msgstr "" msgid "Mentor Request Status Update Template" msgstr "" +#. Label of the meta_description (Small Text) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Meta Description" +msgstr "" + #. Label of the meta_image (Attach Image) field in DocType 'LMS Batch' #: frontend/src/pages/BatchForm.vue:44 lms/lms/doctype/lms_batch/lms_batch.json #: lms/public/js/common_functions.js:362 @@ -3326,6 +3407,7 @@ msgstr "" #. Name of a role #: frontend/src/pages/ProfileRoles.vue:10 #: lms/lms/doctype/course_evaluator/course_evaluator.json +#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/lms_assignment/lms_assignment.json #: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json #: lms/lms/doctype/lms_batch/lms_batch.json @@ -3347,11 +3429,11 @@ msgstr "" msgid "Modified By" msgstr "" -#: lms/lms/api.py:214 +#: lms/lms/api.py:216 msgid "Module Name is incorrect or does not exist." msgstr "" -#: lms/lms/api.py:210 +#: lms/lms/api.py:212 msgid "Module is incorrect." msgstr "" @@ -3362,6 +3444,10 @@ msgstr "" msgid "Monday" msgstr "" +#: frontend/src/components/AppSidebar.vue:546 +msgid "Monetization" +msgstr "" + #: frontend/src/components/AppSidebar.vue:39 msgid "More" msgstr "" @@ -3381,12 +3467,13 @@ msgstr "" #. Option for the 'Event' (Select) field in DocType 'LMS Badge' #: frontend/src/pages/Assignments.vue:18 frontend/src/pages/Batches.vue:17 -#: frontend/src/pages/Courses.vue:17 frontend/src/pages/Courses.vue:282 +#: frontend/src/pages/Courses.vue:17 frontend/src/pages/Courses.vue:284 #: frontend/src/pages/Programs.vue:14 lms/lms/doctype/lms_badge/lms_badge.json msgid "New" -msgstr "Novo" +msgstr "" -#: frontend/src/pages/AssignmentForm.vue:178 +#: frontend/src/pages/AssignmentForm.vue:181 +#: frontend/src/pages/AssignmentForm.vue:197 msgid "New Assignment" msgstr "" @@ -3394,11 +3481,11 @@ msgstr "" msgid "New Assignment Submission" msgstr "" -#: lms/public/js/common_functions.js:255 lms/www/lms.py:89 +#: lms/public/js/common_functions.js:255 lms/www/lms.py:134 msgid "New Batch" msgstr "" -#: lms/www/lms.py:40 +#: frontend/src/pages/CourseForm.vue:577 lms/www/lms.py:78 msgid "New Course" msgstr "" @@ -3426,7 +3513,7 @@ msgstr "" msgid "New Question" msgstr "" -#: frontend/src/pages/QuizForm.vue:450 frontend/src/pages/QuizForm.vue:458 +#: frontend/src/pages/QuizForm.vue:453 frontend/src/pages/QuizForm.vue:461 #: frontend/src/pages/Quizzes.vue:18 msgid "New Quiz" msgstr "" @@ -3435,11 +3522,11 @@ msgstr "" msgid "New Sign Up" msgstr "" -#: lms/lms/utils.py:605 +#: lms/lms/utils.py:606 msgid "New comment in batch {0}" msgstr "" -#: lms/lms/utils.py:598 +#: lms/lms/utils.py:599 msgid "New reply on the topic {0} in course {1}" msgstr "" @@ -3450,7 +3537,7 @@ msgstr "" #: frontend/src/components/Quiz.vue:213 frontend/src/pages/Lesson.vue:85 msgid "Next" -msgstr "Próximo" +msgstr "" #: lms/templates/quiz/quiz.html:125 msgid "Next Question" @@ -3464,7 +3551,7 @@ msgstr "" msgid "No Notifications" msgstr "" -#: frontend/src/components/Quiz.vue:275 +#: frontend/src/components/Quiz.vue:278 msgid "No Quiz submissions found" msgstr "" @@ -3493,6 +3580,10 @@ msgstr "" msgid "No certificates" msgstr "" +#: frontend/src/components/BatchCourses.vue:67 +msgid "No courses added" +msgstr "" + #: lms/templates/courses_created.html:14 msgid "No courses created" msgstr "" @@ -3517,8 +3608,8 @@ msgstr "" msgid "No introduction" msgstr "" -#: frontend/src/pages/Jobs.vue:77 -msgid "No jobs posted" +#: frontend/src/pages/Jobs.vue:80 +msgid "No jobs found" msgstr "" #: frontend/src/components/LiveClass.vue:71 @@ -3533,6 +3624,10 @@ msgstr "" msgid "No programs found" msgstr "" +#: frontend/src/pages/QuizSubmissionList.vue:52 +msgid "No quiz submissions found. Please check again later." +msgstr "" + #: frontend/src/pages/Quizzes.vue:61 msgid "No quizzes found" msgstr "" @@ -3542,6 +3637,7 @@ msgid "No slots available for this date." msgstr "" #: frontend/src/pages/AssignmentSubmissionList.vue:67 +#: frontend/src/pages/QuizSubmissionList.vue:49 msgid "No submissions" msgstr "" @@ -3555,7 +3651,7 @@ msgstr "" #: lms/lms/user.py:29 msgid "Not Allowed" -msgstr "Não Desejados" +msgstr "" #. Option for the 'Status' (Select) field in DocType 'LMS Assignment #. Submission' @@ -3579,9 +3675,9 @@ msgstr "" #: frontend/src/components/NoPermission.vue:7 frontend/src/pages/Batch.vue:156 msgid "Not Permitted" -msgstr "Não Permitido" +msgstr "" -#: frontend/src/components/Assignment.vue:33 +#: frontend/src/components/Assignment.vue:36 #: frontend/src/components/BrandSettings.vue:10 #: frontend/src/components/PaymentSettings.vue:9 #: frontend/src/components/SettingDetails.vue:10 @@ -3625,7 +3721,7 @@ msgstr "" msgid "Once again, congratulations on this significant accomplishment." msgstr "" -#: frontend/src/components/Assignment.vue:57 +#: frontend/src/components/Assignment.vue:60 msgid "Once the moderator grades your submission, you'll find the details here." msgstr "" @@ -3642,11 +3738,11 @@ msgstr "" msgid "Only files of type {0} will be accepted." msgstr "" -#: frontend/src/pages/CourseForm.vue:506 frontend/src/utils/index.js:549 +#: frontend/src/pages/CourseForm.vue:507 frontend/src/utils/index.js:550 msgid "Only image file is allowed." msgstr "" -#: frontend/src/components/Modals/ChapterModal.vue:220 +#: frontend/src/components/Modals/ChapterModal.vue:221 msgid "Only zip files are allowed" msgstr "" @@ -3656,7 +3752,7 @@ msgstr "" #: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/lms/doctype/lms_batch_old/lms_batch_old.json msgid "Open" -msgstr "Aberto" +msgstr "" #: lms/templates/emails/assignment_submission.html:8 msgid "Open Assignment" @@ -3704,14 +3800,14 @@ msgstr "" msgid "Order ID" msgstr "" -#: frontend/src/pages/JobDetail.vue:74 +#: frontend/src/pages/JobDetail.vue:81 msgid "Organisation" msgstr "" #. Label of the organization (Data) field in DocType 'Certification' #: lms/lms/doctype/certification/certification.json msgid "Organization" -msgstr "Organização" +msgstr "" #: frontend/src/pages/Billing.vue:32 msgid "Original Amount" @@ -3724,7 +3820,7 @@ msgstr "" #: lms/lms/doctype/lms_badge/lms_badge.js:39 msgid "Owner" -msgstr "Proprietário" +msgstr "" #. Label of the pan (Data) field in DocType 'LMS Payment' #: lms/lms/doctype/lms_payment/lms_payment.json @@ -3753,7 +3849,7 @@ msgid "Paid Batch" msgstr "" #. Label of the paid_certificate (Check) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:217 +#: frontend/src/pages/CourseForm.vue:214 #: lms/lms/doctype/lms_course/lms_course.json msgid "Paid Certificate" msgstr "" @@ -3763,7 +3859,7 @@ msgid "Paid Certificate after Evaluation" msgstr "" #. Label of the paid_course (Check) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:207 +#: frontend/src/pages/CourseForm.vue:204 #: lms/lms/doctype/lms_course/lms_course.json msgid "Paid Course" msgstr "" @@ -3773,7 +3869,7 @@ msgid "Pan Number" msgstr "" #. Option for the 'Type' (Select) field in DocType 'Job Opportunity' -#: frontend/src/pages/Jobs.vue:145 +#: frontend/src/pages/Jobs.vue:162 #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Part Time" msgstr "" @@ -3795,7 +3891,7 @@ msgstr "" #. Label of the passing_percentage (Int) field in DocType 'LMS Quiz' #. Label of the passing_percentage (Int) field in DocType 'LMS Quiz Submission' -#: frontend/src/pages/QuizForm.vue:72 frontend/src/pages/Quizzes.vue:127 +#: frontend/src/pages/QuizForm.vue:72 frontend/src/pages/Quizzes.vue:129 #: lms/lms/doctype/lms_quiz/lms_quiz.json #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json msgid "Passing Percentage" @@ -3806,7 +3902,7 @@ msgstr "" msgid "Password" msgstr "" -#: frontend/src/pages/CourseForm.vue:112 +#: frontend/src/pages/CourseForm.vue:109 msgid "Paste the youtube link of a short video introducing the course" msgstr "" @@ -3816,7 +3912,7 @@ msgstr "" #: lms/lms/doctype/lms_batch_enrollment/lms_batch_enrollment.json #: lms/lms/doctype/lms_enrollment/lms_enrollment.json msgid "Payment" -msgstr "Pagamento" +msgstr "" #. Name of a DocType #: lms/lms/doctype/payment_country/payment_country.json @@ -3842,7 +3938,7 @@ msgstr "" #. Label of the payment_received (Check) field in DocType 'LMS Payment' #: lms/lms/doctype/lms_payment/lms_payment.json msgid "Payment Received" -msgstr "Pagamento Recebido" +msgstr "" #. Label of the payment_reminder_template (Link) field in DocType 'LMS #. Settings' @@ -3894,14 +3990,14 @@ msgstr "" #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json msgid "Pending" -msgstr "Pendente" +msgstr "" #. Label of the percentage (Int) field in DocType 'LMS Quiz Submission' #: frontend/src/pages/QuizSubmission.vue:44 -#: frontend/src/pages/QuizSubmissionList.vue:97 +#: frontend/src/pages/QuizSubmissionList.vue:113 #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json msgid "Percentage" -msgstr "Percentagem" +msgstr "" #. Option for the 'Grade Type' (Select) field in DocType 'Education Detail' #: lms/lms/doctype/education_detail/education_detail.json @@ -3914,13 +4010,13 @@ msgstr "" #: frontend/src/pages/Billing.vue:99 msgid "Phone Number" -msgstr "Número de telefone" +msgstr "" #: frontend/src/components/CourseCardOverlay.vue:169 msgid "Please Login" msgstr "" -#: lms/lms/doctype/lms_settings/lms_settings.py:33 +#: lms/lms/doctype/lms_settings/lms_settings.py:34 msgid "Please add {1} for {3} to send calendar invites for evaluations." msgstr "" @@ -3936,7 +4032,7 @@ msgstr "" msgid "Please click on the following button to set your new password" msgstr "" -#: lms/lms/utils.py:2031 lms/lms/utils.py:2035 +#: lms/lms/utils.py:2032 lms/lms/utils.py:2036 msgid "Please complete the previous courses in the program to enroll in this course." msgstr "" @@ -3944,7 +4040,7 @@ msgstr "" msgid "Please enable Zoom Settings to use this feature." msgstr "" -#: frontend/src/components/CourseOutline.vue:317 +#: frontend/src/components/CourseOutline.vue:325 msgid "Please enroll for this course to view this lesson" msgstr "" @@ -3981,14 +4077,10 @@ msgstr "" msgid "Please install the Payments app to create a paid courses." msgstr "" -#: frontend/src/pages/Billing.vue:253 +#: frontend/src/pages/Billing.vue:254 msgid "Please let us know where you heard about us from." msgstr "" -#: frontend/src/components/AssignmentBlock.vue:9 -msgid "Please login to access the assignment." -msgstr "" - #: frontend/src/components/QuizBlock.vue:5 msgid "Please login to access the quiz." msgstr "" @@ -3997,7 +4089,7 @@ msgstr "" msgid "Please login to access this page." msgstr "" -#: lms/lms/api.py:206 +#: lms/lms/api.py:208 msgid "Please login to continue with payment." msgstr "" @@ -4034,7 +4126,7 @@ msgstr "" msgid "Please take appropriate action at {0}" msgstr "" -#: frontend/src/components/Modals/ChapterModal.vue:177 +#: frontend/src/components/Modals/ChapterModal.vue:178 msgid "Please upload a SCORM package" msgstr "" @@ -4080,7 +4172,7 @@ msgstr "" msgid "Postal Code" msgstr "" -#: frontend/src/pages/JobDetail.vue:107 +#: frontend/src/pages/JobDetail.vue:114 msgid "Posted on" msgstr "" @@ -4115,7 +4207,7 @@ msgstr "" msgid "Preview Image" msgstr "" -#: frontend/src/pages/CourseForm.vue:110 +#: frontend/src/pages/CourseForm.vue:107 msgid "Preview Video" msgstr "" @@ -4127,10 +4219,10 @@ msgstr "" #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/public/js/common_functions.js:368 msgid "Pricing" -msgstr "Precificação" +msgstr "" #. Label of the pricing_tab (Tab Break) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:201 +#: frontend/src/pages/CourseForm.vue:198 #: lms/lms/doctype/lms_course/lms_course.json msgid "Pricing and Certification" msgstr "" @@ -4194,6 +4286,10 @@ msgstr "" msgid "Program Members" msgstr "" +#: frontend/src/pages/Programs.vue:219 lms/www/lms.py:273 +msgid "Programs" +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/BatchStudents.vue:75 @@ -4223,7 +4319,7 @@ msgstr "" #. Label of the published (Check) field in DocType 'LMS Course' #: frontend/src/components/Modals/BulkCertificates.vue:51 #: frontend/src/components/Modals/Event.vue:108 -#: frontend/src/pages/BatchForm.vue:27 frontend/src/pages/CourseForm.vue:171 +#: frontend/src/pages/BatchForm.vue:27 frontend/src/pages/CourseForm.vue:168 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/public/js/common_functions.js:266 @@ -4236,10 +4332,10 @@ msgid "Published Courses" msgstr "" #. Label of the published_on (Date) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:175 +#: frontend/src/pages/CourseForm.vue:172 #: lms/lms/doctype/lms_course/lms_course.json msgid "Published On" -msgstr "Publicado no" +msgstr "" #. Label of the purchased_certificate (Check) field in DocType 'LMS Enrollment' #: lms/lms/doctype/lms_enrollment/lms_enrollment.json @@ -4253,9 +4349,9 @@ msgstr "" #. Label of the question (Text Editor) field in DocType 'LMS Question' #. Label of the question (Link) field in DocType 'LMS Quiz Question' #. Label of the question (Text) field in DocType 'LMS Quiz Result' -#: frontend/src/components/Assignment.vue:17 +#: frontend/src/components/Assignment.vue:20 #: frontend/src/components/Modals/Question.vue:38 -#: frontend/src/pages/AssignmentForm.vue:45 frontend/src/pages/QuizForm.vue:385 +#: frontend/src/pages/AssignmentForm.vue:45 frontend/src/pages/QuizForm.vue:388 #: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/lms_assignment/lms_assignment.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json @@ -4280,11 +4376,11 @@ msgstr "" msgid "Question Name" msgstr "" -#: frontend/src/components/Modals/Question.vue:264 +#: frontend/src/components/Modals/Question.vue:270 msgid "Question added successfully" msgstr "" -#: frontend/src/components/Modals/Question.vue:316 +#: frontend/src/components/Modals/Question.vue:322 msgid "Question updated successfully" msgstr "" @@ -4301,7 +4397,7 @@ msgstr "" msgid "Questions" msgstr "" -#: frontend/src/pages/QuizForm.vue:427 +#: frontend/src/pages/QuizForm.vue:430 msgid "Questions deleted successfully" msgstr "" @@ -4319,13 +4415,13 @@ msgid "Quiz ID" msgstr "" #. Label of a Link in the LMS Workspace -#: frontend/src/pages/QuizPage.vue:47 frontend/src/pages/QuizPage.vue:53 -#: lms/lms/workspace/lms/lms.json +#: frontend/src/pages/QuizPage.vue:57 lms/lms/workspace/lms/lms.json msgid "Quiz Submission" msgstr "" -#: frontend/src/pages/QuizSubmission.vue:128 -#: frontend/src/pages/QuizSubmissionList.vue:106 +#: frontend/src/pages/QuizSubmission.vue:131 +#: frontend/src/pages/QuizSubmissionList.vue:122 +#: frontend/src/pages/QuizSubmissionList.vue:127 msgid "Quiz Submissions" msgstr "" @@ -4338,7 +4434,7 @@ msgstr "" msgid "Quiz Title" msgstr "" -#: frontend/src/pages/QuizForm.vue:339 +#: frontend/src/pages/QuizForm.vue:342 msgid "Quiz created successfully" msgstr "" @@ -4346,7 +4442,7 @@ msgstr "" msgid "Quiz is not available to Guest users. Please login to continue." msgstr "" -#: frontend/src/pages/QuizForm.vue:358 +#: frontend/src/pages/QuizForm.vue:361 msgid "Quiz updated successfully" msgstr "" @@ -4355,8 +4451,9 @@ msgstr "" msgid "Quiz will appear at the bottom of the lesson." msgstr "" -#: frontend/src/pages/QuizForm.vue:438 frontend/src/pages/Quizzes.vue:138 -#: frontend/src/pages/Quizzes.vue:148 +#: frontend/src/components/AppSidebar.vue:530 +#: frontend/src/pages/QuizForm.vue:441 frontend/src/pages/Quizzes.vue:140 +#: frontend/src/pages/Quizzes.vue:150 lms/www/lms.py:229 msgid "Quizzes" msgstr "" @@ -4386,7 +4483,7 @@ msgstr "" #. Timetable' #: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json msgid "Reference DocName" -msgstr "Nome do Documento de Referência" +msgstr "" #. Label of the reference_doctype (Link) field in DocType 'LMS Batch Timetable' #. Label of the reference_doctype (Link) field in DocType 'LMS Timetable @@ -4434,7 +4531,7 @@ msgstr "" msgid "Related Courses" msgstr "" -#: frontend/src/pages/BatchForm.vue:77 frontend/src/pages/CourseForm.vue:99 +#: frontend/src/pages/BatchForm.vue:77 frontend/src/pages/CourseForm.vue:96 msgid "Remove" msgstr "" @@ -4468,7 +4565,7 @@ msgstr "" #. Label of the resume (Attach) field in DocType 'LMS Job Application' #: lms/job/doctype/lms_job_application/lms_job_application.json msgid "Resume" -msgstr "Currículo" +msgstr "" #. Label of the review (Small Text) field in DocType 'LMS Course Review' #. Label of a Link in the LMS Workspace @@ -4476,7 +4573,7 @@ msgstr "Currículo" #: lms/lms/doctype/lms_course_review/lms_course_review.json #: lms/lms/workspace/lms/lms.json lms/templates/reviews.html:143 msgid "Review" -msgstr "Reveja" +msgstr "" #: lms/templates/reviews.html:100 msgid "Review the course" @@ -4503,6 +4600,10 @@ msgstr "" msgid "Role Preference" msgstr "" +#: frontend/src/components/AppSidebar.vue:558 +msgid "Roles" +msgstr "" + #. Label of the route (Data) field in DocType 'LMS Sidebar Item' #: lms/lms/doctype/lms_sidebar_item/lms_sidebar_item.json msgid "Route" @@ -4524,7 +4625,7 @@ msgstr "" msgid "Row #{0} Start time cannot be outside the batch duration." msgstr "" -#: lms/lms/doctype/lms_quiz/lms_quiz.py:34 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:32 msgid "Rows {0} have the duplicate questions." msgstr "" @@ -4548,6 +4649,11 @@ msgstr "" msgid "SCORM Package Path" msgstr "" +#. Label of the seo_tab (Tab Break) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "SEO" +msgstr "" + #. Option for the 'Day' (Select) field in DocType 'Evaluator Schedule' #. Option for the 'Day' (Select) field in DocType 'LMS Certificate Request' #: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json @@ -4556,17 +4662,17 @@ msgid "Saturday" msgstr "" #: frontend/src/components/AssessmentPlugin.vue:34 -#: frontend/src/components/Assignment.vue:43 +#: frontend/src/components/Assignment.vue:46 #: frontend/src/components/Controls/CodeEditor.vue:25 #: frontend/src/components/Modals/Event.vue:101 #: frontend/src/components/Modals/Event.vue:129 #: frontend/src/pages/AssignmentForm.vue:21 frontend/src/pages/BatchForm.vue:8 -#: frontend/src/pages/CourseForm.vue:20 frontend/src/pages/JobCreation.vue:8 +#: frontend/src/pages/CourseForm.vue:17 frontend/src/pages/JobCreation.vue:8 #: frontend/src/pages/LessonForm.vue:14 frontend/src/pages/ProgramForm.vue:7 #: frontend/src/pages/QuizForm.vue:34 frontend/src/pages/QuizSubmission.vue:14 #: lms/public/js/common_functions.js:405 msgid "Save" -msgstr "Salvar" +msgstr "" #. Label of the schedule (Table) field in DocType 'Course Evaluator' #: lms/lms/doctype/course_evaluator/course_evaluator.json @@ -4590,7 +4696,7 @@ msgstr "" #. Label of the score (Int) field in DocType 'LMS Quiz Submission' #: frontend/src/pages/QuizSubmission.vue:39 -#: frontend/src/pages/QuizSubmissionList.vue:91 +#: frontend/src/pages/QuizSubmissionList.vue:107 #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json #: lms/templates/quiz/quiz.html:148 msgid "Score" @@ -4601,9 +4707,10 @@ msgstr "" msgid "Score Out Of" msgstr "" +#: frontend/src/components/Evaluators.vue:15 #: frontend/src/components/Members.vue:15 frontend/src/pages/Jobs.vue:38 msgid "Search" -msgstr "Pesquisar" +msgstr "" #: frontend/src/pages/CertifiedParticipants.vue:25 msgid "Search by Name" @@ -4673,11 +4780,20 @@ msgstr "" msgid "Set your Password" msgstr "" +#: frontend/src/components/AppSidebar.vue:506 +msgid "Setting up" +msgstr "" + +#: frontend/src/components/AppSidebar.vue:551 +msgid "Setting up payment gateway" +msgstr "" + +#: frontend/src/components/AppSidebar.vue:556 #: frontend/src/components/Modals/Settings.vue:7 -#: frontend/src/pages/BatchForm.vue:148 frontend/src/pages/CourseForm.vue:161 +#: frontend/src/pages/BatchForm.vue:148 frontend/src/pages/CourseForm.vue:158 #: frontend/src/pages/ProfileRoles.vue:4 frontend/src/pages/QuizForm.vue:79 msgid "Settings" -msgstr "Configurações" +msgstr "" #: frontend/src/pages/ProfileAbout.vue:62 msgid "Share on" @@ -4688,7 +4804,7 @@ msgid "Short Description" msgstr "" #. Label of the short_introduction (Small Text) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:38 +#: frontend/src/pages/CourseForm.vue:35 #: lms/lms/doctype/lms_course/lms_course.json msgid "Short Introduction" msgstr "" @@ -4749,7 +4865,7 @@ msgstr "" #. Label of the sidebar_items (Table) field in DocType 'LMS Settings' #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Sidebar Items" -msgstr "Itens da barra lateral" +msgstr "" #: lms/lms/user.py:29 msgid "Sign Up is disabled" @@ -4799,11 +4915,7 @@ msgstr "" msgid "Skip" msgstr "" -#: frontend/src/components/OnboardingBanner.vue:3 -msgid "Skip Onboarding" -msgstr "" - -#: lms/lms/doctype/course_evaluator/course_evaluator.py:57 +#: lms/lms/doctype/course_evaluator/course_evaluator.py:63 msgid "Slot Times are overlapping for some schedules." msgstr "" @@ -4835,7 +4947,7 @@ msgstr "" #: lms/lms/doctype/lms_payment/lms_payment.json #: lms/lms/doctype/lms_source/lms_source.json msgid "Source" -msgstr "Origem" +msgstr "" #. Option for the 'Role' (Select) field in DocType 'Cohort Staff' #. Option for the 'Member Type' (Select) field in DocType 'LMS Enrollment' @@ -4852,7 +4964,7 @@ msgstr "" #: frontend/src/components/LiveClass.vue:50 frontend/src/components/Quiz.vue:67 #: lms/templates/quiz/quiz.html:39 msgid "Start" -msgstr "Iniciar" +msgstr "" #. Label of the start_date (Date) field in DocType 'Education Detail' #. Label of the start_date (Date) field in DocType 'LMS Batch' @@ -4863,7 +4975,7 @@ msgstr "Iniciar" #: lms/lms/doctype/lms_batch_old/lms_batch_old.json #: lms/public/js/common_functions.js:275 msgid "Start Date" -msgstr "Data de Início" +msgstr "" #: lms/templates/emails/batch_start_reminder.html:13 msgid "Start Date:" @@ -4895,7 +5007,7 @@ msgstr "" msgid "Start Time" msgstr "" -#: lms/lms/doctype/course_evaluator/course_evaluator.py:28 +#: lms/lms/doctype/course_evaluator/course_evaluator.py:34 msgid "Start Time cannot be greater than End Time" msgstr "" @@ -4911,13 +5023,14 @@ msgstr "" #: frontend/src/pages/Billing.vue:83 msgid "State" -msgstr "Estado" +msgstr "" #. Label of the tab_4_tab (Tab Break) field in DocType 'LMS Course' #. Label of the statistics (Check) field in DocType 'LMS Settings' #: frontend/src/components/BatchStudents.vue:5 +#: frontend/src/pages/Statistics.vue:322 #: lms/lms/doctype/lms_course/lms_course.json -#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:136 +#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:182 msgid "Statistics" msgstr "" @@ -4978,7 +5091,7 @@ msgstr "" msgid "Students" msgstr "" -#: frontend/src/components/BatchStudents.vue:324 +#: frontend/src/components/BatchStudents.vue:325 msgid "Students deleted successfully" msgstr "" @@ -4998,9 +5111,9 @@ msgstr "" #: frontend/src/components/Modals/AnnouncementModal.vue:20 msgid "Subject" -msgstr "Assunto" +msgstr "" -#: frontend/src/components/Assignment.vue:29 +#: frontend/src/components/Assignment.vue:32 msgid "Submission" msgstr "" @@ -5008,8 +5121,8 @@ msgstr "" msgid "Submission List" msgstr "" -#: frontend/src/components/Assignment.vue:10 #: frontend/src/components/Assignment.vue:13 +#: frontend/src/components/Assignment.vue:16 msgid "Submission by" msgstr "" @@ -5017,13 +5130,13 @@ msgstr "" #: frontend/src/components/Modals/AssessmentModal.vue:9 #: frontend/src/components/Modals/BatchCourseModal.vue:9 #: frontend/src/components/Modals/EvaluationModal.vue:9 -#: frontend/src/components/Modals/Question.vue:338 +#: frontend/src/components/Modals/Question.vue:344 #: frontend/src/components/Quiz.vue:218 lms/templates/assignment.html:9 #: lms/templates/livecode/extension_footer.html:25 #: lms/templates/quiz/quiz.html:128 lms/templates/reviews.html:163 #: lms/www/new-sign-up.html:32 msgid "Submit" -msgstr "Enviar" +msgstr "" #: frontend/src/components/Modals/JobApplicationModal.vue:23 msgid "Submit your resume to proceed with your application for this position. Upon submission, it will be shared with the job poster." @@ -5034,28 +5147,28 @@ msgstr "" msgid "Submitted {0}" msgstr "" -#: frontend/src/components/Assignment.vue:340 -#: frontend/src/components/BatchCourses.vue:151 +#: frontend/src/components/Assignment.vue:341 +#: frontend/src/components/BatchCourses.vue:154 #: frontend/src/components/BatchOverlay.vue:150 -#: frontend/src/components/BatchStudents.vue:324 +#: frontend/src/components/BatchStudents.vue:325 #: frontend/src/components/CourseCardOverlay.vue:189 #: frontend/src/components/Modals/AnnouncementModal.vue:99 #: frontend/src/components/Modals/AssessmentModal.vue:73 #: frontend/src/components/Modals/BulkCertificates.vue:121 -#: frontend/src/components/Modals/ChapterModal.vue:153 -#: frontend/src/components/Modals/ChapterModal.vue:198 +#: frontend/src/components/Modals/ChapterModal.vue:154 +#: frontend/src/components/Modals/ChapterModal.vue:199 #: frontend/src/components/Modals/Event.vue:255 #: frontend/src/components/Modals/Event.vue:310 -#: frontend/src/components/Modals/Question.vue:264 -#: frontend/src/components/Modals/Question.vue:315 -#: frontend/src/pages/AssignmentForm.vue:155 -#: frontend/src/pages/CourseForm.vue:469 frontend/src/pages/ProgramForm.vue:229 -#: frontend/src/pages/ProgramForm.vue:251 -#: frontend/src/pages/ProgramForm.vue:272 -#: frontend/src/pages/ProgramForm.vue:298 frontend/src/pages/QuizForm.vue:339 -#: frontend/src/pages/QuizForm.vue:358 frontend/src/pages/QuizForm.vue:427 +#: frontend/src/components/Modals/Question.vue:270 +#: frontend/src/components/Modals/Question.vue:321 +#: frontend/src/pages/AssignmentForm.vue:158 +#: frontend/src/pages/CourseForm.vue:470 frontend/src/pages/ProgramForm.vue:232 +#: frontend/src/pages/ProgramForm.vue:254 +#: frontend/src/pages/ProgramForm.vue:275 +#: frontend/src/pages/ProgramForm.vue:301 frontend/src/pages/QuizForm.vue:342 +#: frontend/src/pages/QuizForm.vue:361 frontend/src/pages/QuizForm.vue:430 msgid "Success" -msgstr "Sucesso" +msgstr "" #. Label of the summary (Small Text) field in DocType 'LMS Certificate #. Evaluation' @@ -5071,7 +5184,7 @@ msgstr "" msgid "Sunday" msgstr "" -#: lms/lms/api.py:1024 +#: lms/lms/api.py:1027 msgid "Suspicious pattern found in {0}: {1}" msgstr "" @@ -5124,10 +5237,10 @@ msgstr "" #: lms/lms/doctype/user_skill/user_skill.json #: lms/lms/doctype/zoom_settings/zoom_settings.json msgid "System Manager" -msgstr "Administrador do Sistema" +msgstr "" #. Label of the tags (Data) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:120 +#: frontend/src/pages/CourseForm.vue:117 #: lms/lms/doctype/lms_course/lms_course.json msgid "Tags" msgstr "" @@ -5150,7 +5263,7 @@ msgstr "" #: lms/lms/doctype/cohort_web_page/cohort_web_page.json #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Template" -msgstr "Modelo" +msgstr "" #: lms/lms/user.py:40 msgid "Temporarily Disabled" @@ -5179,7 +5292,7 @@ msgstr "" #: lms/lms/doctype/lms_assignment/lms_assignment.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json msgid "Text" -msgstr "Texto" +msgstr "" #: frontend/src/components/BatchFeedback.vue:7 msgid "Thank you for providing your feedback!" @@ -5192,7 +5305,7 @@ msgstr "" msgid "Thanks and Regards" msgstr "" -#: lms/lms/utils.py:1929 +#: lms/lms/utils.py:1930 msgid "The batch is full. Please contact the Administrator." msgstr "" @@ -5232,6 +5345,10 @@ msgstr "" msgid "There are no courses matching the criteria. Keep an eye out, fresh learning experiences are on the way soon!" msgstr "" +#: frontend/src/pages/Jobs.vue:84 +msgid "There are no jobs available at the moment. Open a job opportunity or check here again later." +msgstr "" + #: frontend/src/pages/CertifiedParticipants.vue:92 msgid "There are no participants matching this criteria." msgstr "" @@ -5287,12 +5404,14 @@ msgstr "" msgid "This course has:" msgstr "" -#: lms/lms/utils.py:1772 +#: lms/lms/utils.py:1773 msgid "This course is free." msgstr "" -#: frontend/src/pages/SCORMChapter.vue:201 -msgid "This is a chapter in the course {0}" +#. Description of the 'Meta Description' (Small Text) field in DocType 'LMS +#. Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "This description will be shown on lists and pages without meta description" msgstr "" #: frontend/src/pages/Lesson.vue:16 @@ -5389,10 +5508,10 @@ msgstr "" #: frontend/src/components/Modals/DiscussionModal.vue:18 #: frontend/src/components/Modals/LiveClassModal.vue:23 #: frontend/src/pages/AssignmentForm.vue:32 -#: frontend/src/pages/Assignments.vue:152 frontend/src/pages/BatchForm.vue:19 -#: frontend/src/pages/CourseForm.vue:32 frontend/src/pages/JobCreation.vue:20 +#: frontend/src/pages/Assignments.vue:155 frontend/src/pages/BatchForm.vue:19 +#: frontend/src/pages/CourseForm.vue:29 frontend/src/pages/JobCreation.vue:20 #: frontend/src/pages/ProgramForm.vue:11 frontend/src/pages/Programs.vue:116 -#: frontend/src/pages/QuizForm.vue:48 frontend/src/pages/Quizzes.vue:116 +#: frontend/src/pages/QuizForm.vue:48 frontend/src/pages/Quizzes.vue:118 #: lms/lms/doctype/cohort/cohort.json #: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json #: lms/lms/doctype/cohort_web_page/cohort_web_page.json @@ -5412,9 +5531,9 @@ msgstr "" #: lms/lms/doctype/work_experience/work_experience.json #: lms/public/js/common_functions.js:259 msgid "Title" -msgstr "Título" +msgstr "" -#: frontend/src/components/Modals/ChapterModal.vue:174 +#: frontend/src/components/Modals/ChapterModal.vue:175 msgid "Title is required" msgstr "" @@ -5422,14 +5541,14 @@ msgstr "" #: frontend/src/pages/ProfileEvaluator.vue:98 #: lms/lms/doctype/course_evaluator/course_evaluator.json msgid "To" -msgstr "Para" +msgstr "" #. Label of the to_date (Date) field in DocType 'Work Experience' #: lms/lms/doctype/work_experience/work_experience.json msgid "To Date" -msgstr "Até a Data" +msgstr "" -#: lms/lms/utils.py:1783 +#: lms/lms/utils.py:1784 msgid "To join this batch, please contact the Administrator." msgstr "" @@ -5446,7 +5565,7 @@ msgid "Total" msgstr "" #. Label of the total_marks (Int) field in DocType 'LMS Quiz' -#: frontend/src/pages/QuizForm.vue:67 frontend/src/pages/Quizzes.vue:121 +#: frontend/src/pages/QuizForm.vue:67 frontend/src/pages/Quizzes.vue:123 #: lms/lms/doctype/lms_quiz/lms_quiz.json msgid "Total Marks" msgstr "" @@ -5461,7 +5580,7 @@ msgstr "" msgid "Travel" msgstr "" -#: frontend/src/components/Quiz.vue:256 lms/templates/quiz/quiz.html:131 +#: frontend/src/components/Quiz.vue:259 lms/templates/quiz/quiz.html:131 msgid "Try Again" msgstr "" @@ -5484,7 +5603,7 @@ msgstr "" #: frontend/src/components/Modals/AssessmentModal.vue:22 #: frontend/src/components/Modals/Question.vue:54 #: frontend/src/pages/AssignmentForm.vue:39 -#: frontend/src/pages/Assignments.vue:30 frontend/src/pages/Assignments.vue:157 +#: frontend/src/pages/Assignments.vue:30 frontend/src/pages/Assignments.vue:160 #: frontend/src/pages/JobCreation.vue:33 frontend/src/pages/Jobs.vue:55 #: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/lms/doctype/lms_assignment/lms_assignment.json @@ -5493,9 +5612,9 @@ msgstr "" #: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json #: lms/templates/assessments.html:14 msgid "Type" -msgstr "Tipo" +msgstr "" -#: frontend/src/components/Quiz.vue:612 +#: frontend/src/components/Quiz.vue:615 msgid "Type your answer" msgstr "" @@ -5517,7 +5636,7 @@ msgstr "" msgid "Unavailability" msgstr "" -#: lms/lms/doctype/course_evaluator/course_evaluator.py:23 +#: lms/lms/doctype/course_evaluator/course_evaluator.py:29 msgid "Unavailable From Date cannot be greater than Unavailable To Date" msgstr "" @@ -5531,7 +5650,7 @@ msgstr "" msgid "Unlisted" msgstr "" -#: frontend/src/pages/Batches.vue:293 +#: frontend/src/pages/Batches.vue:295 msgid "Unpublished" msgstr "" @@ -5553,8 +5672,8 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'Cohort' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request' #. Label of the upcoming (Check) field in DocType 'LMS Course' -#: frontend/src/pages/Batches.vue:291 frontend/src/pages/CourseForm.vue:184 -#: frontend/src/pages/Courses.vue:285 lms/lms/doctype/cohort/cohort.json +#: frontend/src/pages/Batches.vue:293 frontend/src/pages/CourseForm.vue:181 +#: frontend/src/pages/Courses.vue:287 lms/lms/doctype/cohort/cohort.json #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_course/lms_course.json msgid "Upcoming" @@ -5573,21 +5692,21 @@ msgstr "" #: frontend/src/components/PaymentSettings.vue:27 #: frontend/src/components/SettingDetails.vue:23 msgid "Update" -msgstr "Atualizar" +msgstr "" #: lms/templates/emails/community_course_membership.html:11 msgid "Update Password" msgstr "" -#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:80 +#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:77 msgid "Upload" msgstr "" -#: frontend/src/components/Assignment.vue:78 +#: frontend/src/components/Assignment.vue:81 msgid "Upload File" msgstr "" -#: frontend/src/components/Assignment.vue:77 +#: frontend/src/components/Assignment.vue:80 msgid "Uploading {0}%" msgstr "" @@ -5598,7 +5717,7 @@ msgstr "" #: lms/lms/doctype/cohort_staff/cohort_staff.json #: lms/lms/doctype/lms_course_interest/lms_course_interest.json msgid "User" -msgstr "Usuário" +msgstr "" #. Label of the user_category (Select) field in DocType 'User' #: lms/fixtures/custom_field.json lms/templates/signup-form.html:17 @@ -5608,7 +5727,12 @@ msgstr "" #. Label of the user_field (Select) field in DocType 'LMS Badge' #: lms/lms/doctype/lms_badge/lms_badge.json msgid "User Field" -msgstr "Campo do usuário" +msgstr "" + +#. Label of the user_image (Attach Image) field in DocType 'Course Evaluator' +#: lms/lms/doctype/course_evaluator/course_evaluator.json +msgid "User Image" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'LMS Question' #. Option for the 'Type' (Select) field in DocType 'LMS Quiz Question' @@ -5626,7 +5750,9 @@ msgstr "" msgid "User {0} has reported the job post {1}" msgstr "" +#. Label of the username (Data) field in DocType 'Course Evaluator' #. Label of the username (Data) field in DocType 'Invite Request' +#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/invite_request/invite_request.json msgid "Username" msgstr "" @@ -5648,7 +5774,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 @@ -5662,7 +5788,7 @@ msgstr "" #: frontend/src/pages/Notifications.vue:38 msgid "View" -msgstr "Visão" +msgstr "" #: frontend/src/components/CertificationLinks.vue:10 #: frontend/src/components/Modals/Event.vue:67 @@ -5678,6 +5804,10 @@ msgstr "" msgid "Visit Batch" msgstr "" +#: frontend/src/pages/JobDetail.vue:38 +msgid "Visit Website" +msgstr "" + #: lms/templates/emails/batch_confirmation.html:23 msgid "Visit the following link to view your " msgstr "" @@ -5771,8 +5901,7 @@ msgstr "" msgid "Write a review" msgstr "" -#: frontend/src/components/Assignment.vue:120 -#: frontend/src/components/Assignment.vue:126 +#: frontend/src/components/Assignment.vue:123 msgid "Write your answer here" msgstr "" @@ -5784,11 +5913,11 @@ msgstr "" msgid "You are already certified for this course. Click on the card below to open your certificate." msgstr "" -#: lms/lms/api.py:230 +#: lms/lms/api.py:232 msgid "You are already enrolled for this batch." msgstr "" -#: lms/lms/api.py:222 +#: lms/lms/api.py:224 msgid "You are already enrolled for this course." msgstr "" @@ -5800,7 +5929,7 @@ msgstr "" msgid "You are not a mentor of the course {0}" msgstr "" -#: frontend/src/components/CourseOutline.vue:316 +#: frontend/src/components/CourseOutline.vue:324 msgid "You are not enrolled" msgstr "" @@ -5845,7 +5974,7 @@ msgstr "" msgid "You got" msgstr "" -#: frontend/src/components/Quiz.vue:238 +#: frontend/src/components/Quiz.vue:241 #, python-format msgid "You got {0}% correct answers with a score of {1} out of {2}" msgstr "" @@ -5862,7 +5991,7 @@ msgstr "" msgid "You have already exceeded the maximum number of attempts allowed for this quiz." msgstr "" -#: lms/lms/api.py:249 +#: lms/lms/api.py:251 msgid "You have already purchased the certificate for this course." msgstr "" @@ -5911,7 +6040,7 @@ msgstr "" msgid "You've applied to become a mentor for this course. Your request is currently under review." msgstr "" -#: frontend/src/components/Assignment.vue:55 +#: frontend/src/components/Assignment.vue:58 msgid "You've successfully submitted the assignment." msgstr "" @@ -5963,7 +6092,7 @@ msgstr "" msgid "Your score is" msgstr "" -#: frontend/src/components/Quiz.vue:231 +#: frontend/src/components/Quiz.vue:234 msgid "Your submission has been successfully saved. The instructor will review and grade it shortly, and you'll be notified of your final result." msgstr "" @@ -6024,11 +6153,7 @@ msgstr "" msgid "out of" msgstr "" -#: frontend/src/components/JobCard.vue:30 -msgid "posted" -msgstr "" - -#: frontend/src/pages/QuizForm.vue:386 +#: frontend/src/pages/QuizForm.vue:389 msgid "question_detail" msgstr "" @@ -6048,7 +6173,7 @@ msgstr "" msgid "you can" msgstr "" -#: lms/lms/api.py:814 lms/lms/api.py:822 +#: lms/lms/api.py:817 lms/lms/api.py:825 msgid "{0} Settings not found" msgstr "" @@ -6088,7 +6213,7 @@ msgstr "" msgid "{0} is your evaluator" msgstr "" -#: lms/lms/utils.py:682 +#: lms/lms/utils.py:683 msgid "{0} mentioned you in a comment" msgstr "" @@ -6096,7 +6221,7 @@ msgstr "" msgid "{0} mentioned you in a comment in your batch." msgstr "" -#: lms/lms/utils.py:635 lms/lms/utils.py:641 +#: lms/lms/utils.py:636 lms/lms/utils.py:642 msgid "{0} mentioned you in a comment in {1}" msgstr "" diff --git a/lms/locale/pt_BR.po b/lms/locale/pt_BR.po index d30b4349..99218530 100644 --- a/lms/locale/pt_BR.po +++ b/lms/locale/pt_BR.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n" -"POT-Creation-Date: 2025-04-04 16:04+0000\n" -"PO-Revision-Date: 2025-04-08 03:58\n" +"POT-Creation-Date: 2025-04-11 16:04+0000\n" +"PO-Revision-Date: 2025-04-14 06:01\n" "Last-Translator: jannat@frappe.io\n" "Language-Team: Portuguese, Brazilian\n" "MIME-Version: 1.0\n" @@ -71,7 +71,7 @@ msgstr "" msgid "A course cannot have both paid certificate and certificate of completion." msgstr "" -#: frontend/src/pages/CourseForm.vue:41 +#: frontend/src/pages/CourseForm.vue:37 msgid "A one line introduction to the course that appears on the course card" msgstr "" @@ -145,7 +145,6 @@ msgid "Add a Student" msgstr "" #: frontend/src/components/AppSidebar.vue:514 -#: frontend/src/components/OnboardingBanner.vue:56 msgid "Add a chapter" msgstr "" @@ -153,16 +152,15 @@ msgstr "" msgid "Add a course" msgstr "" -#: frontend/src/pages/CourseForm.vue:137 +#: frontend/src/pages/CourseForm.vue:133 msgid "Add a keyword and then press enter" msgstr "" #: frontend/src/components/AppSidebar.vue:515 -#: frontend/src/components/OnboardingBanner.vue:81 msgid "Add a lesson" msgstr "" -#: frontend/src/components/Modals/Question.vue:146 +#: frontend/src/components/Modals/Question.vue:147 #: frontend/src/pages/QuizForm.vue:183 msgid "Add a new question" msgstr "" @@ -235,7 +233,7 @@ msgid "Admin" msgstr "" #. Name of a role -#: frontend/src/pages/Batches.vue:282 lms/lms/doctype/lms_badge/lms_badge.json +#: frontend/src/pages/Batches.vue:284 lms/lms/doctype/lms_badge/lms_badge.json msgid "All" msgstr "Todos" @@ -259,7 +257,7 @@ msgstr "" msgid "All Submissions" msgstr "" -#: lms/lms/doctype/lms_quiz/lms_quiz.py:46 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:44 msgid "All questions should have the same marks if the limit is set." msgstr "" @@ -294,7 +292,7 @@ msgstr "" #. Label of the amount (Currency) field in DocType 'LMS Batch' #. Label of the course_price (Currency) field in DocType 'LMS Course' #. Label of the amount (Currency) field in DocType 'LMS Payment' -#: frontend/src/pages/BatchForm.vue:209 frontend/src/pages/CourseForm.vue:221 +#: frontend/src/pages/BatchForm.vue:209 frontend/src/pages/CourseForm.vue:217 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_payment/lms_payment.json @@ -346,7 +344,7 @@ msgstr "" msgid "Answer" msgstr "" -#: frontend/src/pages/CourseForm.vue:85 frontend/src/pages/CourseForm.vue:103 +#: frontend/src/pages/CourseForm.vue:81 frontend/src/pages/CourseForm.vue:99 msgid "Appears on the course card in the course list" msgstr "" @@ -354,11 +352,11 @@ msgstr "" msgid "Appears when the batch URL is shared on any online platform" msgstr "" -#: frontend/src/pages/JobDetail.vue:121 +#: frontend/src/pages/JobDetail.vue:128 msgid "Applications Received" msgstr "" -#: frontend/src/pages/JobDetail.vue:42 +#: frontend/src/pages/JobDetail.vue:48 msgid "Apply" msgstr "" @@ -389,7 +387,7 @@ msgstr "" msgid "Apps" msgstr "" -#: frontend/src/pages/Batches.vue:292 +#: frontend/src/pages/Batches.vue:294 msgid "Archived" msgstr "" @@ -401,11 +399,6 @@ msgstr "" msgid "Are you sure you want to login to your Frappe Cloud dashboard?" msgstr "" -#. Label of the user_category (Check) field in DocType 'LMS Settings' -#: lms/lms/doctype/lms_settings/lms_settings.json -msgid "Ask User Category during Signup" -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 @@ -470,6 +463,10 @@ msgstr "" msgid "Assignment Submission Template" msgstr "" +#: frontend/src/pages/AssignmentSubmissionList.vue:223 +msgid "Assignment Submissions" +msgstr "" + #. Label of the assignment_title (Data) field in DocType 'LMS Assignment #. Submission' #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json @@ -480,7 +477,7 @@ msgstr "" msgid "Assignment for Lesson {0} by {1} already exists." msgstr "" -#: frontend/src/pages/AssignmentForm.vue:155 +#: frontend/src/pages/AssignmentForm.vue:158 msgid "Assignment saved successfully" msgstr "" @@ -490,7 +487,8 @@ msgid "Assignment will appear at the bottom of the lesson." msgstr "" #: frontend/src/components/AppSidebar.vue:531 -#: frontend/src/pages/AssignmentForm.vue:174 +#: frontend/src/pages/AssignmentForm.vue:177 +#: frontend/src/pages/Assignments.vue:193 lms/www/lms.py:251 msgid "Assignments" msgstr "" @@ -656,8 +654,8 @@ msgid "Batch:" msgstr "" #. Label of the batches (Check) field in DocType 'LMS Settings' -#: frontend/src/pages/Batches.vue:302 -#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:63 +#: frontend/src/pages/Batches.vue:304 frontend/src/pages/Batches.vue:311 +#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:105 msgid "Batches" msgstr "" @@ -675,7 +673,7 @@ msgstr "" #. Label of the billing_details_section (Section Break) field in DocType 'LMS #. Payment' -#: frontend/src/pages/Billing.vue:8 +#: frontend/src/pages/Billing.vue:8 frontend/src/pages/Billing.vue:363 #: lms/lms/doctype/lms_payment/lms_payment.json msgid "Billing Details" msgstr "" @@ -757,8 +755,9 @@ msgstr "" #. Label of the category (Link) field in DocType 'LMS Course' #: frontend/src/pages/BatchForm.vue:190 frontend/src/pages/Batches.vue:55 #: frontend/src/pages/CertifiedParticipants.vue:37 -#: frontend/src/pages/CourseForm.vue:148 frontend/src/pages/Courses.vue:51 -#: frontend/src/pages/JobDetail.vue:96 lms/lms/doctype/lms_batch/lms_batch.json +#: frontend/src/pages/CourseForm.vue:144 frontend/src/pages/Courses.vue:51 +#: frontend/src/pages/JobDetail.vue:103 +#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/public/js/common_functions.js:316 lms/templates/signup-form.html:22 @@ -813,7 +812,7 @@ msgstr "" #: frontend/src/components/Modals/Event.vue:371 #: frontend/src/pages/BatchForm.vue:37 frontend/src/pages/Batches.vue:38 #: frontend/src/pages/CourseCertification.vue:10 -#: frontend/src/pages/CourseCertification.vue:133 +#: frontend/src/pages/CourseCertification.vue:135 #: frontend/src/pages/Courses.vue:34 lms/fixtures/custom_field.json #: lms/lms/doctype/certification/certification.json #: lms/lms/doctype/lms_batch/lms_batch.json @@ -837,7 +836,8 @@ msgid "Certified" msgstr "" #. Label of the certified_participants (Check) field in DocType 'LMS Settings' -#: frontend/src/pages/CertifiedParticipants.vue:161 +#: frontend/src/pages/CertifiedParticipants.vue:164 +#: frontend/src/pages/CertifiedParticipants.vue:171 #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Certified Participants" msgstr "" @@ -864,11 +864,11 @@ msgstr "" msgid "Chapter Reference" msgstr "" -#: frontend/src/components/Modals/ChapterModal.vue:152 +#: frontend/src/components/Modals/ChapterModal.vue:155 msgid "Chapter added successfully" msgstr "" -#: frontend/src/components/Modals/ChapterModal.vue:196 +#: frontend/src/components/Modals/ChapterModal.vue:199 msgid "Chapter updated successfully" msgstr "" @@ -1117,7 +1117,7 @@ msgid "Completed by Students" msgstr "" #. Label of the enable_certification (Check) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:213 +#: frontend/src/pages/CourseForm.vue:209 #: lms/lms/doctype/lms_course/lms_course.json msgid "Completion Certificate" msgstr "" @@ -1179,7 +1179,7 @@ msgid "Continue Learning" msgstr "" #. Option for the 'Type' (Select) field in DocType 'Job Opportunity' -#: frontend/src/pages/Jobs.vue:146 +#: frontend/src/pages/Jobs.vue:163 #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Contract" msgstr "Contrato" @@ -1294,6 +1294,7 @@ msgstr "" #. Name of a role #: frontend/src/pages/ProfileRoles.vue:16 #: lms/lms/doctype/course_chapter/course_chapter.json +#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_program/lms_program.json @@ -1307,7 +1308,7 @@ msgstr "" msgid "Course Data" msgstr "" -#: frontend/src/pages/CourseForm.vue:50 +#: frontend/src/pages/CourseForm.vue:46 msgid "Course Description" msgstr "" @@ -1316,7 +1317,7 @@ msgstr "" msgid "Course Evaluator" msgstr "" -#: frontend/src/pages/CourseForm.vue:63 +#: frontend/src/pages/CourseForm.vue:59 msgid "Course Image" msgstr "" @@ -1330,7 +1331,7 @@ msgstr "" msgid "Course Lesson" msgstr "" -#: lms/www/lms.py:30 +#: lms/www/lms.py:70 msgid "Course List" msgstr "" @@ -1338,7 +1339,7 @@ msgstr "" msgid "Course Name" msgstr "" -#: frontend/src/pages/CourseDetail.vue:76 frontend/src/pages/CourseForm.vue:241 +#: frontend/src/pages/CourseDetail.vue:76 frontend/src/pages/CourseForm.vue:237 msgid "Course Outline" msgstr "" @@ -1370,7 +1371,7 @@ msgstr "" msgid "Course Title" msgstr "" -#: frontend/src/pages/ProgramForm.vue:229 +#: frontend/src/pages/ProgramForm.vue:232 msgid "Course added to program" msgstr "" @@ -1378,11 +1379,11 @@ msgstr "" msgid "Course already added to the batch." msgstr "" -#: frontend/src/pages/CourseForm.vue:472 +#: frontend/src/pages/CourseForm.vue:470 msgid "Course deleted successfully" msgstr "" -#: frontend/src/pages/ProgramForm.vue:298 +#: frontend/src/pages/ProgramForm.vue:301 msgid "Course moved successfully" msgstr "" @@ -1400,8 +1401,9 @@ msgstr "" #: frontend/src/components/BatchStudents.vue:92 #: frontend/src/components/Modals/BatchStudentProgress.vue:79 #: frontend/src/pages/BatchDetail.vue:21 frontend/src/pages/BatchDetail.vue:70 -#: frontend/src/pages/CourseCertification.vue:125 -#: frontend/src/pages/Courses.vue:301 frontend/src/pages/Statistics.vue:21 +#: frontend/src/pages/CourseCertification.vue:127 +#: frontend/src/pages/Courses.vue:304 frontend/src/pages/Courses.vue:311 +#: frontend/src/pages/Statistics.vue:21 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Courses" @@ -1443,7 +1445,6 @@ msgid "Create a batch" msgstr "" #: frontend/src/components/AppSidebar.vue:513 -#: frontend/src/components/OnboardingBanner.vue:30 msgid "Create a course" msgstr "" @@ -1467,7 +1468,7 @@ msgstr "" msgid "Create your first quiz" msgstr "" -#: frontend/src/pages/Assignments.vue:163 frontend/src/pages/Courses.vue:292 +#: frontend/src/pages/Assignments.vue:166 frontend/src/pages/Courses.vue:295 msgid "Created" msgstr "" @@ -1482,7 +1483,7 @@ msgstr "" #. Label of the currency (Link) field in DocType 'LMS Batch' #. Label of the currency (Link) field in DocType 'LMS Course' #. Label of the currency (Link) field in DocType 'LMS Payment' -#: frontend/src/pages/BatchForm.vue:217 frontend/src/pages/CourseForm.vue:226 +#: frontend/src/pages/BatchForm.vue:217 frontend/src/pages/CourseForm.vue:222 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_payment/lms_payment.json @@ -1585,9 +1586,9 @@ msgstr "" msgid "Degree Type" msgstr "" -#: frontend/src/components/CourseOutline.vue:247 -#: frontend/src/components/CourseOutline.vue:305 -#: frontend/src/pages/CourseForm.vue:485 +#: frontend/src/components/CourseOutline.vue:248 +#: frontend/src/components/CourseOutline.vue:306 +#: frontend/src/pages/CourseForm.vue:483 msgid "Delete" msgstr "Excluir" @@ -1595,27 +1596,27 @@ msgstr "Excluir" msgid "Delete Chapter" msgstr "" -#: frontend/src/pages/CourseForm.vue:479 +#: frontend/src/pages/CourseForm.vue:477 msgid "Delete Course" msgstr "" -#: frontend/src/components/CourseOutline.vue:299 +#: frontend/src/components/CourseOutline.vue:300 msgid "Delete this chapter?" msgstr "" -#: frontend/src/components/CourseOutline.vue:241 +#: frontend/src/components/CourseOutline.vue:242 msgid "Delete this lesson?" msgstr "" -#: frontend/src/pages/CourseForm.vue:480 +#: frontend/src/pages/CourseForm.vue:478 msgid "Deleting the course will also delete all its chapters and lessons. Are you sure you want to delete this course?" msgstr "" -#: frontend/src/components/CourseOutline.vue:300 +#: frontend/src/components/CourseOutline.vue:301 msgid "Deleting this chapter will also delete all its lessons and permanently remove it from the course. This action cannot be undone. Are you sure you want to continue?" msgstr "" -#: frontend/src/components/CourseOutline.vue:242 +#: frontend/src/components/CourseOutline.vue:243 msgid "Deleting this lesson will permanently remove it from the course. This action cannot be undone. Are you sure you want to continue?" msgstr "" @@ -1654,11 +1655,11 @@ msgstr "" #: frontend/src/components/Modals/DiscussionModal.vue:22 #: frontend/src/pages/AssignmentForm.vue:27 frontend/src/pages/BatchForm.vue:14 -#: frontend/src/pages/CourseForm.vue:29 frontend/src/pages/QuizForm.vue:42 +#: frontend/src/pages/CourseForm.vue:25 frontend/src/pages/QuizForm.vue:42 msgid "Details" msgstr "" -#: frontend/src/pages/CourseForm.vue:195 +#: frontend/src/pages/CourseForm.vue:191 msgid "Disable Self Enrollment" msgstr "" @@ -1667,6 +1668,11 @@ msgstr "" msgid "Disable Self Learning" msgstr "" +#. Label of the disable_signup (Check) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Disable Signup" +msgstr "" + #. Label of the disabled (Check) field in DocType 'Job Opportunity' #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Disabled" @@ -1808,7 +1814,7 @@ msgstr "Colaborador" msgid "Enable" msgstr "Permitir" -#: lms/lms/doctype/lms_settings/lms_settings.py:20 +#: lms/lms/doctype/lms_settings/lms_settings.py:21 msgid "Enable Google API in Google Settings to send calendar invites for evaluations." msgstr "" @@ -1867,7 +1873,7 @@ msgstr "" msgid "Enroll Now" msgstr "" -#: frontend/src/pages/Batches.vue:295 frontend/src/pages/Courses.vue:294 +#: frontend/src/pages/Batches.vue:297 frontend/src/pages/Courses.vue:297 msgid "Enrolled" msgstr "" @@ -1902,7 +1908,7 @@ msgstr "" msgid "Enrollments" msgstr "" -#: lms/lms/doctype/lms_settings/lms_settings.py:25 +#: lms/lms/doctype/lms_settings/lms_settings.py:26 msgid "Enter Client Id and Client Secret in Google Settings to send calendar invites for evaluations." msgstr "" @@ -1921,19 +1927,19 @@ msgstr "" #: frontend/src/components/Assignment.vue:287 #: frontend/src/components/Modals/AnnouncementModal.vue:105 #: frontend/src/components/Modals/BulkCertificates.vue:115 -#: frontend/src/components/Modals/ChapterModal.vue:157 -#: frontend/src/components/Modals/ChapterModal.vue:164 -#: frontend/src/components/Modals/ChapterModal.vue:200 -#: frontend/src/components/Modals/Question.vue:251 -#: frontend/src/components/Modals/Question.vue:272 -#: frontend/src/components/Modals/Question.vue:329 -#: frontend/src/components/Modals/StudentModal.vue:70 +#: frontend/src/components/Modals/ChapterModal.vue:160 +#: frontend/src/components/Modals/ChapterModal.vue:167 +#: frontend/src/components/Modals/ChapterModal.vue:203 +#: frontend/src/components/Modals/Question.vue:252 +#: frontend/src/components/Modals/Question.vue:275 +#: frontend/src/components/Modals/Question.vue:332 +#: frontend/src/components/Modals/StudentModal.vue:73 #: frontend/src/components/Quiz.vue:592 #: frontend/src/components/SettingDetails.vue:62 -#: frontend/src/pages/AssignmentForm.vue:139 -#: frontend/src/pages/AssignmentForm.vue:159 frontend/src/pages/Billing.vue:261 -#: frontend/src/pages/QuizForm.vue:346 frontend/src/pages/QuizForm.vue:361 -#: frontend/src/pages/QuizSubmission.vue:147 +#: frontend/src/pages/AssignmentForm.vue:142 +#: frontend/src/pages/AssignmentForm.vue:162 frontend/src/pages/Billing.vue:262 +#: frontend/src/pages/QuizForm.vue:349 frontend/src/pages/QuizForm.vue:364 +#: frontend/src/pages/QuizSubmission.vue:150 msgid "Error" msgstr "Erro" @@ -1982,7 +1988,7 @@ msgstr "" #. Label of the evaluator (Link) field in DocType 'LMS Course' #: frontend/src/components/Modals/BatchCourseModal.vue:26 #: frontend/src/components/Modals/BulkCertificates.vue:22 -#: frontend/src/pages/CourseForm.vue:232 frontend/src/pages/ProfileRoles.vue:22 +#: frontend/src/pages/CourseForm.vue:228 frontend/src/pages/ProfileRoles.vue:22 #: lms/lms/doctype/batch_course/batch_course.json #: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json @@ -2100,7 +2106,7 @@ msgstr "" #. Label of the featured (Check) field in DocType 'LMS Course' #: frontend/src/components/CourseCard.vue:16 -#: frontend/src/pages/CourseForm.vue:190 +#: frontend/src/pages/CourseForm.vue:186 #: lms/lms/doctype/lms_course/lms_course.json msgid "Featured" msgstr "" @@ -2149,10 +2155,6 @@ msgstr "" msgid "Flexible Time" msgstr "" -#: frontend/src/pages/QuizForm.vue:459 -msgid "Form to create and edit quizzes" -msgstr "" - #. Option for the 'Attire Preference' (Select) field in DocType 'User' #: lms/fixtures/custom_field.json msgid "Formal Wear" @@ -2163,7 +2165,7 @@ msgid "Free" msgstr "" #. Option for the 'Type' (Select) field in DocType 'Job Opportunity' -#: frontend/src/pages/Jobs.vue:147 +#: frontend/src/pages/Jobs.vue:164 #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Freelance" msgstr "" @@ -2207,7 +2209,7 @@ msgid "Full Name" msgstr "" #. Option for the 'Type' (Select) field in DocType 'Job Opportunity' -#: frontend/src/pages/Jobs.vue:144 +#: frontend/src/pages/Jobs.vue:161 #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Full Time" msgstr "" @@ -2385,7 +2387,7 @@ msgstr "" msgid "I am unavailable" msgstr "" -#: frontend/src/pages/QuizForm.vue:380 +#: frontend/src/pages/QuizForm.vue:383 msgid "ID" msgstr "" @@ -2395,6 +2397,11 @@ msgstr "" msgid "Icon" msgstr "" +#. Label of the user_category (Check) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Identify User Persona" +msgstr "" + #: frontend/src/components/LessonHelp.vue:11 msgid "If Include in Preview is enabled for a lesson then the lesson will also be accessible to non logged in users." msgstr "" @@ -2425,7 +2432,7 @@ msgstr "" msgid "If you set an amount here, then the USD equivalent setting will not get applied." msgstr "" -#: lms/lms/doctype/lms_quiz/lms_quiz.py:63 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:61 msgid "If you want open ended questions then make sure each question in the quiz is of open ended type." msgstr "" @@ -2451,7 +2458,7 @@ msgstr "Imagem" msgid "Image search powered by" msgstr "" -#: lms/lms/doctype/lms_quiz/lms_quiz.py:221 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:219 msgid "Image: Corrupted Data Stream" msgstr "" @@ -2540,7 +2547,7 @@ msgstr "" #. Label of the instructors (Table MultiSelect) field in DocType 'LMS Batch' #. Label of the instructors (Rating) field in DocType 'LMS Batch Feedback' #. Label of the instructors (Table MultiSelect) field in DocType 'LMS Course' -#: frontend/src/pages/BatchForm.vue:93 frontend/src/pages/CourseForm.vue:155 +#: frontend/src/pages/BatchForm.vue:93 frontend/src/pages/CourseForm.vue:151 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json #: lms/lms/doctype/lms_course/lms_course.json @@ -2565,10 +2572,14 @@ msgstr "Introdução" msgid "Invalid Invite Code." msgstr "" -#: lms/lms/doctype/course_lesson/course_lesson.py:20 +#: lms/lms/doctype/course_lesson/course_lesson.py:19 msgid "Invalid Quiz ID" msgstr "" +#: lms/lms/doctype/course_lesson/course_lesson.py:33 +msgid "Invalid Quiz ID in content" +msgstr "" + #. Label of the invite_code (Data) field in DocType 'Cohort Subgroup' #. Label of the invite_code (Data) field in DocType 'Invite Request' #: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json @@ -2607,11 +2618,6 @@ msgstr "" msgid "Is Correct" msgstr "" -#. Label of the is_onboarding_complete (Check) field in DocType 'LMS Settings' -#: lms/lms/doctype/lms_settings/lms_settings.json -msgid "Is Onboarding Complete" -msgstr "" - #. Label of the is_scorm_package (Check) field in DocType 'Course Chapter' #. Label of the is_scorm_package (Check) field in DocType 'Course Lesson' #: lms/lms/doctype/course_chapter/course_chapter.json @@ -2650,7 +2656,7 @@ msgstr "" msgid "Items in Sidebar" msgstr "" -#: frontend/src/pages/ProgramForm.vue:272 +#: frontend/src/pages/ProgramForm.vue:275 msgid "Items removed successfully" msgstr "" @@ -2677,7 +2683,7 @@ msgstr "" msgid "Job Details" msgstr "" -#: lms/www/lms.py:111 +#: lms/www/lms.py:159 msgid "Job Openings" msgstr "" @@ -2700,6 +2706,7 @@ msgstr "" #. Label of the jobs (Check) field in DocType 'LMS Settings' #: frontend/src/pages/JobDetail.vue:10 frontend/src/pages/Jobs.vue:8 +#: frontend/src/pages/Jobs.vue:170 #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Jobs" msgstr "" @@ -2923,7 +2930,6 @@ msgstr "" #: lms/job/doctype/lms_job_application/lms_job_application.json #: lms/lms/doctype/cohort_join_request/cohort_join_request.json #: lms/lms/doctype/course_chapter/course_chapter.json -#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/function/function.json #: lms/lms/doctype/industry/industry.json #: lms/lms/doctype/lms_assignment/lms_assignment.json @@ -3035,7 +3041,7 @@ msgstr "" msgid "Limit Questions To" msgstr "" -#: lms/lms/doctype/lms_quiz/lms_quiz.py:40 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:38 msgid "Limit cannot be greater than or equal to the number of questions in the quiz." msgstr "" @@ -3055,12 +3061,8 @@ msgstr "" msgid "Links" msgstr "" -#: frontend/src/pages/Quizzes.vue:149 -msgid "List of quizzes" -msgstr "" - #. Option for the 'Status' (Select) field in DocType 'Cohort' -#: frontend/src/pages/Courses.vue:278 lms/lms/doctype/cohort/cohort.json +#: frontend/src/pages/Courses.vue:281 lms/lms/doctype/cohort/cohort.json msgid "Live" msgstr "" @@ -3092,7 +3094,7 @@ msgstr "" #. Label of the location (Data) field in DocType 'Job Opportunity' #. Label of the location (Data) field in DocType 'Education Detail' #. Label of the location (Data) field in DocType 'Work Experience' -#: frontend/src/pages/JobCreation.vue:26 frontend/src/pages/JobDetail.vue:85 +#: frontend/src/pages/JobCreation.vue:26 frontend/src/pages/JobDetail.vue:92 #: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/lms/doctype/education_detail/education_detail.json #: lms/lms/doctype/work_experience/work_experience.json @@ -3114,7 +3116,7 @@ msgstr "" msgid "Login to Frappe Cloud?" msgstr "" -#: frontend/src/pages/JobDetail.vue:48 +#: frontend/src/pages/JobDetail.vue:54 msgid "Login to apply" msgstr "" @@ -3171,7 +3173,7 @@ msgstr "" #. Label of the marks (Int) field in DocType 'LMS Quiz Result' #: frontend/src/components/Modals/Question.vue:50 #: frontend/src/components/Modals/Question.vue:99 -#: frontend/src/components/Quiz.vue:96 frontend/src/pages/QuizForm.vue:390 +#: frontend/src/components/Quiz.vue:96 frontend/src/pages/QuizForm.vue:393 #: frontend/src/pages/QuizSubmission.vue:65 #: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json #: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json @@ -3233,7 +3235,7 @@ msgstr "" #. Label of the member (Link) field in DocType 'LMS Quiz Submission' #: frontend/src/pages/AssignmentSubmissionList.vue:14 #: frontend/src/pages/QuizSubmission.vue:31 -#: frontend/src/pages/QuizSubmissionList.vue:86 +#: frontend/src/pages/QuizSubmissionList.vue:102 #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_submission/exercise_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json @@ -3314,7 +3316,7 @@ msgstr "" msgid "Member Username" msgstr "" -#: frontend/src/pages/ProgramForm.vue:251 +#: frontend/src/pages/ProgramForm.vue:254 msgid "Member added to program" msgstr "" @@ -3378,6 +3380,11 @@ msgstr "" msgid "Mentor Request Status Update Template" msgstr "" +#. Label of the meta_description (Small Text) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Meta Description" +msgstr "" + #. Label of the meta_image (Attach Image) field in DocType 'LMS Batch' #: frontend/src/pages/BatchForm.vue:44 lms/lms/doctype/lms_batch/lms_batch.json #: lms/public/js/common_functions.js:362 @@ -3400,6 +3407,7 @@ msgstr "" #. Name of a role #: frontend/src/pages/ProfileRoles.vue:10 #: lms/lms/doctype/course_evaluator/course_evaluator.json +#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/lms_assignment/lms_assignment.json #: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json #: lms/lms/doctype/lms_batch/lms_batch.json @@ -3459,12 +3467,13 @@ msgstr "" #. Option for the 'Event' (Select) field in DocType 'LMS Badge' #: frontend/src/pages/Assignments.vue:18 frontend/src/pages/Batches.vue:17 -#: frontend/src/pages/Courses.vue:17 frontend/src/pages/Courses.vue:281 +#: frontend/src/pages/Courses.vue:17 frontend/src/pages/Courses.vue:284 #: frontend/src/pages/Programs.vue:14 lms/lms/doctype/lms_badge/lms_badge.json msgid "New" msgstr "Novo" -#: frontend/src/pages/AssignmentForm.vue:178 +#: frontend/src/pages/AssignmentForm.vue:181 +#: frontend/src/pages/AssignmentForm.vue:197 msgid "New Assignment" msgstr "" @@ -3472,11 +3481,11 @@ msgstr "" msgid "New Assignment Submission" msgstr "" -#: lms/public/js/common_functions.js:255 lms/www/lms.py:89 +#: lms/public/js/common_functions.js:255 lms/www/lms.py:134 msgid "New Batch" msgstr "" -#: lms/www/lms.py:40 +#: frontend/src/pages/CourseForm.vue:577 lms/www/lms.py:78 msgid "New Course" msgstr "" @@ -3504,7 +3513,7 @@ msgstr "" msgid "New Question" msgstr "" -#: frontend/src/pages/QuizForm.vue:450 frontend/src/pages/QuizForm.vue:458 +#: frontend/src/pages/QuizForm.vue:453 frontend/src/pages/QuizForm.vue:461 #: frontend/src/pages/Quizzes.vue:18 msgid "New Quiz" msgstr "" @@ -3599,8 +3608,8 @@ msgstr "" msgid "No introduction" msgstr "" -#: frontend/src/pages/Jobs.vue:77 -msgid "No jobs posted" +#: frontend/src/pages/Jobs.vue:80 +msgid "No jobs found" msgstr "" #: frontend/src/components/LiveClass.vue:71 @@ -3615,6 +3624,10 @@ msgstr "" msgid "No programs found" msgstr "" +#: frontend/src/pages/QuizSubmissionList.vue:52 +msgid "No quiz submissions found. Please check again later." +msgstr "" + #: frontend/src/pages/Quizzes.vue:61 msgid "No quizzes found" msgstr "" @@ -3624,6 +3637,7 @@ msgid "No slots available for this date." msgstr "" #: frontend/src/pages/AssignmentSubmissionList.vue:67 +#: frontend/src/pages/QuizSubmissionList.vue:49 msgid "No submissions" msgstr "" @@ -3724,11 +3738,11 @@ msgstr "" msgid "Only files of type {0} will be accepted." msgstr "" -#: frontend/src/pages/CourseForm.vue:509 frontend/src/utils/index.js:549 +#: frontend/src/pages/CourseForm.vue:507 frontend/src/utils/index.js:550 msgid "Only image file is allowed." msgstr "" -#: frontend/src/components/Modals/ChapterModal.vue:218 +#: frontend/src/components/Modals/ChapterModal.vue:221 msgid "Only zip files are allowed" msgstr "" @@ -3786,7 +3800,7 @@ msgstr "" msgid "Order ID" msgstr "" -#: frontend/src/pages/JobDetail.vue:74 +#: frontend/src/pages/JobDetail.vue:81 msgid "Organisation" msgstr "" @@ -3835,7 +3849,7 @@ msgid "Paid Batch" msgstr "" #. Label of the paid_certificate (Check) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:218 +#: frontend/src/pages/CourseForm.vue:214 #: lms/lms/doctype/lms_course/lms_course.json msgid "Paid Certificate" msgstr "" @@ -3845,7 +3859,7 @@ msgid "Paid Certificate after Evaluation" msgstr "" #. Label of the paid_course (Check) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:208 +#: frontend/src/pages/CourseForm.vue:204 #: lms/lms/doctype/lms_course/lms_course.json msgid "Paid Course" msgstr "" @@ -3855,7 +3869,7 @@ msgid "Pan Number" msgstr "" #. Option for the 'Type' (Select) field in DocType 'Job Opportunity' -#: frontend/src/pages/Jobs.vue:145 +#: frontend/src/pages/Jobs.vue:162 #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Part Time" msgstr "" @@ -3877,7 +3891,7 @@ msgstr "" #. Label of the passing_percentage (Int) field in DocType 'LMS Quiz' #. Label of the passing_percentage (Int) field in DocType 'LMS Quiz Submission' -#: frontend/src/pages/QuizForm.vue:72 frontend/src/pages/Quizzes.vue:127 +#: frontend/src/pages/QuizForm.vue:72 frontend/src/pages/Quizzes.vue:129 #: lms/lms/doctype/lms_quiz/lms_quiz.json #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json msgid "Passing Percentage" @@ -3888,7 +3902,7 @@ msgstr "" msgid "Password" msgstr "" -#: frontend/src/pages/CourseForm.vue:113 +#: frontend/src/pages/CourseForm.vue:109 msgid "Paste the youtube link of a short video introducing the course" msgstr "" @@ -3980,7 +3994,7 @@ msgstr "Pendente" #. Label of the percentage (Int) field in DocType 'LMS Quiz Submission' #: frontend/src/pages/QuizSubmission.vue:44 -#: frontend/src/pages/QuizSubmissionList.vue:97 +#: frontend/src/pages/QuizSubmissionList.vue:113 #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json msgid "Percentage" msgstr "Percentagem" @@ -4002,7 +4016,7 @@ msgstr "Número de telefone" msgid "Please Login" msgstr "" -#: lms/lms/doctype/lms_settings/lms_settings.py:33 +#: lms/lms/doctype/lms_settings/lms_settings.py:34 msgid "Please add {1} for {3} to send calendar invites for evaluations." msgstr "" @@ -4026,7 +4040,7 @@ msgstr "" msgid "Please enable Zoom Settings to use this feature." msgstr "" -#: frontend/src/components/CourseOutline.vue:324 +#: frontend/src/components/CourseOutline.vue:325 msgid "Please enroll for this course to view this lesson" msgstr "" @@ -4063,7 +4077,7 @@ msgstr "" msgid "Please install the Payments app to create a paid courses." msgstr "" -#: frontend/src/pages/Billing.vue:253 +#: frontend/src/pages/Billing.vue:254 msgid "Please let us know where you heard about us from." msgstr "" @@ -4112,7 +4126,7 @@ msgstr "" msgid "Please take appropriate action at {0}" msgstr "" -#: frontend/src/components/Modals/ChapterModal.vue:175 +#: frontend/src/components/Modals/ChapterModal.vue:178 msgid "Please upload a SCORM package" msgstr "" @@ -4158,7 +4172,7 @@ msgstr "" msgid "Postal Code" msgstr "" -#: frontend/src/pages/JobDetail.vue:107 +#: frontend/src/pages/JobDetail.vue:114 msgid "Posted on" msgstr "" @@ -4193,7 +4207,7 @@ msgstr "" msgid "Preview Image" msgstr "" -#: frontend/src/pages/CourseForm.vue:111 +#: frontend/src/pages/CourseForm.vue:107 msgid "Preview Video" msgstr "" @@ -4208,7 +4222,7 @@ msgid "Pricing" msgstr "Precificação" #. Label of the pricing_tab (Tab Break) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:202 +#: frontend/src/pages/CourseForm.vue:198 #: lms/lms/doctype/lms_course/lms_course.json msgid "Pricing and Certification" msgstr "" @@ -4272,6 +4286,10 @@ msgstr "" msgid "Program Members" msgstr "" +#: frontend/src/pages/Programs.vue:219 lms/www/lms.py:273 +msgid "Programs" +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/BatchStudents.vue:75 @@ -4301,7 +4319,7 @@ msgstr "" #. Label of the published (Check) field in DocType 'LMS Course' #: frontend/src/components/Modals/BulkCertificates.vue:51 #: frontend/src/components/Modals/Event.vue:108 -#: frontend/src/pages/BatchForm.vue:27 frontend/src/pages/CourseForm.vue:172 +#: frontend/src/pages/BatchForm.vue:27 frontend/src/pages/CourseForm.vue:168 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/public/js/common_functions.js:266 @@ -4314,7 +4332,7 @@ msgid "Published Courses" msgstr "" #. Label of the published_on (Date) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:176 +#: frontend/src/pages/CourseForm.vue:172 #: lms/lms/doctype/lms_course/lms_course.json msgid "Published On" msgstr "Publicado no" @@ -4333,7 +4351,7 @@ msgstr "" #. Label of the question (Text) field in DocType 'LMS Quiz Result' #: frontend/src/components/Assignment.vue:20 #: frontend/src/components/Modals/Question.vue:38 -#: frontend/src/pages/AssignmentForm.vue:45 frontend/src/pages/QuizForm.vue:385 +#: frontend/src/pages/AssignmentForm.vue:45 frontend/src/pages/QuizForm.vue:388 #: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/lms_assignment/lms_assignment.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json @@ -4358,11 +4376,11 @@ msgstr "" msgid "Question Name" msgstr "" -#: frontend/src/components/Modals/Question.vue:267 +#: frontend/src/components/Modals/Question.vue:270 msgid "Question added successfully" msgstr "" -#: frontend/src/components/Modals/Question.vue:319 +#: frontend/src/components/Modals/Question.vue:322 msgid "Question updated successfully" msgstr "" @@ -4379,7 +4397,7 @@ msgstr "" msgid "Questions" msgstr "" -#: frontend/src/pages/QuizForm.vue:427 +#: frontend/src/pages/QuizForm.vue:430 msgid "Questions deleted successfully" msgstr "" @@ -4397,13 +4415,13 @@ msgid "Quiz ID" msgstr "" #. Label of a Link in the LMS Workspace -#: frontend/src/pages/QuizPage.vue:56 frontend/src/pages/QuizPage.vue:62 -#: lms/lms/workspace/lms/lms.json +#: frontend/src/pages/QuizPage.vue:57 lms/lms/workspace/lms/lms.json msgid "Quiz Submission" msgstr "" -#: frontend/src/pages/QuizSubmission.vue:128 -#: frontend/src/pages/QuizSubmissionList.vue:106 +#: frontend/src/pages/QuizSubmission.vue:131 +#: frontend/src/pages/QuizSubmissionList.vue:122 +#: frontend/src/pages/QuizSubmissionList.vue:127 msgid "Quiz Submissions" msgstr "" @@ -4416,7 +4434,7 @@ msgstr "" msgid "Quiz Title" msgstr "" -#: frontend/src/pages/QuizForm.vue:339 +#: frontend/src/pages/QuizForm.vue:342 msgid "Quiz created successfully" msgstr "" @@ -4424,7 +4442,7 @@ msgstr "" msgid "Quiz is not available to Guest users. Please login to continue." msgstr "" -#: frontend/src/pages/QuizForm.vue:358 +#: frontend/src/pages/QuizForm.vue:361 msgid "Quiz updated successfully" msgstr "" @@ -4434,8 +4452,8 @@ msgid "Quiz will appear at the bottom of the lesson." msgstr "" #: frontend/src/components/AppSidebar.vue:530 -#: frontend/src/pages/QuizForm.vue:438 frontend/src/pages/Quizzes.vue:138 -#: frontend/src/pages/Quizzes.vue:148 +#: frontend/src/pages/QuizForm.vue:441 frontend/src/pages/Quizzes.vue:140 +#: frontend/src/pages/Quizzes.vue:150 lms/www/lms.py:229 msgid "Quizzes" msgstr "" @@ -4513,7 +4531,7 @@ msgstr "" msgid "Related Courses" msgstr "" -#: frontend/src/pages/BatchForm.vue:77 frontend/src/pages/CourseForm.vue:100 +#: frontend/src/pages/BatchForm.vue:77 frontend/src/pages/CourseForm.vue:96 msgid "Remove" msgstr "" @@ -4607,7 +4625,7 @@ msgstr "" msgid "Row #{0} Start time cannot be outside the batch duration." msgstr "" -#: lms/lms/doctype/lms_quiz/lms_quiz.py:34 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:32 msgid "Rows {0} have the duplicate questions." msgstr "" @@ -4631,6 +4649,11 @@ msgstr "" msgid "SCORM Package Path" msgstr "" +#. Label of the seo_tab (Tab Break) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "SEO" +msgstr "" + #. Option for the 'Day' (Select) field in DocType 'Evaluator Schedule' #. Option for the 'Day' (Select) field in DocType 'LMS Certificate Request' #: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json @@ -4644,7 +4667,7 @@ msgstr "" #: frontend/src/components/Modals/Event.vue:101 #: frontend/src/components/Modals/Event.vue:129 #: frontend/src/pages/AssignmentForm.vue:21 frontend/src/pages/BatchForm.vue:8 -#: frontend/src/pages/CourseForm.vue:21 frontend/src/pages/JobCreation.vue:8 +#: frontend/src/pages/CourseForm.vue:17 frontend/src/pages/JobCreation.vue:8 #: frontend/src/pages/LessonForm.vue:14 frontend/src/pages/ProgramForm.vue:7 #: frontend/src/pages/QuizForm.vue:34 frontend/src/pages/QuizSubmission.vue:14 #: lms/public/js/common_functions.js:405 @@ -4673,7 +4696,7 @@ msgstr "" #. Label of the score (Int) field in DocType 'LMS Quiz Submission' #: frontend/src/pages/QuizSubmission.vue:39 -#: frontend/src/pages/QuizSubmissionList.vue:91 +#: frontend/src/pages/QuizSubmissionList.vue:107 #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json #: lms/templates/quiz/quiz.html:148 msgid "Score" @@ -4767,7 +4790,7 @@ msgstr "" #: frontend/src/components/AppSidebar.vue:556 #: frontend/src/components/Modals/Settings.vue:7 -#: frontend/src/pages/BatchForm.vue:148 frontend/src/pages/CourseForm.vue:162 +#: frontend/src/pages/BatchForm.vue:148 frontend/src/pages/CourseForm.vue:158 #: frontend/src/pages/ProfileRoles.vue:4 frontend/src/pages/QuizForm.vue:79 msgid "Settings" msgstr "Configurações" @@ -4781,7 +4804,7 @@ msgid "Short Description" msgstr "" #. Label of the short_introduction (Small Text) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:39 +#: frontend/src/pages/CourseForm.vue:35 #: lms/lms/doctype/lms_course/lms_course.json msgid "Short Introduction" msgstr "" @@ -4892,10 +4915,6 @@ msgstr "" msgid "Skip" msgstr "" -#: frontend/src/components/OnboardingBanner.vue:3 -msgid "Skip Onboarding" -msgstr "" - #: lms/lms/doctype/course_evaluator/course_evaluator.py:63 msgid "Slot Times are overlapping for some schedules." msgstr "" @@ -5009,8 +5028,9 @@ msgstr "Estado" #. Label of the tab_4_tab (Tab Break) field in DocType 'LMS Course' #. Label of the statistics (Check) field in DocType 'LMS Settings' #: frontend/src/components/BatchStudents.vue:5 +#: frontend/src/pages/Statistics.vue:322 #: lms/lms/doctype/lms_course/lms_course.json -#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:136 +#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:182 msgid "Statistics" msgstr "" @@ -5110,7 +5130,7 @@ msgstr "" #: frontend/src/components/Modals/AssessmentModal.vue:9 #: frontend/src/components/Modals/BatchCourseModal.vue:9 #: frontend/src/components/Modals/EvaluationModal.vue:9 -#: frontend/src/components/Modals/Question.vue:341 +#: frontend/src/components/Modals/Question.vue:344 #: frontend/src/components/Quiz.vue:218 lms/templates/assignment.html:9 #: lms/templates/livecode/extension_footer.html:25 #: lms/templates/quiz/quiz.html:128 lms/templates/reviews.html:163 @@ -5135,18 +5155,18 @@ msgstr "" #: frontend/src/components/Modals/AnnouncementModal.vue:99 #: frontend/src/components/Modals/AssessmentModal.vue:73 #: frontend/src/components/Modals/BulkCertificates.vue:121 -#: frontend/src/components/Modals/ChapterModal.vue:151 -#: frontend/src/components/Modals/ChapterModal.vue:196 +#: frontend/src/components/Modals/ChapterModal.vue:154 +#: frontend/src/components/Modals/ChapterModal.vue:199 #: frontend/src/components/Modals/Event.vue:255 #: frontend/src/components/Modals/Event.vue:310 -#: frontend/src/components/Modals/Question.vue:267 -#: frontend/src/components/Modals/Question.vue:318 -#: frontend/src/pages/AssignmentForm.vue:155 -#: frontend/src/pages/CourseForm.vue:472 frontend/src/pages/ProgramForm.vue:229 -#: frontend/src/pages/ProgramForm.vue:251 -#: frontend/src/pages/ProgramForm.vue:272 -#: frontend/src/pages/ProgramForm.vue:298 frontend/src/pages/QuizForm.vue:339 -#: frontend/src/pages/QuizForm.vue:358 frontend/src/pages/QuizForm.vue:427 +#: frontend/src/components/Modals/Question.vue:270 +#: frontend/src/components/Modals/Question.vue:321 +#: frontend/src/pages/AssignmentForm.vue:158 +#: frontend/src/pages/CourseForm.vue:470 frontend/src/pages/ProgramForm.vue:232 +#: frontend/src/pages/ProgramForm.vue:254 +#: frontend/src/pages/ProgramForm.vue:275 +#: frontend/src/pages/ProgramForm.vue:301 frontend/src/pages/QuizForm.vue:342 +#: frontend/src/pages/QuizForm.vue:361 frontend/src/pages/QuizForm.vue:430 msgid "Success" msgstr "Sucesso" @@ -5164,7 +5184,7 @@ msgstr "" msgid "Sunday" msgstr "" -#: lms/lms/api.py:1026 +#: lms/lms/api.py:1027 msgid "Suspicious pattern found in {0}: {1}" msgstr "" @@ -5220,7 +5240,7 @@ msgid "System Manager" msgstr "Administrador do Sistema" #. Label of the tags (Data) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:121 +#: frontend/src/pages/CourseForm.vue:117 #: lms/lms/doctype/lms_course/lms_course.json msgid "Tags" msgstr "" @@ -5325,6 +5345,10 @@ msgstr "" msgid "There are no courses matching the criteria. Keep an eye out, fresh learning experiences are on the way soon!" msgstr "" +#: frontend/src/pages/Jobs.vue:84 +msgid "There are no jobs available at the moment. Open a job opportunity or check here again later." +msgstr "" + #: frontend/src/pages/CertifiedParticipants.vue:92 msgid "There are no participants matching this criteria." msgstr "" @@ -5384,8 +5408,10 @@ msgstr "" msgid "This course is free." msgstr "" -#: frontend/src/pages/SCORMChapter.vue:201 -msgid "This is a chapter in the course {0}" +#. Description of the 'Meta Description' (Small Text) field in DocType 'LMS +#. Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "This description will be shown on lists and pages without meta description" msgstr "" #: frontend/src/pages/Lesson.vue:16 @@ -5482,10 +5508,10 @@ msgstr "" #: frontend/src/components/Modals/DiscussionModal.vue:18 #: frontend/src/components/Modals/LiveClassModal.vue:23 #: frontend/src/pages/AssignmentForm.vue:32 -#: frontend/src/pages/Assignments.vue:152 frontend/src/pages/BatchForm.vue:19 -#: frontend/src/pages/CourseForm.vue:33 frontend/src/pages/JobCreation.vue:20 +#: frontend/src/pages/Assignments.vue:155 frontend/src/pages/BatchForm.vue:19 +#: frontend/src/pages/CourseForm.vue:29 frontend/src/pages/JobCreation.vue:20 #: frontend/src/pages/ProgramForm.vue:11 frontend/src/pages/Programs.vue:116 -#: frontend/src/pages/QuizForm.vue:48 frontend/src/pages/Quizzes.vue:116 +#: frontend/src/pages/QuizForm.vue:48 frontend/src/pages/Quizzes.vue:118 #: lms/lms/doctype/cohort/cohort.json #: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json #: lms/lms/doctype/cohort_web_page/cohort_web_page.json @@ -5507,7 +5533,7 @@ msgstr "" msgid "Title" msgstr "Título" -#: frontend/src/components/Modals/ChapterModal.vue:172 +#: frontend/src/components/Modals/ChapterModal.vue:175 msgid "Title is required" msgstr "" @@ -5539,7 +5565,7 @@ msgid "Total" msgstr "" #. Label of the total_marks (Int) field in DocType 'LMS Quiz' -#: frontend/src/pages/QuizForm.vue:67 frontend/src/pages/Quizzes.vue:121 +#: frontend/src/pages/QuizForm.vue:67 frontend/src/pages/Quizzes.vue:123 #: lms/lms/doctype/lms_quiz/lms_quiz.json msgid "Total Marks" msgstr "" @@ -5577,7 +5603,7 @@ msgstr "" #: frontend/src/components/Modals/AssessmentModal.vue:22 #: frontend/src/components/Modals/Question.vue:54 #: frontend/src/pages/AssignmentForm.vue:39 -#: frontend/src/pages/Assignments.vue:30 frontend/src/pages/Assignments.vue:157 +#: frontend/src/pages/Assignments.vue:30 frontend/src/pages/Assignments.vue:160 #: frontend/src/pages/JobCreation.vue:33 frontend/src/pages/Jobs.vue:55 #: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/lms/doctype/lms_assignment/lms_assignment.json @@ -5624,7 +5650,7 @@ msgstr "" msgid "Unlisted" msgstr "" -#: frontend/src/pages/Batches.vue:293 +#: frontend/src/pages/Batches.vue:295 msgid "Unpublished" msgstr "" @@ -5646,8 +5672,8 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'Cohort' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request' #. Label of the upcoming (Check) field in DocType 'LMS Course' -#: frontend/src/pages/Batches.vue:291 frontend/src/pages/CourseForm.vue:185 -#: frontend/src/pages/Courses.vue:284 lms/lms/doctype/cohort/cohort.json +#: frontend/src/pages/Batches.vue:293 frontend/src/pages/CourseForm.vue:181 +#: frontend/src/pages/Courses.vue:287 lms/lms/doctype/cohort/cohort.json #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_course/lms_course.json msgid "Upcoming" @@ -5672,7 +5698,7 @@ msgstr "Atualizar" msgid "Update Password" msgstr "" -#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:81 +#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:77 msgid "Upload" msgstr "" @@ -5778,6 +5804,10 @@ msgstr "" msgid "Visit Batch" msgstr "" +#: frontend/src/pages/JobDetail.vue:38 +msgid "Visit Website" +msgstr "" + #: lms/templates/emails/batch_confirmation.html:23 msgid "Visit the following link to view your " msgstr "" @@ -5899,7 +5929,7 @@ msgstr "" msgid "You are not a mentor of the course {0}" msgstr "" -#: frontend/src/components/CourseOutline.vue:323 +#: frontend/src/components/CourseOutline.vue:324 msgid "You are not enrolled" msgstr "" @@ -6123,11 +6153,7 @@ msgstr "" msgid "out of" msgstr "" -#: frontend/src/components/JobCard.vue:30 -msgid "posted" -msgstr "" - -#: frontend/src/pages/QuizForm.vue:386 +#: frontend/src/pages/QuizForm.vue:389 msgid "question_detail" msgstr "" @@ -6147,7 +6173,7 @@ msgstr "" msgid "you can" msgstr "" -#: lms/lms/api.py:816 lms/lms/api.py:824 +#: lms/lms/api.py:817 lms/lms/api.py:825 msgid "{0} Settings not found" msgstr "" diff --git a/lms/locale/ru.po b/lms/locale/ru.po index 29cf61d0..e6723033 100644 --- a/lms/locale/ru.po +++ b/lms/locale/ru.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n" -"POT-Creation-Date: 2025-04-04 16:04+0000\n" -"PO-Revision-Date: 2025-04-08 03:58\n" +"POT-Creation-Date: 2025-04-11 16:04+0000\n" +"PO-Revision-Date: 2025-04-14 06:01\n" "Last-Translator: jannat@frappe.io\n" "Language-Team: Russian\n" "MIME-Version: 1.0\n" @@ -71,7 +71,7 @@ msgstr "" msgid "A course cannot have both paid certificate and certificate of completion." msgstr "" -#: frontend/src/pages/CourseForm.vue:41 +#: frontend/src/pages/CourseForm.vue:37 msgid "A one line introduction to the course that appears on the course card" msgstr "" @@ -145,7 +145,6 @@ msgid "Add a Student" msgstr "Добавить студента" #: frontend/src/components/AppSidebar.vue:514 -#: frontend/src/components/OnboardingBanner.vue:56 msgid "Add a chapter" msgstr "" @@ -153,16 +152,15 @@ msgstr "" msgid "Add a course" msgstr "Добавить курс" -#: frontend/src/pages/CourseForm.vue:137 +#: frontend/src/pages/CourseForm.vue:133 msgid "Add a keyword and then press enter" msgstr "" #: frontend/src/components/AppSidebar.vue:515 -#: frontend/src/components/OnboardingBanner.vue:81 msgid "Add a lesson" msgstr "" -#: frontend/src/components/Modals/Question.vue:146 +#: frontend/src/components/Modals/Question.vue:147 #: frontend/src/pages/QuizForm.vue:183 msgid "Add a new question" msgstr "" @@ -235,7 +233,7 @@ msgid "Admin" msgstr "Админ" #. Name of a role -#: frontend/src/pages/Batches.vue:282 lms/lms/doctype/lms_badge/lms_badge.json +#: frontend/src/pages/Batches.vue:284 lms/lms/doctype/lms_badge/lms_badge.json msgid "All" msgstr "" @@ -259,7 +257,7 @@ msgstr "" msgid "All Submissions" msgstr "Все заявки" -#: lms/lms/doctype/lms_quiz/lms_quiz.py:46 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:44 msgid "All questions should have the same marks if the limit is set." msgstr "Если установлен лимит, все вопросы должны иметь одинаковые баллы." @@ -294,7 +292,7 @@ msgstr "Уже зарегистрирован" #. Label of the amount (Currency) field in DocType 'LMS Batch' #. Label of the course_price (Currency) field in DocType 'LMS Course' #. Label of the amount (Currency) field in DocType 'LMS Payment' -#: frontend/src/pages/BatchForm.vue:209 frontend/src/pages/CourseForm.vue:221 +#: frontend/src/pages/BatchForm.vue:209 frontend/src/pages/CourseForm.vue:217 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_payment/lms_payment.json @@ -346,7 +344,7 @@ msgstr "" msgid "Answer" msgstr "Отвечать" -#: frontend/src/pages/CourseForm.vue:85 frontend/src/pages/CourseForm.vue:103 +#: frontend/src/pages/CourseForm.vue:81 frontend/src/pages/CourseForm.vue:99 msgid "Appears on the course card in the course list" msgstr "" @@ -354,11 +352,11 @@ msgstr "" msgid "Appears when the batch URL is shared on any online platform" msgstr "" -#: frontend/src/pages/JobDetail.vue:121 +#: frontend/src/pages/JobDetail.vue:128 msgid "Applications Received" msgstr "" -#: frontend/src/pages/JobDetail.vue:42 +#: frontend/src/pages/JobDetail.vue:48 msgid "Apply" msgstr "" @@ -389,7 +387,7 @@ msgstr "Утвержден" msgid "Apps" msgstr "" -#: frontend/src/pages/Batches.vue:292 +#: frontend/src/pages/Batches.vue:294 msgid "Archived" msgstr "" @@ -401,11 +399,6 @@ msgstr "" msgid "Are you sure you want to login to your Frappe Cloud dashboard?" msgstr "" -#. Label of the user_category (Check) field in DocType 'LMS Settings' -#: lms/lms/doctype/lms_settings/lms_settings.json -msgid "Ask User Category during Signup" -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 @@ -470,6 +463,10 @@ msgstr "Прикрепленное задание" msgid "Assignment Submission Template" msgstr "Шаблон Отправленного Задания" +#: frontend/src/pages/AssignmentSubmissionList.vue:223 +msgid "Assignment Submissions" +msgstr "" + #. Label of the assignment_title (Data) field in DocType 'LMS Assignment #. Submission' #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json @@ -480,7 +477,7 @@ msgstr "Название задания" msgid "Assignment for Lesson {0} by {1} already exists." msgstr "Задание для урока {0} от {1} уже существует." -#: frontend/src/pages/AssignmentForm.vue:155 +#: frontend/src/pages/AssignmentForm.vue:158 msgid "Assignment saved successfully" msgstr "" @@ -490,7 +487,8 @@ msgid "Assignment will appear at the bottom of the lesson." msgstr "Задание появится в конце урока." #: frontend/src/components/AppSidebar.vue:531 -#: frontend/src/pages/AssignmentForm.vue:174 +#: frontend/src/pages/AssignmentForm.vue:177 +#: frontend/src/pages/Assignments.vue:193 lms/www/lms.py:251 msgid "Assignments" msgstr "" @@ -656,8 +654,8 @@ msgid "Batch:" msgstr "Партия:" #. Label of the batches (Check) field in DocType 'LMS Settings' -#: frontend/src/pages/Batches.vue:302 -#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:63 +#: frontend/src/pages/Batches.vue:304 frontend/src/pages/Batches.vue:311 +#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:105 msgid "Batches" msgstr "Группы" @@ -675,7 +673,7 @@ msgstr "С наилучшими пожеланиями" #. Label of the billing_details_section (Section Break) field in DocType 'LMS #. Payment' -#: frontend/src/pages/Billing.vue:8 +#: frontend/src/pages/Billing.vue:8 frontend/src/pages/Billing.vue:363 #: lms/lms/doctype/lms_payment/lms_payment.json msgid "Billing Details" msgstr "Платёжные реквизиты" @@ -757,8 +755,9 @@ msgstr "" #. Label of the category (Link) field in DocType 'LMS Course' #: frontend/src/pages/BatchForm.vue:190 frontend/src/pages/Batches.vue:55 #: frontend/src/pages/CertifiedParticipants.vue:37 -#: frontend/src/pages/CourseForm.vue:148 frontend/src/pages/Courses.vue:51 -#: frontend/src/pages/JobDetail.vue:96 lms/lms/doctype/lms_batch/lms_batch.json +#: frontend/src/pages/CourseForm.vue:144 frontend/src/pages/Courses.vue:51 +#: frontend/src/pages/JobDetail.vue:103 +#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/public/js/common_functions.js:316 lms/templates/signup-form.html:22 @@ -813,7 +812,7 @@ msgstr "" #: frontend/src/components/Modals/Event.vue:371 #: frontend/src/pages/BatchForm.vue:37 frontend/src/pages/Batches.vue:38 #: frontend/src/pages/CourseCertification.vue:10 -#: frontend/src/pages/CourseCertification.vue:133 +#: frontend/src/pages/CourseCertification.vue:135 #: frontend/src/pages/Courses.vue:34 lms/fixtures/custom_field.json #: lms/lms/doctype/certification/certification.json #: lms/lms/doctype/lms_batch/lms_batch.json @@ -837,7 +836,8 @@ msgid "Certified" msgstr "" #. Label of the certified_participants (Check) field in DocType 'LMS Settings' -#: frontend/src/pages/CertifiedParticipants.vue:161 +#: frontend/src/pages/CertifiedParticipants.vue:164 +#: frontend/src/pages/CertifiedParticipants.vue:171 #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Certified Participants" msgstr "Сертифицированные участники" @@ -864,11 +864,11 @@ msgstr "Глава" msgid "Chapter Reference" msgstr "Ссылка на главу" -#: frontend/src/components/Modals/ChapterModal.vue:152 +#: frontend/src/components/Modals/ChapterModal.vue:155 msgid "Chapter added successfully" msgstr "" -#: frontend/src/components/Modals/ChapterModal.vue:196 +#: frontend/src/components/Modals/ChapterModal.vue:199 msgid "Chapter updated successfully" msgstr "" @@ -1117,7 +1117,7 @@ msgid "Completed by Students" msgstr "" #. Label of the enable_certification (Check) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:213 +#: frontend/src/pages/CourseForm.vue:209 #: lms/lms/doctype/lms_course/lms_course.json msgid "Completion Certificate" msgstr "" @@ -1179,7 +1179,7 @@ msgid "Continue Learning" msgstr "" #. Option for the 'Type' (Select) field in DocType 'Job Opportunity' -#: frontend/src/pages/Jobs.vue:146 +#: frontend/src/pages/Jobs.vue:163 #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Contract" msgstr "" @@ -1294,6 +1294,7 @@ msgstr "Курс завершен" #. Name of a role #: frontend/src/pages/ProfileRoles.vue:16 #: lms/lms/doctype/course_chapter/course_chapter.json +#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_program/lms_program.json @@ -1307,7 +1308,7 @@ msgstr "Создание курса" msgid "Course Data" msgstr "Данные курса" -#: frontend/src/pages/CourseForm.vue:50 +#: frontend/src/pages/CourseForm.vue:46 msgid "Course Description" msgstr "Описание курса" @@ -1316,7 +1317,7 @@ msgstr "Описание курса" msgid "Course Evaluator" msgstr "Оценщик курса" -#: frontend/src/pages/CourseForm.vue:63 +#: frontend/src/pages/CourseForm.vue:59 msgid "Course Image" msgstr "Изображение курса" @@ -1330,7 +1331,7 @@ msgstr "Преподаватель курса" msgid "Course Lesson" msgstr "Урок курса" -#: lms/www/lms.py:30 +#: lms/www/lms.py:70 msgid "Course List" msgstr "Список курсов" @@ -1338,7 +1339,7 @@ msgstr "Список курсов" msgid "Course Name" msgstr "Название курса" -#: frontend/src/pages/CourseDetail.vue:76 frontend/src/pages/CourseForm.vue:241 +#: frontend/src/pages/CourseDetail.vue:76 frontend/src/pages/CourseForm.vue:237 msgid "Course Outline" msgstr "" @@ -1370,7 +1371,7 @@ msgstr "Статистика курса" msgid "Course Title" msgstr "Заголовок курса" -#: frontend/src/pages/ProgramForm.vue:229 +#: frontend/src/pages/ProgramForm.vue:232 msgid "Course added to program" msgstr "" @@ -1378,11 +1379,11 @@ msgstr "" msgid "Course already added to the batch." msgstr "Курс уже добавлен в группу." -#: frontend/src/pages/CourseForm.vue:472 +#: frontend/src/pages/CourseForm.vue:470 msgid "Course deleted successfully" msgstr "" -#: frontend/src/pages/ProgramForm.vue:298 +#: frontend/src/pages/ProgramForm.vue:301 msgid "Course moved successfully" msgstr "" @@ -1400,8 +1401,9 @@ msgstr "Курс {0} уже добавлен в группу." #: frontend/src/components/BatchStudents.vue:92 #: frontend/src/components/Modals/BatchStudentProgress.vue:79 #: frontend/src/pages/BatchDetail.vue:21 frontend/src/pages/BatchDetail.vue:70 -#: frontend/src/pages/CourseCertification.vue:125 -#: frontend/src/pages/Courses.vue:301 frontend/src/pages/Statistics.vue:21 +#: frontend/src/pages/CourseCertification.vue:127 +#: frontend/src/pages/Courses.vue:304 frontend/src/pages/Courses.vue:311 +#: frontend/src/pages/Statistics.vue:21 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Courses" @@ -1443,7 +1445,6 @@ msgid "Create a batch" msgstr "" #: frontend/src/components/AppSidebar.vue:513 -#: frontend/src/components/OnboardingBanner.vue:30 msgid "Create a course" msgstr "" @@ -1467,7 +1468,7 @@ msgstr "" msgid "Create your first quiz" msgstr "" -#: frontend/src/pages/Assignments.vue:163 frontend/src/pages/Courses.vue:292 +#: frontend/src/pages/Assignments.vue:166 frontend/src/pages/Courses.vue:295 msgid "Created" msgstr "" @@ -1482,7 +1483,7 @@ msgstr "" #. Label of the currency (Link) field in DocType 'LMS Batch' #. Label of the currency (Link) field in DocType 'LMS Course' #. Label of the currency (Link) field in DocType 'LMS Payment' -#: frontend/src/pages/BatchForm.vue:217 frontend/src/pages/CourseForm.vue:226 +#: frontend/src/pages/BatchForm.vue:217 frontend/src/pages/CourseForm.vue:222 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_payment/lms_payment.json @@ -1585,9 +1586,9 @@ msgstr "Валюта по умолчания" msgid "Degree Type" msgstr "Тип степени" -#: frontend/src/components/CourseOutline.vue:247 -#: frontend/src/components/CourseOutline.vue:305 -#: frontend/src/pages/CourseForm.vue:485 +#: frontend/src/components/CourseOutline.vue:248 +#: frontend/src/components/CourseOutline.vue:306 +#: frontend/src/pages/CourseForm.vue:483 msgid "Delete" msgstr "" @@ -1595,27 +1596,27 @@ msgstr "" msgid "Delete Chapter" msgstr "" -#: frontend/src/pages/CourseForm.vue:479 +#: frontend/src/pages/CourseForm.vue:477 msgid "Delete Course" msgstr "" -#: frontend/src/components/CourseOutline.vue:299 +#: frontend/src/components/CourseOutline.vue:300 msgid "Delete this chapter?" msgstr "" -#: frontend/src/components/CourseOutline.vue:241 +#: frontend/src/components/CourseOutline.vue:242 msgid "Delete this lesson?" msgstr "" -#: frontend/src/pages/CourseForm.vue:480 +#: frontend/src/pages/CourseForm.vue:478 msgid "Deleting the course will also delete all its chapters and lessons. Are you sure you want to delete this course?" msgstr "" -#: frontend/src/components/CourseOutline.vue:300 +#: frontend/src/components/CourseOutline.vue:301 msgid "Deleting this chapter will also delete all its lessons and permanently remove it from the course. This action cannot be undone. Are you sure you want to continue?" msgstr "" -#: frontend/src/components/CourseOutline.vue:242 +#: frontend/src/components/CourseOutline.vue:243 msgid "Deleting this lesson will permanently remove it from the course. This action cannot be undone. Are you sure you want to continue?" msgstr "" @@ -1654,11 +1655,11 @@ msgstr "" #: frontend/src/components/Modals/DiscussionModal.vue:22 #: frontend/src/pages/AssignmentForm.vue:27 frontend/src/pages/BatchForm.vue:14 -#: frontend/src/pages/CourseForm.vue:29 frontend/src/pages/QuizForm.vue:42 +#: frontend/src/pages/CourseForm.vue:25 frontend/src/pages/QuizForm.vue:42 msgid "Details" msgstr "Детали" -#: frontend/src/pages/CourseForm.vue:195 +#: frontend/src/pages/CourseForm.vue:191 msgid "Disable Self Enrollment" msgstr "Отключить самостоятельную регистрацию" @@ -1667,6 +1668,11 @@ msgstr "Отключить самостоятельную регистрацию msgid "Disable Self Learning" msgstr "Отключить самообучение" +#. Label of the disable_signup (Check) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Disable Signup" +msgstr "" + #. Label of the disabled (Check) field in DocType 'Job Opportunity' #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Disabled" @@ -1808,7 +1814,7 @@ msgstr "" msgid "Enable" msgstr "Включить" -#: lms/lms/doctype/lms_settings/lms_settings.py:20 +#: lms/lms/doctype/lms_settings/lms_settings.py:21 msgid "Enable Google API in Google Settings to send calendar invites for evaluations." msgstr "Включите Google API в настройках Google, чтобы отправлять приглашения в календарь для оценки." @@ -1867,7 +1873,7 @@ msgstr "Время окончания" msgid "Enroll Now" msgstr "" -#: frontend/src/pages/Batches.vue:295 frontend/src/pages/Courses.vue:294 +#: frontend/src/pages/Batches.vue:297 frontend/src/pages/Courses.vue:297 msgid "Enrolled" msgstr "" @@ -1902,7 +1908,7 @@ msgstr "" msgid "Enrollments" msgstr "Зачисления" -#: lms/lms/doctype/lms_settings/lms_settings.py:25 +#: lms/lms/doctype/lms_settings/lms_settings.py:26 msgid "Enter Client Id and Client Secret in Google Settings to send calendar invites for evaluations." msgstr "Введите идентификатор клиента и секретный код клиента в настройках Google, чтобы отправлять приглашения в календарь для оценки." @@ -1921,19 +1927,19 @@ msgstr "Введите правильный ответ" #: frontend/src/components/Assignment.vue:287 #: frontend/src/components/Modals/AnnouncementModal.vue:105 #: frontend/src/components/Modals/BulkCertificates.vue:115 -#: frontend/src/components/Modals/ChapterModal.vue:157 -#: frontend/src/components/Modals/ChapterModal.vue:164 -#: frontend/src/components/Modals/ChapterModal.vue:200 -#: frontend/src/components/Modals/Question.vue:251 -#: frontend/src/components/Modals/Question.vue:272 -#: frontend/src/components/Modals/Question.vue:329 -#: frontend/src/components/Modals/StudentModal.vue:70 +#: frontend/src/components/Modals/ChapterModal.vue:160 +#: frontend/src/components/Modals/ChapterModal.vue:167 +#: frontend/src/components/Modals/ChapterModal.vue:203 +#: frontend/src/components/Modals/Question.vue:252 +#: frontend/src/components/Modals/Question.vue:275 +#: frontend/src/components/Modals/Question.vue:332 +#: frontend/src/components/Modals/StudentModal.vue:73 #: frontend/src/components/Quiz.vue:592 #: frontend/src/components/SettingDetails.vue:62 -#: frontend/src/pages/AssignmentForm.vue:139 -#: frontend/src/pages/AssignmentForm.vue:159 frontend/src/pages/Billing.vue:261 -#: frontend/src/pages/QuizForm.vue:346 frontend/src/pages/QuizForm.vue:361 -#: frontend/src/pages/QuizSubmission.vue:147 +#: frontend/src/pages/AssignmentForm.vue:142 +#: frontend/src/pages/AssignmentForm.vue:162 frontend/src/pages/Billing.vue:262 +#: frontend/src/pages/QuizForm.vue:349 frontend/src/pages/QuizForm.vue:364 +#: frontend/src/pages/QuizSubmission.vue:150 msgid "Error" msgstr "" @@ -1982,7 +1988,7 @@ msgstr "" #. Label of the evaluator (Link) field in DocType 'LMS Course' #: frontend/src/components/Modals/BatchCourseModal.vue:26 #: frontend/src/components/Modals/BulkCertificates.vue:22 -#: frontend/src/pages/CourseForm.vue:232 frontend/src/pages/ProfileRoles.vue:22 +#: frontend/src/pages/CourseForm.vue:228 frontend/src/pages/ProfileRoles.vue:22 #: lms/lms/doctype/batch_course/batch_course.json #: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json @@ -2100,7 +2106,7 @@ msgstr "Ошибка" #. Label of the featured (Check) field in DocType 'LMS Course' #: frontend/src/components/CourseCard.vue:16 -#: frontend/src/pages/CourseForm.vue:190 +#: frontend/src/pages/CourseForm.vue:186 #: lms/lms/doctype/lms_course/lms_course.json msgid "Featured" msgstr "Популярные" @@ -2149,10 +2155,6 @@ msgstr "" msgid "Flexible Time" msgstr "" -#: frontend/src/pages/QuizForm.vue:459 -msgid "Form to create and edit quizzes" -msgstr "" - #. Option for the 'Attire Preference' (Select) field in DocType 'User' #: lms/fixtures/custom_field.json msgid "Formal Wear" @@ -2163,7 +2165,7 @@ msgid "Free" msgstr "" #. Option for the 'Type' (Select) field in DocType 'Job Opportunity' -#: frontend/src/pages/Jobs.vue:147 +#: frontend/src/pages/Jobs.vue:164 #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Freelance" msgstr "Фриланс" @@ -2207,7 +2209,7 @@ msgid "Full Name" msgstr "Полное имя" #. Option for the 'Type' (Select) field in DocType 'Job Opportunity' -#: frontend/src/pages/Jobs.vue:144 +#: frontend/src/pages/Jobs.vue:161 #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Full Time" msgstr "Полная занятость" @@ -2385,7 +2387,7 @@ msgstr "" msgid "I am unavailable" msgstr "Я недоступен" -#: frontend/src/pages/QuizForm.vue:380 +#: frontend/src/pages/QuizForm.vue:383 msgid "ID" msgstr "" @@ -2395,6 +2397,11 @@ msgstr "" msgid "Icon" msgstr "Иконка" +#. Label of the user_category (Check) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Identify User Persona" +msgstr "" + #: frontend/src/components/LessonHelp.vue:11 msgid "If Include in Preview is enabled for a lesson then the lesson will also be accessible to non logged in users." msgstr "" @@ -2425,7 +2432,7 @@ msgstr "Если у вас возникнут какие-либо вопросы msgid "If you set an amount here, then the USD equivalent setting will not get applied." msgstr "Если вы укажете здесь сумму, то настройка эквивалента в долларах США применена не будет." -#: lms/lms/doctype/lms_quiz/lms_quiz.py:63 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:61 msgid "If you want open ended questions then make sure each question in the quiz is of open ended type." msgstr "" @@ -2451,7 +2458,7 @@ msgstr "Изображение" msgid "Image search powered by" msgstr "Поиск изображений с помощью" -#: lms/lms/doctype/lms_quiz/lms_quiz.py:221 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:219 msgid "Image: Corrupted Data Stream" msgstr "" @@ -2540,7 +2547,7 @@ msgstr "Заметки инструктора" #. Label of the instructors (Table MultiSelect) field in DocType 'LMS Batch' #. Label of the instructors (Rating) field in DocType 'LMS Batch Feedback' #. Label of the instructors (Table MultiSelect) field in DocType 'LMS Course' -#: frontend/src/pages/BatchForm.vue:93 frontend/src/pages/CourseForm.vue:155 +#: frontend/src/pages/BatchForm.vue:93 frontend/src/pages/CourseForm.vue:151 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json #: lms/lms/doctype/lms_course/lms_course.json @@ -2565,10 +2572,14 @@ msgstr "" msgid "Invalid Invite Code." msgstr "Неверный код приглашения." -#: lms/lms/doctype/course_lesson/course_lesson.py:20 +#: lms/lms/doctype/course_lesson/course_lesson.py:19 msgid "Invalid Quiz ID" msgstr "Неверный идентификатор теста" +#: lms/lms/doctype/course_lesson/course_lesson.py:33 +msgid "Invalid Quiz ID in content" +msgstr "" + #. Label of the invite_code (Data) field in DocType 'Cohort Subgroup' #. Label of the invite_code (Data) field in DocType 'Invite Request' #: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json @@ -2607,11 +2618,6 @@ msgstr "" msgid "Is Correct" msgstr "Правильно" -#. Label of the is_onboarding_complete (Check) field in DocType 'LMS Settings' -#: lms/lms/doctype/lms_settings/lms_settings.json -msgid "Is Onboarding Complete" -msgstr "Завершена ли адаптация?" - #. Label of the is_scorm_package (Check) field in DocType 'Course Chapter' #. Label of the is_scorm_package (Check) field in DocType 'Course Lesson' #: lms/lms/doctype/course_chapter/course_chapter.json @@ -2650,7 +2656,7 @@ msgstr "Дата выпуска:" msgid "Items in Sidebar" msgstr "Элементы боковой панели" -#: frontend/src/pages/ProgramForm.vue:272 +#: frontend/src/pages/ProgramForm.vue:275 msgid "Items removed successfully" msgstr "" @@ -2677,7 +2683,7 @@ msgstr "Название доски объявлений" msgid "Job Details" msgstr "Подробности вакансии" -#: lms/www/lms.py:111 +#: lms/www/lms.py:159 msgid "Job Openings" msgstr "Открытые вакансии" @@ -2700,6 +2706,7 @@ msgstr "Должность" #. Label of the jobs (Check) field in DocType 'LMS Settings' #: frontend/src/pages/JobDetail.vue:10 frontend/src/pages/Jobs.vue:8 +#: frontend/src/pages/Jobs.vue:170 #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Jobs" msgstr "Вакансии" @@ -2923,7 +2930,6 @@ msgstr "Источник LMS" #: lms/job/doctype/lms_job_application/lms_job_application.json #: lms/lms/doctype/cohort_join_request/cohort_join_request.json #: lms/lms/doctype/course_chapter/course_chapter.json -#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/function/function.json #: lms/lms/doctype/industry/industry.json #: lms/lms/doctype/lms_assignment/lms_assignment.json @@ -3035,7 +3041,7 @@ msgstr "Буквенная оценка (например, A, B-)" msgid "Limit Questions To" msgstr "Ограничить вопросы" -#: lms/lms/doctype/lms_quiz/lms_quiz.py:40 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:38 msgid "Limit cannot be greater than or equal to the number of questions in the quiz." msgstr "Лимит не может быть больше или равен количеству вопросов в тесте." @@ -3055,12 +3061,8 @@ msgstr "" msgid "Links" msgstr "Ссылки" -#: frontend/src/pages/Quizzes.vue:149 -msgid "List of quizzes" -msgstr "" - #. Option for the 'Status' (Select) field in DocType 'Cohort' -#: frontend/src/pages/Courses.vue:278 lms/lms/doctype/cohort/cohort.json +#: frontend/src/pages/Courses.vue:281 lms/lms/doctype/cohort/cohort.json msgid "Live" msgstr "Live" @@ -3092,7 +3094,7 @@ msgstr "" #. Label of the location (Data) field in DocType 'Job Opportunity' #. Label of the location (Data) field in DocType 'Education Detail' #. Label of the location (Data) field in DocType 'Work Experience' -#: frontend/src/pages/JobCreation.vue:26 frontend/src/pages/JobDetail.vue:85 +#: frontend/src/pages/JobCreation.vue:26 frontend/src/pages/JobDetail.vue:92 #: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/lms/doctype/education_detail/education_detail.json #: lms/lms/doctype/work_experience/work_experience.json @@ -3114,7 +3116,7 @@ msgstr "Логин" msgid "Login to Frappe Cloud?" msgstr "" -#: frontend/src/pages/JobDetail.vue:48 +#: frontend/src/pages/JobDetail.vue:54 msgid "Login to apply" msgstr "" @@ -3171,7 +3173,7 @@ msgstr "Отметить как прочитанное" #. Label of the marks (Int) field in DocType 'LMS Quiz Result' #: frontend/src/components/Modals/Question.vue:50 #: frontend/src/components/Modals/Question.vue:99 -#: frontend/src/components/Quiz.vue:96 frontend/src/pages/QuizForm.vue:390 +#: frontend/src/components/Quiz.vue:96 frontend/src/pages/QuizForm.vue:393 #: frontend/src/pages/QuizSubmission.vue:65 #: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json #: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json @@ -3233,7 +3235,7 @@ msgstr "Средний:" #. Label of the member (Link) field in DocType 'LMS Quiz Submission' #: frontend/src/pages/AssignmentSubmissionList.vue:14 #: frontend/src/pages/QuizSubmission.vue:31 -#: frontend/src/pages/QuizSubmissionList.vue:86 +#: frontend/src/pages/QuizSubmissionList.vue:102 #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_submission/exercise_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json @@ -3314,7 +3316,7 @@ msgstr "Тип участника" msgid "Member Username" msgstr "" -#: frontend/src/pages/ProgramForm.vue:251 +#: frontend/src/pages/ProgramForm.vue:254 msgid "Member added to program" msgstr "" @@ -3378,6 +3380,11 @@ msgstr "Шаблон создания запроса на наставничес msgid "Mentor Request Status Update Template" msgstr "Шаблон обновления статуса запроса наставника" +#. Label of the meta_description (Small Text) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Meta Description" +msgstr "" + #. Label of the meta_image (Attach Image) field in DocType 'LMS Batch' #: frontend/src/pages/BatchForm.vue:44 lms/lms/doctype/lms_batch/lms_batch.json #: lms/public/js/common_functions.js:362 @@ -3400,6 +3407,7 @@ msgstr "" #. Name of a role #: frontend/src/pages/ProfileRoles.vue:10 #: lms/lms/doctype/course_evaluator/course_evaluator.json +#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/lms_assignment/lms_assignment.json #: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json #: lms/lms/doctype/lms_batch/lms_batch.json @@ -3459,12 +3467,13 @@ msgstr "Мой календарь" #. Option for the 'Event' (Select) field in DocType 'LMS Badge' #: frontend/src/pages/Assignments.vue:18 frontend/src/pages/Batches.vue:17 -#: frontend/src/pages/Courses.vue:17 frontend/src/pages/Courses.vue:281 +#: frontend/src/pages/Courses.vue:17 frontend/src/pages/Courses.vue:284 #: frontend/src/pages/Programs.vue:14 lms/lms/doctype/lms_badge/lms_badge.json msgid "New" msgstr "" -#: frontend/src/pages/AssignmentForm.vue:178 +#: frontend/src/pages/AssignmentForm.vue:181 +#: frontend/src/pages/AssignmentForm.vue:197 msgid "New Assignment" msgstr "" @@ -3472,11 +3481,11 @@ msgstr "" msgid "New Assignment Submission" msgstr "Подача нового задания" -#: lms/public/js/common_functions.js:255 lms/www/lms.py:89 +#: lms/public/js/common_functions.js:255 lms/www/lms.py:134 msgid "New Batch" msgstr "Новая группа" -#: lms/www/lms.py:40 +#: frontend/src/pages/CourseForm.vue:577 lms/www/lms.py:78 msgid "New Course" msgstr "Новый курс" @@ -3504,7 +3513,7 @@ msgstr "" msgid "New Question" msgstr "" -#: frontend/src/pages/QuizForm.vue:450 frontend/src/pages/QuizForm.vue:458 +#: frontend/src/pages/QuizForm.vue:453 frontend/src/pages/QuizForm.vue:461 #: frontend/src/pages/Quizzes.vue:18 msgid "New Quiz" msgstr "" @@ -3599,9 +3608,9 @@ msgstr "" msgid "No introduction" msgstr "Без введения" -#: frontend/src/pages/Jobs.vue:77 -msgid "No jobs posted" -msgstr "Вакансии не опубликованы" +#: frontend/src/pages/Jobs.vue:80 +msgid "No jobs found" +msgstr "" #: frontend/src/components/LiveClass.vue:71 msgid "No live classes scheduled" @@ -3615,6 +3624,10 @@ msgstr "" msgid "No programs found" msgstr "" +#: frontend/src/pages/QuizSubmissionList.vue:52 +msgid "No quiz submissions found. Please check again later." +msgstr "" + #: frontend/src/pages/Quizzes.vue:61 msgid "No quizzes found" msgstr "" @@ -3624,6 +3637,7 @@ msgid "No slots available for this date." msgstr "На эту дату свободных мест нет." #: frontend/src/pages/AssignmentSubmissionList.vue:67 +#: frontend/src/pages/QuizSubmissionList.vue:49 msgid "No submissions" msgstr "" @@ -3724,11 +3738,11 @@ msgstr "" msgid "Only files of type {0} will be accepted." msgstr "Принимаются только файлы типа {0} ." -#: frontend/src/pages/CourseForm.vue:509 frontend/src/utils/index.js:549 +#: frontend/src/pages/CourseForm.vue:507 frontend/src/utils/index.js:550 msgid "Only image file is allowed." msgstr "" -#: frontend/src/components/Modals/ChapterModal.vue:218 +#: frontend/src/components/Modals/ChapterModal.vue:221 msgid "Only zip files are allowed" msgstr "" @@ -3786,7 +3800,7 @@ msgstr "Вариант 4" msgid "Order ID" msgstr "ID Заказа" -#: frontend/src/pages/JobDetail.vue:74 +#: frontend/src/pages/JobDetail.vue:81 msgid "Organisation" msgstr "" @@ -3835,7 +3849,7 @@ msgid "Paid Batch" msgstr "Платная группа" #. Label of the paid_certificate (Check) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:218 +#: frontend/src/pages/CourseForm.vue:214 #: lms/lms/doctype/lms_course/lms_course.json msgid "Paid Certificate" msgstr "" @@ -3845,7 +3859,7 @@ msgid "Paid Certificate after Evaluation" msgstr "" #. Label of the paid_course (Check) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:208 +#: frontend/src/pages/CourseForm.vue:204 #: lms/lms/doctype/lms_course/lms_course.json msgid "Paid Course" msgstr "Платный курс" @@ -3855,7 +3869,7 @@ msgid "Pan Number" msgstr "" #. Option for the 'Type' (Select) field in DocType 'Job Opportunity' -#: frontend/src/pages/Jobs.vue:145 +#: frontend/src/pages/Jobs.vue:162 #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Part Time" msgstr "Неполная занятость" @@ -3877,7 +3891,7 @@ msgstr "Пропустить" #. Label of the passing_percentage (Int) field in DocType 'LMS Quiz' #. Label of the passing_percentage (Int) field in DocType 'LMS Quiz Submission' -#: frontend/src/pages/QuizForm.vue:72 frontend/src/pages/Quizzes.vue:127 +#: frontend/src/pages/QuizForm.vue:72 frontend/src/pages/Quizzes.vue:129 #: lms/lms/doctype/lms_quiz/lms_quiz.json #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json msgid "Passing Percentage" @@ -3888,7 +3902,7 @@ msgstr "Процент сдачи экзамена" msgid "Password" msgstr "Пароль" -#: frontend/src/pages/CourseForm.vue:113 +#: frontend/src/pages/CourseForm.vue:109 msgid "Paste the youtube link of a short video introducing the course" msgstr "" @@ -3980,7 +3994,7 @@ msgstr "" #. Label of the percentage (Int) field in DocType 'LMS Quiz Submission' #: frontend/src/pages/QuizSubmission.vue:44 -#: frontend/src/pages/QuizSubmissionList.vue:97 +#: frontend/src/pages/QuizSubmissionList.vue:113 #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json msgid "Percentage" msgstr "Проценты" @@ -4002,7 +4016,7 @@ msgstr "" msgid "Please Login" msgstr "" -#: lms/lms/doctype/lms_settings/lms_settings.py:33 +#: lms/lms/doctype/lms_settings/lms_settings.py:34 msgid "Please add {1} for {3} to send calendar invites for evaluations." msgstr "Пожалуйста, добавьте {1} для {3} , чтобы отправить приглашения в календарь для оценки." @@ -4026,7 +4040,7 @@ msgstr "" msgid "Please enable Zoom Settings to use this feature." msgstr "Чтобы использовать эту функцию, включите настройки Zoom." -#: frontend/src/components/CourseOutline.vue:324 +#: frontend/src/components/CourseOutline.vue:325 msgid "Please enroll for this course to view this lesson" msgstr "" @@ -4063,7 +4077,7 @@ msgstr "" msgid "Please install the Payments app to create a paid courses." msgstr "" -#: frontend/src/pages/Billing.vue:253 +#: frontend/src/pages/Billing.vue:254 msgid "Please let us know where you heard about us from." msgstr "" @@ -4112,7 +4126,7 @@ msgstr "" msgid "Please take appropriate action at {0}" msgstr "Пожалуйста, примите соответствующие меры в {0}" -#: frontend/src/components/Modals/ChapterModal.vue:175 +#: frontend/src/components/Modals/ChapterModal.vue:178 msgid "Please upload a SCORM package" msgstr "" @@ -4158,7 +4172,7 @@ msgstr "Пост" msgid "Postal Code" msgstr "" -#: frontend/src/pages/JobDetail.vue:107 +#: frontend/src/pages/JobDetail.vue:114 msgid "Posted on" msgstr "" @@ -4193,7 +4207,7 @@ msgstr "" msgid "Preview Image" msgstr "Просмотр изображения" -#: frontend/src/pages/CourseForm.vue:111 +#: frontend/src/pages/CourseForm.vue:107 msgid "Preview Video" msgstr "Предварительный просмотр видео" @@ -4208,7 +4222,7 @@ msgid "Pricing" msgstr "" #. Label of the pricing_tab (Tab Break) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:202 +#: frontend/src/pages/CourseForm.vue:198 #: lms/lms/doctype/lms_course/lms_course.json msgid "Pricing and Certification" msgstr "" @@ -4272,6 +4286,10 @@ msgstr "" msgid "Program Members" msgstr "" +#: frontend/src/pages/Programs.vue:219 lms/www/lms.py:273 +msgid "Programs" +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/BatchStudents.vue:75 @@ -4301,7 +4319,7 @@ msgstr "Опубликовать на странице участника" #. Label of the published (Check) field in DocType 'LMS Course' #: frontend/src/components/Modals/BulkCertificates.vue:51 #: frontend/src/components/Modals/Event.vue:108 -#: frontend/src/pages/BatchForm.vue:27 frontend/src/pages/CourseForm.vue:172 +#: frontend/src/pages/BatchForm.vue:27 frontend/src/pages/CourseForm.vue:168 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/public/js/common_functions.js:266 @@ -4314,7 +4332,7 @@ msgid "Published Courses" msgstr "Опубликованные курсы" #. Label of the published_on (Date) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:176 +#: frontend/src/pages/CourseForm.vue:172 #: lms/lms/doctype/lms_course/lms_course.json msgid "Published On" msgstr "Опубликована" @@ -4333,7 +4351,7 @@ msgstr "" #. Label of the question (Text) field in DocType 'LMS Quiz Result' #: frontend/src/components/Assignment.vue:20 #: frontend/src/components/Modals/Question.vue:38 -#: frontend/src/pages/AssignmentForm.vue:45 frontend/src/pages/QuizForm.vue:385 +#: frontend/src/pages/AssignmentForm.vue:45 frontend/src/pages/QuizForm.vue:388 #: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/lms_assignment/lms_assignment.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json @@ -4358,11 +4376,11 @@ msgstr "" msgid "Question Name" msgstr "Название вопроса" -#: frontend/src/components/Modals/Question.vue:267 +#: frontend/src/components/Modals/Question.vue:270 msgid "Question added successfully" msgstr "" -#: frontend/src/components/Modals/Question.vue:319 +#: frontend/src/components/Modals/Question.vue:322 msgid "Question updated successfully" msgstr "" @@ -4379,7 +4397,7 @@ msgstr "Вопрос {0} из {1}" msgid "Questions" msgstr "Вопросы" -#: frontend/src/pages/QuizForm.vue:427 +#: frontend/src/pages/QuizForm.vue:430 msgid "Questions deleted successfully" msgstr "" @@ -4397,13 +4415,13 @@ msgid "Quiz ID" msgstr "ID теста" #. Label of a Link in the LMS Workspace -#: frontend/src/pages/QuizPage.vue:56 frontend/src/pages/QuizPage.vue:62 -#: lms/lms/workspace/lms/lms.json +#: frontend/src/pages/QuizPage.vue:57 lms/lms/workspace/lms/lms.json msgid "Quiz Submission" msgstr "Подача теста" -#: frontend/src/pages/QuizSubmission.vue:128 -#: frontend/src/pages/QuizSubmissionList.vue:106 +#: frontend/src/pages/QuizSubmission.vue:131 +#: frontend/src/pages/QuizSubmissionList.vue:122 +#: frontend/src/pages/QuizSubmissionList.vue:127 msgid "Quiz Submissions" msgstr "" @@ -4416,7 +4434,7 @@ msgstr "Краткое содержание теста" msgid "Quiz Title" msgstr "" -#: frontend/src/pages/QuizForm.vue:339 +#: frontend/src/pages/QuizForm.vue:342 msgid "Quiz created successfully" msgstr "" @@ -4424,7 +4442,7 @@ msgstr "" msgid "Quiz is not available to Guest users. Please login to continue." msgstr "Тест недоступен для гостевых пользователей. Пожалуйста, войдите, чтобы продолжить." -#: frontend/src/pages/QuizForm.vue:358 +#: frontend/src/pages/QuizForm.vue:361 msgid "Quiz updated successfully" msgstr "" @@ -4434,8 +4452,8 @@ msgid "Quiz will appear at the bottom of the lesson." msgstr "Тест появится в конце урока." #: frontend/src/components/AppSidebar.vue:530 -#: frontend/src/pages/QuizForm.vue:438 frontend/src/pages/Quizzes.vue:138 -#: frontend/src/pages/Quizzes.vue:148 +#: frontend/src/pages/QuizForm.vue:441 frontend/src/pages/Quizzes.vue:140 +#: frontend/src/pages/Quizzes.vue:150 lms/www/lms.py:229 msgid "Quizzes" msgstr "" @@ -4513,7 +4531,7 @@ msgstr "Отклонено" msgid "Related Courses" msgstr "Похожие курсы" -#: frontend/src/pages/BatchForm.vue:77 frontend/src/pages/CourseForm.vue:100 +#: frontend/src/pages/BatchForm.vue:77 frontend/src/pages/CourseForm.vue:96 msgid "Remove" msgstr "" @@ -4607,7 +4625,7 @@ msgstr "Строка #{0} Время начала не может быть бо msgid "Row #{0} Start time cannot be outside the batch duration." msgstr "Строка #{0} Время начала не может выходить за рамки длительности партии." -#: lms/lms/doctype/lms_quiz/lms_quiz.py:34 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:32 msgid "Rows {0} have the duplicate questions." msgstr "В строках {0} есть повторяющиеся вопросы." @@ -4631,6 +4649,11 @@ msgstr "" msgid "SCORM Package Path" msgstr "" +#. Label of the seo_tab (Tab Break) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "SEO" +msgstr "" + #. Option for the 'Day' (Select) field in DocType 'Evaluator Schedule' #. Option for the 'Day' (Select) field in DocType 'LMS Certificate Request' #: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json @@ -4644,7 +4667,7 @@ msgstr "Суббота" #: frontend/src/components/Modals/Event.vue:101 #: frontend/src/components/Modals/Event.vue:129 #: frontend/src/pages/AssignmentForm.vue:21 frontend/src/pages/BatchForm.vue:8 -#: frontend/src/pages/CourseForm.vue:21 frontend/src/pages/JobCreation.vue:8 +#: frontend/src/pages/CourseForm.vue:17 frontend/src/pages/JobCreation.vue:8 #: frontend/src/pages/LessonForm.vue:14 frontend/src/pages/ProgramForm.vue:7 #: frontend/src/pages/QuizForm.vue:34 frontend/src/pages/QuizSubmission.vue:14 #: lms/public/js/common_functions.js:405 @@ -4673,7 +4696,7 @@ msgstr "Объем" #. Label of the score (Int) field in DocType 'LMS Quiz Submission' #: frontend/src/pages/QuizSubmission.vue:39 -#: frontend/src/pages/QuizSubmissionList.vue:91 +#: frontend/src/pages/QuizSubmissionList.vue:107 #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json #: lms/templates/quiz/quiz.html:148 msgid "Score" @@ -4767,7 +4790,7 @@ msgstr "" #: frontend/src/components/AppSidebar.vue:556 #: frontend/src/components/Modals/Settings.vue:7 -#: frontend/src/pages/BatchForm.vue:148 frontend/src/pages/CourseForm.vue:162 +#: frontend/src/pages/BatchForm.vue:148 frontend/src/pages/CourseForm.vue:158 #: frontend/src/pages/ProfileRoles.vue:4 frontend/src/pages/QuizForm.vue:79 msgid "Settings" msgstr "" @@ -4781,7 +4804,7 @@ msgid "Short Description" msgstr "" #. Label of the short_introduction (Small Text) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:39 +#: frontend/src/pages/CourseForm.vue:35 #: lms/lms/doctype/lms_course/lms_course.json msgid "Short Introduction" msgstr "Краткое введение" @@ -4892,10 +4915,6 @@ msgstr "Навыки" msgid "Skip" msgstr "Пропустить" -#: frontend/src/components/OnboardingBanner.vue:3 -msgid "Skip Onboarding" -msgstr "" - #: lms/lms/doctype/course_evaluator/course_evaluator.py:63 msgid "Slot Times are overlapping for some schedules." msgstr "В некоторых расписаниях интервалы времени пересекаются." @@ -5009,8 +5028,9 @@ msgstr "" #. Label of the tab_4_tab (Tab Break) field in DocType 'LMS Course' #. Label of the statistics (Check) field in DocType 'LMS Settings' #: frontend/src/components/BatchStudents.vue:5 +#: frontend/src/pages/Statistics.vue:322 #: lms/lms/doctype/lms_course/lms_course.json -#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:136 +#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:182 msgid "Statistics" msgstr "Статистика" @@ -5110,7 +5130,7 @@ msgstr "" #: frontend/src/components/Modals/AssessmentModal.vue:9 #: frontend/src/components/Modals/BatchCourseModal.vue:9 #: frontend/src/components/Modals/EvaluationModal.vue:9 -#: frontend/src/components/Modals/Question.vue:341 +#: frontend/src/components/Modals/Question.vue:344 #: frontend/src/components/Quiz.vue:218 lms/templates/assignment.html:9 #: lms/templates/livecode/extension_footer.html:25 #: lms/templates/quiz/quiz.html:128 lms/templates/reviews.html:163 @@ -5135,18 +5155,18 @@ msgstr "Отправлено {0}" #: frontend/src/components/Modals/AnnouncementModal.vue:99 #: frontend/src/components/Modals/AssessmentModal.vue:73 #: frontend/src/components/Modals/BulkCertificates.vue:121 -#: frontend/src/components/Modals/ChapterModal.vue:151 -#: frontend/src/components/Modals/ChapterModal.vue:196 +#: frontend/src/components/Modals/ChapterModal.vue:154 +#: frontend/src/components/Modals/ChapterModal.vue:199 #: frontend/src/components/Modals/Event.vue:255 #: frontend/src/components/Modals/Event.vue:310 -#: frontend/src/components/Modals/Question.vue:267 -#: frontend/src/components/Modals/Question.vue:318 -#: frontend/src/pages/AssignmentForm.vue:155 -#: frontend/src/pages/CourseForm.vue:472 frontend/src/pages/ProgramForm.vue:229 -#: frontend/src/pages/ProgramForm.vue:251 -#: frontend/src/pages/ProgramForm.vue:272 -#: frontend/src/pages/ProgramForm.vue:298 frontend/src/pages/QuizForm.vue:339 -#: frontend/src/pages/QuizForm.vue:358 frontend/src/pages/QuizForm.vue:427 +#: frontend/src/components/Modals/Question.vue:270 +#: frontend/src/components/Modals/Question.vue:321 +#: frontend/src/pages/AssignmentForm.vue:158 +#: frontend/src/pages/CourseForm.vue:470 frontend/src/pages/ProgramForm.vue:232 +#: frontend/src/pages/ProgramForm.vue:254 +#: frontend/src/pages/ProgramForm.vue:275 +#: frontend/src/pages/ProgramForm.vue:301 frontend/src/pages/QuizForm.vue:342 +#: frontend/src/pages/QuizForm.vue:361 frontend/src/pages/QuizForm.vue:430 msgid "Success" msgstr "" @@ -5164,7 +5184,7 @@ msgstr "Резюме" msgid "Sunday" msgstr "Воскресенье" -#: lms/lms/api.py:1026 +#: lms/lms/api.py:1027 msgid "Suspicious pattern found in {0}: {1}" msgstr "" @@ -5220,7 +5240,7 @@ msgid "System Manager" msgstr "" #. Label of the tags (Data) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:121 +#: frontend/src/pages/CourseForm.vue:117 #: lms/lms/doctype/lms_course/lms_course.json msgid "Tags" msgstr "Теги" @@ -5325,6 +5345,10 @@ msgstr "" msgid "There are no courses matching the criteria. Keep an eye out, fresh learning experiences are on the way soon!" msgstr "" +#: frontend/src/pages/Jobs.vue:84 +msgid "There are no jobs available at the moment. Open a job opportunity or check here again later." +msgstr "" + #: frontend/src/pages/CertifiedParticipants.vue:92 msgid "There are no participants matching this criteria." msgstr "" @@ -5384,8 +5408,10 @@ msgstr "" msgid "This course is free." msgstr "Этот курс бесплатный." -#: frontend/src/pages/SCORMChapter.vue:201 -msgid "This is a chapter in the course {0}" +#. Description of the 'Meta Description' (Small Text) field in DocType 'LMS +#. Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "This description will be shown on lists and pages without meta description" msgstr "" #: frontend/src/pages/Lesson.vue:16 @@ -5482,10 +5508,10 @@ msgstr "Сроки:" #: frontend/src/components/Modals/DiscussionModal.vue:18 #: frontend/src/components/Modals/LiveClassModal.vue:23 #: frontend/src/pages/AssignmentForm.vue:32 -#: frontend/src/pages/Assignments.vue:152 frontend/src/pages/BatchForm.vue:19 -#: frontend/src/pages/CourseForm.vue:33 frontend/src/pages/JobCreation.vue:20 +#: frontend/src/pages/Assignments.vue:155 frontend/src/pages/BatchForm.vue:19 +#: frontend/src/pages/CourseForm.vue:29 frontend/src/pages/JobCreation.vue:20 #: frontend/src/pages/ProgramForm.vue:11 frontend/src/pages/Programs.vue:116 -#: frontend/src/pages/QuizForm.vue:48 frontend/src/pages/Quizzes.vue:116 +#: frontend/src/pages/QuizForm.vue:48 frontend/src/pages/Quizzes.vue:118 #: lms/lms/doctype/cohort/cohort.json #: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json #: lms/lms/doctype/cohort_web_page/cohort_web_page.json @@ -5507,7 +5533,7 @@ msgstr "Сроки:" msgid "Title" msgstr "" -#: frontend/src/components/Modals/ChapterModal.vue:172 +#: frontend/src/components/Modals/ChapterModal.vue:175 msgid "Title is required" msgstr "" @@ -5539,7 +5565,7 @@ msgid "Total" msgstr "" #. Label of the total_marks (Int) field in DocType 'LMS Quiz' -#: frontend/src/pages/QuizForm.vue:67 frontend/src/pages/Quizzes.vue:121 +#: frontend/src/pages/QuizForm.vue:67 frontend/src/pages/Quizzes.vue:123 #: lms/lms/doctype/lms_quiz/lms_quiz.json msgid "Total Marks" msgstr "Всего задач" @@ -5577,7 +5603,7 @@ msgstr "Twitter" #: frontend/src/components/Modals/AssessmentModal.vue:22 #: frontend/src/components/Modals/Question.vue:54 #: frontend/src/pages/AssignmentForm.vue:39 -#: frontend/src/pages/Assignments.vue:30 frontend/src/pages/Assignments.vue:157 +#: frontend/src/pages/Assignments.vue:30 frontend/src/pages/Assignments.vue:160 #: frontend/src/pages/JobCreation.vue:33 frontend/src/pages/Jobs.vue:55 #: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/lms/doctype/lms_assignment/lms_assignment.json @@ -5624,7 +5650,7 @@ msgstr "На рассмотрении" msgid "Unlisted" msgstr "Не публиковать" -#: frontend/src/pages/Batches.vue:293 +#: frontend/src/pages/Batches.vue:295 msgid "Unpublished" msgstr "" @@ -5646,8 +5672,8 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'Cohort' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request' #. Label of the upcoming (Check) field in DocType 'LMS Course' -#: frontend/src/pages/Batches.vue:291 frontend/src/pages/CourseForm.vue:185 -#: frontend/src/pages/Courses.vue:284 lms/lms/doctype/cohort/cohort.json +#: frontend/src/pages/Batches.vue:293 frontend/src/pages/CourseForm.vue:181 +#: frontend/src/pages/Courses.vue:287 lms/lms/doctype/cohort/cohort.json #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_course/lms_course.json msgid "Upcoming" @@ -5672,7 +5698,7 @@ msgstr "" msgid "Update Password" msgstr "" -#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:81 +#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:77 msgid "Upload" msgstr "" @@ -5778,6 +5804,10 @@ msgstr "Доступность" msgid "Visit Batch" msgstr "" +#: frontend/src/pages/JobDetail.vue:38 +msgid "Visit Website" +msgstr "" + #: lms/templates/emails/batch_confirmation.html:23 msgid "Visit the following link to view your " msgstr "Перейдите по следующей ссылке, чтобы просмотреть ваш " @@ -5899,7 +5929,7 @@ msgstr "Вы не являетесь участником этой группы. msgid "You are not a mentor of the course {0}" msgstr "Вы не являетесь наставником курса {0}" -#: frontend/src/components/CourseOutline.vue:323 +#: frontend/src/components/CourseOutline.vue:324 msgid "You are not enrolled" msgstr "" @@ -6123,11 +6153,7 @@ msgstr "из" msgid "out of" msgstr "из" -#: frontend/src/components/JobCard.vue:30 -msgid "posted" -msgstr "" - -#: frontend/src/pages/QuizForm.vue:386 +#: frontend/src/pages/QuizForm.vue:389 msgid "question_detail" msgstr "" @@ -6147,7 +6173,7 @@ msgstr "" msgid "you can" msgstr "вы можете" -#: lms/lms/api.py:816 lms/lms/api.py:824 +#: lms/lms/api.py:817 lms/lms/api.py:825 msgid "{0} Settings not found" msgstr "" diff --git a/lms/locale/sr_CS.po b/lms/locale/sr_CS.po new file mode 100644 index 00000000..5c714d0c --- /dev/null +++ b/lms/locale/sr_CS.po @@ -0,0 +1,6261 @@ +msgid "" +msgstr "" +"Project-Id-Version: frappe\n" +"Report-Msgid-Bugs-To: jannat@frappe.io\n" +"POT-Creation-Date: 2025-04-11 16:04+0000\n" +"PO-Revision-Date: 2025-04-14 06:01\n" +"Last-Translator: jannat@frappe.io\n" +"Language-Team: Serbian (Latin)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.13.1\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Crowdin-Project: frappe\n" +"X-Crowdin-Project-ID: 639578\n" +"X-Crowdin-Language: sr-CS\n" +"X-Crowdin-File: /[frappe.lms] develop/lms/locale/main.pot\n" +"X-Crowdin-File-ID: 90\n" +"Language: sr_CS\n" + +#: lms/templates/emails/assignment_submission.html:5 +msgid " Please evaluate and grade it." +msgstr "" + +#: frontend/src/pages/Programs.vue:39 +#, python-format +msgid "% completed" +msgstr "" + +#. Paragraph text in the LMS Workspace +#: lms/lms/workspace/lms/lms.json +msgid "LMS Settings" +msgstr "" + +#. Paragraph text in the LMS Workspace +#: lms/lms/workspace/lms/lms.json +msgid "Setup a Home Page" +msgstr "" + +#. Paragraph text in the LMS Workspace +#: lms/lms/workspace/lms/lms.json +msgid "Visit LMS Portal" +msgstr "" + +#. Paragraph text in the LMS Workspace +#: lms/lms/workspace/lms/lms.json +msgid "Create a Course" +msgstr "" + +#. Paragraph text in the LMS Workspace +#: lms/lms/workspace/lms/lms.json +msgid "Documentation" +msgstr "" + +#. Header text in the LMS Workspace +#: lms/lms/workspace/lms/lms.json +msgid "Get Started" +msgstr "" + +#. Header text in the LMS Workspace +#: lms/lms/workspace/lms/lms.json +msgid "Master" +msgstr "" + +#. Header text in the LMS Workspace +#: lms/lms/workspace/lms/lms.json +msgid "Statistics" +msgstr "" + +#: lms/lms/doctype/lms_course/lms_course.py:58 +msgid "A course cannot have both paid certificate and certificate of completion." +msgstr "" + +#: frontend/src/pages/CourseForm.vue:37 +msgid "A one line introduction to the course that appears on the course card" +msgstr "" + +#: frontend/src/pages/ProfileAbout.vue:4 +msgid "About" +msgstr "" + +#: frontend/src/pages/Batch.vue:100 +msgid "About this batch" +msgstr "" + +#. Label of the verify_terms (Check) field in DocType 'User' +#: lms/fixtures/custom_field.json +msgid "Acceptance for Terms and/or Policies" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Cohort Join Request' +#: lms/lms/doctype/cohort_join_request/cohort_join_request.json +msgid "Accepted" +msgstr "" + +#. Label of the account_id (Data) field in DocType 'Zoom Settings' +#: lms/lms/doctype/zoom_settings/zoom_settings.json +msgid "Account ID" +msgstr "" + +#: frontend/src/pages/ProfileAbout.vue:17 +msgid "Achievements" +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 "" + +#: frontend/src/components/Assessments.vue:11 +#: frontend/src/components/BatchCourses.vue:11 +#: frontend/src/components/BatchStudents.vue:117 +#: frontend/src/components/Categories.vue:26 +#: frontend/src/components/Evaluators.vue:37 +#: frontend/src/components/LiveClass.vue:11 +#: frontend/src/components/Members.vue:43 frontend/src/pages/ProgramForm.vue:30 +#: frontend/src/pages/ProgramForm.vue:92 frontend/src/pages/ProgramForm.vue:137 +msgid "Add" +msgstr "" + +#: frontend/src/components/CourseOutline.vue:18 +#: frontend/src/components/CreateOutline.vue:18 +#: frontend/src/components/Modals/ChapterModal.vue:5 +msgid "Add Chapter" +msgstr "" + +#: frontend/src/components/CourseOutline.vue:136 +msgid "Add Lesson" +msgstr "" + +#: frontend/src/pages/ProfileEvaluator.vue:75 +msgid "Add Slot" +msgstr "" + +#: lms/templates/onboarding_header.html:26 +msgid "Add a Chapter" +msgstr "" + +#: lms/templates/onboarding_header.html:33 +msgid "Add a Lesson" +msgstr "" + +#: frontend/src/components/Modals/StudentModal.vue:5 +msgid "Add a Student" +msgstr "" + +#: frontend/src/components/AppSidebar.vue:514 +msgid "Add a chapter" +msgstr "" + +#: frontend/src/components/Modals/BatchCourseModal.vue:5 +msgid "Add a course" +msgstr "" + +#: frontend/src/pages/CourseForm.vue:133 +msgid "Add a keyword and then press enter" +msgstr "" + +#: frontend/src/components/AppSidebar.vue:515 +msgid "Add a lesson" +msgstr "" + +#: frontend/src/components/Modals/Question.vue:147 +#: frontend/src/pages/QuizForm.vue:183 +msgid "Add a new question" +msgstr "" + +#: frontend/src/components/AssessmentPlugin.vue:11 +msgid "Add a quiz to your lesson" +msgstr "" + +#: frontend/src/components/Modals/AssessmentModal.vue:5 +msgid "Add an assessment" +msgstr "" + +#: frontend/src/components/AssessmentPlugin.vue:14 +msgid "Add an assignment to your lesson" +msgstr "" + +#: frontend/src/components/Modals/Question.vue:18 +msgid "Add an existing question" +msgstr "" + +#: lms/lms/doctype/lms_question/lms_question.py:66 +msgid "Add at least one possible answer for this question: {0}" +msgstr "" + +#: frontend/src/components/AppSidebar.vue:479 +msgid "Add courses to your batch" +msgstr "" + +#: frontend/src/components/AppSidebar.vue:459 +msgid "Add students to your batch" +msgstr "" + +#: frontend/src/components/Modals/PageModal.vue:6 +msgid "Add web page to sidebar" +msgstr "" + +#: frontend/src/components/Assignment.vue:68 +msgid "Add your assignment as {0}" +msgstr "" + +#: frontend/src/components/AppSidebar.vue:395 +msgid "Add your first chapter" +msgstr "" + +#: frontend/src/components/AppSidebar.vue:410 +msgid "Add your first lesson" +msgstr "" + +#. Label of the address (Link) field in DocType 'LMS Payment' +#: frontend/src/pages/Billing.vue:64 +#: lms/lms/doctype/lms_payment/lms_payment.json +msgid "Address" +msgstr "" + +#: frontend/src/pages/Billing.vue:74 +msgid "Address Line 1" +msgstr "" + +#: frontend/src/pages/Billing.vue:78 +msgid "Address Line 2" +msgstr "" + +#. Option for the 'Role' (Select) field in DocType 'Cohort Staff' +#. Option for the 'Required Role' (Select) field in DocType 'Cohort Web Page' +#. Option for the 'Role' (Select) field in DocType 'LMS Enrollment' +#: lms/lms/doctype/cohort_staff/cohort_staff.json +#: lms/lms/doctype/cohort_web_page/cohort_web_page.json +#: lms/lms/doctype/lms_enrollment/lms_enrollment.json +msgid "Admin" +msgstr "" + +#. Name of a role +#: frontend/src/pages/Batches.vue:284 lms/lms/doctype/lms_badge/lms_badge.json +msgid "All" +msgstr "" + +#: frontend/src/pages/Batches.vue:26 +msgid "All Batches" +msgstr "" + +#: frontend/src/pages/CertifiedParticipants.vue:20 +msgid "All Certified Participants" +msgstr "" + +#: frontend/src/pages/Courses.vue:26 lms/lms/widgets/BreadCrumb.html:3 +msgid "All Courses" +msgstr "" + +#: frontend/src/components/BatchFeedback.vue:51 +msgid "All Feedback" +msgstr "" + +#: lms/templates/quiz/quiz.html:141 +msgid "All Submissions" +msgstr "" + +#: lms/lms/doctype/lms_quiz/lms_quiz.py:44 +msgid "All questions should have the same marks if the limit is set." +msgstr "" + +#. Label of the allow_guest_access (Check) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Allow Guest Access" +msgstr "" + +#. Label of the allow_posting (Check) field in DocType 'Job Settings' +#: lms/job/doctype/job_settings/job_settings.json +msgid "Allow Job Posting From Website" +msgstr "" + +#. Label of the allow_self_enrollment (Check) field in DocType 'LMS Batch' +#: lms/lms/doctype/lms_batch/lms_batch.json +msgid "Allow Self Enrollment" +msgstr "" + +#. Label of the allow_future (Check) field in DocType 'LMS Batch' +#: lms/lms/doctype/lms_batch/lms_batch.json +msgid "Allow accessing future dates" +msgstr "" + +#: frontend/src/pages/BatchForm.vue:32 +msgid "Allow self enrollment" +msgstr "" + +#: lms/lms/user.py:34 +msgid "Already Registered" +msgstr "" + +#. Label of the amount (Currency) field in DocType 'LMS Batch' +#. Label of the course_price (Currency) field in DocType 'LMS Course' +#. Label of the amount (Currency) field in DocType 'LMS Payment' +#: frontend/src/pages/BatchForm.vue:209 frontend/src/pages/CourseForm.vue:217 +#: lms/lms/doctype/lms_batch/lms_batch.json +#: lms/lms/doctype/lms_course/lms_course.json +#: lms/lms/doctype/lms_payment/lms_payment.json +#: lms/public/js/common_functions.js:379 +msgid "Amount" +msgstr "" + +#. Label of the amount_usd (Currency) field in DocType 'LMS Batch' +#. Label of the amount_usd (Currency) field in DocType 'LMS Course' +#: lms/lms/doctype/lms_batch/lms_batch.json +#: lms/lms/doctype/lms_course/lms_course.json +#: lms/public/js/common_functions.js:397 +msgid "Amount (USD)" +msgstr "" + +#: lms/lms/doctype/lms_batch/lms_batch.py:60 +msgid "Amount and currency are required for paid batches." +msgstr "" + +#: lms/lms/doctype/lms_course/lms_course.py:69 +msgid "Amount and currency are required for paid certificates." +msgstr "" + +#: lms/lms/doctype/lms_course/lms_course.py:66 +msgid "Amount and currency are required for paid courses." +msgstr "" + +#. Label of the amount_with_gst (Currency) field in DocType 'LMS Payment' +#: lms/lms/doctype/lms_payment/lms_payment.json +msgid "Amount with GST" +msgstr "" + +#: frontend/src/components/Modals/AnnouncementModal.vue:33 +msgid "Announcement" +msgstr "" + +#: frontend/src/components/Modals/AnnouncementModal.vue:100 +msgid "Announcement has been sent successfully" +msgstr "" + +#. Label of the answer (Text Editor) field in DocType 'LMS Assignment' +#. Label of the answer (Text Editor) field in DocType 'LMS Assignment +#. Submission' +#. Label of the answer (Code) field in DocType 'LMS Exercise' +#: frontend/src/pages/QuizSubmission.vue:61 +#: lms/lms/doctype/lms_assignment/lms_assignment.json +#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json +#: lms/lms/doctype/lms_exercise/lms_exercise.json +msgid "Answer" +msgstr "" + +#: frontend/src/pages/CourseForm.vue:81 frontend/src/pages/CourseForm.vue:99 +msgid "Appears on the course card in the course list" +msgstr "" + +#: frontend/src/pages/BatchForm.vue:63 frontend/src/pages/BatchForm.vue:81 +msgid "Appears when the batch URL is shared on any online platform" +msgstr "" + +#: frontend/src/pages/JobDetail.vue:128 +msgid "Applications Received" +msgstr "" + +#: frontend/src/pages/JobDetail.vue:48 +msgid "Apply" +msgstr "" + +#. Label of the apply_gst (Check) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Apply GST for India" +msgstr "" + +#. Label of the apply_rounding (Check) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Apply Rounding on Equivalent" +msgstr "" + +#: frontend/src/components/Modals/JobApplicationModal.vue:6 +msgid "Apply for this job" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Invite Request' +#. Option for the 'Status' (Select) field in DocType 'LMS Course' +#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' +#: lms/lms/doctype/invite_request/invite_request.json +#: lms/lms/doctype/lms_course/lms_course.json +#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json +msgid "Approved" +msgstr "" + +#: frontend/src/components/Apps.vue:13 +msgid "Apps" +msgstr "" + +#: frontend/src/pages/Batches.vue:294 +msgid "Archived" +msgstr "" + +#: frontend/src/components/UpcomingEvaluations.vue:170 +msgid "Are you sure you want to cancel this evaluation? This action cannot be undone." +msgstr "" + +#: frontend/src/components/UserDropdown.vue:175 +msgid "Are you sure you want to login to your Frappe Cloud dashboard?" +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:32 +#: lms/lms/doctype/lms_batch/lms_batch.json lms/templates/assessments.html:11 +msgid "Assessment" +msgstr "" + +#. Label of the assessment_name (Dynamic Link) field in DocType 'LMS +#. Assessment' +#: lms/lms/doctype/lms_assessment/lms_assessment.json +msgid "Assessment Name" +msgstr "" + +#. Label of the assessment_type (Link) field in DocType 'LMS Assessment' +#: lms/lms/doctype/lms_assessment/lms_assessment.json +msgid "Assessment Type" +msgstr "" + +#: frontend/src/components/Modals/AssessmentModal.vue:73 +msgid "Assessment added successfully" +msgstr "" + +#: lms/lms/doctype/lms_batch/lms_batch.py:70 +msgid "Assessment {0} has already been added to this batch." +msgstr "" + +#. Label of the show_assessments (Check) field in DocType 'LMS Settings' +#: frontend/src/components/AppSidebar.vue:527 +#: frontend/src/components/Assessments.vue:5 +#: frontend/src/components/BatchStudents.vue:68 +#: frontend/src/components/BatchStudents.vue:101 +#: lms/lms/doctype/lms_settings/lms_settings.json +#: lms/templates/assessments.html:3 +msgid "Assessments" +msgstr "" + +#: lms/lms/doctype/lms_badge/lms_badge.js:50 +msgid "Assign" +msgstr "" + +#. Label of the section_break_16 (Section Break) field in DocType 'Course +#. Lesson' +#. Label of the assignment (Link) field in DocType 'LMS Assignment Submission' +#: frontend/src/pages/AssignmentSubmissionList.vue:12 +#: frontend/src/utils/assignment.js:24 +#: lms/lms/doctype/course_lesson/course_lesson.json +#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json +#: lms/templates/assignment.html:3 +msgid "Assignment" +msgstr "" + +#. Label of the assignment_attachment (Attach) field in DocType 'LMS Assignment +#. Submission' +#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json +msgid "Assignment Attachment" +msgstr "" + +#. Label of the assignment_submission_template (Link) field in DocType 'LMS +#. Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Assignment Submission Template" +msgstr "" + +#: frontend/src/pages/AssignmentSubmissionList.vue:223 +msgid "Assignment Submissions" +msgstr "" + +#. Label of the assignment_title (Data) field in DocType 'LMS Assignment +#. Submission' +#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json +msgid "Assignment Title" +msgstr "" + +#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:33 +msgid "Assignment for Lesson {0} by {1} already exists." +msgstr "" + +#: frontend/src/pages/AssignmentForm.vue:158 +msgid "Assignment saved successfully" +msgstr "" + +#. Description of the 'Question' (Small Text) field in DocType 'Course Lesson' +#: lms/lms/doctype/course_lesson/course_lesson.json +msgid "Assignment will appear at the bottom of the lesson." +msgstr "" + +#: frontend/src/components/AppSidebar.vue:531 +#: frontend/src/pages/AssignmentForm.vue:177 +#: frontend/src/pages/Assignments.vue:193 lms/www/lms.py:251 +msgid "Assignments" +msgstr "" + +#: lms/lms/doctype/lms_question/lms_question.py:43 +msgid "At least one option must be correct for this question." +msgstr "" + +#. Label of the attire (Select) field in DocType 'User' +#: lms/fixtures/custom_field.json +msgid "Attire Preference" +msgstr "" + +#: frontend/src/pages/ProfileEvaluator.vue:123 +msgid "Authorize Google Calendar Access" +msgstr "" + +#. Option for the 'Event' (Select) field in DocType 'LMS Badge' +#: lms/lms/doctype/lms_badge/lms_badge.json +msgid "Auto Assign" +msgstr "" + +#. Label of the auto_recording (Select) field in DocType 'LMS Live Class' +#: frontend/src/components/Modals/LiveClassModal.vue:77 +#: lms/lms/doctype/lms_live_class/lms_live_class.json +msgid "Auto Recording" +msgstr "" + +#: frontend/src/components/CourseCard.vue:51 +#: frontend/src/pages/CourseDetail.vue:20 +msgid "Average Rating" +msgstr "" + +#: frontend/src/components/BatchFeedback.vue:38 +msgid "Average of Feedback Received" +msgstr "" + +#: frontend/src/pages/Lesson.vue:97 +msgid "Back to Course" +msgstr "" + +#. Label of the badge (Link) field in DocType 'LMS Badge Assignment' +#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json +msgid "Badge" +msgstr "" + +#. Label of the badge_description (Small Text) field in DocType 'LMS Badge +#. Assignment' +#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json +msgid "Badge Description" +msgstr "" + +#. Label of the badge_image (Attach) field in DocType 'LMS Badge Assignment' +#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json +msgid "Badge Image" +msgstr "" + +#. Label of the batch (Link) field in DocType 'LMS Batch Enrollment' +#. Label of the batch (Link) field in DocType 'LMS Batch Feedback' +#. Label of the batch_name (Link) field in DocType 'LMS Certificate' +#. Label of the batch_name (Link) field in DocType 'LMS Certificate Request' +#. Label of the batch_name (Link) field in DocType 'LMS Live Class' +#: frontend/src/components/Modals/Event.vue:32 +#: lms/lms/doctype/lms_batch_enrollment/lms_batch_enrollment.json +#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json +#: lms/lms/doctype/lms_certificate/lms_certificate.json +#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json +#: lms/lms/doctype/lms_live_class/lms_live_class.json +msgid "Batch" +msgstr "" + +#. Label of the batch_confirmation_template (Link) field in DocType 'LMS +#. Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Batch Confirmation Template" +msgstr "" + +#. Name of a DocType +#: lms/lms/doctype/batch_course/batch_course.json +msgid "Batch Course" +msgstr "" + +#: lms/public/js/common_functions.js:428 +msgid "Batch Created" +msgstr "" + +#. Label of the section_break_5 (Section Break) field in DocType 'LMS Batch +#. Old' +#: lms/lms/doctype/lms_batch_old/lms_batch_old.json +msgid "Batch Description" +msgstr "" + +#. Label of the batch_details (Text Editor) field in DocType 'LMS Batch' +#: frontend/src/pages/BatchForm.vue:236 +#: lms/lms/doctype/lms_batch/lms_batch.json +#: lms/public/js/common_functions.js:349 +#: lms/templates/emails/batch_confirmation.html:24 +msgid "Batch Details" +msgstr "" + +#. Label of the batch_details_raw (HTML Editor) field in DocType 'LMS Batch' +#: lms/lms/doctype/lms_batch/lms_batch.json +#: lms/public/js/common_functions.js:356 +msgid "Batch Details Raw" +msgstr "" + +#. Name of a role +#: lms/lms/doctype/course_evaluator/course_evaluator.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 +#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json +msgid "Batch Evaluator" +msgstr "" + +#. Label of the batch_name (Link) field in DocType 'LMS Certificate Evaluation' +#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json +msgid "Batch Name" +msgstr "" + +#. Label of the batch_old (Link) field in DocType 'Exercise Latest Submission' +#. Label of the batch_old (Link) field in DocType 'Exercise Submission' +#. Label of the batch_old (Link) field in DocType 'LMS Enrollment' +#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json +#: lms/lms/doctype/exercise_submission/exercise_submission.json +#: lms/lms/doctype/lms_enrollment/lms_enrollment.json +msgid "Batch Old" +msgstr "" + +#. Label of the section_break_7 (Section Break) field in DocType 'LMS Batch +#. Old' +#. Label of the section_break_szgq (Section Break) field in DocType 'LMS +#. Settings' +#: lms/lms/doctype/lms_batch_old/lms_batch_old.json +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Batch Settings" +msgstr "" + +#: lms/templates/emails/batch_confirmation.html:11 +msgid "Batch Start Date:" +msgstr "" + +#. Label of the batch_title (Data) field in DocType 'LMS Certificate' +#. Label of the batch_title (Data) field in DocType 'LMS Certificate Request' +#: lms/lms/doctype/lms_certificate/lms_certificate.json +#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json +msgid "Batch Title" +msgstr "" + +#: lms/public/js/common_functions.js:427 +msgid "Batch Updated" +msgstr "" + +#: lms/lms/doctype/lms_batch/lms_batch.py:41 +msgid "Batch end date cannot be before the batch start date" +msgstr "" + +#: lms/lms/api.py:238 +msgid "Batch is sold out." +msgstr "" + +#: lms/templates/emails/batch_start_reminder.html:10 +msgid "Batch:" +msgstr "" + +#. Label of the batches (Check) field in DocType 'LMS Settings' +#: frontend/src/pages/Batches.vue:304 frontend/src/pages/Batches.vue:311 +#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:105 +msgid "Batches" +msgstr "" + +#. Label of the begin_date (Date) field in DocType 'Cohort' +#: lms/lms/doctype/cohort/cohort.json +msgid "Begin Date" +msgstr "" + +#: lms/templates/emails/batch_confirmation.html:31 +#: lms/templates/emails/batch_start_reminder.html:31 +#: lms/templates/emails/certification.html:20 +#: lms/templates/emails/live_class_reminder.html:28 +msgid "Best Regards" +msgstr "" + +#. Label of the billing_details_section (Section Break) field in DocType 'LMS +#. Payment' +#: frontend/src/pages/Billing.vue:8 frontend/src/pages/Billing.vue:363 +#: lms/lms/doctype/lms_payment/lms_payment.json +msgid "Billing Details" +msgstr "" + +#. Label of the billing_name (Data) field in DocType 'LMS Payment' +#: frontend/src/pages/Billing.vue:70 +#: lms/lms/doctype/lms_payment/lms_payment.json +msgid "Billing Name" +msgstr "" + +#: frontend/src/components/Modals/EditProfile.vue:75 +msgid "Bio" +msgstr "" + +#. Label of the body (Markdown Editor) field in DocType 'Course Lesson' +#: lms/lms/doctype/course_lesson/course_lesson.json +msgid "Body" +msgstr "" + +#. Option for the 'Collaboration Preference' (Select) field in DocType 'User' +#: lms/fixtures/custom_field.json +msgid "Both Individual and Team Work" +msgstr "" + +#. Label of the branch (Data) field in DocType 'User' +#: lms/fixtures/custom_field.json +msgid "Branch" +msgstr "" + +#. Option for the 'User Category' (Select) field in DocType 'User' +#: lms/fixtures/custom_field.json lms/templates/signup-form.html:23 +msgid "Business Owner" +msgstr "" + +#: frontend/src/components/CourseCardOverlay.vue:47 +msgid "Buy this course" +msgstr "" + +#: lms/templates/emails/lms_message.html:11 +msgid "By" +msgstr "" + +#. Option for the 'Grade Type' (Select) field in DocType 'Education Detail' +#: lms/lms/doctype/education_detail/education_detail.json +msgid "CGPA/4" +msgstr "" + +#: frontend/src/components/UpcomingEvaluations.vue:60 +#: frontend/src/components/UpcomingEvaluations.vue:175 +msgid "Cancel" +msgstr "" + +#: frontend/src/components/UpcomingEvaluations.vue:169 +msgid "Cancel this evaluation?" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Cohort' +#. Option for the 'Stage' (Select) field in DocType 'LMS Batch Old' +#. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request' +#: lms/lms/doctype/cohort/cohort.json +#: lms/lms/doctype/lms_batch_old/lms_batch_old.json +#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json +msgid "Cancelled" +msgstr "" + +#. Label of the carrer_preference_details (Section Break) field in DocType +#. 'User' +#: lms/fixtures/custom_field.json +msgid "Career Preference Details" +msgstr "" + +#. Option for the 'Attire Preference' (Select) field in DocType 'User' +#: lms/fixtures/custom_field.json +msgid "Casual Wear" +msgstr "" + +#. Label of the category (Link) field in DocType 'LMS Batch' +#. Label of the category (Data) field in DocType 'LMS Category' +#. Label of the category (Link) field in DocType 'LMS Course' +#: frontend/src/pages/BatchForm.vue:190 frontend/src/pages/Batches.vue:55 +#: frontend/src/pages/CertifiedParticipants.vue:37 +#: frontend/src/pages/CourseForm.vue:144 frontend/src/pages/Courses.vue:51 +#: frontend/src/pages/JobDetail.vue:103 +#: lms/lms/doctype/lms_batch/lms_batch.json +#: lms/lms/doctype/lms_category/lms_category.json +#: lms/lms/doctype/lms_course/lms_course.json +#: lms/public/js/common_functions.js:316 lms/templates/signup-form.html:22 +msgid "Category" +msgstr "" + +#: frontend/src/components/Categories.vue:22 +msgid "Category Name" +msgstr "" + +#. Label of the certificate (Link) field in DocType 'LMS Enrollment' +#. Label of a shortcut in the LMS Workspace +#: lms/lms/doctype/lms_enrollment/lms_enrollment.json +#: lms/lms/workspace/lms/lms.json +msgid "Certificate" +msgstr "" + +#. Label of the certification_template (Link) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Certificate Email Template" +msgstr "" + +#: lms/templates/emails/certification.html:13 +msgid "Certificate Link" +msgstr "" + +#: frontend/src/components/CourseCardOverlay.vue:124 +msgid "Certificate of Completion" +msgstr "" + +#: frontend/src/components/Modals/Event.vue:310 +msgid "Certificate saved successfully" +msgstr "" + +#: frontend/src/pages/ProfileCertificates.vue:4 +msgid "Certificates" +msgstr "" + +#: frontend/src/components/Modals/BulkCertificates.vue:121 +msgid "Certificates generated successfully" +msgstr "" + +#. Label of the certification (Table) field in DocType 'User' +#. Name of a DocType +#. Label of the certification (Check) field in DocType 'LMS Batch' +#. Label of the certification_section (Section Break) field in DocType 'LMS +#. Enrollment' +#. Label of a Card Break in the LMS Workspace +#. Label of a Link in the LMS Workspace +#: frontend/src/components/AppSidebar.vue:535 +#: frontend/src/components/CourseCard.vue:111 +#: frontend/src/components/Modals/Event.vue:371 +#: frontend/src/pages/BatchForm.vue:37 frontend/src/pages/Batches.vue:38 +#: frontend/src/pages/CourseCertification.vue:10 +#: frontend/src/pages/CourseCertification.vue:135 +#: frontend/src/pages/Courses.vue:34 lms/fixtures/custom_field.json +#: lms/lms/doctype/certification/certification.json +#: lms/lms/doctype/lms_batch/lms_batch.json +#: lms/lms/doctype/lms_enrollment/lms_enrollment.json +#: lms/lms/workspace/lms/lms.json +msgid "Certification" +msgstr "" + +#. Label of the certification_details (Section Break) field in DocType 'User' +#: lms/fixtures/custom_field.json +msgid "Certification Details" +msgstr "" + +#. Label of the certification_name (Data) field in DocType 'Certification' +#: lms/lms/doctype/certification/certification.json +msgid "Certification Name" +msgstr "" + +#: frontend/src/components/BatchStudents.vue:36 +msgid "Certified" +msgstr "" + +#. Label of the certified_participants (Check) field in DocType 'LMS Settings' +#: frontend/src/pages/CertifiedParticipants.vue:164 +#: frontend/src/pages/CertifiedParticipants.vue:171 +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Certified Participants" +msgstr "" + +#: lms/templates/assignment.html:13 +msgid "Change" +msgstr "" + +#: frontend/src/components/Assignment.vue:341 +msgid "Changes saved successfully" +msgstr "" + +#. Label of the chapter (Link) field in DocType 'Chapter Reference' +#. Label of the chapter (Link) field in DocType 'LMS Course Progress' +#. Label of a Link in the LMS Workspace +#: lms/lms/doctype/chapter_reference/chapter_reference.json +#: lms/lms/doctype/lms_course_progress/lms_course_progress.json +#: lms/lms/workspace/lms/lms.json +msgid "Chapter" +msgstr "" + +#. Name of a DocType +#: lms/lms/doctype/chapter_reference/chapter_reference.json +msgid "Chapter Reference" +msgstr "" + +#: frontend/src/components/Modals/ChapterModal.vue:155 +msgid "Chapter added successfully" +msgstr "" + +#: frontend/src/components/Modals/ChapterModal.vue:199 +msgid "Chapter updated successfully" +msgstr "" + +#. Label of the chapters (Table) field in DocType 'LMS Course' +#: lms/lms/doctype/lms_course/lms_course.json +msgid "Chapters" +msgstr "" + +#: frontend/src/components/Quiz.vue:205 lms/templates/quiz/quiz.html:120 +msgid "Check" +msgstr "" + +#: lms/templates/emails/mention_template.html:10 +msgid "Check Discussion" +msgstr "" + +#: lms/templates/certificates_section.html:24 +msgid "Check out the {0} to know more about certification." +msgstr "" + +#: frontend/src/components/NoPermission.vue:19 +msgid "Checkout Courses" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'LMS Question' +#. Option for the 'Type' (Select) field in DocType 'LMS Quiz Question' +#: lms/lms/doctype/lms_question/lms_question.json +#: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json +msgid "Choices" +msgstr "" + +#: frontend/src/components/Quiz.vue:613 lms/templates/quiz/quiz.html:53 +msgid "Choose all answers that apply" +msgstr "" + +#: frontend/src/components/Controls/IconPicker.vue:27 +msgid "Choose an icon" +msgstr "" + +#: frontend/src/components/Quiz.vue:614 lms/templates/quiz/quiz.html:53 +msgid "Choose one answer" +msgstr "" + +#. Label of the city (Data) field in DocType 'User' +#: frontend/src/pages/Billing.vue:81 lms/fixtures/custom_field.json +msgid "City" +msgstr "" + +#: lms/templates/emails/live_class_reminder.html:10 +msgid "Class:" +msgstr "" + +#: frontend/src/components/Controls/Link.vue:49 +msgid "Clear" +msgstr "" + +#. Option for the 'Role Preference' (Select) field in DocType 'User' +#: lms/fixtures/custom_field.json +msgid "Clearly Defined Role" +msgstr "" + +#: frontend/src/components/LessonHelp.vue:30 +msgid "Click on the add icon in the editor and select Quiz from the menu. It opens up a dialog, where you can either select a quiz from the list or create a new quiz. When you select the Create New option it redirects you to the quiz creation page." +msgstr "" + +#. Label of the client_id (Data) field in DocType 'Zoom Settings' +#: lms/lms/doctype/zoom_settings/zoom_settings.json +msgid "Client ID" +msgstr "" + +#. Label of the client_secret (Password) field in DocType 'Zoom Settings' +#: lms/lms/doctype/zoom_settings/zoom_settings.json +msgid "Client Secret" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Job Opportunity' +#. Option for the 'Membership' (Select) field in DocType 'LMS Batch Old' +#: lms/job/doctype/job_opportunity/job_opportunity.json +#: lms/lms/doctype/lms_batch_old/lms_batch_old.json +msgid "Closed" +msgstr "" + +#. Option for the 'Auto Recording' (Select) field in DocType 'LMS Live Class' +#: lms/lms/doctype/lms_live_class/lms_live_class.json +msgid "Cloud" +msgstr "" + +#. Label of the code (Code) field in DocType 'LMS Exercise' +#: lms/lms/doctype/lms_exercise/lms_exercise.json +msgid "Code" +msgstr "" + +#. Name of a DocType +#. Label of the cohort (Link) field in DocType 'Cohort Join Request' +#. Label of the cohort (Link) field in DocType 'Cohort Mentor' +#. Label of the cohort (Link) field in DocType 'Cohort Staff' +#. Label of the cohort (Link) field in DocType 'Cohort Subgroup' +#. Option for the 'Scope' (Select) field in DocType 'Cohort Web Page' +#. Label of the cohort (Link) field in DocType 'LMS Enrollment' +#: lms/lms/doctype/cohort/cohort.json +#: lms/lms/doctype/cohort_join_request/cohort_join_request.json +#: lms/lms/doctype/cohort_mentor/cohort_mentor.json +#: lms/lms/doctype/cohort_staff/cohort_staff.json +#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json +#: lms/lms/doctype/cohort_web_page/cohort_web_page.json +#: lms/lms/doctype/lms_enrollment/lms_enrollment.json +msgid "Cohort" +msgstr "" + +#. Name of a DocType +#: lms/lms/doctype/cohort_join_request/cohort_join_request.json +msgid "Cohort Join Request" +msgstr "" + +#. Name of a DocType +#: lms/lms/doctype/cohort_mentor/cohort_mentor.json +msgid "Cohort Mentor" +msgstr "" + +#. Name of a DocType +#: lms/lms/doctype/cohort_staff/cohort_staff.json +msgid "Cohort Staff" +msgstr "" + +#. Name of a DocType +#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json +msgid "Cohort Subgroup" +msgstr "" + +#. Name of a DocType +#: lms/lms/doctype/cohort_web_page/cohort_web_page.json +msgid "Cohort Web Page" +msgstr "" + +#. Label of the collaboration (Select) field in DocType 'User' +#: lms/fixtures/custom_field.json +msgid "Collaboration Preference" +msgstr "" + +#: frontend/src/components/CourseOutline.vue:21 +msgid "Collapse all chapters" +msgstr "" + +#. Label of the college (Data) field in DocType 'User' +#: lms/fixtures/custom_field.json +msgid "College Name" +msgstr "" + +#. Label of the color (Color) field in DocType 'LMS Timetable Legend' +#: lms/lms/doctype/lms_timetable_legend/lms_timetable_legend.json +msgid "Color" +msgstr "" + +#. Label of the comments (Small Text) field in DocType 'Exercise Latest +#. Submission' +#. Label of the comments (Small Text) field in DocType 'Exercise Submission' +#. Label of the comments (Text Editor) field in DocType 'LMS Assignment +#. Submission' +#. Label of the comments (Small Text) field in DocType 'LMS Mentor Request' +#: frontend/src/components/Assignment.vue:164 +#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json +#: lms/lms/doctype/exercise_submission/exercise_submission.json +#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json +#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json +msgid "Comments" +msgstr "" + +#: frontend/src/components/Assignment.vue:142 +msgid "Comments by Evaluator" +msgstr "" + +#. Label of the company (Data) field in DocType 'LMS Job Application' +#. Label of the company (Data) field in DocType 'Work Experience' +#: lms/job/doctype/lms_job_application/lms_job_application.json +#: lms/lms/doctype/work_experience/work_experience.json +msgid "Company" +msgstr "" + +#. Label of the company_details_section (Section Break) field in DocType 'Job +#. Opportunity' +#: frontend/src/pages/JobCreation.vue:64 +#: lms/job/doctype/job_opportunity/job_opportunity.json +msgid "Company Details" +msgstr "" + +#. Label of the company_email_address (Data) field in DocType 'Job Opportunity' +#: frontend/src/pages/JobCreation.vue:83 +#: lms/job/doctype/job_opportunity/job_opportunity.json +msgid "Company Email Address" +msgstr "" + +#. Label of the company_logo (Attach Image) field in DocType 'Job Opportunity' +#: frontend/src/pages/JobCreation.vue:88 +#: lms/job/doctype/job_opportunity/job_opportunity.json +msgid "Company Logo" +msgstr "" + +#. Label of the company_name (Data) field in DocType 'Job Opportunity' +#: frontend/src/pages/JobCreation.vue:70 +#: lms/job/doctype/job_opportunity/job_opportunity.json +msgid "Company Name" +msgstr "" + +#. Label of the company_type (Select) field in DocType 'User' +#: lms/fixtures/custom_field.json +msgid "Company Type" +msgstr "" + +#. Label of the company_website (Data) field in DocType 'Job Opportunity' +#: frontend/src/pages/JobCreation.vue:76 +#: lms/job/doctype/job_opportunity/job_opportunity.json +msgid "Company Website" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'LMS Course Progress' +#: frontend/src/components/Modals/BatchStudentProgress.vue:18 +#: lms/lms/doctype/lms_course_progress/lms_course_progress.json +#: lms/lms/widgets/CourseCard.html:75 lms/templates/reviews.html:48 +msgid "Complete" +msgstr "" + +#: lms/templates/emails/lms_invite_request_approved.html:7 +msgid "Complete Sign Up" +msgstr "" + +#: lms/templates/emails/payment_reminder.html:15 +msgid "Complete Your Enrollment" +msgstr "" + +#: lms/lms/doctype/lms_payment/lms_payment.py:73 +msgid "Complete Your Enrollment - Don't miss out!" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Cohort' +#. Option for the 'Stage' (Select) field in DocType 'LMS Batch Old' +#. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request' +#: lms/lms/doctype/cohort/cohort.json +#: lms/lms/doctype/lms_batch_old/lms_batch_old.json +#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json +#: lms/lms/widgets/CourseCard.html:78 +msgid "Completed" +msgstr "" + +#: frontend/src/components/BatchStudents.vue:370 +msgid "Completed by Students" +msgstr "" + +#. Label of the enable_certification (Check) field in DocType 'LMS Course' +#: frontend/src/pages/CourseForm.vue:209 +#: lms/lms/doctype/lms_course/lms_course.json +msgid "Completion Certificate" +msgstr "" + +#: frontend/src/pages/Statistics.vue:66 +msgid "Completions" +msgstr "" + +#. Label of the condition (Code) field in DocType 'LMS Badge' +#: lms/lms/doctype/lms_badge/lms_badge.json +msgid "Condition" +msgstr "" + +#: lms/lms/doctype/lms_badge/lms_badge.py:16 +msgid "Condition must be in valid JSON format." +msgstr "" + +#: lms/lms/doctype/lms_badge/lms_badge.py:21 +msgid "Condition must be valid python code." +msgstr "" + +#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.js:7 +msgid "Conduct Evaluation" +msgstr "" + +#: frontend/src/components/UserDropdown.vue:180 +msgid "Confirm" +msgstr "" + +#. Label of the confirmation_email_sent (Check) field in DocType 'LMS Batch +#. Enrollment' +#: lms/lms/doctype/lms_batch_enrollment/lms_batch_enrollment.json +msgid "Confirmation Email Sent" +msgstr "" + +#. Label of the confirmation_email_template (Link) field in DocType 'LMS Batch' +#: lms/lms/doctype/lms_batch/lms_batch.json +msgid "Confirmation Email Template" +msgstr "" + +#: lms/lms/doctype/lms_certificate/lms_certificate.py:29 +msgid "Congratulations on getting certified!" +msgstr "" + +#: frontend/src/components/CourseCardOverlay.vue:55 +msgid "Contact the Administrator to enroll for this course." +msgstr "" + +#. Label of the content (Text) field in DocType 'Course Lesson' +#. Label of the content (Rating) field in DocType 'LMS Batch Feedback' +#: frontend/src/pages/LessonForm.vue:62 +#: lms/lms/doctype/course_lesson/course_lesson.json +#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json +msgid "Content" +msgstr "" + +#: frontend/src/components/CourseCardOverlay.vue:29 +msgid "Continue Learning" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Job Opportunity' +#: frontend/src/pages/Jobs.vue:163 +#: lms/job/doctype/job_opportunity/job_opportunity.json +msgid "Contract" +msgstr "" + +#: lms/lms/utils.py:438 +msgid "Cookie Policy" +msgstr "" + +#: frontend/src/components/LessonHelp.vue:68 +msgid "Copy the URL of the video from YouTube and paste it in the editor." +msgstr "" + +#. Option for the 'Company Type' (Select) field in DocType 'User' +#: lms/fixtures/custom_field.json +msgid "Corporate Organization" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Exercise Latest +#. Submission' +#. Option for the 'Status' (Select) field in DocType 'Exercise Submission' +#: frontend/src/components/Quiz.vue:165 +#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json +#: lms/lms/doctype/exercise_submission/exercise_submission.json +msgid "Correct" +msgstr "" + +#: frontend/src/components/Modals/Question.vue:73 +msgid "Correct Answer" +msgstr "" + +#. Label of the country (Link) field in DocType 'User' +#. Label of the country (Link) field in DocType 'Payment Country' +#: frontend/src/pages/Billing.vue:92 lms/fixtures/custom_field.json +#: lms/lms/doctype/payment_country/payment_country.json +msgid "Country" +msgstr "" + +#. Label of the course (Link) field in DocType 'Batch Course' +#. Label of the course (Link) field in DocType 'Cohort' +#. Label of the course (Link) field in DocType 'Cohort Mentor' +#. Label of the course (Link) field in DocType 'Cohort Staff' +#. Label of the course (Link) field in DocType 'Cohort Subgroup' +#. Label of the course (Link) field in DocType 'Course Chapter' +#. Label of the course (Link) field in DocType 'Course Lesson' +#. Label of the course (Link) field in DocType 'Exercise Latest Submission' +#. Label of the course (Link) field in DocType 'Exercise Submission' +#. Label of the course (Link) field in DocType 'LMS Assignment Submission' +#. Label of the course (Link) field in DocType 'LMS Batch Old' +#. Label of the course (Link) field in DocType 'LMS Certificate' +#. Label of the course (Link) field in DocType 'LMS Certificate Evaluation' +#. Label of the course (Link) field in DocType 'LMS Certificate Request' +#. Label of the course (Link) field in DocType 'LMS Course Interest' +#. Label of the course (Link) field in DocType 'LMS Course Mentor Mapping' +#. Label of the course (Link) field in DocType 'LMS Course Progress' +#. Label of the course (Link) field in DocType 'LMS Course Review' +#. Label of the course (Link) field in DocType 'LMS Enrollment' +#. Label of the course (Link) field in DocType 'LMS Exercise' +#. Label of the course (Link) field in DocType 'LMS Mentor Request' +#. Label of the course (Link) field in DocType 'LMS Program Course' +#. Label of the course (Link) field in DocType 'LMS Quiz' +#. Label of the course (Link) field in DocType 'LMS Quiz Submission' +#. Label of the course (Link) field in DocType 'Related Courses' +#. Label of a Link in the LMS Workspace +#. Label of a shortcut in the LMS Workspace +#: frontend/src/components/Modals/BatchCourseModal.vue:20 +#: frontend/src/components/Modals/BulkCertificates.vue:38 +#: frontend/src/components/Modals/EvaluationModal.vue:20 +#: frontend/src/components/Modals/Event.vue:24 +#: lms/lms/doctype/batch_course/batch_course.json +#: lms/lms/doctype/cohort/cohort.json +#: lms/lms/doctype/cohort_mentor/cohort_mentor.json +#: lms/lms/doctype/cohort_staff/cohort_staff.json +#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json +#: lms/lms/doctype/course_chapter/course_chapter.json +#: lms/lms/doctype/course_lesson/course_lesson.json +#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json +#: lms/lms/doctype/exercise_submission/exercise_submission.json +#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json +#: lms/lms/doctype/lms_batch_old/lms_batch_old.json +#: lms/lms/doctype/lms_certificate/lms_certificate.json +#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json +#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json +#: lms/lms/doctype/lms_course_interest/lms_course_interest.json +#: lms/lms/doctype/lms_course_mentor_mapping/lms_course_mentor_mapping.json +#: lms/lms/doctype/lms_course_progress/lms_course_progress.json +#: lms/lms/doctype/lms_course_review/lms_course_review.json +#: lms/lms/doctype/lms_enrollment/lms_enrollment.json +#: lms/lms/doctype/lms_exercise/lms_exercise.json +#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json +#: lms/lms/doctype/lms_program_course/lms_program_course.json +#: lms/lms/doctype/lms_quiz/lms_quiz.json +#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json +#: lms/lms/doctype/related_courses/related_courses.json +#: lms/lms/report/course_progress_summary/course_progress_summary.js:9 +#: lms/lms/report/course_progress_summary/course_progress_summary.py:51 +#: lms/lms/workspace/lms/lms.json +msgid "Course" +msgstr "" + +#. Name of a DocType +#. Label of the chapter (Link) field in DocType 'Course Lesson' +#: lms/lms/doctype/course_chapter/course_chapter.json +#: lms/lms/doctype/course_lesson/course_lesson.json +msgid "Course Chapter" +msgstr "" + +#. Label of a shortcut in the LMS Workspace +#: lms/lms/workspace/lms/lms.json +msgid "Course Completed" +msgstr "" + +#. Name of a role +#: frontend/src/pages/ProfileRoles.vue:16 +#: lms/lms/doctype/course_chapter/course_chapter.json +#: lms/lms/doctype/course_lesson/course_lesson.json +#: lms/lms/doctype/lms_category/lms_category.json +#: lms/lms/doctype/lms_course/lms_course.json +#: lms/lms/doctype/lms_program/lms_program.json +#: lms/lms/doctype/lms_question/lms_question.json +#: lms/lms/doctype/lms_quiz/lms_quiz.json +msgid "Course Creator" +msgstr "" + +#. Label of a Card Break in the LMS Workspace +#: lms/lms/workspace/lms/lms.json +msgid "Course Data" +msgstr "" + +#: frontend/src/pages/CourseForm.vue:46 +msgid "Course Description" +msgstr "" + +#. Name of a DocType +#: lms/lms/doctype/course_evaluator/course_evaluator.json +msgid "Course Evaluator" +msgstr "" + +#: frontend/src/pages/CourseForm.vue:59 +msgid "Course Image" +msgstr "" + +#. Name of a DocType +#: lms/lms/doctype/course_instructor/course_instructor.json +msgid "Course Instructor" +msgstr "" + +#. Name of a DocType +#: lms/lms/doctype/course_lesson/course_lesson.json +msgid "Course Lesson" +msgstr "" + +#: lms/www/lms.py:70 +msgid "Course List" +msgstr "" + +#: lms/lms/report/course_progress_summary/course_progress_summary.py:58 +msgid "Course Name" +msgstr "" + +#: frontend/src/pages/CourseDetail.vue:76 frontend/src/pages/CourseForm.vue:237 +msgid "Course Outline" +msgstr "" + +#. Name of a report +#: lms/lms/report/course_progress_summary/course_progress_summary.json +msgid "Course Progress Summary" +msgstr "" + +#. Label of the section_break_7 (Section Break) field in DocType 'LMS Course' +#: lms/lms/doctype/lms_course/lms_course.json +msgid "Course Settings" +msgstr "" + +#. Label of a Card Break in the LMS Workspace +#: lms/lms/workspace/lms/lms.json +msgid "Course Stats" +msgstr "" + +#. Label of the title (Data) field in DocType 'Batch Course' +#. Label of the course_title (Data) field in DocType 'Course Chapter' +#. Label of the course_title (Data) field in DocType 'LMS Certificate' +#. Label of the course_title (Data) field in DocType 'LMS Certificate Request' +#. Label of the course_title (Data) field in DocType 'LMS Program Course' +#: lms/lms/doctype/batch_course/batch_course.json +#: lms/lms/doctype/course_chapter/course_chapter.json +#: lms/lms/doctype/lms_certificate/lms_certificate.json +#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json +#: lms/lms/doctype/lms_program_course/lms_program_course.json +msgid "Course Title" +msgstr "" + +#: frontend/src/pages/ProgramForm.vue:232 +msgid "Course added to program" +msgstr "" + +#: lms/lms/doctype/lms_batch/lms_batch.py:265 +msgid "Course already added to the batch." +msgstr "" + +#: frontend/src/pages/CourseForm.vue:470 +msgid "Course deleted successfully" +msgstr "" + +#: frontend/src/pages/ProgramForm.vue:301 +msgid "Course moved successfully" +msgstr "" + +#: lms/lms/doctype/lms_batch/lms_batch.py:49 +#: lms/lms/doctype/lms_program/lms_program.py:19 +msgid "Course {0} has already been added to this batch." +msgstr "" + +#. Label of the courses (Table) field in DocType 'LMS Batch' +#. Label of the show_courses (Check) field in DocType 'LMS Settings' +#. Label of the courses (Check) field in DocType 'LMS Settings' +#: frontend/src/components/BatchCourses.vue:5 +#: frontend/src/components/BatchOverlay.vue:29 +#: frontend/src/components/BatchStudents.vue:52 +#: frontend/src/components/BatchStudents.vue:92 +#: frontend/src/components/Modals/BatchStudentProgress.vue:79 +#: frontend/src/pages/BatchDetail.vue:21 frontend/src/pages/BatchDetail.vue:70 +#: frontend/src/pages/CourseCertification.vue:127 +#: frontend/src/pages/Courses.vue:304 frontend/src/pages/Courses.vue:311 +#: frontend/src/pages/Statistics.vue:21 +#: lms/lms/doctype/lms_batch/lms_batch.json +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Courses" +msgstr "" + +#: lms/lms/web_template/lms_statistics/lms_statistics.html:14 +#: lms/templates/statistics.html:28 +msgid "Courses Completed" +msgstr "" + +#: frontend/src/components/BatchCourses.vue:154 +msgid "Courses deleted successfully" +msgstr "" + +#. Label of the cover_image (Attach Image) field in DocType 'User' +#: lms/fixtures/custom_field.json +msgid "Cover Image" +msgstr "" + +#: frontend/src/components/Modals/ChapterModal.vue:9 +#: frontend/src/pages/Programs.vue:108 +msgid "Create" +msgstr "" + +#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.js:7 +msgid "Create Certificate" +msgstr "" + +#: lms/templates/onboarding_header.html:19 +msgid "Create a Course" +msgstr "" + +#: frontend/src/components/Modals/LiveClassModal.vue:5 +msgid "Create a Live Class" +msgstr "" + +#: frontend/src/components/AppSidebar.vue:522 +msgid "Create a batch" +msgstr "" + +#: frontend/src/components/AppSidebar.vue:513 +msgid "Create a course" +msgstr "" + +#: frontend/src/components/AppSidebar.vue:523 +msgid "Create a live class" +msgstr "" + +#: frontend/src/components/Modals/Question.vue:31 +msgid "Create a new question" +msgstr "" + +#: frontend/src/components/AppSidebar.vue:449 +msgid "Create your first batch" +msgstr "" + +#: frontend/src/components/AppSidebar.vue:383 +msgid "Create your first course" +msgstr "" + +#: frontend/src/components/AppSidebar.vue:428 +msgid "Create your first quiz" +msgstr "" + +#: frontend/src/pages/Assignments.vue:166 frontend/src/pages/Courses.vue:295 +msgid "Created" +msgstr "" + +#: frontend/src/components/AppSidebar.vue:519 +msgid "Creating a batch" +msgstr "" + +#: frontend/src/components/AppSidebar.vue:510 +msgid "Creating a course" +msgstr "" + +#. Label of the currency (Link) field in DocType 'LMS Batch' +#. Label of the currency (Link) field in DocType 'LMS Course' +#. Label of the currency (Link) field in DocType 'LMS Payment' +#: frontend/src/pages/BatchForm.vue:217 frontend/src/pages/CourseForm.vue:222 +#: lms/lms/doctype/lms_batch/lms_batch.json +#: lms/lms/doctype/lms_course/lms_course.json +#: lms/lms/doctype/lms_payment/lms_payment.json +#: lms/public/js/common_functions.js:387 +msgid "Currency" +msgstr "" + +#. Label of the current_lesson (Link) field in DocType 'LMS Enrollment' +#: lms/lms/doctype/lms_enrollment/lms_enrollment.json +msgid "Current Lesson" +msgstr "" + +#: frontend/src/components/AppSidebar.vue:541 +msgid "Custom Certificate Templates" +msgstr "" + +#. Label of the custom_component (Code) field in DocType 'LMS Batch' +#: lms/lms/doctype/lms_batch/lms_batch.json +msgid "Custom HTML" +msgstr "" + +#. Label of the custom_script (Code) field in DocType 'LMS Batch' +#: lms/lms/doctype/lms_batch/lms_batch.json +msgid "Custom Script (JavaScript)" +msgstr "" + +#. Label of the custom_signup_content (HTML Editor) field in DocType 'LMS +#. Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Custom Signup Content" +msgstr "" + +#. Label of the customisations_tab (Tab Break) field in DocType 'LMS Batch' +#: lms/lms/doctype/lms_batch/lms_batch.json +msgid "Customisations" +msgstr "" + +#. Label of the show_dashboard (Check) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Dashboard" +msgstr "" + +#. Label of the date (Date) field in DocType 'LMS Batch Timetable' +#. Label of the date (Date) field in DocType 'LMS Certificate Evaluation' +#. Label of the date (Date) field in DocType 'LMS Certificate Request' +#. Label of the date (Date) field in DocType 'LMS Live Class' +#. Label of the date (Date) field in DocType 'Scheduled Flow' +#: frontend/src/components/Modals/EvaluationModal.vue:26 +#: frontend/src/components/Modals/Event.vue:40 +#: frontend/src/components/Modals/LiveClassModal.vue:61 +#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json +#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json +#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json +#: lms/lms/doctype/lms_live_class/lms_live_class.json +#: lms/lms/doctype/scheduled_flow/scheduled_flow.json +#: lms/templates/quiz/quiz.html:149 +msgid "Date" +msgstr "" + +#. Label of the section_break_glxh (Section Break) field in DocType 'LMS Live +#. Class' +#: frontend/src/pages/BatchForm.vue:100 +#: lms/lms/doctype/lms_live_class/lms_live_class.json +msgid "Date and Time" +msgstr "" + +#: lms/templates/emails/live_class_reminder.html:13 +msgid "Date:" +msgstr "" + +#. Label of the day (Select) field in DocType 'Evaluator Schedule' +#. Label of the day (Int) field in DocType 'LMS Batch Timetable' +#. Label of the day (Select) field in DocType 'LMS Certificate Request' +#: frontend/src/pages/ProfileEvaluator.vue:12 +#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json +#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json +#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json +msgid "Day" +msgstr "" + +#: lms/templates/emails/mentor_request_creation_email.html:2 +#: lms/templates/emails/mentor_request_status_update_email.html:2 +msgid "Dear" +msgstr "" + +#: lms/templates/emails/batch_confirmation.html:2 +#: lms/templates/emails/batch_start_reminder.html:2 +#: lms/templates/emails/certification.html:2 +#: lms/templates/emails/live_class_reminder.html:2 +msgid "Dear " +msgstr "" + +#. Label of the default_currency (Link) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Default Currency" +msgstr "" + +#. Label of the degree_type (Data) field in DocType 'Education Detail' +#: lms/lms/doctype/education_detail/education_detail.json +msgid "Degree Type" +msgstr "" + +#: frontend/src/components/CourseOutline.vue:248 +#: frontend/src/components/CourseOutline.vue:306 +#: frontend/src/pages/CourseForm.vue:483 +msgid "Delete" +msgstr "" + +#: frontend/src/components/CourseOutline.vue:59 +msgid "Delete Chapter" +msgstr "" + +#: frontend/src/pages/CourseForm.vue:477 +msgid "Delete Course" +msgstr "" + +#: frontend/src/components/CourseOutline.vue:300 +msgid "Delete this chapter?" +msgstr "" + +#: frontend/src/components/CourseOutline.vue:242 +msgid "Delete this lesson?" +msgstr "" + +#: frontend/src/pages/CourseForm.vue:478 +msgid "Deleting the course will also delete all its chapters and lessons. Are you sure you want to delete this course?" +msgstr "" + +#: frontend/src/components/CourseOutline.vue:301 +msgid "Deleting this chapter will also delete all its lessons and permanently remove it from the course. This action cannot be undone. Are you sure you want to continue?" +msgstr "" + +#: frontend/src/components/CourseOutline.vue:243 +msgid "Deleting this lesson will permanently remove it from the course. This action cannot be undone. Are you sure you want to continue?" +msgstr "" + +#. Label of the description (Text Editor) field in DocType 'Job Opportunity' +#. Label of the description (Small Text) field in DocType 'Certification' +#. Label of the description (Markdown Editor) field in DocType 'Cohort' +#. Label of the description (Markdown Editor) field in DocType 'Cohort +#. Subgroup' +#. Label of the description (Small Text) field in DocType 'LMS Badge' +#. Label of the description (Small Text) field in DocType 'LMS Batch' +#. Label of the description (Markdown Editor) field in DocType 'LMS Batch Old' +#. Label of the description (Text Editor) field in DocType 'LMS Course' +#. Label of the description (Small Text) field in DocType 'LMS Exercise' +#. Label of the description (Text) field in DocType 'LMS Live Class' +#. Label of the description (Small Text) field in DocType 'Work Experience' +#: frontend/src/components/Modals/LiveClassModal.vue:84 +#: frontend/src/pages/BatchForm.vue:224 frontend/src/pages/JobCreation.vue:50 +#: lms/job/doctype/job_opportunity/job_opportunity.json +#: lms/lms/doctype/certification/certification.json +#: lms/lms/doctype/cohort/cohort.json +#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json +#: lms/lms/doctype/lms_badge/lms_badge.json +#: lms/lms/doctype/lms_batch/lms_batch.json +#: lms/lms/doctype/lms_batch_old/lms_batch_old.json +#: lms/lms/doctype/lms_course/lms_course.json +#: lms/lms/doctype/lms_exercise/lms_exercise.json +#: lms/lms/doctype/lms_live_class/lms_live_class.json +#: lms/lms/doctype/work_experience/work_experience.json +#: lms/public/js/common_functions.js:342 +msgid "Description" +msgstr "" + +#: frontend/src/components/Apps.vue:51 +msgid "Desk" +msgstr "" + +#: frontend/src/components/Modals/DiscussionModal.vue:22 +#: frontend/src/pages/AssignmentForm.vue:27 frontend/src/pages/BatchForm.vue:14 +#: frontend/src/pages/CourseForm.vue:25 frontend/src/pages/QuizForm.vue:42 +msgid "Details" +msgstr "" + +#: frontend/src/pages/CourseForm.vue:191 +msgid "Disable Self Enrollment" +msgstr "" + +#. Label of the disable_self_learning (Check) field in DocType 'LMS Course' +#: lms/lms/doctype/lms_course/lms_course.json +msgid "Disable Self Learning" +msgstr "" + +#. Label of the disable_signup (Check) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Disable Signup" +msgstr "" + +#. Label of the disabled (Check) field in DocType 'Job Opportunity' +#: lms/job/doctype/job_opportunity/job_opportunity.json +msgid "Disabled" +msgstr "" + +#: frontend/src/components/DiscussionReplies.vue:55 +#: lms/lms/widgets/NoPreviewModal.html:25 lms/templates/reviews.html:159 +msgid "Discard" +msgstr "" + +#. Label of the show_discussions (Check) field in DocType 'LMS Settings' +#: frontend/src/pages/Batch.vue:85 +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Discussions" +msgstr "" + +#. Option for the 'File Type' (Select) field in DocType 'Course Lesson' +#. Option for the 'Type' (Select) field in DocType 'LMS Assignment' +#. Option for the 'Type' (Select) field in DocType 'LMS Assignment Submission' +#: lms/lms/doctype/course_lesson/course_lesson.json +#: lms/lms/doctype/lms_assignment/lms_assignment.json +#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json +msgid "Document" +msgstr "" + +#: lms/templates/emails/payment_reminder.html:11 +msgid "Don’t miss this opportunity to enhance your skills. Click below to complete your enrollment" +msgstr "" + +#. Label of the dream_companies (Data) field in DocType 'User' +#: lms/fixtures/custom_field.json +msgid "Dream Companies" +msgstr "" + +#: lms/lms/doctype/lms_question/lms_question.py:33 +msgid "Duplicate options found for this question." +msgstr "" + +#. Label of the duration (Data) field in DocType 'Cohort' +#. Label of the duration (Data) field in DocType 'LMS Batch Timetable' +#. Label of the duration (Int) field in DocType 'LMS Live Class' +#: frontend/src/components/Modals/LiveClassModal.vue:68 +#: lms/lms/doctype/cohort/cohort.json +#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json +#: lms/lms/doctype/lms_live_class/lms_live_class.json +msgid "Duration" +msgstr "" + +#. Label of the duration (Data) field in DocType 'LMS Quiz' +#: frontend/src/pages/QuizForm.vue:63 lms/lms/doctype/lms_quiz/lms_quiz.json +msgid "Duration (in minutes)" +msgstr "" + +#: frontend/src/components/Modals/LiveClassModal.vue:64 +msgid "Duration of the live class in minutes" +msgstr "" + +#. Label of the email (Link) field in DocType 'Cohort Join Request' +#: lms/lms/doctype/cohort_join_request/cohort_join_request.json +msgid "E-Mail" +msgstr "" + +#. Label of the email (Link) field in DocType 'Cohort Mentor' +#: lms/lms/doctype/cohort_mentor/cohort_mentor.json +msgid "E-mail" +msgstr "" + +#: frontend/src/components/BatchOverlay.vue:107 +#: frontend/src/components/CourseCardOverlay.vue:88 +#: frontend/src/components/Modals/ChapterModal.vue:9 +#: frontend/src/pages/JobDetail.vue:31 frontend/src/pages/Lesson.vue:66 +#: frontend/src/pages/Profile.vue:32 frontend/src/pages/Programs.vue:53 +msgid "Edit" +msgstr "" + +#: frontend/src/components/CourseOutline.vue:52 +#: frontend/src/components/Modals/ChapterModal.vue:5 +msgid "Edit Chapter" +msgstr "" + +#: frontend/src/pages/Profile.vue:68 +msgid "Edit Profile" +msgstr "" + +#: frontend/src/pages/QuizForm.vue:182 +msgid "Edit the question" +msgstr "" + +#. Label of the education (Table) field in DocType 'User' +#: lms/fixtures/custom_field.json +msgid "Education" +msgstr "" + +#. Name of a DocType +#: lms/lms/doctype/education_detail/education_detail.json +msgid "Education Detail" +msgstr "" + +#. Label of the education_details (Section Break) field in DocType 'User' +#: lms/fixtures/custom_field.json +msgid "Education Details" +msgstr "" + +#: frontend/src/components/Evaluators.vue:32 +#: frontend/src/components/Members.vue:32 lms/templates/signup-form.html:10 +msgid "Email" +msgstr "" + +#: frontend/src/components/Modals/Event.vue:16 +msgid "Email ID" +msgstr "" + +#. Label of the email_sent (Check) field in DocType 'LMS Course Interest' +#: lms/lms/doctype/lms_course_interest/lms_course_interest.json +msgid "Email Sent" +msgstr "" + +#: frontend/src/pages/BatchForm.vue:167 +msgid "Email Template" +msgstr "" + +#. Label of the email_templates_tab (Tab Break) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Email Templates" +msgstr "" + +#. Label of the show_emails (Check) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Emails" +msgstr "" + +#. Option for the 'User Category' (Select) field in DocType 'User' +#: lms/fixtures/custom_field.json lms/templates/signup-form.html:25 +msgid "Employee" +msgstr "" + +#. Label of the enable (Check) field in DocType 'Zoom Settings' +#: lms/lms/doctype/zoom_settings/zoom_settings.json +msgid "Enable" +msgstr "" + +#: lms/lms/doctype/lms_settings/lms_settings.py:21 +msgid "Enable Google API in Google Settings to send calendar invites for evaluations." +msgstr "" + +#. Label of the enable_learning_paths (Check) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Enable Learning Paths" +msgstr "" + +#: frontend/src/components/Modals/ChapterModal.vue:24 +msgid "Enable this only if you want to upload a SCORM package as a chapter." +msgstr "" + +#. Label of the enabled (Check) field in DocType 'LMS Badge' +#: lms/lms/doctype/lms_badge/lms_badge.json +msgid "Enabled" +msgstr "" + +#: frontend/src/components/Modals/BulkCertificates.vue:53 +msgid "Enabling this will publish the certificate on the certified participants page." +msgstr "" + +#. Label of the end_date (Date) field in DocType 'Cohort' +#. Label of the end_date (Date) field in DocType 'LMS Batch' +#: frontend/src/pages/BatchForm.vue:113 lms/lms/doctype/cohort/cohort.json +#: lms/lms/doctype/lms_batch/lms_batch.json +#: lms/public/js/common_functions.js:282 +msgid "End Date" +msgstr "" + +#. Label of the end_date (Date) field in DocType 'Education Detail' +#: lms/lms/doctype/education_detail/education_detail.json +msgid "End Date (or expected)" +msgstr "" + +#. Label of the end_time (Time) field in DocType 'Evaluator Schedule' +#. Label of the end_time (Time) field in DocType 'LMS Batch' +#. Label of the end_time (Time) field in DocType 'LMS Batch Old' +#. Label of the end_time (Time) field in DocType 'LMS Batch Timetable' +#. Label of the end_time (Time) field in DocType 'LMS Certificate Evaluation' +#. Label of the end_time (Time) field in DocType 'LMS Certificate Request' +#. Label of the end_time (Time) field in DocType 'Scheduled Flow' +#: frontend/src/pages/BatchForm.vue:137 +#: frontend/src/pages/ProfileEvaluator.vue:18 +#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json +#: lms/lms/doctype/lms_batch/lms_batch.json +#: lms/lms/doctype/lms_batch_old/lms_batch_old.json +#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json +#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json +#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json +#: lms/lms/doctype/scheduled_flow/scheduled_flow.json +#: lms/public/js/common_functions.js:299 +msgid "End Time" +msgstr "" + +#: frontend/src/components/BatchOverlay.vue:94 +msgid "Enroll Now" +msgstr "" + +#: frontend/src/pages/Batches.vue:297 frontend/src/pages/Courses.vue:297 +msgid "Enrolled" +msgstr "" + +#: frontend/src/components/CourseCard.vue:42 +#: frontend/src/components/CourseCardOverlay.vue:106 +#: frontend/src/pages/CourseDetail.vue:33 +msgid "Enrolled Students" +msgstr "" + +#: lms/public/js/common_functions.js:96 +msgid "Enrolled successfully" +msgstr "" + +#: lms/lms/doctype/lms_batch_enrollment/lms_batch_enrollment.py:93 +msgid "Enrollment Confirmation for {0}" +msgstr "" + +#: lms/lms/web_template/lms_statistics/lms_statistics.html:14 +#: lms/templates/statistics.html:20 +msgid "Enrollment Count" +msgstr "" + +#: lms/lms/utils.py:1898 +msgid "Enrollment Failed" +msgstr "" + +#. Label of the enrollments (Int) field in DocType 'LMS Course' +#. Label of a chart in the LMS Workspace +#. Label of a shortcut in the LMS Workspace +#: frontend/src/pages/Statistics.vue:51 +#: lms/lms/doctype/lms_course/lms_course.json lms/lms/workspace/lms/lms.json +msgid "Enrollments" +msgstr "" + +#: lms/lms/doctype/lms_settings/lms_settings.py:26 +msgid "Enter Client Id and Client Secret in Google Settings to send calendar invites for evaluations." +msgstr "" + +#: frontend/src/components/Assignment.vue:113 +msgid "Enter a URL" +msgstr "" + +#: frontend/src/pages/QuizForm.vue:49 +msgid "Enter a title and save the quiz to proceed" +msgstr "" + +#: lms/templates/quiz/quiz.html:53 +msgid "Enter the correct answer" +msgstr "" + +#: frontend/src/components/Assignment.vue:287 +#: frontend/src/components/Modals/AnnouncementModal.vue:105 +#: frontend/src/components/Modals/BulkCertificates.vue:115 +#: frontend/src/components/Modals/ChapterModal.vue:160 +#: frontend/src/components/Modals/ChapterModal.vue:167 +#: frontend/src/components/Modals/ChapterModal.vue:203 +#: frontend/src/components/Modals/Question.vue:252 +#: frontend/src/components/Modals/Question.vue:275 +#: frontend/src/components/Modals/Question.vue:332 +#: frontend/src/components/Modals/StudentModal.vue:73 +#: frontend/src/components/Quiz.vue:592 +#: frontend/src/components/SettingDetails.vue:62 +#: frontend/src/pages/AssignmentForm.vue:142 +#: frontend/src/pages/AssignmentForm.vue:162 frontend/src/pages/Billing.vue:262 +#: frontend/src/pages/QuizForm.vue:349 frontend/src/pages/QuizForm.vue:364 +#: frontend/src/pages/QuizSubmission.vue:150 +msgid "Error" +msgstr "" + +#: lms/lms/doctype/lms_batch/lms_batch.py:180 +msgid "Error creating live class. Please try again. {0}" +msgstr "" + +#. Label of a Link in the LMS Workspace +#. Label of a shortcut in the LMS Workspace +#: frontend/src/components/Modals/Event.vue:364 lms/lms/workspace/lms/lms.json +msgid "Evaluation" +msgstr "" + +#. Label of the section_break_6 (Section Break) field in DocType 'LMS +#. Certificate Evaluation' +#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json +msgid "Evaluation Details" +msgstr "" + +#. Label of the evaluation_end_date (Date) field in DocType 'LMS Batch' +#: frontend/src/pages/BatchForm.vue:161 +#: lms/lms/doctype/lms_batch/lms_batch.json +#: lms/public/js/common_functions.js:333 +msgid "Evaluation End Date" +msgstr "" + +#. Label of a Link in the LMS Workspace +#: lms/lms/workspace/lms/lms.json +msgid "Evaluation Request" +msgstr "" + +#: lms/lms/doctype/lms_batch/lms_batch.py:77 +msgid "Evaluation end date cannot be less than the batch end date." +msgstr "" + +#: frontend/src/components/Modals/Event.vue:255 +msgid "Evaluation saved successfully" +msgstr "" + +#. Label of the evaluator (Link) field in DocType 'Batch Course' +#. Label of the evaluator (Link) field in DocType 'Course Evaluator' +#. Label of the evaluator (Link) field in DocType 'LMS Assignment Submission' +#. Label of the evaluator (Link) field in DocType 'LMS Certificate' +#. Label of the evaluator (Link) field in DocType 'LMS Certificate Evaluation' +#. Label of the evaluator (Link) field in DocType 'LMS Certificate Request' +#. Label of the evaluator (Link) field in DocType 'LMS Course' +#: frontend/src/components/Modals/BatchCourseModal.vue:26 +#: frontend/src/components/Modals/BulkCertificates.vue:22 +#: frontend/src/pages/CourseForm.vue:228 frontend/src/pages/ProfileRoles.vue:22 +#: lms/lms/doctype/batch_course/batch_course.json +#: lms/lms/doctype/course_evaluator/course_evaluator.json +#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json +#: lms/lms/doctype/lms_certificate/lms_certificate.json +#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json +#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json +#: lms/lms/doctype/lms_course/lms_course.json +#: lms/templates/upcoming_evals.html:33 +msgid "Evaluator" +msgstr "" + +#. Label of the evaluator_name (Data) field in DocType 'LMS Certificate' +#. Label of the evaluator_name (Data) field in DocType 'LMS Certificate +#. Evaluation' +#. Label of the evaluator_name (Data) field in DocType 'LMS Certificate +#. Request' +#: lms/lms/doctype/lms_certificate/lms_certificate.json +#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json +#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json +msgid "Evaluator Name" +msgstr "" + +#. Name of a DocType +#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json +msgid "Evaluator Schedule" +msgstr "" + +#: frontend/src/components/Modals/EvaluationModal.vue:151 +msgid "Evaluator is Unavailable" +msgstr "" + +#: lms/lms/doctype/lms_course/lms_course.py:62 +msgid "Evaluator is required for paid certificates." +msgstr "" + +#. Label of the event (Select) field in DocType 'LMS Badge' +#. Label of the event (Link) field in DocType 'LMS Live Class' +#: lms/lms/doctype/lms_badge/lms_badge.json +#: lms/lms/doctype/lms_live_class/lms_live_class.json +msgid "Event" +msgstr "" + +#: frontend/src/pages/BatchForm.vue:122 +msgid "Example: IST (+5:30)" +msgstr "" + +#. Label of the exercise (Link) field in DocType 'Exercise Latest Submission' +#. Label of the exercise (Link) field in DocType 'Exercise Submission' +#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json +#: lms/lms/doctype/exercise_submission/exercise_submission.json +msgid "Exercise" +msgstr "" + +#. Name of a DocType +#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json +msgid "Exercise Latest Submission" +msgstr "" + +#. Name of a DocType +#: lms/lms/doctype/exercise_submission/exercise_submission.json +msgid "Exercise Submission" +msgstr "" + +#. Label of the exercise_title (Data) field in DocType 'Exercise Latest +#. Submission' +#. Label of the exercise_title (Data) field in DocType 'Exercise Submission' +#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json +#: lms/lms/doctype/exercise_submission/exercise_submission.json +msgid "Exercise Title" +msgstr "" + +#: frontend/src/components/CourseOutline.vue:21 +msgid "Expand all chapters" +msgstr "" + +#. Label of the expiration_date (Data) field in DocType 'Certification' +#: lms/lms/doctype/certification/certification.json +msgid "Expiration Date" +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 +#: lms/lms/doctype/lms_certificate/lms_certificate.json +msgid "Expiry Date" +msgstr "" + +#. Label of the explanation_1 (Small Text) field in DocType 'LMS Question' +#. Label of the explanation_3 (Small Text) field in DocType 'LMS Question' +#. Label of the explanation_4 (Small Text) field in DocType 'LMS Question' +#: frontend/src/components/Modals/Question.vue:69 +#: lms/lms/doctype/lms_question/lms_question.json +msgid "Explanation" +msgstr "" + +#. Label of the explanation_2 (Small Text) field in DocType 'LMS Question' +#: lms/lms/doctype/lms_question/lms_question.json +msgid "Explanation " +msgstr "" + +#: lms/lms/web_template/course_cards/course_cards.html:15 +#: lms/lms/web_template/recently_published_courses/recently_published_courses.html:16 +msgid "Explore More" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'LMS Assignment +#. Submission' +#. Option for the 'Status' (Select) field in DocType 'LMS Certificate +#. Evaluation' +#: frontend/src/components/Modals/Event.vue:356 +#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json +#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json +msgid "Fail" +msgstr "" + +#. Label of the featured (Check) field in DocType 'LMS Course' +#: frontend/src/components/CourseCard.vue:16 +#: frontend/src/pages/CourseForm.vue:186 +#: lms/lms/doctype/lms_course/lms_course.json +msgid "Featured" +msgstr "" + +#. Label of the feedback (Small Text) field in DocType 'LMS Batch Feedback' +#: frontend/src/components/BatchFeedback.vue:29 +#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json +msgid "Feedback" +msgstr "" + +#: frontend/src/components/Assignment.vue:64 +msgid "Feel free to make edits to your submission if needed." +msgstr "" + +#. Label of the field_to_check (Select) field in DocType 'LMS Badge' +#: lms/lms/doctype/lms_badge/lms_badge.json +msgid "Field To Check" +msgstr "" + +#. Label of the major (Data) field in DocType 'Education Detail' +#: lms/lms/doctype/education_detail/education_detail.json +msgid "Field of Major/Study" +msgstr "" + +#. Label of the file_type (Select) field in DocType 'Course Lesson' +#: lms/lms/doctype/course_lesson/course_lesson.json +msgid "File Type" +msgstr "" + +#: frontend/src/pages/Jobs.vue:33 +msgid "Find the perfect job for you" +msgstr "" + +#: frontend/src/components/Members.vue:38 +#: frontend/src/components/Modals/EditProfile.vue:59 +msgid "First Name" +msgstr "" + +#. Option for the 'Time Preference' (Select) field in DocType 'User' +#: lms/fixtures/custom_field.json +msgid "Fixed 9-5" +msgstr "" + +#. Option for the 'Time Preference' (Select) field in DocType 'User' +#: lms/fixtures/custom_field.json +msgid "Flexible Time" +msgstr "" + +#. Option for the 'Attire Preference' (Select) field in DocType 'User' +#: lms/fixtures/custom_field.json +msgid "Formal Wear" +msgstr "" + +#: lms/lms/widgets/CourseCard.html:114 +msgid "Free" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Job Opportunity' +#: frontend/src/pages/Jobs.vue:164 +#: lms/job/doctype/job_opportunity/job_opportunity.json +msgid "Freelance" +msgstr "" + +#. Option for the 'User Category' (Select) field in DocType 'User' +#: lms/fixtures/custom_field.json lms/templates/signup-form.html:27 +msgid "Freelancer/Just looking" +msgstr "" + +#. Option for the 'Grade Type' (Select) field in DocType 'Education Detail' +#: lms/lms/doctype/education_detail/education_detail.json +msgid "French (e.g. Distinction)" +msgstr "" + +#. Option for the 'Day' (Select) field in DocType 'Evaluator Schedule' +#. Option for the 'Day' (Select) field in DocType 'LMS Certificate Request' +#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json +#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json +msgid "Friday" +msgstr "" + +#. Label of the unavailable_from (Date) field in DocType 'Course Evaluator' +#: frontend/src/pages/ProfileEvaluator.vue:85 +#: lms/lms/doctype/course_evaluator/course_evaluator.json +msgid "From" +msgstr "" + +#. Label of the from_date (Date) field in DocType 'Work Experience' +#: lms/lms/doctype/work_experience/work_experience.json +msgid "From Date" +msgstr "" + +#. Label of the full_name (Data) field in DocType 'Course Evaluator' +#. Label of the full_name (Data) field in DocType 'Invite Request' +#. Label of the full_name (Data) field in DocType 'LMS Program Member' +#: lms/lms/doctype/course_evaluator/course_evaluator.json +#: lms/lms/doctype/invite_request/invite_request.json +#: lms/lms/doctype/lms_program_member/lms_program_member.json +#: lms/templates/signup-form.html:5 +msgid "Full Name" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Job Opportunity' +#: frontend/src/pages/Jobs.vue:161 +#: lms/job/doctype/job_opportunity/job_opportunity.json +msgid "Full Time" +msgstr "" + +#. Name of a DocType +#. Label of the function (Data) field in DocType 'Function' +#. Label of the function (Link) field in DocType 'Preferred Function' +#: lms/lms/doctype/function/function.json +#: lms/lms/doctype/preferred_function/preferred_function.json +msgid "Function" +msgstr "" + +#: frontend/src/pages/Billing.vue:43 +msgid "GST Amount" +msgstr "" + +#: frontend/src/pages/Billing.vue:110 +msgid "GST Number" +msgstr "" + +#. Label of the gstin (Data) field in DocType 'LMS Payment' +#: lms/lms/doctype/lms_payment/lms_payment.json +msgid "GSTIN" +msgstr "" + +#. Label of the general_tab (Tab Break) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "General" +msgstr "" + +#: frontend/src/components/Modals/BulkCertificates.vue:5 +#: frontend/src/pages/Batch.vue:12 +msgid "Generate Certificates" +msgstr "" + +#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.js:15 +msgid "Generate Google Meet Link" +msgstr "" + +#: frontend/src/components/CourseCardOverlay.vue:75 +msgid "Get Certificate" +msgstr "" + +#: frontend/src/components/CertificationLinks.vue:34 +#: frontend/src/components/CertificationLinks.vue:50 +#: frontend/src/pages/CertifiedParticipants.vue:11 +msgid "Get Certified" +msgstr "" + +#: lms/templates/onboarding_header.html:8 +msgid "Get Started" +msgstr "" + +#. Label of the github (Data) field in DocType 'User' +#: lms/fixtures/custom_field.json +msgid "Github ID" +msgstr "" + +#. Label of the google_meet_link (Data) field in DocType 'LMS Certificate +#. Request' +#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json +msgid "Google Meet Link" +msgstr "" + +#. Label of the grade (Data) field in DocType 'Education Detail' +#: frontend/src/components/Assignment.vue:158 +#: lms/lms/doctype/education_detail/education_detail.json +msgid "Grade" +msgstr "" + +#. Label of the grade_assignment (Check) field in DocType 'LMS Assignment' +#: lms/lms/doctype/lms_assignment/lms_assignment.json +msgid "Grade Assignment" +msgstr "" + +#. Label of the grade_type (Select) field in DocType 'Education Detail' +#: lms/lms/doctype/education_detail/education_detail.json +msgid "Grade Type" +msgstr "" + +#: frontend/src/components/Assignment.vue:153 +msgid "Grading" +msgstr "" + +#. Label of the grant_only_once (Check) field in DocType 'LMS Badge' +#: lms/lms/doctype/lms_badge/lms_badge.json +msgid "Grant only once" +msgstr "" + +#: lms/templates/signup-form.html:56 +msgid "Have an account? Login" +msgstr "" + +#. Label of the headline (Data) field in DocType 'User' +#: frontend/src/components/Modals/EditProfile.vue:69 +#: lms/fixtures/custom_field.json +msgid "Headline" +msgstr "" + +#: lms/lms/widgets/HelloWorld.html:13 +msgid "Hello" +msgstr "" + +#: frontend/src/components/AppSidebar.vue:80 +msgid "Help" +msgstr "" + +#: frontend/src/components/BatchFeedback.vue:11 +msgid "Help Us Improve" +msgstr "" + +#: lms/templates/courses_created.html:15 +msgid "Help others learn something new by creating a course." +msgstr "" + +#: lms/templates/reviews.html:101 +msgid "Help us improve our course material." +msgstr "" + +#: lms/lms/notification/certificate_request_reminder/certificate_request_reminder.html:1 +#: lms/templates/emails/certificate_request_notification.html:1 +msgid "Hey {0}" +msgstr "" + +#: lms/templates/emails/job_report.html:3 +msgid "Hey," +msgstr "" + +#: lms/templates/emails/payment_reminder.html:2 +msgid "Hi" +msgstr "" + +#: lms/templates/emails/lms_course_interest.html:3 +msgid "Hi {0}," +msgstr "" + +#: lms/templates/emails/lms_invite_request_approved.html:3 +msgid "Hi," +msgstr "" + +#. Label of the hide_private (Check) field in DocType 'User' +#: lms/fixtures/custom_field.json +msgid "Hide my Private Information from others" +msgstr "" + +#. Label of the hints (Small Text) field in DocType 'LMS Exercise' +#: lms/lms/doctype/lms_exercise/lms_exercise.json +msgid "Hints" +msgstr "" + +#. Label of the host (Link) field in DocType 'LMS Live Class' +#: lms/lms/doctype/lms_live_class/lms_live_class.json +msgid "Host" +msgstr "" + +#: frontend/src/components/LessonHelp.vue:24 +msgid "How to add a Quiz?" +msgstr "" + +#. Label of the current (Check) field in DocType 'Work Experience' +#: lms/lms/doctype/work_experience/work_experience.json +msgid "I am currently working here" +msgstr "" + +#: lms/templates/emails/certification.html:6 +msgid "I am delighted to inform you that you have successfully earned your certification for the {0} course. Congratulations!" +msgstr "" + +#. Label of the looking_for_job (Check) field in DocType 'User' +#: lms/fixtures/custom_field.json +msgid "I am looking for a job" +msgstr "" + +#: frontend/src/pages/ProfileEvaluator.vue:80 +msgid "I am unavailable" +msgstr "" + +#: frontend/src/pages/QuizForm.vue:383 +msgid "ID" +msgstr "" + +#. Label of the icon (Data) field in DocType 'LMS Sidebar Item' +#: frontend/src/components/Modals/PageModal.vue:28 +#: lms/lms/doctype/lms_sidebar_item/lms_sidebar_item.json +msgid "Icon" +msgstr "" + +#. Label of the user_category (Check) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Identify User Persona" +msgstr "" + +#: frontend/src/components/LessonHelp.vue:11 +msgid "If Include in Preview is enabled for a lesson then the lesson will also be accessible to non logged in users." +msgstr "" + +#: lms/templates/emails/mentor_request_creation_email.html:5 +msgid "If you are not any more interested to mentor the course" +msgstr "" + +#: frontend/src/components/Quiz.vue:20 +msgid "If you fail to do so, the quiz will be automatically submitted when the timer ends." +msgstr "" + +#: lms/templates/emails/payment_reminder.html:19 +msgid "If you have any questions or need assistance, feel free to reach out to our support team." +msgstr "" + +#: lms/templates/emails/batch_confirmation.html:27 +#: lms/templates/emails/batch_start_reminder.html:27 +#: lms/templates/emails/live_class_reminder.html:24 +msgid "If you have any questions or require assistance, feel free to contact us." +msgstr "" + +#. Description of the 'Amount (USD)' (Currency) field in DocType 'LMS Batch' +#. Description of the 'Amount (USD)' (Currency) field in DocType 'LMS Course' +#: lms/lms/doctype/lms_batch/lms_batch.json +#: lms/lms/doctype/lms_course/lms_course.json +#: lms/public/js/common_functions.js:400 +msgid "If you set an amount here, then the USD equivalent setting will not get applied." +msgstr "" + +#: lms/lms/doctype/lms_quiz/lms_quiz.py:61 +msgid "If you want open ended questions then make sure each question in the quiz is of open ended type." +msgstr "" + +#. Option for the 'File Type' (Select) field in DocType 'Course Lesson' +#. Label of the image (Code) field in DocType 'Exercise Latest Submission' +#. Label of the image (Code) field in DocType 'Exercise Submission' +#. Option for the 'Type' (Select) field in DocType 'LMS Assignment' +#. Option for the 'Type' (Select) field in DocType 'LMS Assignment Submission' +#. Label of the image (Attach Image) field in DocType 'LMS Badge' +#. Label of the image (Code) field in DocType 'LMS Exercise' +#: lms/lms/doctype/course_lesson/course_lesson.json +#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json +#: lms/lms/doctype/exercise_submission/exercise_submission.json +#: lms/lms/doctype/lms_assignment/lms_assignment.json +#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json +#: lms/lms/doctype/lms_badge/lms_badge.json +#: lms/lms/doctype/lms_exercise/lms_exercise.json +msgid "Image" +msgstr "" + +#: frontend/src/components/Modals/EditCoverImage.vue:58 +#: frontend/src/components/UnsplashImageBrowser.vue:52 +msgid "Image search powered by" +msgstr "" + +#: lms/lms/doctype/lms_quiz/lms_quiz.py:219 +msgid "Image: Corrupted Data Stream" +msgstr "" + +#. Option for the 'Stage' (Select) field in DocType 'LMS Batch Old' +#. 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:348 +#: 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 "" + +#. Option for the 'Status' (Select) field in DocType 'LMS Batch Old' +#: lms/lms/doctype/lms_batch_old/lms_batch_old.json +msgid "Inactive" +msgstr "" + +#. Label of the include_in_preview (Check) field in DocType 'Course Lesson' +#: lms/lms/doctype/course_lesson/course_lesson.json +msgid "Include In Preview" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'LMS Course Progress' +#: lms/lms/doctype/lms_course_progress/lms_course_progress.json +msgid "Incomplete" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Exercise Latest +#. Submission' +#. Option for the 'Status' (Select) field in DocType 'Exercise Submission' +#: frontend/src/components/Quiz.vue:170 +#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json +#: lms/lms/doctype/exercise_submission/exercise_submission.json +msgid "Incorrect" +msgstr "" + +#. Label of the index_ (Int) field in DocType 'LMS Exercise' +#: lms/lms/doctype/lms_exercise/lms_exercise.json +msgid "Index" +msgstr "" + +#. Label of the index_label (Data) field in DocType 'LMS Exercise' +#: lms/lms/doctype/lms_exercise/lms_exercise.json +msgid "Index Label" +msgstr "" + +#. Option for the 'Collaboration Preference' (Select) field in DocType 'User' +#: lms/fixtures/custom_field.json +msgid "Individual Work" +msgstr "" + +#. Name of a DocType +#. Label of the industry (Data) field in DocType 'Industry' +#. Label of the industry (Link) field in DocType 'Preferred Industry' +#: lms/lms/doctype/industry/industry.json +#: lms/lms/doctype/preferred_industry/preferred_industry.json +msgid "Industry" +msgstr "" + +#. Label of the institution_name (Data) field in DocType 'Education Detail' +#: lms/lms/doctype/education_detail/education_detail.json +msgid "Institution Name" +msgstr "" + +#. Label of the instructor (Link) field in DocType 'Cohort' +#. Label of the instructor (Link) field in DocType 'Course Instructor' +#: lms/lms/doctype/cohort/cohort.json +#: lms/lms/doctype/course_instructor/course_instructor.json +msgid "Instructor" +msgstr "" + +#. Label of the instructor_content (Text) field in DocType 'Course Lesson' +#: lms/lms/doctype/course_lesson/course_lesson.json +msgid "Instructor Content" +msgstr "" + +#. Label of the instructor_notes (Markdown Editor) field in DocType 'Course +#. Lesson' +#: frontend/src/pages/Lesson.vue:129 frontend/src/pages/LessonForm.vue:42 +#: lms/lms/doctype/course_lesson/course_lesson.json +msgid "Instructor Notes" +msgstr "" + +#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Batch' +#. Label of the instructors (Rating) field in DocType 'LMS Batch Feedback' +#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Course' +#: frontend/src/pages/BatchForm.vue:93 frontend/src/pages/CourseForm.vue:151 +#: lms/lms/doctype/lms_batch/lms_batch.json +#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json +#: lms/lms/doctype/lms_course/lms_course.json +msgid "Instructors" +msgstr "" + +#: lms/templates/assignment.html:17 +msgid "Instructors Comments" +msgstr "" + +#. Label of a Link in the LMS Workspace +#: lms/lms/workspace/lms/lms.json +msgid "Interest" +msgstr "" + +#: frontend/src/components/AppSidebar.vue:502 +#: frontend/src/components/AppSidebar.vue:505 +msgid "Introduction" +msgstr "" + +#: lms/lms/doctype/invite_request/invite_request.py:83 +msgid "Invalid Invite Code." +msgstr "" + +#: lms/lms/doctype/course_lesson/course_lesson.py:19 +msgid "Invalid Quiz ID" +msgstr "" + +#: lms/lms/doctype/course_lesson/course_lesson.py:33 +msgid "Invalid Quiz ID in content" +msgstr "" + +#. Label of the invite_code (Data) field in DocType 'Cohort Subgroup' +#. Label of the invite_code (Data) field in DocType 'Invite Request' +#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json +#: lms/lms/doctype/invite_request/invite_request.json +msgid "Invite Code" +msgstr "" + +#. Label of the invite_email (Data) field in DocType 'Invite Request' +#: lms/lms/doctype/invite_request/invite_request.json +msgid "Invite Email" +msgstr "" + +#. Option for the 'Membership' (Select) field in DocType 'LMS Batch Old' +#: lms/lms/doctype/lms_batch_old/lms_batch_old.json +msgid "Invite Only" +msgstr "" + +#. Name of a DocType +#: lms/lms/doctype/invite_request/invite_request.json +msgid "Invite Request" +msgstr "" + +#: frontend/src/components/AppSidebar.vue:438 +msgid "Invite your team and students" +msgstr "" + +#. Label of the is_correct (Check) field in DocType 'LMS Option' +#. Label of the is_correct_1 (Check) field in DocType 'LMS Question' +#. Label of the is_correct_2 (Check) field in DocType 'LMS Question' +#. Label of the is_correct_3 (Check) field in DocType 'LMS Question' +#. Label of the is_correct_4 (Check) field in DocType 'LMS Question' +#. Label of the is_correct (Check) field in DocType 'LMS Quiz Result' +#: lms/lms/doctype/lms_option/lms_option.json +#: lms/lms/doctype/lms_question/lms_question.json +#: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json +msgid "Is Correct" +msgstr "" + +#. Label of the is_scorm_package (Check) field in DocType 'Course Chapter' +#. Label of the is_scorm_package (Check) field in DocType 'Course Lesson' +#: lms/lms/doctype/course_chapter/course_chapter.json +#: lms/lms/doctype/course_lesson/course_lesson.json +msgid "Is SCORM Package" +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 +#: lms/lms/doctype/certification/certification.json +#: lms/lms/doctype/lms_certificate/lms_certificate.json +msgid "Issue Date" +msgstr "" + +#: frontend/src/components/AppSidebar.vue:538 +msgid "Issue a Certificate" +msgstr "" + +#. Label of the issued_on (Date) field in DocType 'LMS Badge Assignment' +#: frontend/src/pages/CourseCertification.vue:27 +#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json +msgid "Issued On" +msgstr "" + +#: frontend/src/pages/ProfileAbout.vue:56 +#: frontend/src/pages/ProfileCertificates.vue:17 +#: lms/templates/certificates_section.html:11 +msgid "Issued on" +msgstr "" + +#. Label of the items_in_sidebar_section (Section Break) field in DocType 'LMS +#. Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Items in Sidebar" +msgstr "" + +#: frontend/src/pages/ProgramForm.vue:275 +msgid "Items removed successfully" +msgstr "" + +#: lms/templates/signup-form.html:6 +msgid "Jane Doe" +msgstr "" + +#. Label of the job (Link) field in DocType 'LMS Job Application' +#: lms/job/doctype/lms_job_application/lms_job_application.json +msgid "Job" +msgstr "" + +#. Label of the subtitle (Data) field in DocType 'Job Settings' +#: lms/job/doctype/job_settings/job_settings.json +msgid "Job Board Subtitle" +msgstr "" + +#. Label of the title (Data) field in DocType 'Job Settings' +#: lms/job/doctype/job_settings/job_settings.json +msgid "Job Board Title" +msgstr "" + +#: frontend/src/pages/JobCreation.vue:14 +msgid "Job Details" +msgstr "" + +#: lms/www/lms.py:159 +msgid "Job Openings" +msgstr "" + +#. Name of a DocType +#: lms/job/doctype/job_opportunity/job_opportunity.json +msgid "Job Opportunity" +msgstr "" + +#. Name of a DocType +#: lms/job/doctype/job_settings/job_settings.json +msgid "Job Settings" +msgstr "" + +#. Label of the job_title (Data) field in DocType 'Job Opportunity' +#. Label of the job_title (Data) field in DocType 'LMS Job Application' +#: lms/job/doctype/job_opportunity/job_opportunity.json +#: lms/job/doctype/lms_job_application/lms_job_application.json +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:170 +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Jobs" +msgstr "" + +#: frontend/src/components/LiveClass.vue:58 +#: lms/templates/upcoming_evals.html:15 +msgid "Join" +msgstr "" + +#: frontend/src/components/UpcomingEvaluations.vue:94 +msgid "Join Call" +msgstr "" + +#: frontend/src/components/Modals/Event.vue:74 +msgid "Join Meeting" +msgstr "" + +#. Label of the join_url (Small Text) field in DocType 'LMS Live Class' +#: lms/lms/doctype/lms_live_class/lms_live_class.json +msgid "Join URL" +msgstr "" + +#. Name of a Workspace +#: lms/lms/workspace/lms/lms.json +msgid "LMS" +msgstr "" + +#. Name of a DocType +#: lms/lms/doctype/lms_assessment/lms_assessment.json +msgid "LMS Assessment" +msgstr "" + +#. Name of a DocType +#: lms/lms/doctype/lms_assignment/lms_assignment.json +msgid "LMS Assignment" +msgstr "" + +#. Name of a DocType +#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json +msgid "LMS Assignment Submission" +msgstr "" + +#. Name of a DocType +#: lms/lms/doctype/lms_badge/lms_badge.json +msgid "LMS Badge" +msgstr "" + +#. Name of a DocType +#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json +msgid "LMS Badge Assignment" +msgstr "" + +#. Name of a DocType +#. Option for the 'Payment for Document Type' (Select) field in DocType 'LMS +#. Payment' +#: lms/lms/doctype/lms_batch/lms_batch.json +#: lms/lms/doctype/lms_payment/lms_payment.json +msgid "LMS Batch" +msgstr "" + +#. Name of a DocType +#: lms/lms/doctype/lms_batch_enrollment/lms_batch_enrollment.json +msgid "LMS Batch Enrollment" +msgstr "" + +#. Name of a DocType +#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json +msgid "LMS Batch Feedback" +msgstr "" + +#. Name of a DocType +#: lms/lms/doctype/lms_batch_old/lms_batch_old.json +msgid "LMS Batch Old" +msgstr "" + +#. Name of a DocType +#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json +msgid "LMS Batch Timetable" +msgstr "" + +#. Name of a DocType +#: lms/lms/doctype/lms_category/lms_category.json +msgid "LMS Category" +msgstr "" + +#. Name of a DocType +#: lms/lms/doctype/lms_certificate/lms_certificate.json +msgid "LMS Certificate" +msgstr "" + +#. Name of a DocType +#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json +msgid "LMS Certificate Evaluation" +msgstr "" + +#. Name of a DocType +#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json +msgid "LMS Certificate Request" +msgstr "" + +#. Name of a DocType +#. Option for the 'Payment for Document Type' (Select) field in DocType 'LMS +#. Payment' +#: lms/lms/doctype/lms_course/lms_course.json +#: lms/lms/doctype/lms_payment/lms_payment.json +msgid "LMS Course" +msgstr "" + +#. Name of a DocType +#: lms/lms/doctype/lms_course_interest/lms_course_interest.json +msgid "LMS Course Interest" +msgstr "" + +#. Name of a DocType +#: lms/lms/doctype/lms_course_mentor_mapping/lms_course_mentor_mapping.json +msgid "LMS Course Mentor Mapping" +msgstr "" + +#. Name of a DocType +#: lms/lms/doctype/lms_course_progress/lms_course_progress.json +msgid "LMS Course Progress" +msgstr "" + +#. Name of a DocType +#: lms/lms/doctype/lms_course_review/lms_course_review.json +msgid "LMS Course Review" +msgstr "" + +#. Name of a DocType +#: lms/lms/doctype/lms_enrollment/lms_enrollment.json +msgid "LMS Enrollment" +msgstr "" + +#. Name of a DocType +#: lms/lms/doctype/lms_exercise/lms_exercise.json +msgid "LMS Exercise" +msgstr "" + +#. Name of a DocType +#: lms/job/doctype/lms_job_application/lms_job_application.json +msgid "LMS Job Application" +msgstr "" + +#. Name of a DocType +#: lms/lms/doctype/lms_live_class/lms_live_class.json +msgid "LMS Live Class" +msgstr "" + +#. Name of a DocType +#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json +msgid "LMS Mentor Request" +msgstr "" + +#. Name of a DocType +#: lms/lms/doctype/lms_option/lms_option.json +msgid "LMS Option" +msgstr "" + +#. Name of a DocType +#: lms/lms/doctype/lms_payment/lms_payment.json +msgid "LMS Payment" +msgstr "" + +#. Name of a DocType +#: lms/lms/doctype/lms_program/lms_program.json +msgid "LMS Program" +msgstr "" + +#. Name of a DocType +#: lms/lms/doctype/lms_program_course/lms_program_course.json +msgid "LMS Program Course" +msgstr "" + +#. Name of a DocType +#: lms/lms/doctype/lms_program_member/lms_program_member.json +msgid "LMS Program Member" +msgstr "" + +#. Name of a DocType +#: lms/lms/doctype/lms_question/lms_question.json +msgid "LMS Question" +msgstr "" + +#. Name of a DocType +#: lms/lms/doctype/lms_quiz/lms_quiz.json +msgid "LMS Quiz" +msgstr "" + +#. Name of a DocType +#: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json +msgid "LMS Quiz Question" +msgstr "" + +#. Name of a DocType +#: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json +msgid "LMS Quiz Result" +msgstr "" + +#. Name of a DocType +#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json +msgid "LMS Quiz Submission" +msgstr "" + +#. Name of a DocType +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "LMS Settings" +msgstr "" + +#. Name of a DocType +#: lms/lms/doctype/lms_sidebar_item/lms_sidebar_item.json +msgid "LMS Sidebar Item" +msgstr "" + +#. Name of a DocType +#: lms/lms/doctype/lms_source/lms_source.json +msgid "LMS Source" +msgstr "" + +#. Name of a role +#: lms/job/doctype/job_opportunity/job_opportunity.json +#: lms/job/doctype/lms_job_application/lms_job_application.json +#: lms/lms/doctype/cohort_join_request/cohort_join_request.json +#: lms/lms/doctype/course_chapter/course_chapter.json +#: lms/lms/doctype/function/function.json +#: lms/lms/doctype/industry/industry.json +#: lms/lms/doctype/lms_assignment/lms_assignment.json +#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json +#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json +#: lms/lms/doctype/lms_batch_enrollment/lms_batch_enrollment.json +#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json +#: lms/lms/doctype/lms_certificate/lms_certificate.json +#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json +#: lms/lms/doctype/lms_course_progress/lms_course_progress.json +#: lms/lms/doctype/lms_course_review/lms_course_review.json +#: lms/lms/doctype/lms_enrollment/lms_enrollment.json +#: lms/lms/doctype/lms_live_class/lms_live_class.json +#: lms/lms/doctype/lms_quiz/lms_quiz.json +#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json +#: lms/lms/doctype/lms_settings/lms_settings.json +#: lms/lms/doctype/lms_source/lms_source.json +#: lms/lms/doctype/user_skill/user_skill.json +msgid "LMS Student" +msgstr "" + +#. Name of a DocType +#: lms/lms/doctype/lms_timetable_legend/lms_timetable_legend.json +msgid "LMS Timetable Legend" +msgstr "" + +#. Name of a DocType +#: lms/lms/doctype/lms_timetable_template/lms_timetable_template.json +msgid "LMS Timetable Template" +msgstr "" + +#. Label of the label (Data) field in DocType 'LMS Timetable Legend' +#: lms/lms/doctype/lms_timetable_legend/lms_timetable_legend.json +msgid "Label" +msgstr "" + +#: frontend/src/components/Modals/EditProfile.vue:64 +msgid "Last Name" +msgstr "" + +#. Label of the latest_submission (Link) field in DocType 'Exercise Latest +#. Submission' +#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json +msgid "Latest Submission" +msgstr "" + +#. Label of the launch_file (Code) field in DocType 'Course Chapter' +#: lms/lms/doctype/course_chapter/course_chapter.json +msgid "Launch File" +msgstr "" + +#. Label of the lesson (Link) field in DocType 'Exercise Latest Submission' +#. Label of the lesson (Link) field in DocType 'Exercise Submission' +#. Label of the lesson (Link) field in DocType 'Lesson Reference' +#. Label of the lesson (Link) field in DocType 'LMS Assignment Submission' +#. Label of the lesson (Link) field in DocType 'LMS Course Progress' +#. Label of the lesson (Link) field in DocType 'LMS Exercise' +#. Label of the lesson (Link) field in DocType 'LMS Quiz' +#. Label of the lesson (Link) field in DocType 'Scheduled Flow' +#. Label of a Link in the LMS Workspace +#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json +#: lms/lms/doctype/exercise_submission/exercise_submission.json +#: lms/lms/doctype/lesson_reference/lesson_reference.json +#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json +#: lms/lms/doctype/lms_course_progress/lms_course_progress.json +#: lms/lms/doctype/lms_exercise/lms_exercise.json +#: lms/lms/doctype/lms_quiz/lms_quiz.json +#: lms/lms/doctype/scheduled_flow/scheduled_flow.json +#: lms/lms/workspace/lms/lms.json +msgid "Lesson" +msgstr "" + +#. Name of a DocType +#: lms/lms/doctype/lesson_reference/lesson_reference.json +msgid "Lesson Reference" +msgstr "" + +#. Label of the lesson_title (Data) field in DocType 'Scheduled Flow' +#: lms/lms/doctype/scheduled_flow/scheduled_flow.json +msgid "Lesson Title" +msgstr "" + +#. Label of the lessons (Table) field in DocType 'Course Chapter' +#. Group in Course Chapter's connections +#. Label of the lessons (Int) field in DocType 'LMS Course' +#: frontend/src/components/CourseCard.vue:33 +#: frontend/src/components/CourseCardOverlay.vue:99 +#: lms/lms/doctype/course_chapter/course_chapter.json +#: lms/lms/doctype/lms_course/lms_course.json +msgid "Lessons" +msgstr "" + +#: lms/lms/web_template/lms_statistics/lms_statistics.html:14 +#: lms/templates/statistics.html:36 +msgid "Lessons Completed" +msgstr "" + +#: lms/templates/onboarding_header.html:11 +msgid "Lets start setting up your content on the LMS so that you can reclaim time and focus on growth." +msgstr "" + +#. Option for the 'Grade Type' (Select) field in DocType 'Education Detail' +#: lms/lms/doctype/education_detail/education_detail.json +msgid "Letter Grade (e.g. A, B-)" +msgstr "" + +#. Label of the limit_questions_to (Int) field in DocType 'LMS Quiz' +#: frontend/src/pages/QuizForm.vue:108 lms/lms/doctype/lms_quiz/lms_quiz.json +msgid "Limit Questions To" +msgstr "" + +#: lms/lms/doctype/lms_quiz/lms_quiz.py:38 +msgid "Limit cannot be greater than or equal to the number of questions in the quiz." +msgstr "" + +#: frontend/src/pages/ProfileAbout.vue:74 +msgid "LinkedIn" +msgstr "" + +#. Label of the linkedin (Data) field in DocType 'User' +#: lms/fixtures/custom_field.json +msgid "LinkedIn ID" +msgstr "" + +#. Group in Cohort's connections +#. Group in Cohort Subgroup's connections +#: lms/lms/doctype/cohort/cohort.json +#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json +msgid "Links" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Cohort' +#: frontend/src/pages/Courses.vue:281 lms/lms/doctype/cohort/cohort.json +msgid "Live" +msgstr "" + +#. Label of the show_live_class (Check) field in DocType 'LMS Settings' +#: frontend/src/components/LiveClass.vue:4 +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Live Class" +msgstr "" + +#. Label of the livecode_url (Data) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "LiveCode URL" +msgstr "" + +#: frontend/src/components/Members.vue:108 +#: frontend/src/pages/Assignments.vue:71 frontend/src/pages/Batches.vue:94 +#: frontend/src/pages/CertifiedParticipants.vue:79 +#: frontend/src/pages/Courses.vue:90 +#: frontend/src/pages/QuizSubmissionList.vue:39 +#: frontend/src/pages/Quizzes.vue:51 +msgid "Load More" +msgstr "" + +#. Option for the 'Auto Recording' (Select) field in DocType 'LMS Live Class' +#: lms/lms/doctype/lms_live_class/lms_live_class.json +msgid "Local" +msgstr "" + +#. Label of the location (Data) field in DocType 'Job Opportunity' +#. Label of the location (Data) field in DocType 'Education Detail' +#. Label of the location (Data) field in DocType 'Work Experience' +#: frontend/src/pages/JobCreation.vue:26 frontend/src/pages/JobDetail.vue:92 +#: lms/job/doctype/job_opportunity/job_opportunity.json +#: lms/lms/doctype/education_detail/education_detail.json +#: lms/lms/doctype/work_experience/work_experience.json +msgid "Location" +msgstr "" + +#. Label of the location_preference (Select) field in DocType 'User' +#: lms/fixtures/custom_field.json +msgid "Location Preference" +msgstr "" + +#: frontend/src/components/NoPermission.vue:28 +#: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:188 +#: frontend/src/pages/Lesson.vue:25 +msgid "Login" +msgstr "" + +#: frontend/src/components/UserDropdown.vue:174 +msgid "Login to Frappe Cloud?" +msgstr "" + +#: frontend/src/pages/JobDetail.vue:54 +msgid "Login to apply" +msgstr "" + +#: lms/templates/emails/payment_reminder.html:23 +msgid "Looking forward to seeing you enrolled!" +msgstr "" + +#. Label of the default_home (Check) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Make LMS the default home" +msgstr "" + +#: frontend/src/components/Modals/AnnouncementModal.vue:5 +#: frontend/src/pages/Batch.vue:16 +msgid "Make an Announcement" +msgstr "" + +#: frontend/src/pages/Billing.vue:123 +msgid "Make sure to enter the correct billing name as the same will be used in your invoice." +msgstr "" + +#: frontend/src/components/BatchOverlay.vue:60 +msgid "Manage Batch" +msgstr "" + +#. Option for the 'Role' (Select) field in DocType 'Cohort Staff' +#: lms/lms/doctype/cohort_staff/cohort_staff.json +msgid "Manager" +msgstr "" + +#. Option for the 'User Category' (Select) field in DocType 'User' +#: lms/fixtures/custom_field.json lms/templates/signup-form.html:24 +msgid "Manager (Sales/Marketing/Customer)" +msgstr "" + +#. Label of the manifest_file (Code) field in DocType 'Course Chapter' +#: lms/lms/doctype/course_chapter/course_chapter.json +msgid "Manifest File" +msgstr "" + +#: frontend/src/components/Quiz.vue:96 +msgid "Mark" +msgstr "" + +#: frontend/src/pages/Notifications.vue:12 +msgid "Mark all as read" +msgstr "" + +#: frontend/src/pages/Notifications.vue:40 +msgid "Mark as read" +msgstr "" + +#. Label of the marks (Int) field in DocType 'LMS Quiz Question' +#. Label of the marks (Int) field in DocType 'LMS Quiz Result' +#: frontend/src/components/Modals/Question.vue:50 +#: frontend/src/components/Modals/Question.vue:99 +#: frontend/src/components/Quiz.vue:96 frontend/src/pages/QuizForm.vue:393 +#: frontend/src/pages/QuizSubmission.vue:65 +#: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json +#: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json +#: lms/templates/quiz/quiz.html:59 +msgid "Marks" +msgstr "" + +#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:41 +msgid "Marks for question number {0} cannot be greater than the marks allotted for that question." +msgstr "" + +#. Label of the marks_out_of (Int) field in DocType 'LMS Quiz Result' +#: frontend/src/pages/QuizSubmission.vue:68 +#: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json +msgid "Marks out of" +msgstr "" + +#. Label of the max_attempts (Int) field in DocType 'LMS Quiz' +#: lms/lms/doctype/lms_quiz/lms_quiz.json +msgid "Max Attempts" +msgstr "" + +#: frontend/src/pages/QuizForm.vue:58 +msgid "Maximum Attempts" +msgstr "" + +#. Label of the medium (Select) field in DocType 'LMS Batch' +#: frontend/src/pages/BatchForm.vue:185 +#: lms/lms/doctype/lms_batch/lms_batch.json +#: lms/public/js/common_functions.js:309 +msgid "Medium" +msgstr "" + +#. Label of the medium (Data) field in DocType 'User' +#: lms/fixtures/custom_field.json +msgid "Medium ID" +msgstr "" + +#: lms/templates/emails/batch_confirmation.html:15 +#: lms/templates/emails/batch_start_reminder.html:19 +msgid "Medium:" +msgstr "" + +#. Label of the member (Link) field in DocType 'Exercise Latest Submission' +#. Label of the member (Link) field in DocType 'Exercise Submission' +#. Label of the member (Link) field in DocType 'LMS Assignment Submission' +#. Label of the member (Link) field in DocType 'LMS Badge Assignment' +#. Label of the member (Link) field in DocType 'LMS Batch Enrollment' +#. Label of the member (Link) field in DocType 'LMS Batch Feedback' +#. Label of the member (Link) field in DocType 'LMS Certificate' +#. Label of the member (Link) field in DocType 'LMS Certificate Evaluation' +#. Label of the member (Link) field in DocType 'LMS Certificate Request' +#. Label of the member (Link) field in DocType 'LMS Course Progress' +#. Label of the member (Link) field in DocType 'LMS Enrollment' +#. Option for the 'Role' (Select) field in DocType 'LMS Enrollment' +#. Label of the member (Link) field in DocType 'LMS Mentor Request' +#. Label of the member (Link) field in DocType 'LMS Payment' +#. Label of the member (Link) field in DocType 'LMS Program Member' +#. Label of the member (Link) field in DocType 'LMS Quiz Submission' +#: frontend/src/pages/AssignmentSubmissionList.vue:14 +#: frontend/src/pages/QuizSubmission.vue:31 +#: frontend/src/pages/QuizSubmissionList.vue:102 +#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json +#: lms/lms/doctype/exercise_submission/exercise_submission.json +#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json +#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json +#: lms/lms/doctype/lms_batch_enrollment/lms_batch_enrollment.json +#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json +#: lms/lms/doctype/lms_certificate/lms_certificate.json +#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json +#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json +#: lms/lms/doctype/lms_course_progress/lms_course_progress.json +#: lms/lms/doctype/lms_enrollment/lms_enrollment.json +#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json +#: lms/lms/doctype/lms_payment/lms_payment.json +#: lms/lms/doctype/lms_program_member/lms_program_member.json +#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json +#: lms/lms/report/course_progress_summary/course_progress_summary.py:64 +msgid "Member" +msgstr "" + +#. Label of the member_cohort (Link) field in DocType 'Exercise Latest +#. Submission' +#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json +msgid "Member Cohort" +msgstr "" + +#. Label of the member_email (Link) field in DocType 'Exercise Latest +#. Submission' +#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json +msgid "Member Email" +msgstr "" + +#. Label of the member_image (Attach Image) field in DocType 'LMS Batch +#. Feedback' +#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json +msgid "Member Image" +msgstr "" + +#. Label of the member_name (Data) field in DocType 'LMS Assignment Submission' +#. Label of the member_name (Data) field in DocType 'LMS Badge Assignment' +#. Label of the member_name (Data) field in DocType 'LMS Batch Enrollment' +#. Label of the member_name (Data) field in DocType 'LMS Batch Feedback' +#. Label of the member_name (Data) field in DocType 'LMS Certificate' +#. Label of the member_name (Data) field in DocType 'LMS Certificate +#. Evaluation' +#. Label of the member_name (Data) field in DocType 'LMS Certificate Request' +#. Label of the member_name (Data) field in DocType 'LMS Course Progress' +#. Label of the member_name (Data) field in DocType 'LMS Enrollment' +#. Label of the member_name (Data) field in DocType 'LMS Mentor Request' +#. Label of the member_name (Data) field in DocType 'LMS Quiz Submission' +#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json +#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json +#: lms/lms/doctype/lms_batch_enrollment/lms_batch_enrollment.json +#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json +#: lms/lms/doctype/lms_certificate/lms_certificate.json +#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json +#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json +#: lms/lms/doctype/lms_course_progress/lms_course_progress.json +#: lms/lms/doctype/lms_enrollment/lms_enrollment.json +#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json +#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json +#: lms/lms/report/course_progress_summary/course_progress_summary.py:71 +msgid "Member Name" +msgstr "" + +#. Label of the member_subgroup (Link) field in DocType 'Exercise Latest +#. Submission' +#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json +msgid "Member Subgroup" +msgstr "" + +#. Label of the member_type (Select) field in DocType 'LMS Enrollment' +#: lms/lms/doctype/lms_enrollment/lms_enrollment.json +msgid "Member Type" +msgstr "" + +#. Label of the member_username (Data) field in DocType 'LMS Batch Enrollment' +#: lms/lms/doctype/lms_batch_enrollment/lms_batch_enrollment.json +msgid "Member Username" +msgstr "" + +#: frontend/src/pages/ProgramForm.vue:254 +msgid "Member added to program" +msgstr "" + +#: lms/lms/doctype/lms_batch_enrollment/lms_batch_enrollment.py:25 +msgid "Member already enrolled in this batch" +msgstr "" + +#: lms/lms/doctype/lms_program/lms_program.py:29 +msgid "Member {0} has already been added to this batch." +msgstr "" + +#. Group in LMS Batch Old's connections +#: lms/lms/doctype/lms_batch_old/lms_batch_old.json +msgid "Members" +msgstr "" + +#. Label of the membership (Select) field in DocType 'LMS Batch Old' +#: lms/lms/doctype/lms_batch_old/lms_batch_old.json +msgid "Membership" +msgstr "" + +#. Label of the member_username (Data) field in DocType 'LMS Enrollment' +#: lms/lms/doctype/lms_enrollment/lms_enrollment.json +msgid "Memeber Username" +msgstr "" + +#. Option for the 'Required Role' (Select) field in DocType 'Cohort Web Page' +#. Label of the mentor (Link) field in DocType 'LMS Course Mentor Mapping' +#. Option for the 'Member Type' (Select) field in DocType 'LMS Enrollment' +#: lms/lms/doctype/cohort_web_page/cohort_web_page.json +#: lms/lms/doctype/lms_course_mentor_mapping/lms_course_mentor_mapping.json +#: lms/lms/doctype/lms_enrollment/lms_enrollment.json +msgid "Mentor" +msgstr "" + +#. Label of the mentor_name (Data) field in DocType 'LMS Course Mentor Mapping' +#: lms/lms/doctype/lms_course_mentor_mapping/lms_course_mentor_mapping.json +msgid "Mentor Name" +msgstr "" + +#. Label of the mentor_request_section (Section Break) field in DocType 'LMS +#. Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Mentor Request" +msgstr "" + +#. Label of the mentor_request_creation (Link) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +#: lms/patches/create_mentor_request_email_templates.py:11 +#: lms/patches/create_mentor_request_email_templates.py:18 +#: lms/patches/create_mentor_request_email_templates.py:28 +msgid "Mentor Request Creation Template" +msgstr "" + +#. Label of the mentor_request_status_update (Link) field in DocType 'LMS +#. Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +#: lms/patches/create_mentor_request_email_templates.py:31 +#: lms/patches/create_mentor_request_email_templates.py:38 +#: lms/patches/create_mentor_request_email_templates.py:48 +msgid "Mentor Request Status Update Template" +msgstr "" + +#. Label of the meta_description (Small Text) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Meta Description" +msgstr "" + +#. Label of the meta_image (Attach Image) field in DocType 'LMS Batch' +#: frontend/src/pages/BatchForm.vue:44 lms/lms/doctype/lms_batch/lms_batch.json +#: lms/public/js/common_functions.js:362 +msgid "Meta Image" +msgstr "" + +#. Label of the milestone (Check) field in DocType 'LMS Batch Timetable' +#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json +msgid "Milestone" +msgstr "" + +#: frontend/src/pages/Statistics.vue:81 +msgid "Milestones" +msgstr "" + +#: lms/lms/doctype/lms_question/lms_question.py:48 +msgid "Minimum two options are required for multiple choice questions." +msgstr "" + +#. Name of a role +#: frontend/src/pages/ProfileRoles.vue:10 +#: lms/lms/doctype/course_evaluator/course_evaluator.json +#: lms/lms/doctype/course_lesson/course_lesson.json +#: lms/lms/doctype/lms_assignment/lms_assignment.json +#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json +#: lms/lms/doctype/lms_batch/lms_batch.json +#: lms/lms/doctype/lms_batch_enrollment/lms_batch_enrollment.json +#: lms/lms/doctype/lms_category/lms_category.json +#: lms/lms/doctype/lms_certificate/lms_certificate.json +#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json +#: lms/lms/doctype/lms_enrollment/lms_enrollment.json +#: lms/lms/doctype/lms_live_class/lms_live_class.json +#: lms/lms/doctype/lms_program/lms_program.json +#: lms/lms/doctype/lms_question/lms_question.json +#: lms/lms/doctype/lms_quiz/lms_quiz.json +#: lms/lms/doctype/lms_source/lms_source.json +#: lms/lms/doctype/lms_timetable_template/lms_timetable_template.json +msgid "Moderator" +msgstr "" + +#: lms/lms/doctype/lms_badge/lms_badge.js:40 +msgid "Modified By" +msgstr "" + +#: lms/lms/api.py:216 +msgid "Module Name is incorrect or does not exist." +msgstr "" + +#: lms/lms/api.py:212 +msgid "Module is incorrect." +msgstr "" + +#. Option for the 'Day' (Select) field in DocType 'Evaluator Schedule' +#. Option for the 'Day' (Select) field in DocType 'LMS Certificate Request' +#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json +#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json +msgid "Monday" +msgstr "" + +#: frontend/src/components/AppSidebar.vue:546 +msgid "Monetization" +msgstr "" + +#: frontend/src/components/AppSidebar.vue:39 +msgid "More" +msgstr "" + +#. Label of the multiple (Check) field in DocType 'LMS Question' +#: lms/lms/doctype/lms_question/lms_question.json +msgid "Multiple Correct Answers" +msgstr "" + +#: frontend/src/pages/ProfileEvaluator.vue:4 +msgid "My availability" +msgstr "" + +#: frontend/src/pages/ProfileEvaluator.vue:113 +msgid "My calendar" +msgstr "" + +#. Option for the 'Event' (Select) field in DocType 'LMS Badge' +#: frontend/src/pages/Assignments.vue:18 frontend/src/pages/Batches.vue:17 +#: frontend/src/pages/Courses.vue:17 frontend/src/pages/Courses.vue:284 +#: frontend/src/pages/Programs.vue:14 lms/lms/doctype/lms_badge/lms_badge.json +msgid "New" +msgstr "" + +#: frontend/src/pages/AssignmentForm.vue:181 +#: frontend/src/pages/AssignmentForm.vue:197 +msgid "New Assignment" +msgstr "" + +#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:43 +msgid "New Assignment Submission" +msgstr "" + +#: lms/public/js/common_functions.js:255 lms/www/lms.py:134 +msgid "New Batch" +msgstr "" + +#: frontend/src/pages/CourseForm.vue:577 lms/www/lms.py:78 +msgid "New Course" +msgstr "" + +#: frontend/src/pages/Jobs.vue:23 +msgid "New Job" +msgstr "" + +#: lms/job/doctype/lms_job_application/lms_job_application.py:27 +msgid "New Job Applicant" +msgstr "" + +#: frontend/src/pages/Programs.vue:105 +msgid "New Program" +msgstr "" + +#: frontend/src/pages/ProgramForm.vue:133 +msgid "New Program Course" +msgstr "" + +#: frontend/src/pages/ProgramForm.vue:134 +msgid "New Program Member" +msgstr "" + +#: frontend/src/pages/QuizForm.vue:123 +msgid "New Question" +msgstr "" + +#: frontend/src/pages/QuizForm.vue:453 frontend/src/pages/QuizForm.vue:461 +#: frontend/src/pages/Quizzes.vue:18 +msgid "New Quiz" +msgstr "" + +#: lms/www/new-sign-up.html:3 +msgid "New Sign Up" +msgstr "" + +#: lms/lms/utils.py:606 +msgid "New comment in batch {0}" +msgstr "" + +#: lms/lms/utils.py:599 +msgid "New reply on the topic {0} in course {1}" +msgstr "" + +#: frontend/src/components/Discussions.vue:4 +#: frontend/src/components/Discussions.vue:59 +msgid "New {0}" +msgstr "" + +#: frontend/src/components/Quiz.vue:213 frontend/src/pages/Lesson.vue:85 +msgid "Next" +msgstr "" + +#: lms/templates/quiz/quiz.html:125 +msgid "Next Question" +msgstr "" + +#: frontend/src/components/Assessments.vue:75 lms/templates/assessments.html:58 +msgid "No Assessments" +msgstr "" + +#: lms/templates/notifications.html:26 +msgid "No Notifications" +msgstr "" + +#: frontend/src/components/Quiz.vue:278 +msgid "No Quiz submissions found" +msgstr "" + +#. Option for the 'Auto Recording' (Select) field in DocType 'LMS Live Class' +#: lms/lms/doctype/lms_live_class/lms_live_class.json +msgid "No Recording" +msgstr "" + +#: lms/templates/upcoming_evals.html:43 +msgid "No Upcoming Evaluations" +msgstr "" + +#: frontend/src/components/Annoucements.vue:24 +msgid "No announcements" +msgstr "" + +#: frontend/src/pages/Assignments.vue:56 +msgid "No assignments found" +msgstr "" + +#: frontend/src/pages/Batches.vue:79 +msgid "No batches found" +msgstr "" + +#: lms/templates/certificates_section.html:23 +msgid "No certificates" +msgstr "" + +#: frontend/src/components/BatchCourses.vue:67 +msgid "No courses added" +msgstr "" + +#: lms/templates/courses_created.html:14 +msgid "No courses created" +msgstr "" + +#: frontend/src/pages/Courses.vue:75 +msgid "No courses found" +msgstr "" + +#: frontend/src/pages/Programs.vue:81 +msgid "No courses in this program" +msgstr "" + +#: lms/templates/courses_under_review.html:14 +msgid "No courses under review" +msgstr "" + +#: frontend/src/components/BatchFeedback.vue:101 +msgid "No feedback received yet." +msgstr "" + +#: frontend/src/pages/ProfileAbout.vue:12 +msgid "No introduction" +msgstr "" + +#: frontend/src/pages/Jobs.vue:80 +msgid "No jobs found" +msgstr "" + +#: frontend/src/components/LiveClass.vue:71 +msgid "No live classes scheduled" +msgstr "" + +#: frontend/src/pages/CertifiedParticipants.vue:89 +msgid "No participants found" +msgstr "" + +#: frontend/src/pages/Programs.vue:91 +msgid "No programs found" +msgstr "" + +#: frontend/src/pages/QuizSubmissionList.vue:52 +msgid "No quiz submissions found. Please check again later." +msgstr "" + +#: frontend/src/pages/Quizzes.vue:61 +msgid "No quizzes found" +msgstr "" + +#: frontend/src/components/Modals/EvaluationModal.vue:61 +msgid "No slots available for this date." +msgstr "" + +#: frontend/src/pages/AssignmentSubmissionList.vue:67 +#: frontend/src/pages/QuizSubmissionList.vue:49 +msgid "No submissions" +msgstr "" + +#: lms/templates/course_list.html:13 +msgid "No {0}" +msgstr "" + +#: lms/templates/quiz/quiz.html:147 +msgid "No." +msgstr "" + +#: lms/lms/user.py:29 +msgid "Not Allowed" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'LMS Assignment +#. Submission' +#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json +msgid "Not Applicable" +msgstr "" + +#: lms/templates/assessments.html:48 +msgid "Not Attempted" +msgstr "" + +#: lms/lms/widgets/NoPreviewModal.html:6 +msgid "Not Available for Preview" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'LMS Assignment +#. Submission' +#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json +msgid "Not Graded" +msgstr "" + +#: frontend/src/components/NoPermission.vue:7 frontend/src/pages/Batch.vue:156 +msgid "Not Permitted" +msgstr "" + +#: frontend/src/components/Assignment.vue:36 +#: frontend/src/components/BrandSettings.vue:10 +#: frontend/src/components/PaymentSettings.vue:9 +#: frontend/src/components/SettingDetails.vue:10 +#: frontend/src/pages/QuizSubmission.vue:9 +msgid "Not Saved" +msgstr "" + +#: frontend/src/pages/Notifications.vue:54 +msgid "Nothing to see here." +msgstr "" + +#. Label of the notifications (Check) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Notifications" +msgstr "" + +#: lms/lms/widgets/NoPreviewModal.html:30 +msgid "Notify me when available" +msgstr "" + +#: frontend/src/pages/BatchForm.vue:157 +msgid "Number of seats available" +msgstr "" + +#. Label of the sb_00 (Section Break) field in DocType 'Zoom Settings' +#: lms/lms/doctype/zoom_settings/zoom_settings.json +msgid "OAuth Client ID" +msgstr "" + +#. Option for the 'Location Preference' (Select) field in DocType 'User' +#: lms/fixtures/custom_field.json +msgid "Office close to Home" +msgstr "" + +#. Option for the 'Medium' (Select) field in DocType 'LMS Batch' +#: lms/lms/doctype/lms_batch/lms_batch.json +msgid "Offline" +msgstr "" + +#: lms/templates/emails/certification.html:16 +msgid "Once again, congratulations on this significant accomplishment." +msgstr "" + +#: frontend/src/components/Assignment.vue:60 +msgid "Once the moderator grades your submission, you'll find the details here." +msgstr "" + +#. Option for the 'Medium' (Select) field in DocType 'LMS Batch' +#: lms/lms/doctype/lms_batch/lms_batch.json +msgid "Online" +msgstr "" + +#: frontend/src/pages/ProgramForm.vue:157 +msgid "Only courses for which self learning is disabled can be added to program." +msgstr "" + +#: lms/templates/assignment.html:6 +msgid "Only files of type {0} will be accepted." +msgstr "" + +#: frontend/src/pages/CourseForm.vue:507 frontend/src/utils/index.js:550 +msgid "Only image file is allowed." +msgstr "" + +#: frontend/src/components/Modals/ChapterModal.vue:221 +msgid "Only zip files are allowed" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Job Opportunity' +#. Option for the 'Membership' (Select) field in DocType 'LMS Batch Old' +#: frontend/src/pages/QuizForm.vue:17 +#: lms/job/doctype/job_opportunity/job_opportunity.json +#: lms/lms/doctype/lms_batch_old/lms_batch_old.json +msgid "Open" +msgstr "" + +#: lms/templates/emails/assignment_submission.html:8 +msgid "Open Assignment" +msgstr "" + +#: lms/templates/emails/lms_message.html:13 +msgid "Open Course" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'LMS Question' +#. Option for the 'Type' (Select) field in DocType 'LMS Quiz Question' +#: lms/lms/doctype/lms_question/lms_question.json +#: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json +msgid "Open Ended" +msgstr "" + +#. Label of the option (Data) field in DocType 'LMS Option' +#: frontend/src/components/Modals/Question.vue:64 +#: lms/lms/doctype/lms_option/lms_option.json +msgid "Option" +msgstr "" + +#. Label of the option_1 (Small Text) field in DocType 'LMS Question' +#: lms/lms/doctype/lms_question/lms_question.json +msgid "Option 1" +msgstr "" + +#. Label of the option_2 (Small Text) field in DocType 'LMS Question' +#: lms/lms/doctype/lms_question/lms_question.json +msgid "Option 2" +msgstr "" + +#. Label of the option_3 (Small Text) field in DocType 'LMS Question' +#: lms/lms/doctype/lms_question/lms_question.json +msgid "Option 3" +msgstr "" + +#. Label of the option_4 (Small Text) field in DocType 'LMS Question' +#: lms/lms/doctype/lms_question/lms_question.json +msgid "Option 4" +msgstr "" + +#. Label of the order_id (Data) field in DocType 'LMS Payment' +#: lms/lms/doctype/lms_payment/lms_payment.json +msgid "Order ID" +msgstr "" + +#: frontend/src/pages/JobDetail.vue:81 +msgid "Organisation" +msgstr "" + +#. Label of the organization (Data) field in DocType 'Certification' +#: lms/lms/doctype/certification/certification.json +msgid "Organization" +msgstr "" + +#: frontend/src/pages/Billing.vue:32 +msgid "Original Amount" +msgstr "" + +#. Option for the 'User Category' (Select) field in DocType 'User' +#: lms/fixtures/custom_field.json lms/templates/signup-form.html:28 +msgid "Others" +msgstr "" + +#: lms/lms/doctype/lms_badge/lms_badge.js:39 +msgid "Owner" +msgstr "" + +#. Label of the pan (Data) field in DocType 'LMS Payment' +#: lms/lms/doctype/lms_payment/lms_payment.json +msgid "PAN" +msgstr "" + +#. Option for the 'File Type' (Select) field in DocType 'Course Lesson' +#. Option for the 'Type' (Select) field in DocType 'LMS Assignment' +#. Option for the 'Type' (Select) field in DocType 'LMS Assignment Submission' +#: lms/lms/doctype/course_lesson/course_lesson.json +#: lms/lms/doctype/lms_assignment/lms_assignment.json +#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json +msgid "PDF" +msgstr "" + +#. Label of the pages (Table) field in DocType 'Cohort' +#: lms/lms/doctype/cohort/cohort.json +msgid "Pages" +msgstr "" + +#. Label of the paid_batch (Check) field in DocType 'LMS Batch' +#: frontend/src/pages/BatchForm.vue:205 +#: lms/lms/doctype/lms_batch/lms_batch.json +#: lms/public/js/common_functions.js:373 +msgid "Paid Batch" +msgstr "" + +#. Label of the paid_certificate (Check) field in DocType 'LMS Course' +#: frontend/src/pages/CourseForm.vue:214 +#: lms/lms/doctype/lms_course/lms_course.json +msgid "Paid Certificate" +msgstr "" + +#: frontend/src/components/CourseCardOverlay.vue:133 +msgid "Paid Certificate after Evaluation" +msgstr "" + +#. Label of the paid_course (Check) field in DocType 'LMS Course' +#: frontend/src/pages/CourseForm.vue:204 +#: lms/lms/doctype/lms_course/lms_course.json +msgid "Paid Course" +msgstr "" + +#: frontend/src/pages/Billing.vue:115 +msgid "Pan Number" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Job Opportunity' +#: frontend/src/pages/Jobs.vue:162 +#: lms/job/doctype/job_opportunity/job_opportunity.json +msgid "Part Time" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'LMS Course Progress' +#: lms/lms/doctype/lms_course_progress/lms_course_progress.json +msgid "Partially Complete" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'LMS Assignment +#. Submission' +#. Option for the 'Status' (Select) field in DocType 'LMS Certificate +#. Evaluation' +#: frontend/src/components/Modals/Event.vue:352 +#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json +#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json +msgid "Pass" +msgstr "" + +#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz' +#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz Submission' +#: frontend/src/pages/QuizForm.vue:72 frontend/src/pages/Quizzes.vue:129 +#: lms/lms/doctype/lms_quiz/lms_quiz.json +#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json +msgid "Passing Percentage" +msgstr "" + +#. Label of the password (Password) field in DocType 'LMS Live Class' +#: lms/lms/doctype/lms_live_class/lms_live_class.json +msgid "Password" +msgstr "" + +#: frontend/src/pages/CourseForm.vue:109 +msgid "Paste the youtube link of a short video introducing the course" +msgstr "" + +#. Label of the payment (Link) field in DocType 'LMS Batch Enrollment' +#. Label of the payment (Link) field in DocType 'LMS Enrollment' +#: frontend/src/pages/BatchForm.vue:199 +#: lms/lms/doctype/lms_batch_enrollment/lms_batch_enrollment.json +#: lms/lms/doctype/lms_enrollment/lms_enrollment.json +msgid "Payment" +msgstr "" + +#. Name of a DocType +#: lms/lms/doctype/payment_country/payment_country.json +msgid "Payment Country" +msgstr "" + +#. Label of the payment_details_section (Section Break) field in DocType 'LMS +#. Payment' +#: lms/lms/doctype/lms_payment/lms_payment.json +msgid "Payment Details" +msgstr "" + +#. Label of the payment_gateway (Data) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Payment Gateway" +msgstr "" + +#. Label of the payment_id (Data) field in DocType 'LMS Payment' +#: lms/lms/doctype/lms_payment/lms_payment.json +msgid "Payment ID" +msgstr "" + +#. Label of the payment_received (Check) field in DocType 'LMS Payment' +#: lms/lms/doctype/lms_payment/lms_payment.json +msgid "Payment Received" +msgstr "" + +#. Label of the payment_reminder_template (Link) field in DocType 'LMS +#. Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Payment Reminder Template" +msgstr "" + +#. Label of the payment_settings_tab (Tab Break) field in DocType 'LMS +#. Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Payment Settings" +msgstr "" + +#: frontend/src/pages/Billing.vue:21 +msgid "Payment for " +msgstr "" + +#. Label of the payment_for_certificate (Check) field in DocType 'LMS Payment' +#: lms/lms/doctype/lms_payment/lms_payment.json +msgid "Payment for Certificate" +msgstr "" + +#. Label of the payment_for_document (Dynamic Link) field in DocType 'LMS +#. Payment' +#: lms/lms/doctype/lms_payment/lms_payment.json +msgid "Payment for Document" +msgstr "" + +#. Label of the payment_for_document_type (Select) field in DocType 'LMS +#. Payment' +#: lms/lms/doctype/lms_payment/lms_payment.json +msgid "Payment for Document Type" +msgstr "" + +#. Label of the payments_app_is_not_installed (HTML) field in DocType 'LMS +#. Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Payments app is not installed" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Cohort Join Request' +#. Option for the 'Status' (Select) field in DocType 'Invite Request' +#. 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:344 +#: lms/lms/doctype/cohort_join_request/cohort_join_request.json +#: lms/lms/doctype/invite_request/invite_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 "" + +#. Label of the percentage (Int) field in DocType 'LMS Quiz Submission' +#: frontend/src/pages/QuizSubmission.vue:44 +#: frontend/src/pages/QuizSubmissionList.vue:113 +#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json +msgid "Percentage" +msgstr "" + +#. Option for the 'Grade Type' (Select) field in DocType 'Education Detail' +#: lms/lms/doctype/education_detail/education_detail.json +msgid "Percentage (e.g. 70%)" +msgstr "" + +#: frontend/src/components/Modals/BatchStudentProgress.vue:35 +msgid "Percentage/Status" +msgstr "" + +#: frontend/src/pages/Billing.vue:99 +msgid "Phone Number" +msgstr "" + +#: frontend/src/components/CourseCardOverlay.vue:169 +msgid "Please Login" +msgstr "" + +#: lms/lms/doctype/lms_settings/lms_settings.py:34 +msgid "Please add {1} for {3} to send calendar invites for evaluations." +msgstr "" + +#: lms/lms/user.py:75 +msgid "Please ask your administrator to verify your sign-up" +msgstr "" + +#: lms/lms/user.py:73 +msgid "Please check your email for verification" +msgstr "" + +#: lms/templates/emails/community_course_membership.html:7 +msgid "Please click on the following button to set your new password" +msgstr "" + +#: lms/lms/utils.py:2032 lms/lms/utils.py:2036 +msgid "Please complete the previous courses in the program to enroll in this course." +msgstr "" + +#: lms/lms/doctype/lms_batch/lms_batch.py:187 +msgid "Please enable Zoom Settings to use this feature." +msgstr "" + +#: frontend/src/components/CourseOutline.vue:325 +msgid "Please enroll for this course to view this lesson" +msgstr "" + +#: frontend/src/components/Quiz.vue:13 +msgid "Please ensure that you complete all the questions in {0} minutes." +msgstr "" + +#: frontend/src/components/Modals/LiveClassModal.vue:170 +msgid "Please enter a title." +msgstr "" + +#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:40 +#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:125 +msgid "Please enter a valid URL." +msgstr "" + +#: frontend/src/components/Modals/LiveClassModal.vue:182 +msgid "Please enter a valid time in the format HH:mm." +msgstr "" + +#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:119 +msgid "Please enter the URL for assignment submission." +msgstr "" + +#: lms/templates/quiz/quiz.js:176 +msgid "Please enter your answer" +msgstr "" + +#: lms/lms/doctype/lms_batch/lms_batch.py:56 +msgid "Please install the Payments app to create a paid batches." +msgstr "" + +#: lms/lms/doctype/lms_course/lms_course.py:53 +msgid "Please install the Payments app to create a paid courses." +msgstr "" + +#: frontend/src/pages/Billing.vue:254 +msgid "Please let us know where you heard about us from." +msgstr "" + +#: frontend/src/components/QuizBlock.vue:5 +msgid "Please login to access the quiz." +msgstr "" + +#: frontend/src/components/NoPermission.vue:25 frontend/src/pages/Batch.vue:167 +msgid "Please login to access this page." +msgstr "" + +#: lms/lms/api.py:208 +msgid "Please login to continue with payment." +msgstr "" + +#: lms/lms/notification/certificate_request_reminder/certificate_request_reminder.html:7 +#: lms/templates/emails/certificate_request_notification.html:7 +msgid "Please prepare well and be on time for the evaluations." +msgstr "" + +#: frontend/src/components/UpcomingEvaluations.vue:102 +msgid "Please schedule an evaluation to get certified." +msgstr "" + +#: frontend/src/components/Modals/LiveClassModal.vue:173 +msgid "Please select a date." +msgstr "" + +#: frontend/src/components/Modals/LiveClassModal.vue:197 +msgid "Please select a duration." +msgstr "" + +#: frontend/src/components/Modals/LiveClassModal.vue:194 +msgid "Please select a future date and time." +msgstr "" + +#: frontend/src/components/Modals/LiveClassModal.vue:176 +msgid "Please select a time." +msgstr "" + +#: frontend/src/components/Modals/LiveClassModal.vue:179 +msgid "Please select a timezone." +msgstr "" + +#: lms/templates/emails/job_report.html:6 +msgid "Please take appropriate action at {0}" +msgstr "" + +#: frontend/src/components/Modals/ChapterModal.vue:178 +msgid "Please upload a SCORM package" +msgstr "" + +#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:122 +msgid "Please upload the assignment file." +msgstr "" + +#. Option for the 'Grade Type' (Select) field in DocType 'Education Detail' +#: lms/lms/doctype/education_detail/education_detail.json +msgid "Point of Score (e.g. 70)" +msgstr "" + +#: frontend/src/components/Modals/Question.vue:85 +msgid "Possibility" +msgstr "" + +#. Label of the possibility_1 (Small Text) field in DocType 'LMS Question' +#: lms/lms/doctype/lms_question/lms_question.json +msgid "Possible Answer 1" +msgstr "" + +#. Label of the possibility_2 (Small Text) field in DocType 'LMS Question' +#: lms/lms/doctype/lms_question/lms_question.json +msgid "Possible Answer 2" +msgstr "" + +#. Label of the possibility_3 (Small Text) field in DocType 'LMS Question' +#: lms/lms/doctype/lms_question/lms_question.json +msgid "Possible Answer 3" +msgstr "" + +#. Label of the possibility_4 (Small Text) field in DocType 'LMS Question' +#: lms/lms/doctype/lms_question/lms_question.json +msgid "Possible Answer 4" +msgstr "" + +#: frontend/src/components/DiscussionReplies.vue:52 +#: frontend/src/components/DiscussionReplies.vue:87 +msgid "Post" +msgstr "" + +#: frontend/src/pages/Billing.vue:95 +msgid "Postal Code" +msgstr "" + +#: frontend/src/pages/JobDetail.vue:114 +msgid "Posted on" +msgstr "" + +#. Name of a DocType +#: lms/lms/doctype/preferred_function/preferred_function.json +msgid "Preferred Function" +msgstr "" + +#. Label of the preferred_functions (Table MultiSelect) field in DocType 'User' +#: lms/fixtures/custom_field.json +msgid "Preferred Functions" +msgstr "" + +#. Label of the preferred_industries (Table MultiSelect) field in DocType +#. 'User' +#: lms/fixtures/custom_field.json +msgid "Preferred Industries" +msgstr "" + +#. Name of a DocType +#: lms/lms/doctype/preferred_industry/preferred_industry.json +msgid "Preferred Industry" +msgstr "" + +#. Label of the preferred_location (Data) field in DocType 'User' +#: lms/fixtures/custom_field.json +msgid "Preferred Location" +msgstr "" + +#. Label of the image (Attach Image) field in DocType 'LMS Course' +#: lms/lms/doctype/lms_course/lms_course.json +msgid "Preview Image" +msgstr "" + +#: frontend/src/pages/CourseForm.vue:107 +msgid "Preview Video" +msgstr "" + +#: frontend/src/pages/Lesson.vue:50 +msgid "Previous" +msgstr "" + +#. Label of the pricing_tab (Tab Break) field in DocType 'LMS Batch' +#: lms/lms/doctype/lms_batch/lms_batch.json +#: lms/public/js/common_functions.js:368 +msgid "Pricing" +msgstr "" + +#. Label of the pricing_tab (Tab Break) field in DocType 'LMS Course' +#: frontend/src/pages/CourseForm.vue:198 +#: lms/lms/doctype/lms_course/lms_course.json +msgid "Pricing and Certification" +msgstr "" + +#. Label of the exception_country (Table MultiSelect) field in DocType 'LMS +#. Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Primary Countries" +msgstr "" + +#. Label of the subgroup (Link) field in DocType 'Cohort Mentor' +#: lms/lms/doctype/cohort_mentor/cohort_mentor.json +msgid "Primary Subgroup" +msgstr "" + +#: lms/lms/utils.py:437 +msgid "Privacy Policy" +msgstr "" + +#. Option for the 'Visibility' (Select) field in DocType 'LMS Batch Old' +#: lms/lms/doctype/lms_batch_old/lms_batch_old.json +msgid "Private" +msgstr "" + +#. Description of the 'Hide my Private Information from others' (Check) field +#. in DocType 'User' +#: lms/fixtures/custom_field.json +msgid "Private Information includes your Grade and Work Environment Preferences" +msgstr "" + +#: frontend/src/pages/Billing.vue:129 +msgid "Proceed to Payment" +msgstr "" + +#. Label of the profession (Data) field in DocType 'User' +#: lms/fixtures/custom_field.json +msgid "Profession" +msgstr "" + +#: frontend/src/components/Modals/EditProfile.vue:37 +msgid "Profile Image" +msgstr "" + +#: frontend/src/pages/ProgramForm.vue:155 +msgid "Program Course" +msgstr "" + +#. Label of the program_courses (Table) field in DocType 'LMS Program' +#: frontend/src/pages/ProgramForm.vue:17 +#: lms/lms/doctype/lms_program/lms_program.json +msgid "Program Courses" +msgstr "" + +#: frontend/src/pages/ProgramForm.vue:170 +msgid "Program Member" +msgstr "" + +#. Label of the program_members (Table) field in DocType 'LMS Program' +#: frontend/src/pages/ProgramForm.vue:79 +#: lms/lms/doctype/lms_program/lms_program.json +msgid "Program Members" +msgstr "" + +#: frontend/src/pages/Programs.vue:219 lms/www/lms.py:273 +msgid "Programs" +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/BatchStudents.vue:75 +#: frontend/src/components/Modals/BatchStudentProgress.vue:82 +#: lms/lms/doctype/lms_enrollment/lms_enrollment.json +#: lms/lms/doctype/lms_program_member/lms_program_member.json +msgid "Progress" +msgstr "" + +#: lms/lms/report/course_progress_summary/course_progress_summary.py:77 +msgid "Progress (%)" +msgstr "" + +#. Option for the 'Required Role' (Select) field in DocType 'Cohort Web Page' +#. Option for the 'Visibility' (Select) field in DocType 'LMS Batch Old' +#: lms/lms/doctype/cohort_web_page/cohort_web_page.json +#: lms/lms/doctype/lms_batch_old/lms_batch_old.json +msgid "Public" +msgstr "" + +#. Label of the published (Check) field in DocType 'LMS Certificate' +#: lms/lms/doctype/lms_certificate/lms_certificate.json +msgid "Publish on Participant Page" +msgstr "" + +#. Label of the published (Check) field in DocType 'LMS Batch' +#. Label of the published (Check) field in DocType 'LMS Course' +#: frontend/src/components/Modals/BulkCertificates.vue:51 +#: frontend/src/components/Modals/Event.vue:108 +#: frontend/src/pages/BatchForm.vue:27 frontend/src/pages/CourseForm.vue:168 +#: lms/lms/doctype/lms_batch/lms_batch.json +#: lms/lms/doctype/lms_course/lms_course.json +#: lms/public/js/common_functions.js:266 +msgid "Published" +msgstr "" + +#: lms/lms/web_template/lms_statistics/lms_statistics.html:14 +#: lms/templates/statistics.html:4 +msgid "Published Courses" +msgstr "" + +#. Label of the published_on (Date) field in DocType 'LMS Course' +#: frontend/src/pages/CourseForm.vue:172 +#: lms/lms/doctype/lms_course/lms_course.json +msgid "Published On" +msgstr "" + +#. Label of the purchased_certificate (Check) field in DocType 'LMS Enrollment' +#: lms/lms/doctype/lms_enrollment/lms_enrollment.json +msgid "Purchased Certificate" +msgstr "" + +#. Label of the question (Small Text) field in DocType 'Course Lesson' +#. Label of the question (Text Editor) field in DocType 'LMS Assignment' +#. Label of the question (Text Editor) field in DocType 'LMS Assignment +#. Submission' +#. Label of the question (Text Editor) field in DocType 'LMS Question' +#. Label of the question (Link) field in DocType 'LMS Quiz Question' +#. Label of the question (Text) field in DocType 'LMS Quiz Result' +#: frontend/src/components/Assignment.vue:20 +#: frontend/src/components/Modals/Question.vue:38 +#: frontend/src/pages/AssignmentForm.vue:45 frontend/src/pages/QuizForm.vue:388 +#: lms/lms/doctype/course_lesson/course_lesson.json +#: lms/lms/doctype/lms_assignment/lms_assignment.json +#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json +#: lms/lms/doctype/lms_question/lms_question.json +#: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json +#: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json +#: lms/templates/quiz/quiz.html:104 +msgid "Question" +msgstr "" + +#: lms/templates/quiz/quiz.html:62 +msgid "Question " +msgstr "" + +#. Label of the question_detail (Text) field in DocType 'LMS Quiz Question' +#: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json +msgid "Question Detail" +msgstr "" + +#. Label of the question_name (Link) field in DocType 'LMS Quiz Result' +#: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json +msgid "Question Name" +msgstr "" + +#: frontend/src/components/Modals/Question.vue:270 +msgid "Question added successfully" +msgstr "" + +#: frontend/src/components/Modals/Question.vue:322 +msgid "Question updated successfully" +msgstr "" + +#: frontend/src/components/Quiz.vue:88 +msgid "Question {0}" +msgstr "" + +#: frontend/src/components/Quiz.vue:190 +msgid "Question {0} of {1}" +msgstr "" + +#. Label of the questions (Table) field in DocType 'LMS Quiz' +#: frontend/src/pages/QuizForm.vue:117 lms/lms/doctype/lms_quiz/lms_quiz.json +msgid "Questions" +msgstr "" + +#: frontend/src/pages/QuizForm.vue:430 +msgid "Questions deleted successfully" +msgstr "" + +#. Label of the quiz (Link) field in DocType 'LMS Quiz Submission' +#. Label of a Link in the LMS Workspace +#: frontend/src/pages/QuizSubmission.vue:26 frontend/src/utils/quiz.js:25 +#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json +#: lms/lms/workspace/lms/lms.json +msgid "Quiz" +msgstr "" + +#. Label of the quiz_id (Data) field in DocType 'Course Lesson' +#: lms/lms/doctype/course_lesson/course_lesson.json +msgid "Quiz ID" +msgstr "" + +#. Label of a Link in the LMS Workspace +#: frontend/src/pages/QuizPage.vue:57 lms/lms/workspace/lms/lms.json +msgid "Quiz Submission" +msgstr "" + +#: frontend/src/pages/QuizSubmission.vue:131 +#: frontend/src/pages/QuizSubmissionList.vue:122 +#: frontend/src/pages/QuizSubmissionList.vue:127 +msgid "Quiz Submissions" +msgstr "" + +#: frontend/src/components/Quiz.vue:227 +msgid "Quiz Summary" +msgstr "" + +#. Label of the quiz_title (Data) field in DocType 'LMS Quiz Submission' +#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json +msgid "Quiz Title" +msgstr "" + +#: frontend/src/pages/QuizForm.vue:342 +msgid "Quiz created successfully" +msgstr "" + +#: lms/plugins.py:96 +msgid "Quiz is not available to Guest users. Please login to continue." +msgstr "" + +#: frontend/src/pages/QuizForm.vue:361 +msgid "Quiz updated successfully" +msgstr "" + +#. Description of the 'Quiz ID' (Data) field in DocType 'Course Lesson' +#: lms/lms/doctype/course_lesson/course_lesson.json +msgid "Quiz will appear at the bottom of the lesson." +msgstr "" + +#: frontend/src/components/AppSidebar.vue:530 +#: frontend/src/pages/QuizForm.vue:441 frontend/src/pages/Quizzes.vue:140 +#: frontend/src/pages/Quizzes.vue:150 lms/www/lms.py:229 +msgid "Quizzes" +msgstr "" + +#. Label of the rating (Rating) field in DocType 'LMS Certificate Evaluation' +#. 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:115 +#: frontend/src/components/Modals/Event.vue:86 +#: frontend/src/components/Modals/ReviewModal.vue:20 +#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json +#: lms/lms/doctype/lms_course/lms_course.json +#: lms/lms/doctype/lms_course_review/lms_course_review.json +#: lms/templates/reviews.html:125 +msgid "Rating" +msgstr "" + +#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.py:17 +msgid "Rating cannot be 0" +msgstr "" + +#. Option for the 'Stage' (Select) field in DocType 'LMS Batch Old' +#: lms/lms/doctype/lms_batch_old/lms_batch_old.json +msgid "Ready" +msgstr "" + +#. Label of the reference_docname (Dynamic Link) field in DocType 'LMS Batch +#. Timetable' +#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json +msgid "Reference DocName" +msgstr "" + +#. Label of the reference_doctype (Link) field in DocType 'LMS Batch Timetable' +#. Label of the reference_doctype (Link) field in DocType 'LMS Timetable +#. Legend' +#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json +#: lms/lms/doctype/lms_timetable_legend/lms_timetable_legend.json +msgid "Reference DocType" +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 "" + +#: lms/templates/emails/community_course_membership.html:17 +msgid "Regards" +msgstr "" + +#: frontend/src/components/BatchOverlay.vue:80 +msgid "Register Now" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Invite Request' +#: lms/lms/doctype/invite_request/invite_request.json +msgid "Registered" +msgstr "" + +#: lms/lms/user.py:36 +msgid "Registered but disabled" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Cohort Join Request' +#. Option for the 'Status' (Select) field in DocType 'Invite Request' +#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' +#: lms/lms/doctype/cohort_join_request/cohort_join_request.json +#: lms/lms/doctype/invite_request/invite_request.json +#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json +msgid "Rejected" +msgstr "" + +#. Label of the related_courses (Table) field in DocType 'LMS Course' +#. Name of a DocType +#: lms/lms/doctype/lms_course/lms_course.json +#: lms/lms/doctype/related_courses/related_courses.json +msgid "Related Courses" +msgstr "" + +#: frontend/src/pages/BatchForm.vue:77 frontend/src/pages/CourseForm.vue:96 +msgid "Remove" +msgstr "" + +#: frontend/src/components/Modals/AnnouncementModal.vue:27 +msgid "Reply To" +msgstr "" + +#: lms/lms/widgets/RequestInvite.html:7 +msgid "Request Invite" +msgstr "" + +#: lms/patches/create_mentor_request_email_templates.py:20 +msgid "Request for Mentorship" +msgstr "" + +#. Label of the required_role (Select) field in DocType 'Cohort Web Page' +#: lms/lms/doctype/cohort_web_page/cohort_web_page.json +msgid "Required Role" +msgstr "" + +#. Option for the 'Membership' (Select) field in DocType 'LMS Batch Old' +#: lms/lms/doctype/lms_batch_old/lms_batch_old.json +msgid "Restricted" +msgstr "" + +#. Label of the result (Table) field in DocType 'LMS Quiz Submission' +#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json +msgid "Result" +msgstr "" + +#. Label of the resume (Attach) field in DocType 'LMS Job Application' +#: lms/job/doctype/lms_job_application/lms_job_application.json +msgid "Resume" +msgstr "" + +#. Label of the review (Small Text) field in DocType 'LMS Course Review' +#. Label of a Link in the LMS Workspace +#: frontend/src/components/Modals/ReviewModal.vue:26 +#: lms/lms/doctype/lms_course_review/lms_course_review.json +#: lms/lms/workspace/lms/lms.json lms/templates/reviews.html:143 +msgid "Review" +msgstr "" + +#: lms/templates/reviews.html:100 +msgid "Review the course" +msgstr "" + +#. Label of the reviewed_by (Link) field in DocType 'LMS Mentor Request' +#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json +msgid "Reviewed By" +msgstr "" + +#: lms/templates/reviews.html:4 +msgid "Reviews" +msgstr "" + +#. Label of the role (Select) field in DocType 'Cohort Staff' +#. Label of the role (Select) field in DocType 'LMS Enrollment' +#: lms/lms/doctype/cohort_staff/cohort_staff.json +#: lms/lms/doctype/lms_enrollment/lms_enrollment.json +msgid "Role" +msgstr "" + +#. Label of the role (Select) field in DocType 'User' +#: lms/fixtures/custom_field.json +msgid "Role Preference" +msgstr "" + +#: frontend/src/components/AppSidebar.vue:558 +msgid "Roles" +msgstr "" + +#. Label of the route (Data) field in DocType 'LMS Sidebar Item' +#: lms/lms/doctype/lms_sidebar_item/lms_sidebar_item.json +msgid "Route" +msgstr "" + +#: lms/lms/doctype/lms_batch/lms_batch.py:126 +msgid "Row #{0} Date cannot be outside the batch duration." +msgstr "" + +#: lms/lms/doctype/lms_batch/lms_batch.py:121 +msgid "Row #{0} End time cannot be outside the batch duration." +msgstr "" + +#: lms/lms/doctype/lms_batch/lms_batch.py:103 +msgid "Row #{0} Start time cannot be greater than or equal to end time." +msgstr "" + +#: lms/lms/doctype/lms_batch/lms_batch.py:112 +msgid "Row #{0} Start time cannot be outside the batch duration." +msgstr "" + +#: lms/lms/doctype/lms_quiz/lms_quiz.py:32 +msgid "Rows {0} have the duplicate questions." +msgstr "" + +#: lms/templates/livecode/extension_footer.html:21 +msgid "Run" +msgstr "" + +#. Label of the scorm_section (Section Break) field in DocType 'Course Chapter' +#: lms/lms/doctype/course_chapter/course_chapter.json +msgid "SCORM" +msgstr "" + +#. Label of the scorm_package (Link) field in DocType 'Course Chapter' +#: frontend/src/components/Modals/ChapterModal.vue:22 +#: lms/lms/doctype/course_chapter/course_chapter.json +msgid "SCORM Package" +msgstr "" + +#. Label of the scorm_package_path (Code) field in DocType 'Course Chapter' +#: lms/lms/doctype/course_chapter/course_chapter.json +msgid "SCORM Package Path" +msgstr "" + +#. Label of the seo_tab (Tab Break) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "SEO" +msgstr "" + +#. Option for the 'Day' (Select) field in DocType 'Evaluator Schedule' +#. Option for the 'Day' (Select) field in DocType 'LMS Certificate Request' +#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json +#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json +msgid "Saturday" +msgstr "" + +#: frontend/src/components/AssessmentPlugin.vue:34 +#: frontend/src/components/Assignment.vue:46 +#: frontend/src/components/Controls/CodeEditor.vue:25 +#: frontend/src/components/Modals/Event.vue:101 +#: frontend/src/components/Modals/Event.vue:129 +#: frontend/src/pages/AssignmentForm.vue:21 frontend/src/pages/BatchForm.vue:8 +#: frontend/src/pages/CourseForm.vue:17 frontend/src/pages/JobCreation.vue:8 +#: frontend/src/pages/LessonForm.vue:14 frontend/src/pages/ProgramForm.vue:7 +#: frontend/src/pages/QuizForm.vue:34 frontend/src/pages/QuizSubmission.vue:14 +#: lms/public/js/common_functions.js:405 +msgid "Save" +msgstr "" + +#. Label of the schedule (Table) field in DocType 'Course Evaluator' +#: lms/lms/doctype/course_evaluator/course_evaluator.json +msgid "Schedule" +msgstr "" + +#: frontend/src/components/Modals/EvaluationModal.vue:5 +#: frontend/src/components/UpcomingEvaluations.vue:14 +msgid "Schedule Evaluation" +msgstr "" + +#. Name of a DocType +#: lms/lms/doctype/scheduled_flow/scheduled_flow.json +msgid "Scheduled Flow" +msgstr "" + +#. Label of the scope (Select) field in DocType 'Cohort Web Page' +#: lms/lms/doctype/cohort_web_page/cohort_web_page.json +msgid "Scope" +msgstr "" + +#. Label of the score (Int) field in DocType 'LMS Quiz Submission' +#: frontend/src/pages/QuizSubmission.vue:39 +#: frontend/src/pages/QuizSubmissionList.vue:107 +#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json +#: lms/templates/quiz/quiz.html:148 +msgid "Score" +msgstr "" + +#. Label of the score_out_of (Int) field in DocType 'LMS Quiz Submission' +#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json +msgid "Score Out Of" +msgstr "" + +#: frontend/src/components/Evaluators.vue:15 +#: frontend/src/components/Members.vue:15 frontend/src/pages/Jobs.vue:38 +msgid "Search" +msgstr "" + +#: frontend/src/pages/CertifiedParticipants.vue:25 +msgid "Search by Name" +msgstr "" + +#: frontend/src/pages/Batches.vue:45 frontend/src/pages/Courses.vue:41 +msgid "Search by Title" +msgstr "" + +#: frontend/src/pages/Assignments.vue:25 +msgid "Search by title" +msgstr "" + +#: frontend/src/components/Controls/IconPicker.vue:36 +msgid "Search for an icon" +msgstr "" + +#. Label of the seat_count (Int) field in DocType 'LMS Batch' +#: frontend/src/pages/BatchForm.vue:154 +#: lms/lms/doctype/lms_batch/lms_batch.json +#: lms/public/js/common_functions.js:327 +msgid "Seat Count" +msgstr "" + +#: frontend/src/components/BatchCard.vue:18 +#: frontend/src/components/BatchOverlay.vue:12 +msgid "Seat Left" +msgstr "" + +#: frontend/src/components/BatchCard.vue:15 +#: frontend/src/components/BatchOverlay.vue:9 +msgid "Seats Left" +msgstr "" + +#: frontend/src/components/Modals/Question.vue:94 +msgid "Select a question" +msgstr "" + +#: frontend/src/components/AssessmentPlugin.vue:21 +msgid "Select a quiz" +msgstr "" + +#: frontend/src/components/Modals/EvaluationModal.vue:40 +msgid "Select a slot" +msgstr "" + +#: frontend/src/components/AssessmentPlugin.vue:28 +msgid "Select an assignment" +msgstr "" + +#: lms/lms/doctype/lms_batch_enrollment/lms_batch_enrollment.js:7 +msgid "Send Confirmation Email" +msgstr "" + +#. Label of the send_calendar_invite_for_evaluations (Check) field in DocType +#. 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Send calendar invite for evaluations" +msgstr "" + +#. Label of the sessions_on (Data) field in DocType 'LMS Batch Old' +#: lms/lms/doctype/lms_batch_old/lms_batch_old.json +msgid "Sessions On Days" +msgstr "" + +#: lms/templates/emails/community_course_membership.html:1 +msgid "Set your Password" +msgstr "" + +#: frontend/src/components/AppSidebar.vue:506 +msgid "Setting up" +msgstr "" + +#: frontend/src/components/AppSidebar.vue:551 +msgid "Setting up payment gateway" +msgstr "" + +#: frontend/src/components/AppSidebar.vue:556 +#: frontend/src/components/Modals/Settings.vue:7 +#: frontend/src/pages/BatchForm.vue:148 frontend/src/pages/CourseForm.vue:158 +#: frontend/src/pages/ProfileRoles.vue:4 frontend/src/pages/QuizForm.vue:79 +msgid "Settings" +msgstr "" + +#: frontend/src/pages/ProfileAbout.vue:62 +msgid "Share on" +msgstr "" + +#: frontend/src/pages/BatchForm.vue:228 +msgid "Short Description" +msgstr "" + +#. Label of the short_introduction (Small Text) field in DocType 'LMS Course' +#: frontend/src/pages/CourseForm.vue:35 +#: lms/lms/doctype/lms_course/lms_course.json +msgid "Short Introduction" +msgstr "" + +#: frontend/src/pages/BatchForm.vue:231 +msgid "Short description of the batch" +msgstr "" + +#. Label of the show_answer (Check) field in DocType 'LMS Assignment' +#: lms/lms/doctype/lms_assignment/lms_assignment.json +msgid "Show Answer" +msgstr "" + +#. Label of the show_answers (Check) field in DocType 'LMS Quiz' +#: frontend/src/pages/QuizForm.vue:85 lms/lms/doctype/lms_quiz/lms_quiz.json +msgid "Show Answers" +msgstr "" + +#. Label of the show_submission_history (Check) field in DocType 'LMS Quiz' +#: frontend/src/pages/QuizForm.vue:90 lms/lms/doctype/lms_quiz/lms_quiz.json +msgid "Show Submission History" +msgstr "" + +#. Label of the column_break_2 (Column Break) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Show Tab in Batch" +msgstr "" + +#. Label of the show_usd_equivalent (Check) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Show USD Equivalent" +msgstr "" + +#. Label of the show_day_view (Check) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Show day view in timetable" +msgstr "" + +#. Label of the show_live_class (Check) field in DocType 'LMS Batch' +#: lms/lms/doctype/lms_batch/lms_batch.json +msgid "Show live class" +msgstr "" + +#. Label of the shuffle_questions (Check) field in DocType 'LMS Quiz' +#: frontend/src/pages/QuizForm.vue:103 lms/lms/doctype/lms_quiz/lms_quiz.json +msgid "Shuffle Questions" +msgstr "" + +#: frontend/src/pages/QuizForm.vue:97 +msgid "Shuffle Settings" +msgstr "" + +#. Label of the sidebar_tab (Tab Break) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Sidebar" +msgstr "" + +#. Label of the sidebar_items (Table) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Sidebar Items" +msgstr "" + +#: lms/lms/user.py:29 +msgid "Sign Up is disabled" +msgstr "" + +#: lms/templates/signup-form.html:53 +msgid "Sign up" +msgstr "" + +#. Label of the signup_email (Data) field in DocType 'Invite Request' +#: lms/lms/doctype/invite_request/invite_request.json +msgid "Signup Email" +msgstr "" + +#. Label of the signup_settings_tab (Tab Break) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Signup Settings" +msgstr "" + +#. Label of a chart in the LMS Workspace +#: frontend/src/pages/Statistics.vue:36 lms/lms/workspace/lms/lms.json +msgid "Signups" +msgstr "" + +#. Label of the skill (Table MultiSelect) field in DocType 'User' +#. Label of the skill (Data) field in DocType 'User Skill' +#: lms/fixtures/custom_field.json lms/lms/doctype/user_skill/user_skill.json +msgid "Skill" +msgstr "" + +#. Label of the skill_details (Section Break) field in DocType 'User' +#: lms/fixtures/custom_field.json +msgid "Skill Details" +msgstr "" + +#. Label of the skill_name (Link) field in DocType 'Skills' +#: lms/lms/doctype/skills/skills.json +msgid "Skill Name" +msgstr "" + +#. Name of a DocType +#: lms/lms/doctype/skills/skills.json +msgid "Skills" +msgstr "" + +#: lms/templates/onboarding_header.html:6 +msgid "Skip" +msgstr "" + +#: lms/lms/doctype/course_evaluator/course_evaluator.py:63 +msgid "Slot Times are overlapping for some schedules." +msgstr "" + +#. Label of the slug (Data) field in DocType 'Cohort' +#. Label of the slug (Data) field in DocType 'Cohort Subgroup' +#. Label of the slug (Data) field in DocType 'Cohort Web Page' +#: lms/lms/doctype/cohort/cohort.json +#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json +#: lms/lms/doctype/cohort_web_page/cohort_web_page.json +msgid "Slug" +msgstr "" + +#: frontend/src/components/BatchCard.vue:25 +#: frontend/src/components/BatchOverlay.vue:19 +msgid "Sold Out" +msgstr "" + +#. Label of the solution (Code) field in DocType 'Exercise Latest Submission' +#. Label of the solution (Code) field in DocType 'Exercise Submission' +#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json +#: lms/lms/doctype/exercise_submission/exercise_submission.json +msgid "Solution" +msgstr "" + +#. Label of the source (Link) field in DocType 'LMS Batch Enrollment' +#. Label of the source (Link) field in DocType 'LMS Payment' +#. Label of the source (Data) field in DocType 'LMS Source' +#: lms/lms/doctype/lms_batch_enrollment/lms_batch_enrollment.json +#: lms/lms/doctype/lms_payment/lms_payment.json +#: lms/lms/doctype/lms_source/lms_source.json +msgid "Source" +msgstr "" + +#. Option for the 'Role' (Select) field in DocType 'Cohort Staff' +#. Option for the 'Member Type' (Select) field in DocType 'LMS Enrollment' +#: lms/lms/doctype/cohort_staff/cohort_staff.json +#: lms/lms/doctype/lms_enrollment/lms_enrollment.json +msgid "Staff" +msgstr "" + +#. Label of the stage (Select) field in DocType 'LMS Batch Old' +#: lms/lms/doctype/lms_batch_old/lms_batch_old.json +msgid "Stage" +msgstr "" + +#: frontend/src/components/LiveClass.vue:50 frontend/src/components/Quiz.vue:67 +#: lms/templates/quiz/quiz.html:39 +msgid "Start" +msgstr "" + +#. Label of the start_date (Date) field in DocType 'Education Detail' +#. Label of the start_date (Date) field in DocType 'LMS Batch' +#. Label of the start_date (Date) field in DocType 'LMS Batch Old' +#: frontend/src/pages/BatchForm.vue:106 +#: lms/lms/doctype/education_detail/education_detail.json +#: lms/lms/doctype/lms_batch/lms_batch.json +#: lms/lms/doctype/lms_batch_old/lms_batch_old.json +#: lms/public/js/common_functions.js:275 +msgid "Start Date" +msgstr "" + +#: lms/templates/emails/batch_start_reminder.html:13 +msgid "Start Date:" +msgstr "" + +#: frontend/src/components/CourseCardOverlay.vue:65 +#: frontend/src/pages/Lesson.vue:22 frontend/src/pages/SCORMChapter.vue:28 +#: lms/templates/emails/lms_course_interest.html:9 +msgid "Start Learning" +msgstr "" + +#. Label of the start_time (Time) field in DocType 'Evaluator Schedule' +#. Label of the start_time (Time) field in DocType 'LMS Batch' +#. Label of the start_time (Time) field in DocType 'LMS Batch Old' +#. Label of the start_time (Time) field in DocType 'LMS Batch Timetable' +#. Label of the start_time (Time) field in DocType 'LMS Certificate Evaluation' +#. Label of the start_time (Time) field in DocType 'LMS Certificate Request' +#. Label of the start_time (Time) field in DocType 'Scheduled Flow' +#: frontend/src/pages/BatchForm.vue:130 +#: frontend/src/pages/ProfileEvaluator.vue:15 +#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json +#: lms/lms/doctype/lms_batch/lms_batch.json +#: lms/lms/doctype/lms_batch_old/lms_batch_old.json +#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json +#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json +#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json +#: lms/lms/doctype/scheduled_flow/scheduled_flow.json +#: lms/public/js/common_functions.js:292 +msgid "Start Time" +msgstr "" + +#: lms/lms/doctype/course_evaluator/course_evaluator.py:34 +msgid "Start Time cannot be greater than End Time" +msgstr "" + +#. Label of the start_url (Small Text) field in DocType 'LMS Live Class' +#: lms/lms/doctype/lms_live_class/lms_live_class.json +msgid "Start URL" +msgstr "" + +#. Option for the 'Company Type' (Select) field in DocType 'User' +#: lms/fixtures/custom_field.json +msgid "Startup Organization" +msgstr "" + +#: frontend/src/pages/Billing.vue:83 +msgid "State" +msgstr "" + +#. Label of the tab_4_tab (Tab Break) field in DocType 'LMS Course' +#. Label of the statistics (Check) field in DocType 'LMS Settings' +#: frontend/src/components/BatchStudents.vue:5 +#: frontend/src/pages/Statistics.vue:322 +#: lms/lms/doctype/lms_course/lms_course.json +#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:182 +msgid "Statistics" +msgstr "" + +#. Label of the status (Select) field in DocType 'Job Opportunity' +#. Label of the status (Select) field in DocType 'Cohort' +#. Label of the status (Select) field in DocType 'Cohort Join Request' +#. Label of the status (Select) field in DocType 'Exercise Latest Submission' +#. Label of the status (Select) field in DocType 'Exercise Submission' +#. Label of the status (Select) field in DocType 'Invite Request' +#. Label of the status (Select) field in DocType 'LMS Assignment Submission' +#. Label of the status (Select) field in DocType 'LMS Batch Old' +#. Label of the status (Select) field in DocType 'LMS Certificate Evaluation' +#. Label of the status (Select) field in DocType 'LMS Certificate Request' +#. Label of the status (Select) field in DocType 'LMS Course' +#. Label of the status (Select) field in DocType 'LMS Course Progress' +#. Label of the status (Select) field in DocType 'LMS Mentor Request' +#: frontend/src/components/Modals/Event.vue:91 +#: frontend/src/pages/AssignmentSubmissionList.vue:19 +#: frontend/src/pages/JobCreation.vue:41 +#: lms/job/doctype/job_opportunity/job_opportunity.json +#: lms/lms/doctype/cohort/cohort.json +#: lms/lms/doctype/cohort_join_request/cohort_join_request.json +#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json +#: lms/lms/doctype/exercise_submission/exercise_submission.json +#: lms/lms/doctype/invite_request/invite_request.json +#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json +#: lms/lms/doctype/lms_batch_old/lms_batch_old.json +#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json +#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json +#: lms/lms/doctype/lms_course/lms_course.json +#: lms/lms/doctype/lms_course_progress/lms_course_progress.json +#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json +msgid "Status" +msgstr "" + +#: lms/templates/assessments.html:17 +msgid "Status/Score" +msgstr "" + +#. Option for the 'User Category' (Select) field in DocType 'User' +#. Option for the 'Required Role' (Select) field in DocType 'Cohort Web Page' +#. Option for the 'Member Type' (Select) field in DocType 'LMS Enrollment' +#: frontend/src/pages/ProfileRoles.vue:28 lms/fixtures/custom_field.json +#: lms/lms/doctype/cohort_web_page/cohort_web_page.json +#: lms/lms/doctype/lms_enrollment/lms_enrollment.json +#: lms/templates/signup-form.html:26 +msgid "Student" +msgstr "" + +#: frontend/src/components/CourseReviews.vue:11 +msgid "Student Reviews" +msgstr "" + +#. Label of the show_students (Check) field in DocType 'LMS Settings' +#: frontend/src/components/BatchStudents.vue:20 +#: frontend/src/components/BatchStudents.vue:111 +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Students" +msgstr "" + +#: frontend/src/components/BatchStudents.vue:325 +msgid "Students deleted successfully" +msgstr "" + +#. Description of the 'Paid Batch' (Check) field in DocType 'LMS Batch' +#: lms/lms/doctype/lms_batch/lms_batch.json +msgid "Students will be enrolled in a paid batch once they complete the payment" +msgstr "" + +#. Label of the subgroup (Link) field in DocType 'Cohort Join Request' +#. Option for the 'Scope' (Select) field in DocType 'Cohort Web Page' +#. Label of the subgroup (Link) field in DocType 'LMS Enrollment' +#: lms/lms/doctype/cohort_join_request/cohort_join_request.json +#: lms/lms/doctype/cohort_web_page/cohort_web_page.json +#: lms/lms/doctype/lms_enrollment/lms_enrollment.json +msgid "Subgroup" +msgstr "" + +#: frontend/src/components/Modals/AnnouncementModal.vue:20 +msgid "Subject" +msgstr "" + +#: frontend/src/components/Assignment.vue:32 +msgid "Submission" +msgstr "" + +#: frontend/src/pages/AssignmentForm.vue:17 frontend/src/pages/QuizForm.vue:30 +msgid "Submission List" +msgstr "" + +#: frontend/src/components/Assignment.vue:13 +#: frontend/src/components/Assignment.vue:16 +msgid "Submission by" +msgstr "" + +#: frontend/src/components/BatchFeedback.vue:14 +#: frontend/src/components/Modals/AssessmentModal.vue:9 +#: frontend/src/components/Modals/BatchCourseModal.vue:9 +#: frontend/src/components/Modals/EvaluationModal.vue:9 +#: frontend/src/components/Modals/Question.vue:344 +#: frontend/src/components/Quiz.vue:218 lms/templates/assignment.html:9 +#: lms/templates/livecode/extension_footer.html:25 +#: lms/templates/quiz/quiz.html:128 lms/templates/reviews.html:163 +#: lms/www/new-sign-up.html:32 +msgid "Submit" +msgstr "" + +#: frontend/src/components/Modals/JobApplicationModal.vue:23 +msgid "Submit your resume to proceed with your application for this position. Upon submission, it will be shared with the job poster." +msgstr "" + +#: lms/templates/livecode/extension_footer.html:85 +#: lms/templates/livecode/extension_footer.html:115 +msgid "Submitted {0}" +msgstr "" + +#: frontend/src/components/Assignment.vue:341 +#: frontend/src/components/BatchCourses.vue:154 +#: frontend/src/components/BatchOverlay.vue:150 +#: frontend/src/components/BatchStudents.vue:325 +#: frontend/src/components/CourseCardOverlay.vue:189 +#: frontend/src/components/Modals/AnnouncementModal.vue:99 +#: frontend/src/components/Modals/AssessmentModal.vue:73 +#: frontend/src/components/Modals/BulkCertificates.vue:121 +#: frontend/src/components/Modals/ChapterModal.vue:154 +#: frontend/src/components/Modals/ChapterModal.vue:199 +#: frontend/src/components/Modals/Event.vue:255 +#: frontend/src/components/Modals/Event.vue:310 +#: frontend/src/components/Modals/Question.vue:270 +#: frontend/src/components/Modals/Question.vue:321 +#: frontend/src/pages/AssignmentForm.vue:158 +#: frontend/src/pages/CourseForm.vue:470 frontend/src/pages/ProgramForm.vue:232 +#: frontend/src/pages/ProgramForm.vue:254 +#: frontend/src/pages/ProgramForm.vue:275 +#: frontend/src/pages/ProgramForm.vue:301 frontend/src/pages/QuizForm.vue:342 +#: frontend/src/pages/QuizForm.vue:361 frontend/src/pages/QuizForm.vue:430 +msgid "Success" +msgstr "" + +#. Label of the summary (Small Text) field in DocType 'LMS Certificate +#. Evaluation' +#: frontend/src/components/Modals/Event.vue:97 +#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json +msgid "Summary" +msgstr "" + +#. Option for the 'Day' (Select) field in DocType 'Evaluator Schedule' +#. Option for the 'Day' (Select) field in DocType 'LMS Certificate Request' +#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json +#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json +msgid "Sunday" +msgstr "" + +#: lms/lms/api.py:1027 +msgid "Suspicious pattern found in {0}: {1}" +msgstr "" + +#. Name of a role +#: lms/job/doctype/job_opportunity/job_opportunity.json +#: lms/job/doctype/job_settings/job_settings.json +#: lms/job/doctype/lms_job_application/lms_job_application.json +#: lms/lms/doctype/cohort/cohort.json +#: lms/lms/doctype/cohort_join_request/cohort_join_request.json +#: lms/lms/doctype/cohort_mentor/cohort_mentor.json +#: lms/lms/doctype/cohort_staff/cohort_staff.json +#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json +#: lms/lms/doctype/course_chapter/course_chapter.json +#: lms/lms/doctype/course_evaluator/course_evaluator.json +#: lms/lms/doctype/course_lesson/course_lesson.json +#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json +#: lms/lms/doctype/exercise_submission/exercise_submission.json +#: lms/lms/doctype/function/function.json +#: lms/lms/doctype/industry/industry.json +#: lms/lms/doctype/invite_request/invite_request.json +#: lms/lms/doctype/lms_assignment/lms_assignment.json +#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json +#: lms/lms/doctype/lms_badge/lms_badge.json +#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json +#: lms/lms/doctype/lms_batch/lms_batch.json +#: lms/lms/doctype/lms_batch_enrollment/lms_batch_enrollment.json +#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json +#: lms/lms/doctype/lms_batch_old/lms_batch_old.json +#: lms/lms/doctype/lms_category/lms_category.json +#: lms/lms/doctype/lms_certificate/lms_certificate.json +#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json +#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json +#: lms/lms/doctype/lms_course/lms_course.json +#: lms/lms/doctype/lms_course_interest/lms_course_interest.json +#: lms/lms/doctype/lms_course_mentor_mapping/lms_course_mentor_mapping.json +#: lms/lms/doctype/lms_course_progress/lms_course_progress.json +#: lms/lms/doctype/lms_course_review/lms_course_review.json +#: lms/lms/doctype/lms_enrollment/lms_enrollment.json +#: lms/lms/doctype/lms_exercise/lms_exercise.json +#: lms/lms/doctype/lms_live_class/lms_live_class.json +#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json +#: lms/lms/doctype/lms_payment/lms_payment.json +#: lms/lms/doctype/lms_program/lms_program.json +#: lms/lms/doctype/lms_question/lms_question.json +#: lms/lms/doctype/lms_quiz/lms_quiz.json +#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json +#: lms/lms/doctype/lms_settings/lms_settings.json +#: lms/lms/doctype/lms_source/lms_source.json +#: lms/lms/doctype/lms_timetable_template/lms_timetable_template.json +#: lms/lms/doctype/user_skill/user_skill.json +#: lms/lms/doctype/zoom_settings/zoom_settings.json +msgid "System Manager" +msgstr "" + +#. Label of the tags (Data) field in DocType 'LMS Course' +#: frontend/src/pages/CourseForm.vue:117 +#: lms/lms/doctype/lms_course/lms_course.json +msgid "Tags" +msgstr "" + +#: lms/templates/emails/community_course_membership.html:18 +#: lms/templates/emails/mentor_request_creation_email.html:8 +#: lms/templates/emails/mentor_request_status_update_email.html:7 +msgid "Team School" +msgstr "" + +#. Option for the 'Collaboration Preference' (Select) field in DocType 'User' +#: lms/fixtures/custom_field.json +msgid "Team Work" +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 +#: lms/lms/doctype/cohort_web_page/cohort_web_page.json +#: lms/lms/doctype/lms_certificate/lms_certificate.json +msgid "Template" +msgstr "" + +#: lms/lms/user.py:40 +msgid "Temporarily Disabled" +msgstr "" + +#: lms/lms/utils.py:436 +msgid "Terms of Use" +msgstr "" + +#. Label of the test_results (Small Text) field in DocType 'Exercise Latest +#. Submission' +#. Label of the test_results (Small Text) field in DocType 'Exercise +#. Submission' +#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json +#: lms/lms/doctype/exercise_submission/exercise_submission.json +msgid "Test Results" +msgstr "" + +#. Label of the tests (Code) field in DocType 'LMS Exercise' +#: lms/lms/doctype/lms_exercise/lms_exercise.json +msgid "Tests" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'LMS Assignment' +#. Option for the 'Type' (Select) field in DocType 'LMS Assignment Submission' +#: lms/lms/doctype/lms_assignment/lms_assignment.json +#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json +msgid "Text" +msgstr "" + +#: frontend/src/components/BatchFeedback.vue:7 +msgid "Thank you for providing your feedback!" +msgstr "" + +#: lms/templates/emails/lms_course_interest.html:17 +#: lms/templates/emails/lms_invite_request_approved.html:15 +#: lms/templates/emails/mentor_request_creation_email.html:7 +#: lms/templates/emails/mentor_request_status_update_email.html:6 +msgid "Thanks and Regards" +msgstr "" + +#: lms/lms/utils.py:1930 +msgid "The batch is full. Please contact the Administrator." +msgstr "" + +#: lms/templates/emails/batch_start_reminder.html:6 +msgid "The batch you have enrolled for is starting tomorrow. Please be prepared and be on time for the session." +msgstr "" + +#: lms/templates/emails/lms_course_interest.html:5 +msgid "The course {0} is now available on {1}." +msgstr "" + +#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:53 +msgid "The evaluator of this course is unavailable from {0} to {1}. Please select a date after {1}" +msgstr "" + +#: lms/templates/quiz/quiz.html:24 +msgid "The quiz has a time limit. For each question you will be given {0} seconds." +msgstr "" + +#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:71 +msgid "The slot is already booked by another participant." +msgstr "" + +#: lms/patches/create_mentor_request_email_templates.py:40 +msgid "The status of your application has changed." +msgstr "" + +#: frontend/src/pages/Batches.vue:83 +msgid "There are no batches matching the criteria. Keep an eye out, fresh learning experiences are on the way soon!" +msgstr "" + +#: frontend/src/components/CreateOutline.vue:12 +msgid "There are no chapters in this course. Create and manage chapters from here." +msgstr "" + +#: frontend/src/pages/Courses.vue:79 +msgid "There are no courses matching the criteria. Keep an eye out, fresh learning experiences are on the way soon!" +msgstr "" + +#: frontend/src/pages/Jobs.vue:84 +msgid "There are no jobs available at the moment. Open a job opportunity or check here again later." +msgstr "" + +#: frontend/src/pages/CertifiedParticipants.vue:92 +msgid "There are no participants matching this criteria." +msgstr "" + +#: frontend/src/pages/Programs.vue:95 +msgid "There are no programs available at the moment. Keep an eye out, fresh learning experiences are on the way soon!" +msgstr "" + +#: lms/lms/doctype/lms_batch/lms_batch.py:94 +msgid "There are no seats available in this batch." +msgstr "" + +#: frontend/src/components/BatchStudents.vue:199 +msgid "There are no students in this batch." +msgstr "" + +#: frontend/src/pages/AssignmentSubmissionList.vue:70 +msgid "There are no submissions for this assignment." +msgstr "" + +#: lms/templates/course_list.html:14 +msgid "There are no {0} on this site." +msgstr "" + +#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:85 +msgid "There has been an update on your submission for assignment {0}" +msgstr "" + +#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:59 +msgid "There has been an update on your submission. You have got a score of {0} for the quiz {1}" +msgstr "" + +#. Description of the 'section_break_ubxi' (Section Break) field in DocType +#. 'LMS Batch' +#: lms/lms/doctype/lms_batch/lms_batch.json +msgid "These customisations will work on the main batch page." +msgstr "" + +#: frontend/src/pages/Badge.vue:14 +msgid "This badge has been awarded to {0} on {1}." +msgstr "" + +#. Label of the expire (Check) field in DocType 'Certification' +#: lms/lms/doctype/certification/certification.json +msgid "This certificate does no expire" +msgstr "" + +#: frontend/src/components/LiveClass.vue:64 +msgid "This class has ended" +msgstr "" + +#: frontend/src/components/CourseCardOverlay.vue:94 +msgid "This course has:" +msgstr "" + +#: lms/lms/utils.py:1773 +msgid "This course is free." +msgstr "" + +#. Description of the 'Meta Description' (Small Text) field in DocType 'LMS +#. Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "This description will be shown on lists and pages without meta description" +msgstr "" + +#: frontend/src/pages/Lesson.vue:16 +msgid "This lesson is not available for preview. Please enroll in the course to access it." +msgstr "" + +#: lms/lms/widgets/NoPreviewModal.html:16 +msgid "This lesson is not available for preview. Please join the course to access it." +msgstr "" + +#: frontend/src/components/Quiz.vue:8 lms/templates/quiz/quiz.html:6 +msgid "This quiz consists of {0} questions." +msgstr "" + +#. Option for the 'Day' (Select) field in DocType 'Evaluator Schedule' +#. Option for the 'Day' (Select) field in DocType 'LMS Certificate Request' +#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json +#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json +msgid "Thursday" +msgstr "" + +#. Label of the time (Time) field in DocType 'LMS Live Class' +#: frontend/src/components/Modals/Event.vue:48 +#: frontend/src/components/Modals/LiveClassModal.vue:37 +#: frontend/src/components/Quiz.vue:45 +#: lms/lms/doctype/lms_live_class/lms_live_class.json +msgid "Time" +msgstr "" + +#. Label of the time (Select) field in DocType 'User' +#: lms/fixtures/custom_field.json +msgid "Time Preference" +msgstr "" + +#: frontend/src/components/Modals/LiveClassModal.vue:29 +msgid "Time must be in 24 hour format (HH:mm). Example 11:30 or 22:00" +msgstr "" + +#. Label of the schedule_tab (Tab Break) field in DocType 'LMS Batch' +#. Label of the timetable (Table) field in DocType 'LMS Batch' +#. Label of the timetable (Table) field in DocType 'LMS Timetable Template' +#: lms/lms/doctype/lms_batch/lms_batch.json +#: lms/lms/doctype/lms_timetable_template/lms_timetable_template.json +msgid "Timetable" +msgstr "" + +#. Label of the timetable_legends (Table) field in DocType 'LMS Batch' +#. Label of the timetable_legends (Table) field in DocType 'LMS Timetable +#. Template' +#: lms/lms/doctype/lms_batch/lms_batch.json +#: lms/lms/doctype/lms_timetable_template/lms_timetable_template.json +msgid "Timetable Legends" +msgstr "" + +#. Label of the timetable_template (Link) field in DocType 'LMS Batch' +#: lms/lms/doctype/lms_batch/lms_batch.json +msgid "Timetable Template" +msgstr "" + +#. Label of the timezone (Data) field in DocType 'LMS Batch' +#. Label of the timezone (Data) field in DocType 'LMS Certificate Request' +#. Label of the timezone (Data) field in DocType 'LMS Live Class' +#: frontend/src/components/Modals/LiveClassModal.vue:45 +#: frontend/src/pages/BatchForm.vue:120 +#: lms/lms/doctype/lms_batch/lms_batch.json +#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json +#: lms/lms/doctype/lms_live_class/lms_live_class.json +msgid "Timezone" +msgstr "" + +#: lms/templates/emails/batch_confirmation.html:19 +#: lms/templates/emails/batch_start_reminder.html:16 +#: lms/templates/emails/live_class_reminder.html:16 +msgid "Timings:" +msgstr "" + +#. Label of the title (Data) field in DocType 'Cohort' +#. Label of the title (Data) field in DocType 'Cohort Subgroup' +#. Label of the title (Data) field in DocType 'Cohort Web Page' +#. Label of the title (Data) field in DocType 'Course Chapter' +#. Label of the title (Data) field in DocType 'Course Lesson' +#. Label of the title (Data) field in DocType 'LMS Assignment' +#. Label of the title (Data) field in DocType 'LMS Badge' +#. Label of the title (Data) field in DocType 'LMS Batch' +#. Label of the title (Data) field in DocType 'LMS Batch Old' +#. Label of the title (Data) field in DocType 'LMS Course' +#. Label of the title (Data) field in DocType 'LMS Exercise' +#. Label of the title (Data) field in DocType 'LMS Live Class' +#. Label of the title (Data) field in DocType 'LMS Program' +#. Label of the title (Data) field in DocType 'LMS Quiz' +#. Label of the title (Data) field in DocType 'LMS Sidebar Item' +#. Label of the title (Data) field in DocType 'LMS Timetable Template' +#. Label of the title (Data) field in DocType 'Work Experience' +#: frontend/src/components/Modals/DiscussionModal.vue:18 +#: frontend/src/components/Modals/LiveClassModal.vue:23 +#: frontend/src/pages/AssignmentForm.vue:32 +#: frontend/src/pages/Assignments.vue:155 frontend/src/pages/BatchForm.vue:19 +#: frontend/src/pages/CourseForm.vue:29 frontend/src/pages/JobCreation.vue:20 +#: frontend/src/pages/ProgramForm.vue:11 frontend/src/pages/Programs.vue:116 +#: frontend/src/pages/QuizForm.vue:48 frontend/src/pages/Quizzes.vue:118 +#: lms/lms/doctype/cohort/cohort.json +#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json +#: lms/lms/doctype/cohort_web_page/cohort_web_page.json +#: lms/lms/doctype/course_chapter/course_chapter.json +#: lms/lms/doctype/course_lesson/course_lesson.json +#: lms/lms/doctype/lms_assignment/lms_assignment.json +#: lms/lms/doctype/lms_badge/lms_badge.json +#: lms/lms/doctype/lms_batch/lms_batch.json +#: lms/lms/doctype/lms_batch_old/lms_batch_old.json +#: lms/lms/doctype/lms_course/lms_course.json +#: lms/lms/doctype/lms_exercise/lms_exercise.json +#: lms/lms/doctype/lms_live_class/lms_live_class.json +#: lms/lms/doctype/lms_program/lms_program.json +#: lms/lms/doctype/lms_quiz/lms_quiz.json +#: lms/lms/doctype/lms_sidebar_item/lms_sidebar_item.json +#: lms/lms/doctype/lms_timetable_template/lms_timetable_template.json +#: lms/lms/doctype/work_experience/work_experience.json +#: lms/public/js/common_functions.js:259 +msgid "Title" +msgstr "" + +#: frontend/src/components/Modals/ChapterModal.vue:175 +msgid "Title is required" +msgstr "" + +#. Label of the unavailable_to (Date) field in DocType 'Course Evaluator' +#: frontend/src/pages/ProfileEvaluator.vue:98 +#: lms/lms/doctype/course_evaluator/course_evaluator.json +msgid "To" +msgstr "" + +#. Label of the to_date (Date) field in DocType 'Work Experience' +#: lms/lms/doctype/work_experience/work_experience.json +msgid "To Date" +msgstr "" + +#: lms/lms/utils.py:1784 +msgid "To join this batch, please contact the Administrator." +msgstr "" + +#: frontend/src/components/LessonHelp.vue:49 +msgid "To upload Image, Video, Audio or PDF from your system, click on the add icon and select upload from the menu. Then choose the file you want to add to the lesson and it gets added to your lesson." +msgstr "" + +#: lms/lms/user.py:41 +msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour" +msgstr "" + +#: frontend/src/pages/Billing.vue:53 +msgid "Total" +msgstr "" + +#. Label of the total_marks (Int) field in DocType 'LMS Quiz' +#: frontend/src/pages/QuizForm.vue:67 frontend/src/pages/Quizzes.vue:123 +#: lms/lms/doctype/lms_quiz/lms_quiz.json +msgid "Total Marks" +msgstr "" + +#: lms/lms/web_template/lms_statistics/lms_statistics.html:14 +#: lms/templates/statistics.html:12 +msgid "Total Signups" +msgstr "" + +#. Option for the 'Location Preference' (Select) field in DocType 'User' +#: lms/fixtures/custom_field.json +msgid "Travel" +msgstr "" + +#: frontend/src/components/Quiz.vue:259 lms/templates/quiz/quiz.html:131 +msgid "Try Again" +msgstr "" + +#. Option for the 'Day' (Select) field in DocType 'Evaluator Schedule' +#. Option for the 'Day' (Select) field in DocType 'LMS Certificate Request' +#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json +#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json +msgid "Tuesday" +msgstr "" + +#: frontend/src/pages/ProfileAbout.vue:86 +msgid "Twitter" +msgstr "" + +#. Label of the type (Select) field in DocType 'Job Opportunity' +#. Label of the type (Select) field in DocType 'LMS Assignment' +#. Label of the type (Select) field in DocType 'LMS Assignment Submission' +#. Label of the type (Select) field in DocType 'LMS Question' +#. Label of the type (Select) field in DocType 'LMS Quiz Question' +#: frontend/src/components/Modals/AssessmentModal.vue:22 +#: frontend/src/components/Modals/Question.vue:54 +#: frontend/src/pages/AssignmentForm.vue:39 +#: frontend/src/pages/Assignments.vue:30 frontend/src/pages/Assignments.vue:160 +#: frontend/src/pages/JobCreation.vue:33 frontend/src/pages/Jobs.vue:55 +#: lms/job/doctype/job_opportunity/job_opportunity.json +#: lms/lms/doctype/lms_assignment/lms_assignment.json +#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json +#: lms/lms/doctype/lms_question/lms_question.json +#: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json +#: lms/templates/assessments.html:14 +msgid "Type" +msgstr "" + +#: frontend/src/components/Quiz.vue:615 +msgid "Type your answer" +msgstr "" + +#. Option for the 'Grade Type' (Select) field in DocType 'Education Detail' +#: lms/lms/doctype/education_detail/education_detail.json +msgid "UK Grading (e.g. 1st, 2:2)" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'LMS Assignment' +#. Option for the 'Type' (Select) field in DocType 'LMS Assignment Submission' +#: lms/lms/doctype/lms_assignment/lms_assignment.json +#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json +msgid "URL" +msgstr "" + +#. Label of the unavailability_section (Section Break) field in DocType 'Course +#. Evaluator' +#: lms/lms/doctype/course_evaluator/course_evaluator.json +msgid "Unavailability" +msgstr "" + +#: lms/lms/doctype/course_evaluator/course_evaluator.py:29 +msgid "Unavailable From Date cannot be greater than Unavailable To Date" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'LMS Course' +#: lms/lms/doctype/lms_course/lms_course.json +msgid "Under Review" +msgstr "" + +#. Option for the 'Visibility' (Select) field in DocType 'LMS Batch Old' +#: lms/lms/doctype/lms_batch_old/lms_batch_old.json +msgid "Unlisted" +msgstr "" + +#: frontend/src/pages/Batches.vue:295 +msgid "Unpublished" +msgstr "" + +#: frontend/src/components/Modals/EditCoverImage.vue:60 +#: frontend/src/components/UnsplashImageBrowser.vue:54 +msgid "Unsplash" +msgstr "" + +#. Label of the unsplash_access_key (Data) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Unsplash Access Key" +msgstr "" + +#. Option for the 'Role Preference' (Select) field in DocType 'User' +#: lms/fixtures/custom_field.json +msgid "Unstructured Role" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Cohort' +#. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request' +#. Label of the upcoming (Check) field in DocType 'LMS Course' +#: frontend/src/pages/Batches.vue:293 frontend/src/pages/CourseForm.vue:181 +#: frontend/src/pages/Courses.vue:287 lms/lms/doctype/cohort/cohort.json +#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json +#: lms/lms/doctype/lms_course/lms_course.json +msgid "Upcoming" +msgstr "" + +#: frontend/src/pages/Batch.vue:179 +msgid "Upcoming Batches" +msgstr "" + +#: frontend/src/components/UpcomingEvaluations.vue:5 +#: lms/templates/upcoming_evals.html:3 +msgid "Upcoming Evaluations" +msgstr "" + +#: frontend/src/components/BrandSettings.vue:23 +#: frontend/src/components/PaymentSettings.vue:27 +#: frontend/src/components/SettingDetails.vue:23 +msgid "Update" +msgstr "" + +#: lms/templates/emails/community_course_membership.html:11 +msgid "Update Password" +msgstr "" + +#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:77 +msgid "Upload" +msgstr "" + +#: frontend/src/components/Assignment.vue:81 +msgid "Upload File" +msgstr "" + +#: frontend/src/components/Assignment.vue:80 +msgid "Uploading {0}%" +msgstr "" + +#. Label of the user (Link) field in DocType 'LMS Job Application' +#. Label of the email (Link) field in DocType 'Cohort Staff' +#. Label of the user (Link) field in DocType 'LMS Course Interest' +#: lms/job/doctype/lms_job_application/lms_job_application.json +#: lms/lms/doctype/cohort_staff/cohort_staff.json +#: lms/lms/doctype/lms_course_interest/lms_course_interest.json +msgid "User" +msgstr "" + +#. Label of the user_category (Select) field in DocType 'User' +#: lms/fixtures/custom_field.json lms/templates/signup-form.html:17 +msgid "User Category" +msgstr "" + +#. Label of the user_field (Select) field in DocType 'LMS Badge' +#: lms/lms/doctype/lms_badge/lms_badge.json +msgid "User Field" +msgstr "" + +#. Label of the user_image (Attach Image) field in DocType 'Course Evaluator' +#: lms/lms/doctype/course_evaluator/course_evaluator.json +msgid "User Image" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'LMS Question' +#. Option for the 'Type' (Select) field in DocType 'LMS Quiz Question' +#: lms/lms/doctype/lms_question/lms_question.json +#: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json +msgid "User Input" +msgstr "" + +#. Name of a DocType +#: lms/lms/doctype/user_skill/user_skill.json +msgid "User Skill" +msgstr "" + +#: lms/job/doctype/job_opportunity/job_opportunity.py:40 +msgid "User {0} has reported the job post {1}" +msgstr "" + +#. Label of the username (Data) field in DocType 'Course Evaluator' +#. Label of the username (Data) field in DocType 'Invite Request' +#: lms/lms/doctype/course_evaluator/course_evaluator.json +#: lms/lms/doctype/invite_request/invite_request.json +msgid "Username" +msgstr "" + +#. Label of a shortcut in the LMS Workspace +#: lms/lms/workspace/lms/lms.json +msgid "Users" +msgstr "" + +#. Label of the answer (Small Text) field in DocType 'LMS Quiz Result' +#: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json +msgid "Users Response" +msgstr "" + +#: lms/templates/signup-form.html:83 +msgid "Valid email and name required" +msgstr "" + +#. Label of the value (Rating) field in DocType 'LMS Batch Feedback' +#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json +msgid "Value" +msgstr "" + +#. Option for the 'Event' (Select) field in DocType 'LMS Badge' +#: lms/lms/doctype/lms_badge/lms_badge.json +msgid "Value Change" +msgstr "" + +#. Label of the video_link (Data) field in DocType 'LMS Course' +#: lms/lms/doctype/lms_course/lms_course.json +msgid "Video Embed Link" +msgstr "" + +#: frontend/src/pages/Notifications.vue:38 +msgid "View" +msgstr "" + +#: frontend/src/components/CertificationLinks.vue:10 +#: frontend/src/components/Modals/Event.vue:67 +msgid "View Certificate" +msgstr "" + +#. Label of the visibility (Select) field in DocType 'LMS Batch Old' +#: lms/lms/doctype/lms_batch_old/lms_batch_old.json +msgid "Visibility" +msgstr "" + +#: frontend/src/components/BatchOverlay.vue:60 +msgid "Visit Batch" +msgstr "" + +#: frontend/src/pages/JobDetail.vue:38 +msgid "Visit Website" +msgstr "" + +#: lms/templates/emails/batch_confirmation.html:23 +msgid "Visit the following link to view your " +msgstr "" + +#: lms/templates/emails/batch_start_reminder.html:23 +#: lms/templates/emails/live_class_reminder.html:20 +msgid "Visit your batch" +msgstr "" + +#. Label of the internship (Table) field in DocType 'User' +#: lms/fixtures/custom_field.json +msgid "Volunteering or Internship" +msgstr "" + +#: lms/templates/emails/batch_confirmation.html:6 +msgid "We are pleased to inform you that you have been enrolled in our upcoming batch. Congratulations!" +msgstr "" + +#: lms/templates/emails/payment_reminder.html:7 +msgid "We have a limited number of seats, and they won't be available for long!" +msgstr "" + +#: lms/templates/emails/payment_reminder.html:4 +msgid "We noticed that you started enrolling in the" +msgstr "" + +#. Label of the web_page (Link) field in DocType 'LMS Sidebar Item' +#: frontend/src/components/Modals/PageModal.vue:23 +#: lms/lms/doctype/lms_sidebar_item/lms_sidebar_item.json +msgid "Web Page" +msgstr "" + +#. Option for the 'Day' (Select) field in DocType 'Evaluator Schedule' +#. Option for the 'Day' (Select) field in DocType 'LMS Certificate Request' +#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json +#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json +msgid "Wednesday" +msgstr "" + +#: lms/lms/doctype/invite_request/invite_request.py:40 +#: lms/templates/emails/lms_invite_request_approved.html:4 +msgid "Welcome to {0}!" +msgstr "" + +#: frontend/src/components/LessonHelp.vue:6 +msgid "What does include in preview mean?" +msgstr "" + +#: lms/templates/courses_under_review.html:15 +msgid "When a course gets submitted for review, it will be listed here." +msgstr "" + +#: frontend/src/pages/Billing.vue:106 +msgid "Where did you hear about us?" +msgstr "" + +#: lms/templates/emails/certification.html:10 +msgid "With this certification, you can now showcase your updated skills and share your achievement with your colleagues and on LinkedIn. To access your certificate, please click on the link provided below. Make sure you are logged in to the portal." +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' +#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json +msgid "Withdrawn" +msgstr "" + +#. Label of the work_environment (Section Break) field in DocType 'User' +#: lms/fixtures/custom_field.json +msgid "Work Environment" +msgstr "" + +#. Label of the work_experience (Table) field in DocType 'User' +#. Name of a DocType +#: lms/fixtures/custom_field.json +#: lms/lms/doctype/work_experience/work_experience.json +msgid "Work Experience" +msgstr "" + +#. Label of the work_experience_details (Section Break) field in DocType 'User' +#: lms/fixtures/custom_field.json +msgid "Work Experience Details" +msgstr "" + +#: frontend/src/components/CourseReviews.vue:8 +#: frontend/src/components/Modals/ReviewModal.vue:5 +#: lms/templates/reviews.html:117 +msgid "Write a Review" +msgstr "" + +#: lms/templates/reviews.html:31 lms/templates/reviews.html:103 +#: lms/templates/reviews_cta.html:3 lms/templates/reviews_cta.html:7 +msgid "Write a review" +msgstr "" + +#: frontend/src/components/Assignment.vue:123 +msgid "Write your answer here" +msgstr "" + +#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:96 +msgid "You already have an evaluation on {0} at {1} for the course {2}." +msgstr "" + +#: frontend/src/pages/CourseCertification.vue:14 +msgid "You are already certified for this course. Click on the card below to open your certificate." +msgstr "" + +#: lms/lms/api.py:232 +msgid "You are already enrolled for this batch." +msgstr "" + +#: lms/lms/api.py:224 +msgid "You are already enrolled for this course." +msgstr "" + +#: frontend/src/pages/Batch.vue:161 +msgid "You are not a member of this batch. Please checkout our upcoming batches." +msgstr "" + +#: lms/lms/doctype/lms_batch_old/lms_batch_old.py:20 +msgid "You are not a mentor of the course {0}" +msgstr "" + +#: frontend/src/components/CourseOutline.vue:324 +msgid "You are not enrolled" +msgstr "" + +#: frontend/src/pages/SCORMChapter.vue:22 +msgid "You are not enrolled in this course. Please enroll to access this lesson." +msgstr "" + +#: lms/templates/emails/lms_course_interest.html:13 +#: lms/templates/emails/lms_invite_request_approved.html:11 +msgid "You can also copy-paste following link in your browser" +msgstr "" + +#: lms/templates/quiz/quiz.html:18 +msgid "You can attempt this quiz only {0} {1}" +msgstr "" + +#: frontend/src/components/Quiz.vue:34 +msgid "You can attempt this quiz {0}." +msgstr "" + +#: lms/templates/emails/job_application.html:6 +msgid "You can find their resume attached to this email." +msgstr "" + +#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:116 +msgid "You cannot schedule evaluations after {0}." +msgstr "" + +#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:105 +msgid "You cannot schedule evaluations for past slots." +msgstr "" + +#: frontend/src/components/NoPermission.vue:11 +msgid "You do not have permission to access this page." +msgstr "" + +#: lms/templates/notifications.html:27 +msgid "You don't have any notifications." +msgstr "" + +#: lms/templates/quiz/quiz.js:137 +msgid "You got" +msgstr "" + +#: frontend/src/components/Quiz.vue:241 +#, python-format +msgid "You got {0}% correct answers with a score of {1} out of {2}" +msgstr "" + +#: lms/templates/emails/live_class_reminder.html:6 +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 +msgid "You have already applied for this job." +msgstr "" + +#: frontend/src/components/Quiz.vue:72 lms/templates/quiz/quiz.html:43 +msgid "You have already exceeded the maximum number of attempts allowed for this quiz." +msgstr "" + +#: lms/lms/api.py:251 +msgid "You have already purchased the certificate for this course." +msgstr "" + +#: lms/lms/doctype/lms_course_review/lms_course_review.py:17 +msgid "You have already reviewed this course" +msgstr "" + +#: frontend/src/components/BatchOverlay.vue:151 +msgid "You have been enrolled in this batch" +msgstr "" + +#: frontend/src/components/CourseCardOverlay.vue:190 +msgid "You have been enrolled in this course" +msgstr "" + +#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:30 +msgid "You have exceeded the maximum number of attempts ({0}) for this quiz" +msgstr "" + +#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:56 +msgid "You have got a score of {0} for the quiz {1}" +msgstr "" + +#: frontend/src/pages/Assignments.vue:60 +msgid "You have not created any assignments yet. To create a new assignment, click on the \"New\" button above." +msgstr "" + +#: frontend/src/pages/Quizzes.vue:65 +msgid "You have not created any quizzes yet. To create a new quiz, click on the \"New Quiz\" button above." +msgstr "" + +#: lms/lms/widgets/NoPreviewModal.html:12 lms/public/js/common_functions.js:126 +msgid "You have opted to be notified for this course. You will receive an email when the course becomes available." +msgstr "" + +#: frontend/src/components/CourseCardOverlay.vue:170 +msgid "You need to login first to enroll for this course" +msgstr "" + +#: frontend/src/components/Quiz.vue:27 lms/templates/quiz/quiz.html:11 +#, python-format +msgid "You will have to get {0}% correct answers in order to pass the quiz." +msgstr "" + +#: lms/templates/emails/mentor_request_creation_email.html:4 +msgid "You've applied to become a mentor for this course. Your request is currently under review." +msgstr "" + +#: frontend/src/components/Assignment.vue:58 +msgid "You've successfully submitted the assignment." +msgstr "" + +#. Label of the youtube (Data) field in DocType 'Course Lesson' +#: lms/lms/doctype/course_lesson/course_lesson.json +msgid "YouTube Video URL" +msgstr "" + +#. Description of the 'YouTube Video URL' (Data) field in DocType 'Course +#. Lesson' +#: lms/lms/doctype/course_lesson/course_lesson.json +msgid "YouTube Video will appear at the top of the lesson." +msgstr "" + +#: lms/www/new-sign-up.html:56 +msgid "Your Account has been successfully created!" +msgstr "" + +#: lms/lms/doctype/lms_batch/lms_batch.py:418 +msgid "Your batch {0} is starting tomorrow" +msgstr "" + +#: frontend/src/pages/ProfileEvaluator.vue:120 +msgid "Your calendar is set." +msgstr "" + +#: lms/lms/doctype/lms_live_class/lms_live_class.py:87 +msgid "Your class on {0} is today" +msgstr "" + +#: lms/lms/notification/certificate_request_reminder/certificate_request_reminder.html:3 +#: lms/templates/emails/certificate_request_notification.html:3 +msgid "Your evaluation for the course {0} has been scheduled on {1} at {2} {3}." +msgstr "" + +#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:126 +msgid "Your evaluation slot has been booked" +msgstr "" + +#: lms/templates/emails/certificate_request_notification.html:5 +msgid "Your evaluator is {0}" +msgstr "" + +#: lms/templates/emails/mentor_request_status_update_email.html:4 +msgid "Your request to join us as a mentor for the course" +msgstr "" + +#: lms/templates/quiz/quiz.js:140 +msgid "Your score is" +msgstr "" + +#: frontend/src/components/Quiz.vue:234 +msgid "Your submission has been successfully saved. The instructor will review and grade it shortly, and you'll be notified of your final result." +msgstr "" + +#. Name of a DocType +#: lms/lms/doctype/zoom_settings/zoom_settings.json +msgid "Zoom Settings" +msgstr "" + +#: frontend/src/components/StudentHeatmap.vue:6 +msgid "activities" +msgstr "" + +#: frontend/src/components/StudentHeatmap.vue:6 +msgid "activity" +msgstr "" + +#: lms/templates/emails/payment_reminder.html:4 +msgid "but didn’t complete your payment" +msgstr "" + +#: lms/templates/emails/mentor_request_creation_email.html:5 +msgid "cancel your application" +msgstr "" + +#: frontend/src/pages/Lesson.vue:178 +msgid "completed" +msgstr "" + +#: lms/templates/quiz/quiz.js:137 +msgid "correct answers" +msgstr "" + +#: lms/templates/emails/mentor_request_status_update_email.html:4 +msgid "has been" +msgstr "" + +#: frontend/src/components/StudentHeatmap.vue:8 +msgid "in the last" +msgstr "" + +#: lms/templates/signup-form.html:12 +msgid "jane@example.com" +msgstr "" + +#: frontend/src/pages/Programs.vue:31 +msgid "member" +msgstr "" + +#: frontend/src/pages/Programs.vue:31 +msgid "members" +msgstr "" + +#: lms/templates/quiz/quiz.html:106 +msgid "of" +msgstr "" + +#: lms/templates/quiz/quiz.js:141 +msgid "out of" +msgstr "" + +#: frontend/src/pages/QuizForm.vue:389 +msgid "question_detail" +msgstr "" + +#: lms/templates/reviews.html:25 +msgid "ratings" +msgstr "" + +#: lms/templates/reviews.html:43 +msgid "stars" +msgstr "" + +#: frontend/src/components/StudentHeatmap.vue:10 +msgid "weeks" +msgstr "" + +#: lms/templates/emails/mentor_request_creation_email.html:5 +msgid "you can" +msgstr "" + +#: lms/lms/api.py:817 lms/lms/api.py:825 +msgid "{0} Settings not found" +msgstr "" + +#: lms/templates/emails/job_application.html:2 +msgid "{0} has applied for the job position {1}" +msgstr "" + +#: lms/templates/emails/job_report.html:4 +msgid "{0} has reported a job post for the following reason." +msgstr "" + +#: lms/templates/emails/assignment_submission.html:2 +msgid "{0} has submitted the assignment {1}" +msgstr "" + +#: lms/lms/doctype/lms_enrollment/lms_enrollment.py:57 +msgid "{0} is already a Student of {1} course through {2} batch" +msgstr "" + +#: lms/lms/doctype/lms_course_mentor_mapping/lms_course_mentor_mapping.py:16 +msgid "{0} is already a mentor for course {1}" +msgstr "" + +#: lms/lms/doctype/lms_enrollment/lms_enrollment.py:30 +msgid "{0} is already a {1} of the course {2}" +msgstr "" + +#: lms/lms/doctype/lms_certificate/lms_certificate.py:91 +msgid "{0} is already certified for the batch {1}" +msgstr "" + +#: lms/lms/doctype/lms_certificate/lms_certificate.py:72 +msgid "{0} is already certified for the course {1}" +msgstr "" + +#: lms/lms/notification/certificate_request_reminder/certificate_request_reminder.html:5 +msgid "{0} is your evaluator" +msgstr "" + +#: lms/lms/utils.py:683 +msgid "{0} mentioned you in a comment" +msgstr "" + +#: lms/templates/emails/mention_template.html:2 +msgid "{0} mentioned you in a comment in your batch." +msgstr "" + +#: lms/lms/utils.py:636 lms/lms/utils.py:642 +msgid "{0} mentioned you in a comment in {1}" +msgstr "" + +#: lms/lms/utils.py:458 +msgid "{0}k" +msgstr "" + +#. Count format of shortcut in the LMS Workspace +#: lms/lms/workspace/lms/lms.json +msgid "{} Active" +msgstr "" + +#. Count format of shortcut in the LMS Workspace +#: lms/lms/workspace/lms/lms.json +msgid "{} Completed" +msgstr "" + +#. Count format of shortcut in the LMS Workspace +#: lms/lms/workspace/lms/lms.json +msgid "{} Enrolled" +msgstr "" + +#. Count format of shortcut in the LMS Workspace +#: lms/lms/workspace/lms/lms.json +msgid "{} Granted" +msgstr "" + +#. Count format of shortcut in the LMS Workspace +#: lms/lms/workspace/lms/lms.json +msgid "{} Passed" +msgstr "" + +#. Count format of shortcut in the LMS Workspace +#: lms/lms/workspace/lms/lms.json +msgid "{} Published" +msgstr "" + diff --git a/lms/locale/sv.po b/lms/locale/sv.po index fdae320c..4e378f4c 100644 --- a/lms/locale/sv.po +++ b/lms/locale/sv.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n" -"POT-Creation-Date: 2025-04-04 16:04+0000\n" -"PO-Revision-Date: 2025-04-08 03:58\n" +"POT-Creation-Date: 2025-04-11 16:04+0000\n" +"PO-Revision-Date: 2025-04-15 06:20\n" "Last-Translator: jannat@frappe.io\n" "Language-Team: Swedish\n" "MIME-Version: 1.0\n" @@ -71,7 +71,7 @@ msgstr "Statistik" msgid "A course cannot have both paid certificate and certificate of completion." msgstr "Kurs kan inte ha både betalt certifikat och certifikat för genomförande." -#: frontend/src/pages/CourseForm.vue:41 +#: frontend/src/pages/CourseForm.vue:37 msgid "A one line introduction to the course that appears on the course card" msgstr "En rad introduktion till kurs som finns på kurskortet" @@ -145,7 +145,6 @@ msgid "Add a Student" msgstr "Lägga till Student" #: frontend/src/components/AppSidebar.vue:514 -#: frontend/src/components/OnboardingBanner.vue:56 msgid "Add a chapter" msgstr "Lägg till Kapitel" @@ -153,16 +152,15 @@ msgstr "Lägg till Kapitel" msgid "Add a course" msgstr "Lägg till kurs" -#: frontend/src/pages/CourseForm.vue:137 +#: frontend/src/pages/CourseForm.vue:133 msgid "Add a keyword and then press enter" msgstr "Lägg till nyckelord och tryck sedan på Enter" #: frontend/src/components/AppSidebar.vue:515 -#: frontend/src/components/OnboardingBanner.vue:81 msgid "Add a lesson" msgstr "Lägg till Lektion" -#: frontend/src/components/Modals/Question.vue:146 +#: frontend/src/components/Modals/Question.vue:147 #: frontend/src/pages/QuizForm.vue:183 msgid "Add a new question" msgstr "Lägg till ny fråga" @@ -235,7 +233,7 @@ msgid "Admin" msgstr "Administratör" #. Name of a role -#: frontend/src/pages/Batches.vue:282 lms/lms/doctype/lms_badge/lms_badge.json +#: frontend/src/pages/Batches.vue:284 lms/lms/doctype/lms_badge/lms_badge.json msgid "All" msgstr "Alla" @@ -259,7 +257,7 @@ msgstr "All Återkoppling" msgid "All Submissions" msgstr "Alla Godkännande" -#: lms/lms/doctype/lms_quiz/lms_quiz.py:46 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:44 msgid "All questions should have the same marks if the limit is set." msgstr "Alla frågor ska ha samma märken om gräns är angiven." @@ -294,7 +292,7 @@ msgstr "Redan Registrerad" #. Label of the amount (Currency) field in DocType 'LMS Batch' #. Label of the course_price (Currency) field in DocType 'LMS Course' #. Label of the amount (Currency) field in DocType 'LMS Payment' -#: frontend/src/pages/BatchForm.vue:209 frontend/src/pages/CourseForm.vue:221 +#: frontend/src/pages/BatchForm.vue:209 frontend/src/pages/CourseForm.vue:217 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_payment/lms_payment.json @@ -346,7 +344,7 @@ msgstr "Tillkännagivande är skickad" msgid "Answer" msgstr "Svara" -#: frontend/src/pages/CourseForm.vue:85 frontend/src/pages/CourseForm.vue:103 +#: frontend/src/pages/CourseForm.vue:81 frontend/src/pages/CourseForm.vue:99 msgid "Appears on the course card in the course list" msgstr "Visas på kurskort i kurslista" @@ -354,11 +352,11 @@ msgstr "Visas på kurskort i kurslista" msgid "Appears when the batch URL is shared on any online platform" msgstr "Visas när grupp URL delas på valfri online plattform" -#: frontend/src/pages/JobDetail.vue:121 +#: frontend/src/pages/JobDetail.vue:128 msgid "Applications Received" msgstr "Ansökan Mottagen" -#: frontend/src/pages/JobDetail.vue:42 +#: frontend/src/pages/JobDetail.vue:48 msgid "Apply" msgstr "Tillämpa" @@ -389,7 +387,7 @@ msgstr "Godkänd" msgid "Apps" msgstr "Appar" -#: frontend/src/pages/Batches.vue:292 +#: frontend/src/pages/Batches.vue:294 msgid "Archived" msgstr "Arkiverad" @@ -401,11 +399,6 @@ msgstr "Är du säker på att du vill avbryta denna utvärdering? Denna åtgärd msgid "Are you sure you want to login to your Frappe Cloud dashboard?" msgstr "Är du säker på att du vill logga in på din Översikt Panel i Frappe Cloud?" -#. Label of the user_category (Check) field in DocType 'LMS Settings' -#: lms/lms/doctype/lms_settings/lms_settings.json -msgid "Ask User Category during Signup" -msgstr "Fråga efter Användare Kategori under Registrering" - #. 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 @@ -470,6 +463,10 @@ msgstr "Uppgift Bilaga" msgid "Assignment Submission Template" msgstr "Uppgift Inlämning Mall" +#: frontend/src/pages/AssignmentSubmissionList.vue:223 +msgid "Assignment Submissions" +msgstr "Uppgift Inlämningar" + #. Label of the assignment_title (Data) field in DocType 'LMS Assignment #. Submission' #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json @@ -480,7 +477,7 @@ msgstr "Uppgift Benämning" msgid "Assignment for Lesson {0} by {1} already exists." msgstr "Uppgift för Lektion {0} av {1} finns redan." -#: frontend/src/pages/AssignmentForm.vue:155 +#: frontend/src/pages/AssignmentForm.vue:158 msgid "Assignment saved successfully" msgstr "Uppgift sparad" @@ -490,7 +487,8 @@ msgid "Assignment will appear at the bottom of the lesson." msgstr "Uppgift kommer att visas längst ner i lektion." #: frontend/src/components/AppSidebar.vue:531 -#: frontend/src/pages/AssignmentForm.vue:174 +#: frontend/src/pages/AssignmentForm.vue:177 +#: frontend/src/pages/Assignments.vue:193 lms/www/lms.py:251 msgid "Assignments" msgstr "Uppgifter" @@ -656,8 +654,8 @@ msgid "Batch:" msgstr "Parti:" #. Label of the batches (Check) field in DocType 'LMS Settings' -#: frontend/src/pages/Batches.vue:302 -#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:63 +#: frontend/src/pages/Batches.vue:304 frontend/src/pages/Batches.vue:311 +#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:105 msgid "Batches" msgstr "Grupper" @@ -675,7 +673,7 @@ msgstr "Vänliga hälsningar," #. Label of the billing_details_section (Section Break) field in DocType 'LMS #. Payment' -#: frontend/src/pages/Billing.vue:8 +#: frontend/src/pages/Billing.vue:8 frontend/src/pages/Billing.vue:363 #: lms/lms/doctype/lms_payment/lms_payment.json msgid "Billing Details" msgstr "Faktura Detaljer" @@ -757,8 +755,9 @@ msgstr "Fritidskläder" #. Label of the category (Link) field in DocType 'LMS Course' #: frontend/src/pages/BatchForm.vue:190 frontend/src/pages/Batches.vue:55 #: frontend/src/pages/CertifiedParticipants.vue:37 -#: frontend/src/pages/CourseForm.vue:148 frontend/src/pages/Courses.vue:51 -#: frontend/src/pages/JobDetail.vue:96 lms/lms/doctype/lms_batch/lms_batch.json +#: frontend/src/pages/CourseForm.vue:144 frontend/src/pages/Courses.vue:51 +#: frontend/src/pages/JobDetail.vue:103 +#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/public/js/common_functions.js:316 lms/templates/signup-form.html:22 @@ -813,7 +812,7 @@ msgstr "Certifikat genererade" #: frontend/src/components/Modals/Event.vue:371 #: frontend/src/pages/BatchForm.vue:37 frontend/src/pages/Batches.vue:38 #: frontend/src/pages/CourseCertification.vue:10 -#: frontend/src/pages/CourseCertification.vue:133 +#: frontend/src/pages/CourseCertification.vue:135 #: frontend/src/pages/Courses.vue:34 lms/fixtures/custom_field.json #: lms/lms/doctype/certification/certification.json #: lms/lms/doctype/lms_batch/lms_batch.json @@ -837,7 +836,8 @@ msgid "Certified" msgstr "Certifierad" #. Label of the certified_participants (Check) field in DocType 'LMS Settings' -#: frontend/src/pages/CertifiedParticipants.vue:161 +#: frontend/src/pages/CertifiedParticipants.vue:164 +#: frontend/src/pages/CertifiedParticipants.vue:171 #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Certified Participants" msgstr "Certifierade Deltagare" @@ -864,11 +864,11 @@ msgstr "Kapitel" msgid "Chapter Reference" msgstr "Kapitel Referens" -#: frontend/src/components/Modals/ChapterModal.vue:152 +#: frontend/src/components/Modals/ChapterModal.vue:155 msgid "Chapter added successfully" msgstr "Kapitel tillagt" -#: frontend/src/components/Modals/ChapterModal.vue:196 +#: frontend/src/components/Modals/ChapterModal.vue:199 msgid "Chapter updated successfully" msgstr "Kapitel uppdaterad" @@ -1117,7 +1117,7 @@ msgid "Completed by Students" msgstr "Klart av Studenter" #. Label of the enable_certification (Check) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:213 +#: frontend/src/pages/CourseForm.vue:209 #: lms/lms/doctype/lms_course/lms_course.json msgid "Completion Certificate" msgstr "Kompletterande Certifikat" @@ -1179,7 +1179,7 @@ msgid "Continue Learning" msgstr "Fortsätt lära dig" #. Option for the 'Type' (Select) field in DocType 'Job Opportunity' -#: frontend/src/pages/Jobs.vue:146 +#: frontend/src/pages/Jobs.vue:163 #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Contract" msgstr "Avtal" @@ -1294,6 +1294,7 @@ msgstr "Klara Kurser" #. Name of a role #: frontend/src/pages/ProfileRoles.vue:16 #: lms/lms/doctype/course_chapter/course_chapter.json +#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_program/lms_program.json @@ -1307,7 +1308,7 @@ msgstr "Kurs Skapare" msgid "Course Data" msgstr "Kursdata" -#: frontend/src/pages/CourseForm.vue:50 +#: frontend/src/pages/CourseForm.vue:46 msgid "Course Description" msgstr "Kursbeskrivning" @@ -1316,7 +1317,7 @@ msgstr "Kursbeskrivning" msgid "Course Evaluator" msgstr "Kurs Utvärderare" -#: frontend/src/pages/CourseForm.vue:63 +#: frontend/src/pages/CourseForm.vue:59 msgid "Course Image" msgstr "Kursbild" @@ -1330,7 +1331,7 @@ msgstr "Kurslärare" msgid "Course Lesson" msgstr "Kurslektion" -#: lms/www/lms.py:30 +#: lms/www/lms.py:70 msgid "Course List" msgstr "Kurslista" @@ -1338,7 +1339,7 @@ msgstr "Kurslista" msgid "Course Name" msgstr "Kursnamn" -#: frontend/src/pages/CourseDetail.vue:76 frontend/src/pages/CourseForm.vue:241 +#: frontend/src/pages/CourseDetail.vue:76 frontend/src/pages/CourseForm.vue:237 msgid "Course Outline" msgstr "Kursöversikt" @@ -1370,7 +1371,7 @@ msgstr "Kursstatistik" msgid "Course Title" msgstr "Kurs Benämning" -#: frontend/src/pages/ProgramForm.vue:229 +#: frontend/src/pages/ProgramForm.vue:232 msgid "Course added to program" msgstr "Kurs tillagd till program" @@ -1378,11 +1379,11 @@ msgstr "Kurs tillagd till program" msgid "Course already added to the batch." msgstr "Kurs har redan lagts till grupp." -#: frontend/src/pages/CourseForm.vue:472 +#: frontend/src/pages/CourseForm.vue:470 msgid "Course deleted successfully" msgstr "Kurs är borttagen" -#: frontend/src/pages/ProgramForm.vue:298 +#: frontend/src/pages/ProgramForm.vue:301 msgid "Course moved successfully" msgstr "Kurs flyttad" @@ -1400,8 +1401,9 @@ msgstr "Kurs {0} har redan lagts till i denna omgång." #: frontend/src/components/BatchStudents.vue:92 #: frontend/src/components/Modals/BatchStudentProgress.vue:79 #: frontend/src/pages/BatchDetail.vue:21 frontend/src/pages/BatchDetail.vue:70 -#: frontend/src/pages/CourseCertification.vue:125 -#: frontend/src/pages/Courses.vue:301 frontend/src/pages/Statistics.vue:21 +#: frontend/src/pages/CourseCertification.vue:127 +#: frontend/src/pages/Courses.vue:304 frontend/src/pages/Courses.vue:311 +#: frontend/src/pages/Statistics.vue:21 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Courses" @@ -1443,7 +1445,6 @@ msgid "Create a batch" msgstr "Skapa grupp" #: frontend/src/components/AppSidebar.vue:513 -#: frontend/src/components/OnboardingBanner.vue:30 msgid "Create a course" msgstr "Skapa Kurs" @@ -1467,7 +1468,7 @@ msgstr "Skapa din första kurs" msgid "Create your first quiz" msgstr "Skapa din första frågesport" -#: frontend/src/pages/Assignments.vue:163 frontend/src/pages/Courses.vue:292 +#: frontend/src/pages/Assignments.vue:166 frontend/src/pages/Courses.vue:295 msgid "Created" msgstr "Skapad" @@ -1482,7 +1483,7 @@ msgstr "Skapar kurs" #. Label of the currency (Link) field in DocType 'LMS Batch' #. Label of the currency (Link) field in DocType 'LMS Course' #. Label of the currency (Link) field in DocType 'LMS Payment' -#: frontend/src/pages/BatchForm.vue:217 frontend/src/pages/CourseForm.vue:226 +#: frontend/src/pages/BatchForm.vue:217 frontend/src/pages/CourseForm.vue:222 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_payment/lms_payment.json @@ -1585,9 +1586,9 @@ msgstr "Standard Valuta" msgid "Degree Type" msgstr "Examen Typ" -#: frontend/src/components/CourseOutline.vue:247 -#: frontend/src/components/CourseOutline.vue:305 -#: frontend/src/pages/CourseForm.vue:485 +#: frontend/src/components/CourseOutline.vue:248 +#: frontend/src/components/CourseOutline.vue:306 +#: frontend/src/pages/CourseForm.vue:483 msgid "Delete" msgstr "Ta bort" @@ -1595,27 +1596,27 @@ msgstr "Ta bort" msgid "Delete Chapter" msgstr "Ta bort Kapitel" -#: frontend/src/pages/CourseForm.vue:479 +#: frontend/src/pages/CourseForm.vue:477 msgid "Delete Course" msgstr "Ta bort kurs" -#: frontend/src/components/CourseOutline.vue:299 +#: frontend/src/components/CourseOutline.vue:300 msgid "Delete this chapter?" msgstr "Ta bort detta kapitel?" -#: frontend/src/components/CourseOutline.vue:241 +#: frontend/src/components/CourseOutline.vue:242 msgid "Delete this lesson?" msgstr "Ta bort denna lektion?" -#: frontend/src/pages/CourseForm.vue:480 +#: frontend/src/pages/CourseForm.vue:478 msgid "Deleting the course will also delete all its chapters and lessons. Are you sure you want to delete this course?" msgstr "Om du tar bort kurs raderas också alla dess kapitel och lektioner. Är du säker på att du vill ta bort denna kurs?" -#: frontend/src/components/CourseOutline.vue:300 +#: frontend/src/components/CourseOutline.vue:301 msgid "Deleting this chapter will also delete all its lessons and permanently remove it from the course. This action cannot be undone. Are you sure you want to continue?" msgstr "Borttagning av detta kapitel tar också bort alla dess lektioner och de tas bort permanent från kurs. Denna åtgärd kan inte ångras. Är du säker på att du vill fortsätta?" -#: frontend/src/components/CourseOutline.vue:242 +#: frontend/src/components/CourseOutline.vue:243 msgid "Deleting this lesson will permanently remove it from the course. This action cannot be undone. Are you sure you want to continue?" msgstr "Borttagning av denna lektion kommer att ta bort den permanent från kurs. Denna åtgärd kan inte ångras. Är du säker på att du vill fortsätta?" @@ -1654,11 +1655,11 @@ msgstr "Skrivbord" #: frontend/src/components/Modals/DiscussionModal.vue:22 #: frontend/src/pages/AssignmentForm.vue:27 frontend/src/pages/BatchForm.vue:14 -#: frontend/src/pages/CourseForm.vue:29 frontend/src/pages/QuizForm.vue:42 +#: frontend/src/pages/CourseForm.vue:25 frontend/src/pages/QuizForm.vue:42 msgid "Details" msgstr "Detaljer" -#: frontend/src/pages/CourseForm.vue:195 +#: frontend/src/pages/CourseForm.vue:191 msgid "Disable Self Enrollment" msgstr "Inaktivera självregistrering" @@ -1667,6 +1668,11 @@ msgstr "Inaktivera självregistrering" msgid "Disable Self Learning" msgstr "Inaktivera självlärande" +#. Label of the disable_signup (Check) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Disable Signup" +msgstr "Inaktivera Registrering" + #. Label of the disabled (Check) field in DocType 'Job Opportunity' #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Disabled" @@ -1808,7 +1814,7 @@ msgstr "Personal" msgid "Enable" msgstr "Aktivera" -#: lms/lms/doctype/lms_settings/lms_settings.py:20 +#: lms/lms/doctype/lms_settings/lms_settings.py:21 msgid "Enable Google API in Google Settings to send calendar invites for evaluations." msgstr "Aktivera Google API i Google Inställningar för att skicka kalenderinbjudningar för utvärderingar." @@ -1867,7 +1873,7 @@ msgstr "Slut Tid" msgid "Enroll Now" msgstr "Registrera Nu" -#: frontend/src/pages/Batches.vue:295 frontend/src/pages/Courses.vue:294 +#: frontend/src/pages/Batches.vue:297 frontend/src/pages/Courses.vue:297 msgid "Enrolled" msgstr "Inskriven" @@ -1902,7 +1908,7 @@ msgstr "Registrering Misslyckad" msgid "Enrollments" msgstr "Inskrivningar" -#: lms/lms/doctype/lms_settings/lms_settings.py:25 +#: lms/lms/doctype/lms_settings/lms_settings.py:26 msgid "Enter Client Id and Client Secret in Google Settings to send calendar invites for evaluations." msgstr "Ange Klient Id och Klient Hemlighet i Google inställningar för att skicka kalender inbjudningar för utvärderingar." @@ -1921,19 +1927,19 @@ msgstr "Ange korrekt svar" #: frontend/src/components/Assignment.vue:287 #: frontend/src/components/Modals/AnnouncementModal.vue:105 #: frontend/src/components/Modals/BulkCertificates.vue:115 -#: frontend/src/components/Modals/ChapterModal.vue:157 -#: frontend/src/components/Modals/ChapterModal.vue:164 -#: frontend/src/components/Modals/ChapterModal.vue:200 -#: frontend/src/components/Modals/Question.vue:251 -#: frontend/src/components/Modals/Question.vue:272 -#: frontend/src/components/Modals/Question.vue:329 -#: frontend/src/components/Modals/StudentModal.vue:70 +#: frontend/src/components/Modals/ChapterModal.vue:160 +#: frontend/src/components/Modals/ChapterModal.vue:167 +#: frontend/src/components/Modals/ChapterModal.vue:203 +#: frontend/src/components/Modals/Question.vue:252 +#: frontend/src/components/Modals/Question.vue:275 +#: frontend/src/components/Modals/Question.vue:332 +#: frontend/src/components/Modals/StudentModal.vue:73 #: frontend/src/components/Quiz.vue:592 #: frontend/src/components/SettingDetails.vue:62 -#: frontend/src/pages/AssignmentForm.vue:139 -#: frontend/src/pages/AssignmentForm.vue:159 frontend/src/pages/Billing.vue:261 -#: frontend/src/pages/QuizForm.vue:346 frontend/src/pages/QuizForm.vue:361 -#: frontend/src/pages/QuizSubmission.vue:147 +#: frontend/src/pages/AssignmentForm.vue:142 +#: frontend/src/pages/AssignmentForm.vue:162 frontend/src/pages/Billing.vue:262 +#: frontend/src/pages/QuizForm.vue:349 frontend/src/pages/QuizForm.vue:364 +#: frontend/src/pages/QuizSubmission.vue:150 msgid "Error" msgstr "Fel" @@ -1982,7 +1988,7 @@ msgstr "Utvärdering sparad" #. Label of the evaluator (Link) field in DocType 'LMS Course' #: frontend/src/components/Modals/BatchCourseModal.vue:26 #: frontend/src/components/Modals/BulkCertificates.vue:22 -#: frontend/src/pages/CourseForm.vue:232 frontend/src/pages/ProfileRoles.vue:22 +#: frontend/src/pages/CourseForm.vue:228 frontend/src/pages/ProfileRoles.vue:22 #: lms/lms/doctype/batch_course/batch_course.json #: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json @@ -2100,7 +2106,7 @@ msgstr "Misslyckad " #. Label of the featured (Check) field in DocType 'LMS Course' #: frontend/src/components/CourseCard.vue:16 -#: frontend/src/pages/CourseForm.vue:190 +#: frontend/src/pages/CourseForm.vue:186 #: lms/lms/doctype/lms_course/lms_course.json msgid "Featured" msgstr "Utvald" @@ -2149,10 +2155,6 @@ msgstr "Fast 9-5" msgid "Flexible Time" msgstr "Flexibel Tid" -#: frontend/src/pages/QuizForm.vue:459 -msgid "Form to create and edit quizzes" -msgstr "Formulär för att skapa och redigera frågesporter" - #. Option for the 'Attire Preference' (Select) field in DocType 'User' #: lms/fixtures/custom_field.json msgid "Formal Wear" @@ -2163,7 +2165,7 @@ msgid "Free" msgstr "Gratis" #. Option for the 'Type' (Select) field in DocType 'Job Opportunity' -#: frontend/src/pages/Jobs.vue:147 +#: frontend/src/pages/Jobs.vue:164 #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Freelance" msgstr "Frilansare" @@ -2207,7 +2209,7 @@ msgid "Full Name" msgstr "Fullständig Namn" #. Option for the 'Type' (Select) field in DocType 'Job Opportunity' -#: frontend/src/pages/Jobs.vue:144 +#: frontend/src/pages/Jobs.vue:161 #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Full Time" msgstr "Heltid" @@ -2385,7 +2387,7 @@ msgstr "Jag söker jobb" msgid "I am unavailable" msgstr "Jag är inte tillgänglig" -#: frontend/src/pages/QuizForm.vue:380 +#: frontend/src/pages/QuizForm.vue:383 msgid "ID" msgstr "ID" @@ -2395,6 +2397,11 @@ msgstr "ID" msgid "Icon" msgstr "Ikon" +#. Label of the user_category (Check) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Identify User Persona" +msgstr "Identifiera Användare" + #: frontend/src/components/LessonHelp.vue:11 msgid "If Include in Preview is enabled for a lesson then the lesson will also be accessible to non logged in users." msgstr "Om Inkludera i Förhandsvisning är aktiverat för en lektion då lektionen kommer också att vara tillgänglig för ej inloggade användare." @@ -2425,7 +2432,7 @@ msgstr "Om du har några frågor eller behöver hjälp är du välkommen att kon msgid "If you set an amount here, then the USD equivalent setting will not get applied." msgstr "Om du anger belopp här kommer motsvarande USD inställning inte att tillämpas." -#: lms/lms/doctype/lms_quiz/lms_quiz.py:63 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:61 msgid "If you want open ended questions then make sure each question in the quiz is of open ended type." msgstr "Om du vill ha öppna frågor ska du se till att varje fråga i frågesporten är av typen öppna frågor." @@ -2451,7 +2458,7 @@ msgstr "Bild" msgid "Image search powered by" msgstr "Bildsökning drivs av" -#: lms/lms/doctype/lms_quiz/lms_quiz.py:221 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:219 msgid "Image: Corrupted Data Stream" msgstr "Bild: Skadad Dataström" @@ -2540,7 +2547,7 @@ msgstr "Lärare Anteckningar" #. Label of the instructors (Table MultiSelect) field in DocType 'LMS Batch' #. Label of the instructors (Rating) field in DocType 'LMS Batch Feedback' #. Label of the instructors (Table MultiSelect) field in DocType 'LMS Course' -#: frontend/src/pages/BatchForm.vue:93 frontend/src/pages/CourseForm.vue:155 +#: frontend/src/pages/BatchForm.vue:93 frontend/src/pages/CourseForm.vue:151 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json #: lms/lms/doctype/lms_course/lms_course.json @@ -2565,10 +2572,14 @@ msgstr "Introduktion" msgid "Invalid Invite Code." msgstr "Ogiltig Inbjudan Kod." -#: lms/lms/doctype/course_lesson/course_lesson.py:20 +#: lms/lms/doctype/course_lesson/course_lesson.py:19 msgid "Invalid Quiz ID" msgstr "Ogiltigt Frågesport ID" +#: lms/lms/doctype/course_lesson/course_lesson.py:33 +msgid "Invalid Quiz ID in content" +msgstr "Ogiltigt Frågesport ID" + #. Label of the invite_code (Data) field in DocType 'Cohort Subgroup' #. Label of the invite_code (Data) field in DocType 'Invite Request' #: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json @@ -2607,11 +2618,6 @@ msgstr "Bjud in ditt team och dina studenter" msgid "Is Correct" msgstr "Är korrekt" -#. Label of the is_onboarding_complete (Check) field in DocType 'LMS Settings' -#: lms/lms/doctype/lms_settings/lms_settings.json -msgid "Is Onboarding Complete" -msgstr "Är Introduktion Klar" - #. Label of the is_scorm_package (Check) field in DocType 'Course Chapter' #. Label of the is_scorm_package (Check) field in DocType 'Course Lesson' #: lms/lms/doctype/course_chapter/course_chapter.json @@ -2650,7 +2656,7 @@ msgstr "Utfärdad" msgid "Items in Sidebar" msgstr "Artiklar i Sidofält" -#: frontend/src/pages/ProgramForm.vue:272 +#: frontend/src/pages/ProgramForm.vue:275 msgid "Items removed successfully" msgstr "Artiklar borttagna" @@ -2677,7 +2683,7 @@ msgstr "Jobb Styrelse Benämning" msgid "Job Details" msgstr "Jobb Detaljer" -#: lms/www/lms.py:111 +#: lms/www/lms.py:159 msgid "Job Openings" msgstr "Jobb Erbjudande" @@ -2700,6 +2706,7 @@ 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:170 #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Jobs" msgstr "Jobb" @@ -2923,7 +2930,6 @@ msgstr "Källa" #: lms/job/doctype/lms_job_application/lms_job_application.json #: lms/lms/doctype/cohort_join_request/cohort_join_request.json #: lms/lms/doctype/course_chapter/course_chapter.json -#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/function/function.json #: lms/lms/doctype/industry/industry.json #: lms/lms/doctype/lms_assignment/lms_assignment.json @@ -3035,7 +3041,7 @@ msgstr "Bokstavsbetyg (t.ex. A, B-)" msgid "Limit Questions To" msgstr "Begränsa frågor till" -#: lms/lms/doctype/lms_quiz/lms_quiz.py:40 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:38 msgid "Limit cannot be greater than or equal to the number of questions in the quiz." msgstr "Gränsen kan inte vara större än eller lika med antalet frågor i frågesport." @@ -3055,12 +3061,8 @@ msgstr "LinkedIn ID" msgid "Links" msgstr "Länkar" -#: frontend/src/pages/Quizzes.vue:149 -msgid "List of quizzes" -msgstr "Lista över frågesporter" - #. Option for the 'Status' (Select) field in DocType 'Cohort' -#: frontend/src/pages/Courses.vue:278 lms/lms/doctype/cohort/cohort.json +#: frontend/src/pages/Courses.vue:281 lms/lms/doctype/cohort/cohort.json msgid "Live" msgstr "Live" @@ -3092,7 +3094,7 @@ msgstr "Lokal" #. Label of the location (Data) field in DocType 'Job Opportunity' #. Label of the location (Data) field in DocType 'Education Detail' #. Label of the location (Data) field in DocType 'Work Experience' -#: frontend/src/pages/JobCreation.vue:26 frontend/src/pages/JobDetail.vue:85 +#: frontend/src/pages/JobCreation.vue:26 frontend/src/pages/JobDetail.vue:92 #: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/lms/doctype/education_detail/education_detail.json #: lms/lms/doctype/work_experience/work_experience.json @@ -3114,7 +3116,7 @@ msgstr "Logga In" msgid "Login to Frappe Cloud?" msgstr "Logga in på Frappe Cloud?" -#: frontend/src/pages/JobDetail.vue:48 +#: frontend/src/pages/JobDetail.vue:54 msgid "Login to apply" msgstr "Logga in för att ansöka" @@ -3171,7 +3173,7 @@ msgstr "Markera som läst" #. Label of the marks (Int) field in DocType 'LMS Quiz Result' #: frontend/src/components/Modals/Question.vue:50 #: frontend/src/components/Modals/Question.vue:99 -#: frontend/src/components/Quiz.vue:96 frontend/src/pages/QuizForm.vue:390 +#: frontend/src/components/Quiz.vue:96 frontend/src/pages/QuizForm.vue:393 #: frontend/src/pages/QuizSubmission.vue:65 #: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json #: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json @@ -3233,7 +3235,7 @@ msgstr "Medium:" #. Label of the member (Link) field in DocType 'LMS Quiz Submission' #: frontend/src/pages/AssignmentSubmissionList.vue:14 #: frontend/src/pages/QuizSubmission.vue:31 -#: frontend/src/pages/QuizSubmissionList.vue:86 +#: frontend/src/pages/QuizSubmissionList.vue:102 #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_submission/exercise_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json @@ -3314,7 +3316,7 @@ msgstr "Medlem Typ" msgid "Member Username" msgstr "Medlem Användarnamn" -#: frontend/src/pages/ProgramForm.vue:251 +#: frontend/src/pages/ProgramForm.vue:254 msgid "Member added to program" msgstr "Medlem tillagd till program" @@ -3378,6 +3380,11 @@ msgstr "Mentor Begäran Skapande Mall" msgid "Mentor Request Status Update Template" msgstr "Mentor Begäran Status Uppdatering Mall" +#. Label of the meta_description (Small Text) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Meta Description" +msgstr "Meta Beskrivning" + #. Label of the meta_image (Attach Image) field in DocType 'LMS Batch' #: frontend/src/pages/BatchForm.vue:44 lms/lms/doctype/lms_batch/lms_batch.json #: lms/public/js/common_functions.js:362 @@ -3400,6 +3407,7 @@ msgstr "Minst två alternativ erfordras för flervalsfrågor." #. Name of a role #: frontend/src/pages/ProfileRoles.vue:10 #: lms/lms/doctype/course_evaluator/course_evaluator.json +#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/lms_assignment/lms_assignment.json #: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json #: lms/lms/doctype/lms_batch/lms_batch.json @@ -3459,12 +3467,13 @@ msgstr "Min kalender" #. Option for the 'Event' (Select) field in DocType 'LMS Badge' #: frontend/src/pages/Assignments.vue:18 frontend/src/pages/Batches.vue:17 -#: frontend/src/pages/Courses.vue:17 frontend/src/pages/Courses.vue:281 +#: frontend/src/pages/Courses.vue:17 frontend/src/pages/Courses.vue:284 #: frontend/src/pages/Programs.vue:14 lms/lms/doctype/lms_badge/lms_badge.json msgid "New" msgstr "Ny" -#: frontend/src/pages/AssignmentForm.vue:178 +#: frontend/src/pages/AssignmentForm.vue:181 +#: frontend/src/pages/AssignmentForm.vue:197 msgid "New Assignment" msgstr "Ny Uppgift" @@ -3472,11 +3481,11 @@ msgstr "Ny Uppgift" msgid "New Assignment Submission" msgstr "Ny Uppgift Inlämning" -#: lms/public/js/common_functions.js:255 lms/www/lms.py:89 +#: lms/public/js/common_functions.js:255 lms/www/lms.py:134 msgid "New Batch" msgstr "Ny Grupp" -#: lms/www/lms.py:40 +#: frontend/src/pages/CourseForm.vue:577 lms/www/lms.py:78 msgid "New Course" msgstr "Ny Kurs" @@ -3504,7 +3513,7 @@ msgstr "Ny Program Medlem" msgid "New Question" msgstr "Ny Fråga" -#: frontend/src/pages/QuizForm.vue:450 frontend/src/pages/QuizForm.vue:458 +#: frontend/src/pages/QuizForm.vue:453 frontend/src/pages/QuizForm.vue:461 #: frontend/src/pages/Quizzes.vue:18 msgid "New Quiz" msgstr "Nytt Frågesport" @@ -3599,9 +3608,9 @@ msgstr "Ingen återkoppling mottagen ännu." msgid "No introduction" msgstr "Ingen introduktion" -#: frontend/src/pages/Jobs.vue:77 -msgid "No jobs posted" -msgstr "Inga jobb utannonserade" +#: frontend/src/pages/Jobs.vue:80 +msgid "No jobs found" +msgstr "Inga jobb hittades" #: frontend/src/components/LiveClass.vue:71 msgid "No live classes scheduled" @@ -3615,6 +3624,10 @@ msgstr "Inga deltagare hittades" msgid "No programs found" msgstr "Inga program hittades" +#: frontend/src/pages/QuizSubmissionList.vue:52 +msgid "No quiz submissions found. Please check again later." +msgstr "Inga frågesport inlämningar hittades. Kontrollera igen senare." + #: frontend/src/pages/Quizzes.vue:61 msgid "No quizzes found" msgstr "Inga frågesporter hittades" @@ -3624,6 +3637,7 @@ msgid "No slots available for this date." msgstr "Inga lediga tider för detta datum." #: frontend/src/pages/AssignmentSubmissionList.vue:67 +#: frontend/src/pages/QuizSubmissionList.vue:49 msgid "No submissions" msgstr "Inga inlämningar" @@ -3724,11 +3738,11 @@ msgstr "Endast kurser för vilka självinlärning är inaktiverat kan läggas ti msgid "Only files of type {0} will be accepted." msgstr "Endast filer av typ {0} kommer att accepteras." -#: frontend/src/pages/CourseForm.vue:509 frontend/src/utils/index.js:549 +#: frontend/src/pages/CourseForm.vue:507 frontend/src/utils/index.js:550 msgid "Only image file is allowed." msgstr "Endast bildfiler är tillåtna." -#: frontend/src/components/Modals/ChapterModal.vue:218 +#: frontend/src/components/Modals/ChapterModal.vue:221 msgid "Only zip files are allowed" msgstr "Endast zip filer är tillåtna" @@ -3786,7 +3800,7 @@ msgstr "Alternativ 4" msgid "Order ID" msgstr "Order ID" -#: frontend/src/pages/JobDetail.vue:74 +#: frontend/src/pages/JobDetail.vue:81 msgid "Organisation" msgstr "Organisation" @@ -3835,7 +3849,7 @@ msgid "Paid Batch" msgstr "Betald Parti" #. Label of the paid_certificate (Check) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:218 +#: frontend/src/pages/CourseForm.vue:214 #: lms/lms/doctype/lms_course/lms_course.json msgid "Paid Certificate" msgstr "Betalt Certifikat" @@ -3845,7 +3859,7 @@ msgid "Paid Certificate after Evaluation" msgstr "Betald Certifikat efter Utvärdering" #. Label of the paid_course (Check) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:208 +#: frontend/src/pages/CourseForm.vue:204 #: lms/lms/doctype/lms_course/lms_course.json msgid "Paid Course" msgstr "Betald Kurs" @@ -3855,7 +3869,7 @@ msgid "Pan Number" msgstr "Pan Nummer" #. Option for the 'Type' (Select) field in DocType 'Job Opportunity' -#: frontend/src/pages/Jobs.vue:145 +#: frontend/src/pages/Jobs.vue:162 #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Part Time" msgstr "Deltid" @@ -3877,7 +3891,7 @@ msgstr "Godkänd" #. Label of the passing_percentage (Int) field in DocType 'LMS Quiz' #. Label of the passing_percentage (Int) field in DocType 'LMS Quiz Submission' -#: frontend/src/pages/QuizForm.vue:72 frontend/src/pages/Quizzes.vue:127 +#: frontend/src/pages/QuizForm.vue:72 frontend/src/pages/Quizzes.vue:129 #: lms/lms/doctype/lms_quiz/lms_quiz.json #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json msgid "Passing Percentage" @@ -3888,7 +3902,7 @@ msgstr "Passerande Procent" msgid "Password" msgstr "Lösenord" -#: frontend/src/pages/CourseForm.vue:113 +#: frontend/src/pages/CourseForm.vue:109 msgid "Paste the youtube link of a short video introducing the course" msgstr "Klistra in youtube länk i kort video för kursintroduktion" @@ -3980,7 +3994,7 @@ msgstr "Pågående" #. Label of the percentage (Int) field in DocType 'LMS Quiz Submission' #: frontend/src/pages/QuizSubmission.vue:44 -#: frontend/src/pages/QuizSubmissionList.vue:97 +#: frontend/src/pages/QuizSubmissionList.vue:113 #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json msgid "Percentage" msgstr "Procentuell" @@ -4002,7 +4016,7 @@ msgstr "Telefon Nummer" msgid "Please Login" msgstr "Logga in" -#: lms/lms/doctype/lms_settings/lms_settings.py:33 +#: lms/lms/doctype/lms_settings/lms_settings.py:34 msgid "Please add {1} for {3} to send calendar invites for evaluations." msgstr "Lägg till {1} för {3} för att skicka kalender inbjudningar för utvärderingar." @@ -4026,7 +4040,7 @@ msgstr "Slutför tidigare kurser i program för att anmäla dig till denna kurs. msgid "Please enable Zoom Settings to use this feature." msgstr "Aktivera Zoom Inställningar för att använda denna funktion." -#: frontend/src/components/CourseOutline.vue:324 +#: frontend/src/components/CourseOutline.vue:325 msgid "Please enroll for this course to view this lesson" msgstr "Anmäl dig till denna kurs för att se denna lektion" @@ -4063,7 +4077,7 @@ msgstr "Installera Betalning app för att skapa betalda grupper." msgid "Please install the Payments app to create a paid courses." msgstr "Installera Betalning App för att skapa betalda kurser." -#: frontend/src/pages/Billing.vue:253 +#: frontend/src/pages/Billing.vue:254 msgid "Please let us know where you heard about us from." msgstr "Låt oss veta varifrån du hörde talas om oss." @@ -4112,7 +4126,7 @@ msgstr "Välj tidszon." msgid "Please take appropriate action at {0}" msgstr "Vidta lämpliga åtgärder {0}" -#: frontend/src/components/Modals/ChapterModal.vue:175 +#: frontend/src/components/Modals/ChapterModal.vue:178 msgid "Please upload a SCORM package" msgstr "Ladda upp SCORM App" @@ -4158,7 +4172,7 @@ msgstr "Post" msgid "Postal Code" msgstr "Postnummer" -#: frontend/src/pages/JobDetail.vue:107 +#: frontend/src/pages/JobDetail.vue:114 msgid "Posted on" msgstr "Postad" @@ -4193,7 +4207,7 @@ msgstr "Föredragen Plats" msgid "Preview Image" msgstr "Förhandsgranska Bild" -#: frontend/src/pages/CourseForm.vue:111 +#: frontend/src/pages/CourseForm.vue:107 msgid "Preview Video" msgstr "Förhandsgranska Video" @@ -4208,7 +4222,7 @@ msgid "Pricing" msgstr "Prissättning" #. Label of the pricing_tab (Tab Break) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:202 +#: frontend/src/pages/CourseForm.vue:198 #: lms/lms/doctype/lms_course/lms_course.json msgid "Pricing and Certification" msgstr "Prissättning och Certifiering" @@ -4272,6 +4286,10 @@ msgstr "Program Medlem" msgid "Program Members" msgstr "Program Medlemmar" +#: frontend/src/pages/Programs.vue:219 lms/www/lms.py:273 +msgid "Programs" +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/BatchStudents.vue:75 @@ -4301,7 +4319,7 @@ msgstr "Publicera på deltagarsidan" #. Label of the published (Check) field in DocType 'LMS Course' #: frontend/src/components/Modals/BulkCertificates.vue:51 #: frontend/src/components/Modals/Event.vue:108 -#: frontend/src/pages/BatchForm.vue:27 frontend/src/pages/CourseForm.vue:172 +#: frontend/src/pages/BatchForm.vue:27 frontend/src/pages/CourseForm.vue:168 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/public/js/common_functions.js:266 @@ -4314,7 +4332,7 @@ msgid "Published Courses" msgstr "Publicerade Kurser" #. Label of the published_on (Date) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:176 +#: frontend/src/pages/CourseForm.vue:172 #: lms/lms/doctype/lms_course/lms_course.json msgid "Published On" msgstr "Publicerad" @@ -4333,7 +4351,7 @@ msgstr "Förvärvad Certifikat" #. Label of the question (Text) field in DocType 'LMS Quiz Result' #: frontend/src/components/Assignment.vue:20 #: frontend/src/components/Modals/Question.vue:38 -#: frontend/src/pages/AssignmentForm.vue:45 frontend/src/pages/QuizForm.vue:385 +#: frontend/src/pages/AssignmentForm.vue:45 frontend/src/pages/QuizForm.vue:388 #: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/lms_assignment/lms_assignment.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json @@ -4358,11 +4376,11 @@ msgstr "Fråga Detalj" msgid "Question Name" msgstr "Fråga Namn" -#: frontend/src/components/Modals/Question.vue:267 +#: frontend/src/components/Modals/Question.vue:270 msgid "Question added successfully" msgstr "Fråga tillagd" -#: frontend/src/components/Modals/Question.vue:319 +#: frontend/src/components/Modals/Question.vue:322 msgid "Question updated successfully" msgstr "Fråga uppdaterad" @@ -4379,7 +4397,7 @@ msgstr "Fråga {0} av {1}" msgid "Questions" msgstr "Frågor" -#: frontend/src/pages/QuizForm.vue:427 +#: frontend/src/pages/QuizForm.vue:430 msgid "Questions deleted successfully" msgstr "Frågor är borttagna" @@ -4397,13 +4415,13 @@ msgid "Quiz ID" msgstr "Frågesport ID" #. Label of a Link in the LMS Workspace -#: frontend/src/pages/QuizPage.vue:56 frontend/src/pages/QuizPage.vue:62 -#: lms/lms/workspace/lms/lms.json +#: frontend/src/pages/QuizPage.vue:57 lms/lms/workspace/lms/lms.json msgid "Quiz Submission" msgstr "Frågesport Inlämning" -#: frontend/src/pages/QuizSubmission.vue:128 -#: frontend/src/pages/QuizSubmissionList.vue:106 +#: frontend/src/pages/QuizSubmission.vue:131 +#: frontend/src/pages/QuizSubmissionList.vue:122 +#: frontend/src/pages/QuizSubmissionList.vue:127 msgid "Quiz Submissions" msgstr "Frågesport Inlämningar" @@ -4416,7 +4434,7 @@ msgstr "Frågesport Sammanfattning" msgid "Quiz Title" msgstr "Frågesport Benämning" -#: frontend/src/pages/QuizForm.vue:339 +#: frontend/src/pages/QuizForm.vue:342 msgid "Quiz created successfully" msgstr "Frågesport skapad" @@ -4424,7 +4442,7 @@ msgstr "Frågesport skapad" msgid "Quiz is not available to Guest users. Please login to continue." msgstr "Frågesport är inte tillgänglig för gästanvändare. Logga in för att fortsätta." -#: frontend/src/pages/QuizForm.vue:358 +#: frontend/src/pages/QuizForm.vue:361 msgid "Quiz updated successfully" msgstr "Frågesport uppdaterad" @@ -4434,8 +4452,8 @@ msgid "Quiz will appear at the bottom of the lesson." msgstr "Frågesport kommer att visas längst ner i lektionen." #: frontend/src/components/AppSidebar.vue:530 -#: frontend/src/pages/QuizForm.vue:438 frontend/src/pages/Quizzes.vue:138 -#: frontend/src/pages/Quizzes.vue:148 +#: frontend/src/pages/QuizForm.vue:441 frontend/src/pages/Quizzes.vue:140 +#: frontend/src/pages/Quizzes.vue:150 lms/www/lms.py:229 msgid "Quizzes" msgstr "Frågesporter" @@ -4513,7 +4531,7 @@ msgstr "Avvisad" msgid "Related Courses" msgstr "Relaterade Kurser" -#: frontend/src/pages/BatchForm.vue:77 frontend/src/pages/CourseForm.vue:100 +#: frontend/src/pages/BatchForm.vue:77 frontend/src/pages/CourseForm.vue:96 msgid "Remove" msgstr "Ta bort" @@ -4607,7 +4625,7 @@ msgstr "Rad #{0} Starttid kan inte vara senare än eller lika med sluttid." msgid "Row #{0} Start time cannot be outside the batch duration." msgstr "Rad #{0} Starttid kan inte vara utanför grupp varaktighet." -#: lms/lms/doctype/lms_quiz/lms_quiz.py:34 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:32 msgid "Rows {0} have the duplicate questions." msgstr "Rader {0} har duplicerade frågor." @@ -4631,6 +4649,11 @@ msgstr "SCORM App" msgid "SCORM Package Path" msgstr "SCORM App Sökväg" +#. Label of the seo_tab (Tab Break) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "SEO" +msgstr "SEO" + #. Option for the 'Day' (Select) field in DocType 'Evaluator Schedule' #. Option for the 'Day' (Select) field in DocType 'LMS Certificate Request' #: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json @@ -4644,7 +4667,7 @@ msgstr "Lördag" #: frontend/src/components/Modals/Event.vue:101 #: frontend/src/components/Modals/Event.vue:129 #: frontend/src/pages/AssignmentForm.vue:21 frontend/src/pages/BatchForm.vue:8 -#: frontend/src/pages/CourseForm.vue:21 frontend/src/pages/JobCreation.vue:8 +#: frontend/src/pages/CourseForm.vue:17 frontend/src/pages/JobCreation.vue:8 #: frontend/src/pages/LessonForm.vue:14 frontend/src/pages/ProgramForm.vue:7 #: frontend/src/pages/QuizForm.vue:34 frontend/src/pages/QuizSubmission.vue:14 #: lms/public/js/common_functions.js:405 @@ -4673,7 +4696,7 @@ msgstr "Omfatning" #. Label of the score (Int) field in DocType 'LMS Quiz Submission' #: frontend/src/pages/QuizSubmission.vue:39 -#: frontend/src/pages/QuizSubmissionList.vue:91 +#: frontend/src/pages/QuizSubmissionList.vue:107 #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json #: lms/templates/quiz/quiz.html:148 msgid "Score" @@ -4767,7 +4790,7 @@ msgstr "Konfigurerar Betalningsport" #: frontend/src/components/AppSidebar.vue:556 #: frontend/src/components/Modals/Settings.vue:7 -#: frontend/src/pages/BatchForm.vue:148 frontend/src/pages/CourseForm.vue:162 +#: frontend/src/pages/BatchForm.vue:148 frontend/src/pages/CourseForm.vue:158 #: frontend/src/pages/ProfileRoles.vue:4 frontend/src/pages/QuizForm.vue:79 msgid "Settings" msgstr "Inställningar" @@ -4781,7 +4804,7 @@ msgid "Short Description" msgstr "Kort Beskrivning" #. Label of the short_introduction (Small Text) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:39 +#: frontend/src/pages/CourseForm.vue:35 #: lms/lms/doctype/lms_course/lms_course.json msgid "Short Introduction" msgstr "Kort Introduktion" @@ -4892,10 +4915,6 @@ msgstr "Färdigheter" msgid "Skip" msgstr "Hoppa Över" -#: frontend/src/components/OnboardingBanner.vue:3 -msgid "Skip Onboarding" -msgstr "Hoppa över Introduktion" - #: lms/lms/doctype/course_evaluator/course_evaluator.py:63 msgid "Slot Times are overlapping for some schedules." msgstr "Tider överlappar för vissa schema." @@ -5009,8 +5028,9 @@ msgstr "Län" #. Label of the tab_4_tab (Tab Break) field in DocType 'LMS Course' #. Label of the statistics (Check) field in DocType 'LMS Settings' #: frontend/src/components/BatchStudents.vue:5 +#: frontend/src/pages/Statistics.vue:322 #: lms/lms/doctype/lms_course/lms_course.json -#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:136 +#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:182 msgid "Statistics" msgstr "Statistik" @@ -5110,7 +5130,7 @@ msgstr "Inlämning av" #: frontend/src/components/Modals/AssessmentModal.vue:9 #: frontend/src/components/Modals/BatchCourseModal.vue:9 #: frontend/src/components/Modals/EvaluationModal.vue:9 -#: frontend/src/components/Modals/Question.vue:341 +#: frontend/src/components/Modals/Question.vue:344 #: frontend/src/components/Quiz.vue:218 lms/templates/assignment.html:9 #: lms/templates/livecode/extension_footer.html:25 #: lms/templates/quiz/quiz.html:128 lms/templates/reviews.html:163 @@ -5135,18 +5155,18 @@ msgstr "Inskickad {0}" #: frontend/src/components/Modals/AnnouncementModal.vue:99 #: frontend/src/components/Modals/AssessmentModal.vue:73 #: frontend/src/components/Modals/BulkCertificates.vue:121 -#: frontend/src/components/Modals/ChapterModal.vue:151 -#: frontend/src/components/Modals/ChapterModal.vue:196 +#: frontend/src/components/Modals/ChapterModal.vue:154 +#: frontend/src/components/Modals/ChapterModal.vue:199 #: frontend/src/components/Modals/Event.vue:255 #: frontend/src/components/Modals/Event.vue:310 -#: frontend/src/components/Modals/Question.vue:267 -#: frontend/src/components/Modals/Question.vue:318 -#: frontend/src/pages/AssignmentForm.vue:155 -#: frontend/src/pages/CourseForm.vue:472 frontend/src/pages/ProgramForm.vue:229 -#: frontend/src/pages/ProgramForm.vue:251 -#: frontend/src/pages/ProgramForm.vue:272 -#: frontend/src/pages/ProgramForm.vue:298 frontend/src/pages/QuizForm.vue:339 -#: frontend/src/pages/QuizForm.vue:358 frontend/src/pages/QuizForm.vue:427 +#: frontend/src/components/Modals/Question.vue:270 +#: frontend/src/components/Modals/Question.vue:321 +#: frontend/src/pages/AssignmentForm.vue:158 +#: frontend/src/pages/CourseForm.vue:470 frontend/src/pages/ProgramForm.vue:232 +#: frontend/src/pages/ProgramForm.vue:254 +#: frontend/src/pages/ProgramForm.vue:275 +#: frontend/src/pages/ProgramForm.vue:301 frontend/src/pages/QuizForm.vue:342 +#: frontend/src/pages/QuizForm.vue:361 frontend/src/pages/QuizForm.vue:430 msgid "Success" msgstr "Klar" @@ -5164,7 +5184,7 @@ msgstr "Översikt" msgid "Sunday" msgstr "Söndag" -#: lms/lms/api.py:1026 +#: lms/lms/api.py:1027 msgid "Suspicious pattern found in {0}: {1}" msgstr "Misstänkt mönster hittat i {0}: {1}" @@ -5220,7 +5240,7 @@ msgid "System Manager" msgstr "System Ansvarig" #. Label of the tags (Data) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:121 +#: frontend/src/pages/CourseForm.vue:117 #: lms/lms/doctype/lms_course/lms_course.json msgid "Tags" msgstr "Taggar" @@ -5325,6 +5345,10 @@ msgstr "Det finns inga kapitel i denna kurs. Skapa och hantera kapitel härifrå msgid "There are no courses matching the criteria. Keep an eye out, fresh learning experiences are on the way soon!" msgstr "Det finns inga kurser som stämmer med kriterierna. Håll utkik, nya inlärningsupplevelser är på väg snart!" +#: frontend/src/pages/Jobs.vue:84 +msgid "There are no jobs available at the moment. Open a job opportunity or check here again later." +msgstr "Det finns inga lediga jobb för tillfället. Öppna jobbmöjlighet eller titta in här igen senare." + #: frontend/src/pages/CertifiedParticipants.vue:92 msgid "There are no participants matching this criteria." msgstr "Det finns inga deltagare som stämmer med dessa kriterier." @@ -5384,9 +5408,11 @@ msgstr "Denna kurs har:" msgid "This course is free." msgstr "Denna kurs är gratis." -#: frontend/src/pages/SCORMChapter.vue:201 -msgid "This is a chapter in the course {0}" -msgstr "Detta är kapitel i kurs {0}" +#. Description of the 'Meta Description' (Small Text) field in DocType 'LMS +#. Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "This description will be shown on lists and pages without meta description" +msgstr "Denna beskrivning kommer att visas på listor och sidor utan metabeskrivning" #: frontend/src/pages/Lesson.vue:16 msgid "This lesson is not available for preview. Please enroll in the course to access it." @@ -5482,10 +5508,10 @@ msgstr "Tidpunkter:" #: frontend/src/components/Modals/DiscussionModal.vue:18 #: frontend/src/components/Modals/LiveClassModal.vue:23 #: frontend/src/pages/AssignmentForm.vue:32 -#: frontend/src/pages/Assignments.vue:152 frontend/src/pages/BatchForm.vue:19 -#: frontend/src/pages/CourseForm.vue:33 frontend/src/pages/JobCreation.vue:20 +#: frontend/src/pages/Assignments.vue:155 frontend/src/pages/BatchForm.vue:19 +#: frontend/src/pages/CourseForm.vue:29 frontend/src/pages/JobCreation.vue:20 #: frontend/src/pages/ProgramForm.vue:11 frontend/src/pages/Programs.vue:116 -#: frontend/src/pages/QuizForm.vue:48 frontend/src/pages/Quizzes.vue:116 +#: frontend/src/pages/QuizForm.vue:48 frontend/src/pages/Quizzes.vue:118 #: lms/lms/doctype/cohort/cohort.json #: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json #: lms/lms/doctype/cohort_web_page/cohort_web_page.json @@ -5507,7 +5533,7 @@ msgstr "Tidpunkter:" msgid "Title" msgstr "Benämning" -#: frontend/src/components/Modals/ChapterModal.vue:172 +#: frontend/src/components/Modals/ChapterModal.vue:175 msgid "Title is required" msgstr "Benämning erfordras" @@ -5539,7 +5565,7 @@ msgid "Total" msgstr "Totalt" #. Label of the total_marks (Int) field in DocType 'LMS Quiz' -#: frontend/src/pages/QuizForm.vue:67 frontend/src/pages/Quizzes.vue:121 +#: frontend/src/pages/QuizForm.vue:67 frontend/src/pages/Quizzes.vue:123 #: lms/lms/doctype/lms_quiz/lms_quiz.json msgid "Total Marks" msgstr "Totalt antal markeringar" @@ -5577,7 +5603,7 @@ msgstr "Twitter" #: frontend/src/components/Modals/AssessmentModal.vue:22 #: frontend/src/components/Modals/Question.vue:54 #: frontend/src/pages/AssignmentForm.vue:39 -#: frontend/src/pages/Assignments.vue:30 frontend/src/pages/Assignments.vue:157 +#: frontend/src/pages/Assignments.vue:30 frontend/src/pages/Assignments.vue:160 #: frontend/src/pages/JobCreation.vue:33 frontend/src/pages/Jobs.vue:55 #: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/lms/doctype/lms_assignment/lms_assignment.json @@ -5624,7 +5650,7 @@ msgstr "Under Recension" msgid "Unlisted" msgstr "Ej Listad" -#: frontend/src/pages/Batches.vue:293 +#: frontend/src/pages/Batches.vue:295 msgid "Unpublished" msgstr "Opublicerad" @@ -5646,8 +5672,8 @@ msgstr "Ostrukturerad Roll" #. Option for the 'Status' (Select) field in DocType 'Cohort' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request' #. Label of the upcoming (Check) field in DocType 'LMS Course' -#: frontend/src/pages/Batches.vue:291 frontend/src/pages/CourseForm.vue:185 -#: frontend/src/pages/Courses.vue:284 lms/lms/doctype/cohort/cohort.json +#: frontend/src/pages/Batches.vue:293 frontend/src/pages/CourseForm.vue:181 +#: frontend/src/pages/Courses.vue:287 lms/lms/doctype/cohort/cohort.json #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_course/lms_course.json msgid "Upcoming" @@ -5672,7 +5698,7 @@ msgstr "Uppdatera" msgid "Update Password" msgstr "Uppdatera lösenord" -#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:81 +#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:77 msgid "Upload" msgstr "Ladda upp" @@ -5778,6 +5804,10 @@ msgstr "Synlighet" msgid "Visit Batch" msgstr "Besök Omgång" +#: frontend/src/pages/JobDetail.vue:38 +msgid "Visit Website" +msgstr "Besök Webbplats" + #: lms/templates/emails/batch_confirmation.html:23 msgid "Visit the following link to view your " msgstr "Besök följande länk för att se din " @@ -5899,7 +5929,7 @@ msgstr "Du är inte i denna omgång. Kolla in våra kommande omgångar." msgid "You are not a mentor of the course {0}" msgstr "Du är inte mentor för kurs {0}" -#: frontend/src/components/CourseOutline.vue:323 +#: frontend/src/components/CourseOutline.vue:324 msgid "You are not enrolled" msgstr "Du är inte inskriven" @@ -6123,11 +6153,7 @@ msgstr "av " msgid "out of" msgstr "av" -#: frontend/src/components/JobCard.vue:30 -msgid "posted" -msgstr "postat" - -#: frontend/src/pages/QuizForm.vue:386 +#: frontend/src/pages/QuizForm.vue:389 msgid "question_detail" msgstr "fråga_detalj" @@ -6147,7 +6173,7 @@ msgstr "veckor" msgid "you can" msgstr "du kan" -#: lms/lms/api.py:816 lms/lms/api.py:824 +#: lms/lms/api.py:817 lms/lms/api.py:825 msgid "{0} Settings not found" msgstr "{0} Inställningar hittades inte" diff --git a/lms/locale/th.po b/lms/locale/th.po index f5dd491f..2965f006 100644 --- a/lms/locale/th.po +++ b/lms/locale/th.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n" -"POT-Creation-Date: 2025-04-04 16:04+0000\n" -"PO-Revision-Date: 2025-04-08 03:58\n" +"POT-Creation-Date: 2025-04-11 16:04+0000\n" +"PO-Revision-Date: 2025-04-14 06:01\n" "Last-Translator: jannat@frappe.io\n" "Language-Team: Thai\n" "MIME-Version: 1.0\n" @@ -71,7 +71,7 @@ msgstr "" msgid "A course cannot have both paid certificate and certificate of completion." msgstr "" -#: frontend/src/pages/CourseForm.vue:41 +#: frontend/src/pages/CourseForm.vue:37 msgid "A one line introduction to the course that appears on the course card" msgstr "" @@ -145,7 +145,6 @@ msgid "Add a Student" msgstr "" #: frontend/src/components/AppSidebar.vue:514 -#: frontend/src/components/OnboardingBanner.vue:56 msgid "Add a chapter" msgstr "" @@ -153,16 +152,15 @@ msgstr "" msgid "Add a course" msgstr "" -#: frontend/src/pages/CourseForm.vue:137 +#: frontend/src/pages/CourseForm.vue:133 msgid "Add a keyword and then press enter" msgstr "" #: frontend/src/components/AppSidebar.vue:515 -#: frontend/src/components/OnboardingBanner.vue:81 msgid "Add a lesson" msgstr "" -#: frontend/src/components/Modals/Question.vue:146 +#: frontend/src/components/Modals/Question.vue:147 #: frontend/src/pages/QuizForm.vue:183 msgid "Add a new question" msgstr "" @@ -235,7 +233,7 @@ msgid "Admin" msgstr "" #. Name of a role -#: frontend/src/pages/Batches.vue:282 lms/lms/doctype/lms_badge/lms_badge.json +#: frontend/src/pages/Batches.vue:284 lms/lms/doctype/lms_badge/lms_badge.json msgid "All" msgstr "" @@ -259,7 +257,7 @@ msgstr "" msgid "All Submissions" msgstr "" -#: lms/lms/doctype/lms_quiz/lms_quiz.py:46 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:44 msgid "All questions should have the same marks if the limit is set." msgstr "" @@ -294,7 +292,7 @@ msgstr "" #. Label of the amount (Currency) field in DocType 'LMS Batch' #. Label of the course_price (Currency) field in DocType 'LMS Course' #. Label of the amount (Currency) field in DocType 'LMS Payment' -#: frontend/src/pages/BatchForm.vue:209 frontend/src/pages/CourseForm.vue:221 +#: frontend/src/pages/BatchForm.vue:209 frontend/src/pages/CourseForm.vue:217 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_payment/lms_payment.json @@ -346,7 +344,7 @@ msgstr "" msgid "Answer" msgstr "" -#: frontend/src/pages/CourseForm.vue:85 frontend/src/pages/CourseForm.vue:103 +#: frontend/src/pages/CourseForm.vue:81 frontend/src/pages/CourseForm.vue:99 msgid "Appears on the course card in the course list" msgstr "" @@ -354,11 +352,11 @@ msgstr "" msgid "Appears when the batch URL is shared on any online platform" msgstr "" -#: frontend/src/pages/JobDetail.vue:121 +#: frontend/src/pages/JobDetail.vue:128 msgid "Applications Received" msgstr "" -#: frontend/src/pages/JobDetail.vue:42 +#: frontend/src/pages/JobDetail.vue:48 msgid "Apply" msgstr "" @@ -389,7 +387,7 @@ msgstr "" msgid "Apps" msgstr "" -#: frontend/src/pages/Batches.vue:292 +#: frontend/src/pages/Batches.vue:294 msgid "Archived" msgstr "" @@ -401,11 +399,6 @@ msgstr "" msgid "Are you sure you want to login to your Frappe Cloud dashboard?" msgstr "" -#. Label of the user_category (Check) field in DocType 'LMS Settings' -#: lms/lms/doctype/lms_settings/lms_settings.json -msgid "Ask User Category during Signup" -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 @@ -470,6 +463,10 @@ msgstr "" msgid "Assignment Submission Template" msgstr "" +#: frontend/src/pages/AssignmentSubmissionList.vue:223 +msgid "Assignment Submissions" +msgstr "" + #. Label of the assignment_title (Data) field in DocType 'LMS Assignment #. Submission' #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json @@ -480,7 +477,7 @@ msgstr "" msgid "Assignment for Lesson {0} by {1} already exists." msgstr "" -#: frontend/src/pages/AssignmentForm.vue:155 +#: frontend/src/pages/AssignmentForm.vue:158 msgid "Assignment saved successfully" msgstr "" @@ -490,7 +487,8 @@ msgid "Assignment will appear at the bottom of the lesson." msgstr "" #: frontend/src/components/AppSidebar.vue:531 -#: frontend/src/pages/AssignmentForm.vue:174 +#: frontend/src/pages/AssignmentForm.vue:177 +#: frontend/src/pages/Assignments.vue:193 lms/www/lms.py:251 msgid "Assignments" msgstr "" @@ -656,8 +654,8 @@ msgid "Batch:" msgstr "" #. Label of the batches (Check) field in DocType 'LMS Settings' -#: frontend/src/pages/Batches.vue:302 -#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:63 +#: frontend/src/pages/Batches.vue:304 frontend/src/pages/Batches.vue:311 +#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:105 msgid "Batches" msgstr "" @@ -675,7 +673,7 @@ msgstr "" #. Label of the billing_details_section (Section Break) field in DocType 'LMS #. Payment' -#: frontend/src/pages/Billing.vue:8 +#: frontend/src/pages/Billing.vue:8 frontend/src/pages/Billing.vue:363 #: lms/lms/doctype/lms_payment/lms_payment.json msgid "Billing Details" msgstr "" @@ -757,8 +755,9 @@ msgstr "" #. Label of the category (Link) field in DocType 'LMS Course' #: frontend/src/pages/BatchForm.vue:190 frontend/src/pages/Batches.vue:55 #: frontend/src/pages/CertifiedParticipants.vue:37 -#: frontend/src/pages/CourseForm.vue:148 frontend/src/pages/Courses.vue:51 -#: frontend/src/pages/JobDetail.vue:96 lms/lms/doctype/lms_batch/lms_batch.json +#: frontend/src/pages/CourseForm.vue:144 frontend/src/pages/Courses.vue:51 +#: frontend/src/pages/JobDetail.vue:103 +#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/public/js/common_functions.js:316 lms/templates/signup-form.html:22 @@ -813,7 +812,7 @@ msgstr "" #: frontend/src/components/Modals/Event.vue:371 #: frontend/src/pages/BatchForm.vue:37 frontend/src/pages/Batches.vue:38 #: frontend/src/pages/CourseCertification.vue:10 -#: frontend/src/pages/CourseCertification.vue:133 +#: frontend/src/pages/CourseCertification.vue:135 #: frontend/src/pages/Courses.vue:34 lms/fixtures/custom_field.json #: lms/lms/doctype/certification/certification.json #: lms/lms/doctype/lms_batch/lms_batch.json @@ -837,7 +836,8 @@ msgid "Certified" msgstr "" #. Label of the certified_participants (Check) field in DocType 'LMS Settings' -#: frontend/src/pages/CertifiedParticipants.vue:161 +#: frontend/src/pages/CertifiedParticipants.vue:164 +#: frontend/src/pages/CertifiedParticipants.vue:171 #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Certified Participants" msgstr "" @@ -864,11 +864,11 @@ msgstr "" msgid "Chapter Reference" msgstr "" -#: frontend/src/components/Modals/ChapterModal.vue:152 +#: frontend/src/components/Modals/ChapterModal.vue:155 msgid "Chapter added successfully" msgstr "" -#: frontend/src/components/Modals/ChapterModal.vue:196 +#: frontend/src/components/Modals/ChapterModal.vue:199 msgid "Chapter updated successfully" msgstr "" @@ -1117,7 +1117,7 @@ msgid "Completed by Students" msgstr "" #. Label of the enable_certification (Check) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:213 +#: frontend/src/pages/CourseForm.vue:209 #: lms/lms/doctype/lms_course/lms_course.json msgid "Completion Certificate" msgstr "" @@ -1179,7 +1179,7 @@ msgid "Continue Learning" msgstr "" #. Option for the 'Type' (Select) field in DocType 'Job Opportunity' -#: frontend/src/pages/Jobs.vue:146 +#: frontend/src/pages/Jobs.vue:163 #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Contract" msgstr "" @@ -1294,6 +1294,7 @@ msgstr "" #. Name of a role #: frontend/src/pages/ProfileRoles.vue:16 #: lms/lms/doctype/course_chapter/course_chapter.json +#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_program/lms_program.json @@ -1307,7 +1308,7 @@ msgstr "" msgid "Course Data" msgstr "" -#: frontend/src/pages/CourseForm.vue:50 +#: frontend/src/pages/CourseForm.vue:46 msgid "Course Description" msgstr "" @@ -1316,7 +1317,7 @@ msgstr "" msgid "Course Evaluator" msgstr "" -#: frontend/src/pages/CourseForm.vue:63 +#: frontend/src/pages/CourseForm.vue:59 msgid "Course Image" msgstr "" @@ -1330,7 +1331,7 @@ msgstr "" msgid "Course Lesson" msgstr "" -#: lms/www/lms.py:30 +#: lms/www/lms.py:70 msgid "Course List" msgstr "" @@ -1338,7 +1339,7 @@ msgstr "" msgid "Course Name" msgstr "" -#: frontend/src/pages/CourseDetail.vue:76 frontend/src/pages/CourseForm.vue:241 +#: frontend/src/pages/CourseDetail.vue:76 frontend/src/pages/CourseForm.vue:237 msgid "Course Outline" msgstr "" @@ -1370,7 +1371,7 @@ msgstr "" msgid "Course Title" msgstr "" -#: frontend/src/pages/ProgramForm.vue:229 +#: frontend/src/pages/ProgramForm.vue:232 msgid "Course added to program" msgstr "" @@ -1378,11 +1379,11 @@ msgstr "" msgid "Course already added to the batch." msgstr "" -#: frontend/src/pages/CourseForm.vue:472 +#: frontend/src/pages/CourseForm.vue:470 msgid "Course deleted successfully" msgstr "" -#: frontend/src/pages/ProgramForm.vue:298 +#: frontend/src/pages/ProgramForm.vue:301 msgid "Course moved successfully" msgstr "" @@ -1400,8 +1401,9 @@ msgstr "" #: frontend/src/components/BatchStudents.vue:92 #: frontend/src/components/Modals/BatchStudentProgress.vue:79 #: frontend/src/pages/BatchDetail.vue:21 frontend/src/pages/BatchDetail.vue:70 -#: frontend/src/pages/CourseCertification.vue:125 -#: frontend/src/pages/Courses.vue:301 frontend/src/pages/Statistics.vue:21 +#: frontend/src/pages/CourseCertification.vue:127 +#: frontend/src/pages/Courses.vue:304 frontend/src/pages/Courses.vue:311 +#: frontend/src/pages/Statistics.vue:21 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Courses" @@ -1443,7 +1445,6 @@ msgid "Create a batch" msgstr "" #: frontend/src/components/AppSidebar.vue:513 -#: frontend/src/components/OnboardingBanner.vue:30 msgid "Create a course" msgstr "" @@ -1467,7 +1468,7 @@ msgstr "" msgid "Create your first quiz" msgstr "" -#: frontend/src/pages/Assignments.vue:163 frontend/src/pages/Courses.vue:292 +#: frontend/src/pages/Assignments.vue:166 frontend/src/pages/Courses.vue:295 msgid "Created" msgstr "" @@ -1482,7 +1483,7 @@ msgstr "" #. Label of the currency (Link) field in DocType 'LMS Batch' #. Label of the currency (Link) field in DocType 'LMS Course' #. Label of the currency (Link) field in DocType 'LMS Payment' -#: frontend/src/pages/BatchForm.vue:217 frontend/src/pages/CourseForm.vue:226 +#: frontend/src/pages/BatchForm.vue:217 frontend/src/pages/CourseForm.vue:222 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_payment/lms_payment.json @@ -1585,9 +1586,9 @@ msgstr "" msgid "Degree Type" msgstr "" -#: frontend/src/components/CourseOutline.vue:247 -#: frontend/src/components/CourseOutline.vue:305 -#: frontend/src/pages/CourseForm.vue:485 +#: frontend/src/components/CourseOutline.vue:248 +#: frontend/src/components/CourseOutline.vue:306 +#: frontend/src/pages/CourseForm.vue:483 msgid "Delete" msgstr "" @@ -1595,27 +1596,27 @@ msgstr "" msgid "Delete Chapter" msgstr "" -#: frontend/src/pages/CourseForm.vue:479 +#: frontend/src/pages/CourseForm.vue:477 msgid "Delete Course" msgstr "" -#: frontend/src/components/CourseOutline.vue:299 +#: frontend/src/components/CourseOutline.vue:300 msgid "Delete this chapter?" msgstr "" -#: frontend/src/components/CourseOutline.vue:241 +#: frontend/src/components/CourseOutline.vue:242 msgid "Delete this lesson?" msgstr "" -#: frontend/src/pages/CourseForm.vue:480 +#: frontend/src/pages/CourseForm.vue:478 msgid "Deleting the course will also delete all its chapters and lessons. Are you sure you want to delete this course?" msgstr "" -#: frontend/src/components/CourseOutline.vue:300 +#: frontend/src/components/CourseOutline.vue:301 msgid "Deleting this chapter will also delete all its lessons and permanently remove it from the course. This action cannot be undone. Are you sure you want to continue?" msgstr "" -#: frontend/src/components/CourseOutline.vue:242 +#: frontend/src/components/CourseOutline.vue:243 msgid "Deleting this lesson will permanently remove it from the course. This action cannot be undone. Are you sure you want to continue?" msgstr "" @@ -1654,11 +1655,11 @@ msgstr "" #: frontend/src/components/Modals/DiscussionModal.vue:22 #: frontend/src/pages/AssignmentForm.vue:27 frontend/src/pages/BatchForm.vue:14 -#: frontend/src/pages/CourseForm.vue:29 frontend/src/pages/QuizForm.vue:42 +#: frontend/src/pages/CourseForm.vue:25 frontend/src/pages/QuizForm.vue:42 msgid "Details" msgstr "" -#: frontend/src/pages/CourseForm.vue:195 +#: frontend/src/pages/CourseForm.vue:191 msgid "Disable Self Enrollment" msgstr "" @@ -1667,6 +1668,11 @@ msgstr "" msgid "Disable Self Learning" msgstr "" +#. Label of the disable_signup (Check) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Disable Signup" +msgstr "" + #. Label of the disabled (Check) field in DocType 'Job Opportunity' #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Disabled" @@ -1808,7 +1814,7 @@ msgstr "" msgid "Enable" msgstr "" -#: lms/lms/doctype/lms_settings/lms_settings.py:20 +#: lms/lms/doctype/lms_settings/lms_settings.py:21 msgid "Enable Google API in Google Settings to send calendar invites for evaluations." msgstr "" @@ -1867,7 +1873,7 @@ msgstr "" msgid "Enroll Now" msgstr "" -#: frontend/src/pages/Batches.vue:295 frontend/src/pages/Courses.vue:294 +#: frontend/src/pages/Batches.vue:297 frontend/src/pages/Courses.vue:297 msgid "Enrolled" msgstr "" @@ -1902,7 +1908,7 @@ msgstr "" msgid "Enrollments" msgstr "" -#: lms/lms/doctype/lms_settings/lms_settings.py:25 +#: lms/lms/doctype/lms_settings/lms_settings.py:26 msgid "Enter Client Id and Client Secret in Google Settings to send calendar invites for evaluations." msgstr "" @@ -1921,19 +1927,19 @@ msgstr "" #: frontend/src/components/Assignment.vue:287 #: frontend/src/components/Modals/AnnouncementModal.vue:105 #: frontend/src/components/Modals/BulkCertificates.vue:115 -#: frontend/src/components/Modals/ChapterModal.vue:157 -#: frontend/src/components/Modals/ChapterModal.vue:164 -#: frontend/src/components/Modals/ChapterModal.vue:200 -#: frontend/src/components/Modals/Question.vue:251 -#: frontend/src/components/Modals/Question.vue:272 -#: frontend/src/components/Modals/Question.vue:329 -#: frontend/src/components/Modals/StudentModal.vue:70 +#: frontend/src/components/Modals/ChapterModal.vue:160 +#: frontend/src/components/Modals/ChapterModal.vue:167 +#: frontend/src/components/Modals/ChapterModal.vue:203 +#: frontend/src/components/Modals/Question.vue:252 +#: frontend/src/components/Modals/Question.vue:275 +#: frontend/src/components/Modals/Question.vue:332 +#: frontend/src/components/Modals/StudentModal.vue:73 #: frontend/src/components/Quiz.vue:592 #: frontend/src/components/SettingDetails.vue:62 -#: frontend/src/pages/AssignmentForm.vue:139 -#: frontend/src/pages/AssignmentForm.vue:159 frontend/src/pages/Billing.vue:261 -#: frontend/src/pages/QuizForm.vue:346 frontend/src/pages/QuizForm.vue:361 -#: frontend/src/pages/QuizSubmission.vue:147 +#: frontend/src/pages/AssignmentForm.vue:142 +#: frontend/src/pages/AssignmentForm.vue:162 frontend/src/pages/Billing.vue:262 +#: frontend/src/pages/QuizForm.vue:349 frontend/src/pages/QuizForm.vue:364 +#: frontend/src/pages/QuizSubmission.vue:150 msgid "Error" msgstr "" @@ -1982,7 +1988,7 @@ msgstr "" #. Label of the evaluator (Link) field in DocType 'LMS Course' #: frontend/src/components/Modals/BatchCourseModal.vue:26 #: frontend/src/components/Modals/BulkCertificates.vue:22 -#: frontend/src/pages/CourseForm.vue:232 frontend/src/pages/ProfileRoles.vue:22 +#: frontend/src/pages/CourseForm.vue:228 frontend/src/pages/ProfileRoles.vue:22 #: lms/lms/doctype/batch_course/batch_course.json #: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json @@ -2100,7 +2106,7 @@ msgstr "" #. Label of the featured (Check) field in DocType 'LMS Course' #: frontend/src/components/CourseCard.vue:16 -#: frontend/src/pages/CourseForm.vue:190 +#: frontend/src/pages/CourseForm.vue:186 #: lms/lms/doctype/lms_course/lms_course.json msgid "Featured" msgstr "" @@ -2149,10 +2155,6 @@ msgstr "" msgid "Flexible Time" msgstr "" -#: frontend/src/pages/QuizForm.vue:459 -msgid "Form to create and edit quizzes" -msgstr "" - #. Option for the 'Attire Preference' (Select) field in DocType 'User' #: lms/fixtures/custom_field.json msgid "Formal Wear" @@ -2163,7 +2165,7 @@ msgid "Free" msgstr "" #. Option for the 'Type' (Select) field in DocType 'Job Opportunity' -#: frontend/src/pages/Jobs.vue:147 +#: frontend/src/pages/Jobs.vue:164 #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Freelance" msgstr "" @@ -2207,7 +2209,7 @@ msgid "Full Name" msgstr "" #. Option for the 'Type' (Select) field in DocType 'Job Opportunity' -#: frontend/src/pages/Jobs.vue:144 +#: frontend/src/pages/Jobs.vue:161 #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Full Time" msgstr "" @@ -2385,7 +2387,7 @@ msgstr "" msgid "I am unavailable" msgstr "" -#: frontend/src/pages/QuizForm.vue:380 +#: frontend/src/pages/QuizForm.vue:383 msgid "ID" msgstr "" @@ -2395,6 +2397,11 @@ msgstr "" msgid "Icon" msgstr "" +#. Label of the user_category (Check) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Identify User Persona" +msgstr "" + #: frontend/src/components/LessonHelp.vue:11 msgid "If Include in Preview is enabled for a lesson then the lesson will also be accessible to non logged in users." msgstr "" @@ -2425,7 +2432,7 @@ msgstr "" msgid "If you set an amount here, then the USD equivalent setting will not get applied." msgstr "" -#: lms/lms/doctype/lms_quiz/lms_quiz.py:63 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:61 msgid "If you want open ended questions then make sure each question in the quiz is of open ended type." msgstr "" @@ -2451,7 +2458,7 @@ msgstr "" msgid "Image search powered by" msgstr "" -#: lms/lms/doctype/lms_quiz/lms_quiz.py:221 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:219 msgid "Image: Corrupted Data Stream" msgstr "" @@ -2540,7 +2547,7 @@ msgstr "" #. Label of the instructors (Table MultiSelect) field in DocType 'LMS Batch' #. Label of the instructors (Rating) field in DocType 'LMS Batch Feedback' #. Label of the instructors (Table MultiSelect) field in DocType 'LMS Course' -#: frontend/src/pages/BatchForm.vue:93 frontend/src/pages/CourseForm.vue:155 +#: frontend/src/pages/BatchForm.vue:93 frontend/src/pages/CourseForm.vue:151 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json #: lms/lms/doctype/lms_course/lms_course.json @@ -2565,10 +2572,14 @@ msgstr "" msgid "Invalid Invite Code." msgstr "" -#: lms/lms/doctype/course_lesson/course_lesson.py:20 +#: lms/lms/doctype/course_lesson/course_lesson.py:19 msgid "Invalid Quiz ID" msgstr "" +#: lms/lms/doctype/course_lesson/course_lesson.py:33 +msgid "Invalid Quiz ID in content" +msgstr "" + #. Label of the invite_code (Data) field in DocType 'Cohort Subgroup' #. Label of the invite_code (Data) field in DocType 'Invite Request' #: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json @@ -2607,11 +2618,6 @@ msgstr "" msgid "Is Correct" msgstr "" -#. Label of the is_onboarding_complete (Check) field in DocType 'LMS Settings' -#: lms/lms/doctype/lms_settings/lms_settings.json -msgid "Is Onboarding Complete" -msgstr "" - #. Label of the is_scorm_package (Check) field in DocType 'Course Chapter' #. Label of the is_scorm_package (Check) field in DocType 'Course Lesson' #: lms/lms/doctype/course_chapter/course_chapter.json @@ -2650,7 +2656,7 @@ msgstr "" msgid "Items in Sidebar" msgstr "" -#: frontend/src/pages/ProgramForm.vue:272 +#: frontend/src/pages/ProgramForm.vue:275 msgid "Items removed successfully" msgstr "" @@ -2677,7 +2683,7 @@ msgstr "" msgid "Job Details" msgstr "" -#: lms/www/lms.py:111 +#: lms/www/lms.py:159 msgid "Job Openings" msgstr "" @@ -2700,6 +2706,7 @@ msgstr "" #. Label of the jobs (Check) field in DocType 'LMS Settings' #: frontend/src/pages/JobDetail.vue:10 frontend/src/pages/Jobs.vue:8 +#: frontend/src/pages/Jobs.vue:170 #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Jobs" msgstr "" @@ -2923,7 +2930,6 @@ msgstr "" #: lms/job/doctype/lms_job_application/lms_job_application.json #: lms/lms/doctype/cohort_join_request/cohort_join_request.json #: lms/lms/doctype/course_chapter/course_chapter.json -#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/function/function.json #: lms/lms/doctype/industry/industry.json #: lms/lms/doctype/lms_assignment/lms_assignment.json @@ -3035,7 +3041,7 @@ msgstr "" msgid "Limit Questions To" msgstr "" -#: lms/lms/doctype/lms_quiz/lms_quiz.py:40 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:38 msgid "Limit cannot be greater than or equal to the number of questions in the quiz." msgstr "" @@ -3055,12 +3061,8 @@ msgstr "" msgid "Links" msgstr "" -#: frontend/src/pages/Quizzes.vue:149 -msgid "List of quizzes" -msgstr "" - #. Option for the 'Status' (Select) field in DocType 'Cohort' -#: frontend/src/pages/Courses.vue:278 lms/lms/doctype/cohort/cohort.json +#: frontend/src/pages/Courses.vue:281 lms/lms/doctype/cohort/cohort.json msgid "Live" msgstr "" @@ -3092,7 +3094,7 @@ msgstr "" #. Label of the location (Data) field in DocType 'Job Opportunity' #. Label of the location (Data) field in DocType 'Education Detail' #. Label of the location (Data) field in DocType 'Work Experience' -#: frontend/src/pages/JobCreation.vue:26 frontend/src/pages/JobDetail.vue:85 +#: frontend/src/pages/JobCreation.vue:26 frontend/src/pages/JobDetail.vue:92 #: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/lms/doctype/education_detail/education_detail.json #: lms/lms/doctype/work_experience/work_experience.json @@ -3114,7 +3116,7 @@ msgstr "" msgid "Login to Frappe Cloud?" msgstr "" -#: frontend/src/pages/JobDetail.vue:48 +#: frontend/src/pages/JobDetail.vue:54 msgid "Login to apply" msgstr "" @@ -3171,7 +3173,7 @@ msgstr "" #. Label of the marks (Int) field in DocType 'LMS Quiz Result' #: frontend/src/components/Modals/Question.vue:50 #: frontend/src/components/Modals/Question.vue:99 -#: frontend/src/components/Quiz.vue:96 frontend/src/pages/QuizForm.vue:390 +#: frontend/src/components/Quiz.vue:96 frontend/src/pages/QuizForm.vue:393 #: frontend/src/pages/QuizSubmission.vue:65 #: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json #: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json @@ -3233,7 +3235,7 @@ msgstr "" #. Label of the member (Link) field in DocType 'LMS Quiz Submission' #: frontend/src/pages/AssignmentSubmissionList.vue:14 #: frontend/src/pages/QuizSubmission.vue:31 -#: frontend/src/pages/QuizSubmissionList.vue:86 +#: frontend/src/pages/QuizSubmissionList.vue:102 #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_submission/exercise_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json @@ -3314,7 +3316,7 @@ msgstr "" msgid "Member Username" msgstr "" -#: frontend/src/pages/ProgramForm.vue:251 +#: frontend/src/pages/ProgramForm.vue:254 msgid "Member added to program" msgstr "" @@ -3378,6 +3380,11 @@ msgstr "" msgid "Mentor Request Status Update Template" msgstr "" +#. Label of the meta_description (Small Text) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Meta Description" +msgstr "" + #. Label of the meta_image (Attach Image) field in DocType 'LMS Batch' #: frontend/src/pages/BatchForm.vue:44 lms/lms/doctype/lms_batch/lms_batch.json #: lms/public/js/common_functions.js:362 @@ -3400,6 +3407,7 @@ msgstr "" #. Name of a role #: frontend/src/pages/ProfileRoles.vue:10 #: lms/lms/doctype/course_evaluator/course_evaluator.json +#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/lms_assignment/lms_assignment.json #: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json #: lms/lms/doctype/lms_batch/lms_batch.json @@ -3459,12 +3467,13 @@ msgstr "" #. Option for the 'Event' (Select) field in DocType 'LMS Badge' #: frontend/src/pages/Assignments.vue:18 frontend/src/pages/Batches.vue:17 -#: frontend/src/pages/Courses.vue:17 frontend/src/pages/Courses.vue:281 +#: frontend/src/pages/Courses.vue:17 frontend/src/pages/Courses.vue:284 #: frontend/src/pages/Programs.vue:14 lms/lms/doctype/lms_badge/lms_badge.json msgid "New" msgstr "" -#: frontend/src/pages/AssignmentForm.vue:178 +#: frontend/src/pages/AssignmentForm.vue:181 +#: frontend/src/pages/AssignmentForm.vue:197 msgid "New Assignment" msgstr "" @@ -3472,11 +3481,11 @@ msgstr "" msgid "New Assignment Submission" msgstr "" -#: lms/public/js/common_functions.js:255 lms/www/lms.py:89 +#: lms/public/js/common_functions.js:255 lms/www/lms.py:134 msgid "New Batch" msgstr "" -#: lms/www/lms.py:40 +#: frontend/src/pages/CourseForm.vue:577 lms/www/lms.py:78 msgid "New Course" msgstr "" @@ -3504,7 +3513,7 @@ msgstr "" msgid "New Question" msgstr "" -#: frontend/src/pages/QuizForm.vue:450 frontend/src/pages/QuizForm.vue:458 +#: frontend/src/pages/QuizForm.vue:453 frontend/src/pages/QuizForm.vue:461 #: frontend/src/pages/Quizzes.vue:18 msgid "New Quiz" msgstr "" @@ -3599,8 +3608,8 @@ msgstr "" msgid "No introduction" msgstr "" -#: frontend/src/pages/Jobs.vue:77 -msgid "No jobs posted" +#: frontend/src/pages/Jobs.vue:80 +msgid "No jobs found" msgstr "" #: frontend/src/components/LiveClass.vue:71 @@ -3615,6 +3624,10 @@ msgstr "" msgid "No programs found" msgstr "" +#: frontend/src/pages/QuizSubmissionList.vue:52 +msgid "No quiz submissions found. Please check again later." +msgstr "" + #: frontend/src/pages/Quizzes.vue:61 msgid "No quizzes found" msgstr "" @@ -3624,6 +3637,7 @@ msgid "No slots available for this date." msgstr "" #: frontend/src/pages/AssignmentSubmissionList.vue:67 +#: frontend/src/pages/QuizSubmissionList.vue:49 msgid "No submissions" msgstr "" @@ -3724,11 +3738,11 @@ msgstr "" msgid "Only files of type {0} will be accepted." msgstr "" -#: frontend/src/pages/CourseForm.vue:509 frontend/src/utils/index.js:549 +#: frontend/src/pages/CourseForm.vue:507 frontend/src/utils/index.js:550 msgid "Only image file is allowed." msgstr "" -#: frontend/src/components/Modals/ChapterModal.vue:218 +#: frontend/src/components/Modals/ChapterModal.vue:221 msgid "Only zip files are allowed" msgstr "" @@ -3786,7 +3800,7 @@ msgstr "" msgid "Order ID" msgstr "" -#: frontend/src/pages/JobDetail.vue:74 +#: frontend/src/pages/JobDetail.vue:81 msgid "Organisation" msgstr "" @@ -3835,7 +3849,7 @@ msgid "Paid Batch" msgstr "" #. Label of the paid_certificate (Check) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:218 +#: frontend/src/pages/CourseForm.vue:214 #: lms/lms/doctype/lms_course/lms_course.json msgid "Paid Certificate" msgstr "" @@ -3845,7 +3859,7 @@ msgid "Paid Certificate after Evaluation" msgstr "" #. Label of the paid_course (Check) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:208 +#: frontend/src/pages/CourseForm.vue:204 #: lms/lms/doctype/lms_course/lms_course.json msgid "Paid Course" msgstr "" @@ -3855,7 +3869,7 @@ msgid "Pan Number" msgstr "" #. Option for the 'Type' (Select) field in DocType 'Job Opportunity' -#: frontend/src/pages/Jobs.vue:145 +#: frontend/src/pages/Jobs.vue:162 #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Part Time" msgstr "" @@ -3877,7 +3891,7 @@ msgstr "" #. Label of the passing_percentage (Int) field in DocType 'LMS Quiz' #. Label of the passing_percentage (Int) field in DocType 'LMS Quiz Submission' -#: frontend/src/pages/QuizForm.vue:72 frontend/src/pages/Quizzes.vue:127 +#: frontend/src/pages/QuizForm.vue:72 frontend/src/pages/Quizzes.vue:129 #: lms/lms/doctype/lms_quiz/lms_quiz.json #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json msgid "Passing Percentage" @@ -3888,7 +3902,7 @@ msgstr "" msgid "Password" msgstr "" -#: frontend/src/pages/CourseForm.vue:113 +#: frontend/src/pages/CourseForm.vue:109 msgid "Paste the youtube link of a short video introducing the course" msgstr "" @@ -3980,7 +3994,7 @@ msgstr "" #. Label of the percentage (Int) field in DocType 'LMS Quiz Submission' #: frontend/src/pages/QuizSubmission.vue:44 -#: frontend/src/pages/QuizSubmissionList.vue:97 +#: frontend/src/pages/QuizSubmissionList.vue:113 #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json msgid "Percentage" msgstr "" @@ -4002,7 +4016,7 @@ msgstr "" msgid "Please Login" msgstr "" -#: lms/lms/doctype/lms_settings/lms_settings.py:33 +#: lms/lms/doctype/lms_settings/lms_settings.py:34 msgid "Please add {1} for {3} to send calendar invites for evaluations." msgstr "" @@ -4026,7 +4040,7 @@ msgstr "" msgid "Please enable Zoom Settings to use this feature." msgstr "" -#: frontend/src/components/CourseOutline.vue:324 +#: frontend/src/components/CourseOutline.vue:325 msgid "Please enroll for this course to view this lesson" msgstr "" @@ -4063,7 +4077,7 @@ msgstr "" msgid "Please install the Payments app to create a paid courses." msgstr "" -#: frontend/src/pages/Billing.vue:253 +#: frontend/src/pages/Billing.vue:254 msgid "Please let us know where you heard about us from." msgstr "" @@ -4112,7 +4126,7 @@ msgstr "" msgid "Please take appropriate action at {0}" msgstr "" -#: frontend/src/components/Modals/ChapterModal.vue:175 +#: frontend/src/components/Modals/ChapterModal.vue:178 msgid "Please upload a SCORM package" msgstr "" @@ -4158,7 +4172,7 @@ msgstr "" msgid "Postal Code" msgstr "" -#: frontend/src/pages/JobDetail.vue:107 +#: frontend/src/pages/JobDetail.vue:114 msgid "Posted on" msgstr "" @@ -4193,7 +4207,7 @@ msgstr "" msgid "Preview Image" msgstr "" -#: frontend/src/pages/CourseForm.vue:111 +#: frontend/src/pages/CourseForm.vue:107 msgid "Preview Video" msgstr "" @@ -4208,7 +4222,7 @@ msgid "Pricing" msgstr "" #. Label of the pricing_tab (Tab Break) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:202 +#: frontend/src/pages/CourseForm.vue:198 #: lms/lms/doctype/lms_course/lms_course.json msgid "Pricing and Certification" msgstr "" @@ -4272,6 +4286,10 @@ msgstr "" msgid "Program Members" msgstr "" +#: frontend/src/pages/Programs.vue:219 lms/www/lms.py:273 +msgid "Programs" +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/BatchStudents.vue:75 @@ -4301,7 +4319,7 @@ msgstr "" #. Label of the published (Check) field in DocType 'LMS Course' #: frontend/src/components/Modals/BulkCertificates.vue:51 #: frontend/src/components/Modals/Event.vue:108 -#: frontend/src/pages/BatchForm.vue:27 frontend/src/pages/CourseForm.vue:172 +#: frontend/src/pages/BatchForm.vue:27 frontend/src/pages/CourseForm.vue:168 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/public/js/common_functions.js:266 @@ -4314,7 +4332,7 @@ msgid "Published Courses" msgstr "" #. Label of the published_on (Date) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:176 +#: frontend/src/pages/CourseForm.vue:172 #: lms/lms/doctype/lms_course/lms_course.json msgid "Published On" msgstr "" @@ -4333,7 +4351,7 @@ msgstr "" #. Label of the question (Text) field in DocType 'LMS Quiz Result' #: frontend/src/components/Assignment.vue:20 #: frontend/src/components/Modals/Question.vue:38 -#: frontend/src/pages/AssignmentForm.vue:45 frontend/src/pages/QuizForm.vue:385 +#: frontend/src/pages/AssignmentForm.vue:45 frontend/src/pages/QuizForm.vue:388 #: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/lms_assignment/lms_assignment.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json @@ -4358,11 +4376,11 @@ msgstr "" msgid "Question Name" msgstr "" -#: frontend/src/components/Modals/Question.vue:267 +#: frontend/src/components/Modals/Question.vue:270 msgid "Question added successfully" msgstr "" -#: frontend/src/components/Modals/Question.vue:319 +#: frontend/src/components/Modals/Question.vue:322 msgid "Question updated successfully" msgstr "" @@ -4379,7 +4397,7 @@ msgstr "" msgid "Questions" msgstr "" -#: frontend/src/pages/QuizForm.vue:427 +#: frontend/src/pages/QuizForm.vue:430 msgid "Questions deleted successfully" msgstr "" @@ -4397,13 +4415,13 @@ msgid "Quiz ID" msgstr "" #. Label of a Link in the LMS Workspace -#: frontend/src/pages/QuizPage.vue:56 frontend/src/pages/QuizPage.vue:62 -#: lms/lms/workspace/lms/lms.json +#: frontend/src/pages/QuizPage.vue:57 lms/lms/workspace/lms/lms.json msgid "Quiz Submission" msgstr "" -#: frontend/src/pages/QuizSubmission.vue:128 -#: frontend/src/pages/QuizSubmissionList.vue:106 +#: frontend/src/pages/QuizSubmission.vue:131 +#: frontend/src/pages/QuizSubmissionList.vue:122 +#: frontend/src/pages/QuizSubmissionList.vue:127 msgid "Quiz Submissions" msgstr "" @@ -4416,7 +4434,7 @@ msgstr "" msgid "Quiz Title" msgstr "" -#: frontend/src/pages/QuizForm.vue:339 +#: frontend/src/pages/QuizForm.vue:342 msgid "Quiz created successfully" msgstr "" @@ -4424,7 +4442,7 @@ msgstr "" msgid "Quiz is not available to Guest users. Please login to continue." msgstr "" -#: frontend/src/pages/QuizForm.vue:358 +#: frontend/src/pages/QuizForm.vue:361 msgid "Quiz updated successfully" msgstr "" @@ -4434,8 +4452,8 @@ msgid "Quiz will appear at the bottom of the lesson." msgstr "" #: frontend/src/components/AppSidebar.vue:530 -#: frontend/src/pages/QuizForm.vue:438 frontend/src/pages/Quizzes.vue:138 -#: frontend/src/pages/Quizzes.vue:148 +#: frontend/src/pages/QuizForm.vue:441 frontend/src/pages/Quizzes.vue:140 +#: frontend/src/pages/Quizzes.vue:150 lms/www/lms.py:229 msgid "Quizzes" msgstr "" @@ -4513,7 +4531,7 @@ msgstr "" msgid "Related Courses" msgstr "" -#: frontend/src/pages/BatchForm.vue:77 frontend/src/pages/CourseForm.vue:100 +#: frontend/src/pages/BatchForm.vue:77 frontend/src/pages/CourseForm.vue:96 msgid "Remove" msgstr "" @@ -4607,7 +4625,7 @@ msgstr "" msgid "Row #{0} Start time cannot be outside the batch duration." msgstr "" -#: lms/lms/doctype/lms_quiz/lms_quiz.py:34 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:32 msgid "Rows {0} have the duplicate questions." msgstr "" @@ -4631,6 +4649,11 @@ msgstr "" msgid "SCORM Package Path" msgstr "" +#. Label of the seo_tab (Tab Break) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "SEO" +msgstr "" + #. Option for the 'Day' (Select) field in DocType 'Evaluator Schedule' #. Option for the 'Day' (Select) field in DocType 'LMS Certificate Request' #: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json @@ -4644,7 +4667,7 @@ msgstr "" #: frontend/src/components/Modals/Event.vue:101 #: frontend/src/components/Modals/Event.vue:129 #: frontend/src/pages/AssignmentForm.vue:21 frontend/src/pages/BatchForm.vue:8 -#: frontend/src/pages/CourseForm.vue:21 frontend/src/pages/JobCreation.vue:8 +#: frontend/src/pages/CourseForm.vue:17 frontend/src/pages/JobCreation.vue:8 #: frontend/src/pages/LessonForm.vue:14 frontend/src/pages/ProgramForm.vue:7 #: frontend/src/pages/QuizForm.vue:34 frontend/src/pages/QuizSubmission.vue:14 #: lms/public/js/common_functions.js:405 @@ -4673,7 +4696,7 @@ msgstr "" #. Label of the score (Int) field in DocType 'LMS Quiz Submission' #: frontend/src/pages/QuizSubmission.vue:39 -#: frontend/src/pages/QuizSubmissionList.vue:91 +#: frontend/src/pages/QuizSubmissionList.vue:107 #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json #: lms/templates/quiz/quiz.html:148 msgid "Score" @@ -4767,7 +4790,7 @@ msgstr "" #: frontend/src/components/AppSidebar.vue:556 #: frontend/src/components/Modals/Settings.vue:7 -#: frontend/src/pages/BatchForm.vue:148 frontend/src/pages/CourseForm.vue:162 +#: frontend/src/pages/BatchForm.vue:148 frontend/src/pages/CourseForm.vue:158 #: frontend/src/pages/ProfileRoles.vue:4 frontend/src/pages/QuizForm.vue:79 msgid "Settings" msgstr "" @@ -4781,7 +4804,7 @@ msgid "Short Description" msgstr "" #. Label of the short_introduction (Small Text) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:39 +#: frontend/src/pages/CourseForm.vue:35 #: lms/lms/doctype/lms_course/lms_course.json msgid "Short Introduction" msgstr "" @@ -4892,10 +4915,6 @@ msgstr "" msgid "Skip" msgstr "" -#: frontend/src/components/OnboardingBanner.vue:3 -msgid "Skip Onboarding" -msgstr "" - #: lms/lms/doctype/course_evaluator/course_evaluator.py:63 msgid "Slot Times are overlapping for some schedules." msgstr "" @@ -5009,8 +5028,9 @@ msgstr "" #. Label of the tab_4_tab (Tab Break) field in DocType 'LMS Course' #. Label of the statistics (Check) field in DocType 'LMS Settings' #: frontend/src/components/BatchStudents.vue:5 +#: frontend/src/pages/Statistics.vue:322 #: lms/lms/doctype/lms_course/lms_course.json -#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:136 +#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:182 msgid "Statistics" msgstr "" @@ -5110,7 +5130,7 @@ msgstr "" #: frontend/src/components/Modals/AssessmentModal.vue:9 #: frontend/src/components/Modals/BatchCourseModal.vue:9 #: frontend/src/components/Modals/EvaluationModal.vue:9 -#: frontend/src/components/Modals/Question.vue:341 +#: frontend/src/components/Modals/Question.vue:344 #: frontend/src/components/Quiz.vue:218 lms/templates/assignment.html:9 #: lms/templates/livecode/extension_footer.html:25 #: lms/templates/quiz/quiz.html:128 lms/templates/reviews.html:163 @@ -5135,18 +5155,18 @@ msgstr "" #: frontend/src/components/Modals/AnnouncementModal.vue:99 #: frontend/src/components/Modals/AssessmentModal.vue:73 #: frontend/src/components/Modals/BulkCertificates.vue:121 -#: frontend/src/components/Modals/ChapterModal.vue:151 -#: frontend/src/components/Modals/ChapterModal.vue:196 +#: frontend/src/components/Modals/ChapterModal.vue:154 +#: frontend/src/components/Modals/ChapterModal.vue:199 #: frontend/src/components/Modals/Event.vue:255 #: frontend/src/components/Modals/Event.vue:310 -#: frontend/src/components/Modals/Question.vue:267 -#: frontend/src/components/Modals/Question.vue:318 -#: frontend/src/pages/AssignmentForm.vue:155 -#: frontend/src/pages/CourseForm.vue:472 frontend/src/pages/ProgramForm.vue:229 -#: frontend/src/pages/ProgramForm.vue:251 -#: frontend/src/pages/ProgramForm.vue:272 -#: frontend/src/pages/ProgramForm.vue:298 frontend/src/pages/QuizForm.vue:339 -#: frontend/src/pages/QuizForm.vue:358 frontend/src/pages/QuizForm.vue:427 +#: frontend/src/components/Modals/Question.vue:270 +#: frontend/src/components/Modals/Question.vue:321 +#: frontend/src/pages/AssignmentForm.vue:158 +#: frontend/src/pages/CourseForm.vue:470 frontend/src/pages/ProgramForm.vue:232 +#: frontend/src/pages/ProgramForm.vue:254 +#: frontend/src/pages/ProgramForm.vue:275 +#: frontend/src/pages/ProgramForm.vue:301 frontend/src/pages/QuizForm.vue:342 +#: frontend/src/pages/QuizForm.vue:361 frontend/src/pages/QuizForm.vue:430 msgid "Success" msgstr "" @@ -5164,7 +5184,7 @@ msgstr "" msgid "Sunday" msgstr "" -#: lms/lms/api.py:1026 +#: lms/lms/api.py:1027 msgid "Suspicious pattern found in {0}: {1}" msgstr "" @@ -5220,7 +5240,7 @@ msgid "System Manager" msgstr "" #. Label of the tags (Data) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:121 +#: frontend/src/pages/CourseForm.vue:117 #: lms/lms/doctype/lms_course/lms_course.json msgid "Tags" msgstr "" @@ -5325,6 +5345,10 @@ msgstr "" msgid "There are no courses matching the criteria. Keep an eye out, fresh learning experiences are on the way soon!" msgstr "" +#: frontend/src/pages/Jobs.vue:84 +msgid "There are no jobs available at the moment. Open a job opportunity or check here again later." +msgstr "" + #: frontend/src/pages/CertifiedParticipants.vue:92 msgid "There are no participants matching this criteria." msgstr "" @@ -5384,8 +5408,10 @@ msgstr "" msgid "This course is free." msgstr "" -#: frontend/src/pages/SCORMChapter.vue:201 -msgid "This is a chapter in the course {0}" +#. Description of the 'Meta Description' (Small Text) field in DocType 'LMS +#. Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "This description will be shown on lists and pages without meta description" msgstr "" #: frontend/src/pages/Lesson.vue:16 @@ -5482,10 +5508,10 @@ msgstr "" #: frontend/src/components/Modals/DiscussionModal.vue:18 #: frontend/src/components/Modals/LiveClassModal.vue:23 #: frontend/src/pages/AssignmentForm.vue:32 -#: frontend/src/pages/Assignments.vue:152 frontend/src/pages/BatchForm.vue:19 -#: frontend/src/pages/CourseForm.vue:33 frontend/src/pages/JobCreation.vue:20 +#: frontend/src/pages/Assignments.vue:155 frontend/src/pages/BatchForm.vue:19 +#: frontend/src/pages/CourseForm.vue:29 frontend/src/pages/JobCreation.vue:20 #: frontend/src/pages/ProgramForm.vue:11 frontend/src/pages/Programs.vue:116 -#: frontend/src/pages/QuizForm.vue:48 frontend/src/pages/Quizzes.vue:116 +#: frontend/src/pages/QuizForm.vue:48 frontend/src/pages/Quizzes.vue:118 #: lms/lms/doctype/cohort/cohort.json #: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json #: lms/lms/doctype/cohort_web_page/cohort_web_page.json @@ -5507,7 +5533,7 @@ msgstr "" msgid "Title" msgstr "" -#: frontend/src/components/Modals/ChapterModal.vue:172 +#: frontend/src/components/Modals/ChapterModal.vue:175 msgid "Title is required" msgstr "" @@ -5539,7 +5565,7 @@ msgid "Total" msgstr "" #. Label of the total_marks (Int) field in DocType 'LMS Quiz' -#: frontend/src/pages/QuizForm.vue:67 frontend/src/pages/Quizzes.vue:121 +#: frontend/src/pages/QuizForm.vue:67 frontend/src/pages/Quizzes.vue:123 #: lms/lms/doctype/lms_quiz/lms_quiz.json msgid "Total Marks" msgstr "" @@ -5577,7 +5603,7 @@ msgstr "" #: frontend/src/components/Modals/AssessmentModal.vue:22 #: frontend/src/components/Modals/Question.vue:54 #: frontend/src/pages/AssignmentForm.vue:39 -#: frontend/src/pages/Assignments.vue:30 frontend/src/pages/Assignments.vue:157 +#: frontend/src/pages/Assignments.vue:30 frontend/src/pages/Assignments.vue:160 #: frontend/src/pages/JobCreation.vue:33 frontend/src/pages/Jobs.vue:55 #: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/lms/doctype/lms_assignment/lms_assignment.json @@ -5624,7 +5650,7 @@ msgstr "" msgid "Unlisted" msgstr "" -#: frontend/src/pages/Batches.vue:293 +#: frontend/src/pages/Batches.vue:295 msgid "Unpublished" msgstr "" @@ -5646,8 +5672,8 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'Cohort' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request' #. Label of the upcoming (Check) field in DocType 'LMS Course' -#: frontend/src/pages/Batches.vue:291 frontend/src/pages/CourseForm.vue:185 -#: frontend/src/pages/Courses.vue:284 lms/lms/doctype/cohort/cohort.json +#: frontend/src/pages/Batches.vue:293 frontend/src/pages/CourseForm.vue:181 +#: frontend/src/pages/Courses.vue:287 lms/lms/doctype/cohort/cohort.json #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_course/lms_course.json msgid "Upcoming" @@ -5672,7 +5698,7 @@ msgstr "" msgid "Update Password" msgstr "" -#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:81 +#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:77 msgid "Upload" msgstr "" @@ -5778,6 +5804,10 @@ msgstr "" msgid "Visit Batch" msgstr "" +#: frontend/src/pages/JobDetail.vue:38 +msgid "Visit Website" +msgstr "" + #: lms/templates/emails/batch_confirmation.html:23 msgid "Visit the following link to view your " msgstr "" @@ -5899,7 +5929,7 @@ msgstr "" msgid "You are not a mentor of the course {0}" msgstr "" -#: frontend/src/components/CourseOutline.vue:323 +#: frontend/src/components/CourseOutline.vue:324 msgid "You are not enrolled" msgstr "" @@ -6123,11 +6153,7 @@ msgstr "" msgid "out of" msgstr "" -#: frontend/src/components/JobCard.vue:30 -msgid "posted" -msgstr "" - -#: frontend/src/pages/QuizForm.vue:386 +#: frontend/src/pages/QuizForm.vue:389 msgid "question_detail" msgstr "" @@ -6147,7 +6173,7 @@ msgstr "" msgid "you can" msgstr "" -#: lms/lms/api.py:816 lms/lms/api.py:824 +#: lms/lms/api.py:817 lms/lms/api.py:825 msgid "{0} Settings not found" msgstr "" diff --git a/lms/locale/tr.po b/lms/locale/tr.po index de4ad9cb..df8a70f1 100644 --- a/lms/locale/tr.po +++ b/lms/locale/tr.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n" -"POT-Creation-Date: 2025-04-04 16:04+0000\n" -"PO-Revision-Date: 2025-04-08 03:58\n" +"POT-Creation-Date: 2025-04-11 16:04+0000\n" +"PO-Revision-Date: 2025-04-14 06:01\n" "Last-Translator: jannat@frappe.io\n" "Language-Team: Turkish\n" "MIME-Version: 1.0\n" @@ -71,7 +71,7 @@ msgstr "İstatistikler" msgid "A course cannot have both paid certificate and certificate of completion." msgstr "" -#: frontend/src/pages/CourseForm.vue:41 +#: frontend/src/pages/CourseForm.vue:37 msgid "A one line introduction to the course that appears on the course card" msgstr "" @@ -145,7 +145,6 @@ msgid "Add a Student" msgstr "Öğrenci Ekle" #: frontend/src/components/AppSidebar.vue:514 -#: frontend/src/components/OnboardingBanner.vue:56 msgid "Add a chapter" msgstr "" @@ -153,16 +152,15 @@ msgstr "" msgid "Add a course" msgstr "Kurs Ekle" -#: frontend/src/pages/CourseForm.vue:137 +#: frontend/src/pages/CourseForm.vue:133 msgid "Add a keyword and then press enter" msgstr "" #: frontend/src/components/AppSidebar.vue:515 -#: frontend/src/components/OnboardingBanner.vue:81 msgid "Add a lesson" msgstr "Bir ders ekle" -#: frontend/src/components/Modals/Question.vue:146 +#: frontend/src/components/Modals/Question.vue:147 #: frontend/src/pages/QuizForm.vue:183 msgid "Add a new question" msgstr "Yeni Soru Ekle" @@ -235,7 +233,7 @@ msgid "Admin" msgstr "Yönetici" #. Name of a role -#: frontend/src/pages/Batches.vue:282 lms/lms/doctype/lms_badge/lms_badge.json +#: frontend/src/pages/Batches.vue:284 lms/lms/doctype/lms_badge/lms_badge.json msgid "All" msgstr "Tümü" @@ -259,7 +257,7 @@ msgstr "Tüm Geri Bildirimler" msgid "All Submissions" msgstr "Tüm Gönderiler" -#: lms/lms/doctype/lms_quiz/lms_quiz.py:46 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:44 msgid "All questions should have the same marks if the limit is set." msgstr "Eğer bir sınır konulmuşsa tüm soruların puanları aynı olmalıdır." @@ -294,7 +292,7 @@ msgstr "Zaten kayıltı" #. Label of the amount (Currency) field in DocType 'LMS Batch' #. Label of the course_price (Currency) field in DocType 'LMS Course' #. Label of the amount (Currency) field in DocType 'LMS Payment' -#: frontend/src/pages/BatchForm.vue:209 frontend/src/pages/CourseForm.vue:221 +#: frontend/src/pages/BatchForm.vue:209 frontend/src/pages/CourseForm.vue:217 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_payment/lms_payment.json @@ -346,7 +344,7 @@ msgstr "" msgid "Answer" msgstr "Cevap" -#: frontend/src/pages/CourseForm.vue:85 frontend/src/pages/CourseForm.vue:103 +#: frontend/src/pages/CourseForm.vue:81 frontend/src/pages/CourseForm.vue:99 msgid "Appears on the course card in the course list" msgstr "" @@ -354,11 +352,11 @@ msgstr "" msgid "Appears when the batch URL is shared on any online platform" msgstr "Parti URL’si herhangi bir çevrimiçi platformda paylaşıldığında görünür." -#: frontend/src/pages/JobDetail.vue:121 +#: frontend/src/pages/JobDetail.vue:128 msgid "Applications Received" msgstr "Alınan Başvurular" -#: frontend/src/pages/JobDetail.vue:42 +#: frontend/src/pages/JobDetail.vue:48 msgid "Apply" msgstr "Uygula" @@ -389,7 +387,7 @@ msgstr "Onaylandı" msgid "Apps" msgstr "Uygulamalar" -#: frontend/src/pages/Batches.vue:292 +#: frontend/src/pages/Batches.vue:294 msgid "Archived" msgstr "Arşivlendi" @@ -401,11 +399,6 @@ msgstr "" msgid "Are you sure you want to login to your Frappe Cloud dashboard?" msgstr "" -#. Label of the user_category (Check) field in DocType 'LMS Settings' -#: lms/lms/doctype/lms_settings/lms_settings.json -msgid "Ask User Category during Signup" -msgstr "Kayıt sırasında Kullanıcı Kategorisini Sor" - #. 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 @@ -470,6 +463,10 @@ msgstr "Ödev Eki" msgid "Assignment Submission Template" msgstr "Ödev Gönderim Şablonu" +#: frontend/src/pages/AssignmentSubmissionList.vue:223 +msgid "Assignment Submissions" +msgstr "" + #. Label of the assignment_title (Data) field in DocType 'LMS Assignment #. Submission' #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json @@ -480,7 +477,7 @@ msgstr "Ödev Başlığı" msgid "Assignment for Lesson {0} by {1} already exists." msgstr "{1} tarafından verilen {0} Dersi için ödev zaten mevcut." -#: frontend/src/pages/AssignmentForm.vue:155 +#: frontend/src/pages/AssignmentForm.vue:158 msgid "Assignment saved successfully" msgstr "" @@ -490,7 +487,8 @@ msgid "Assignment will appear at the bottom of the lesson." msgstr "Ödev dersin alt kısmında görünecektir." #: frontend/src/components/AppSidebar.vue:531 -#: frontend/src/pages/AssignmentForm.vue:174 +#: frontend/src/pages/AssignmentForm.vue:177 +#: frontend/src/pages/Assignments.vue:193 lms/www/lms.py:251 msgid "Assignments" msgstr "Atamalar" @@ -656,8 +654,8 @@ msgid "Batch:" msgstr "Parti:" #. Label of the batches (Check) field in DocType 'LMS Settings' -#: frontend/src/pages/Batches.vue:302 -#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:63 +#: frontend/src/pages/Batches.vue:304 frontend/src/pages/Batches.vue:311 +#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:105 msgid "Batches" msgstr "Sınıflar" @@ -675,7 +673,7 @@ msgstr "" #. Label of the billing_details_section (Section Break) field in DocType 'LMS #. Payment' -#: frontend/src/pages/Billing.vue:8 +#: frontend/src/pages/Billing.vue:8 frontend/src/pages/Billing.vue:363 #: lms/lms/doctype/lms_payment/lms_payment.json msgid "Billing Details" msgstr "Fatura Detayları" @@ -757,8 +755,9 @@ msgstr "Günlük Giyim" #. Label of the category (Link) field in DocType 'LMS Course' #: frontend/src/pages/BatchForm.vue:190 frontend/src/pages/Batches.vue:55 #: frontend/src/pages/CertifiedParticipants.vue:37 -#: frontend/src/pages/CourseForm.vue:148 frontend/src/pages/Courses.vue:51 -#: frontend/src/pages/JobDetail.vue:96 lms/lms/doctype/lms_batch/lms_batch.json +#: frontend/src/pages/CourseForm.vue:144 frontend/src/pages/Courses.vue:51 +#: frontend/src/pages/JobDetail.vue:103 +#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/public/js/common_functions.js:316 lms/templates/signup-form.html:22 @@ -813,7 +812,7 @@ msgstr "" #: frontend/src/components/Modals/Event.vue:371 #: frontend/src/pages/BatchForm.vue:37 frontend/src/pages/Batches.vue:38 #: frontend/src/pages/CourseCertification.vue:10 -#: frontend/src/pages/CourseCertification.vue:133 +#: frontend/src/pages/CourseCertification.vue:135 #: frontend/src/pages/Courses.vue:34 lms/fixtures/custom_field.json #: lms/lms/doctype/certification/certification.json #: lms/lms/doctype/lms_batch/lms_batch.json @@ -837,7 +836,8 @@ msgid "Certified" msgstr "" #. Label of the certified_participants (Check) field in DocType 'LMS Settings' -#: frontend/src/pages/CertifiedParticipants.vue:161 +#: frontend/src/pages/CertifiedParticipants.vue:164 +#: frontend/src/pages/CertifiedParticipants.vue:171 #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Certified Participants" msgstr "Sertifikalı Katılımcılar" @@ -864,11 +864,11 @@ msgstr "Bölüm" msgid "Chapter Reference" msgstr "Bölüm Referansı" -#: frontend/src/components/Modals/ChapterModal.vue:152 +#: frontend/src/components/Modals/ChapterModal.vue:155 msgid "Chapter added successfully" msgstr "Bölüm başarıyla eklendi" -#: frontend/src/components/Modals/ChapterModal.vue:196 +#: frontend/src/components/Modals/ChapterModal.vue:199 msgid "Chapter updated successfully" msgstr "Bölüm başarıyla güncellendi" @@ -1117,7 +1117,7 @@ msgid "Completed by Students" msgstr "" #. Label of the enable_certification (Check) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:213 +#: frontend/src/pages/CourseForm.vue:209 #: lms/lms/doctype/lms_course/lms_course.json msgid "Completion Certificate" msgstr "" @@ -1179,7 +1179,7 @@ msgid "Continue Learning" msgstr "Öğrenmeye Devam Et" #. Option for the 'Type' (Select) field in DocType 'Job Opportunity' -#: frontend/src/pages/Jobs.vue:146 +#: frontend/src/pages/Jobs.vue:163 #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Contract" msgstr "Sözleşme" @@ -1294,6 +1294,7 @@ msgstr "Kurslar Tamamlandı" #. Name of a role #: frontend/src/pages/ProfileRoles.vue:16 #: lms/lms/doctype/course_chapter/course_chapter.json +#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_program/lms_program.json @@ -1307,7 +1308,7 @@ msgstr "" msgid "Course Data" msgstr "Kurs Verileri" -#: frontend/src/pages/CourseForm.vue:50 +#: frontend/src/pages/CourseForm.vue:46 msgid "Course Description" msgstr "Kurs Açıklaması" @@ -1316,7 +1317,7 @@ msgstr "Kurs Açıklaması" msgid "Course Evaluator" msgstr "" -#: frontend/src/pages/CourseForm.vue:63 +#: frontend/src/pages/CourseForm.vue:59 msgid "Course Image" msgstr "Kurs Resmi" @@ -1330,7 +1331,7 @@ msgstr "Kurs Eğitmeni" msgid "Course Lesson" msgstr "Kurs Dersi" -#: lms/www/lms.py:30 +#: lms/www/lms.py:70 msgid "Course List" msgstr "Kurs Listesi" @@ -1338,7 +1339,7 @@ msgstr "Kurs Listesi" msgid "Course Name" msgstr "Kurs Adı" -#: frontend/src/pages/CourseDetail.vue:76 frontend/src/pages/CourseForm.vue:241 +#: frontend/src/pages/CourseDetail.vue:76 frontend/src/pages/CourseForm.vue:237 msgid "Course Outline" msgstr "" @@ -1370,7 +1371,7 @@ msgstr "Kurs İstatistikleri" msgid "Course Title" msgstr "Kurs Başlığı" -#: frontend/src/pages/ProgramForm.vue:229 +#: frontend/src/pages/ProgramForm.vue:232 msgid "Course added to program" msgstr "" @@ -1378,11 +1379,11 @@ msgstr "" msgid "Course already added to the batch." msgstr "Kurs zaten gruba eklendi." -#: frontend/src/pages/CourseForm.vue:472 +#: frontend/src/pages/CourseForm.vue:470 msgid "Course deleted successfully" msgstr "Kurs başarıyla silindi" -#: frontend/src/pages/ProgramForm.vue:298 +#: frontend/src/pages/ProgramForm.vue:301 msgid "Course moved successfully" msgstr "Kurs başarıyla taşındı" @@ -1400,8 +1401,9 @@ msgstr "Kurs {0} bu gruba zaten eklenmiştir." #: frontend/src/components/BatchStudents.vue:92 #: frontend/src/components/Modals/BatchStudentProgress.vue:79 #: frontend/src/pages/BatchDetail.vue:21 frontend/src/pages/BatchDetail.vue:70 -#: frontend/src/pages/CourseCertification.vue:125 -#: frontend/src/pages/Courses.vue:301 frontend/src/pages/Statistics.vue:21 +#: frontend/src/pages/CourseCertification.vue:127 +#: frontend/src/pages/Courses.vue:304 frontend/src/pages/Courses.vue:311 +#: frontend/src/pages/Statistics.vue:21 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Courses" @@ -1443,7 +1445,6 @@ msgid "Create a batch" msgstr "" #: frontend/src/components/AppSidebar.vue:513 -#: frontend/src/components/OnboardingBanner.vue:30 msgid "Create a course" msgstr "Bir Kurs Oluştur" @@ -1467,7 +1468,7 @@ msgstr "" msgid "Create your first quiz" msgstr "" -#: frontend/src/pages/Assignments.vue:163 frontend/src/pages/Courses.vue:292 +#: frontend/src/pages/Assignments.vue:166 frontend/src/pages/Courses.vue:295 msgid "Created" msgstr "Oluşturdu" @@ -1482,7 +1483,7 @@ msgstr "" #. Label of the currency (Link) field in DocType 'LMS Batch' #. Label of the currency (Link) field in DocType 'LMS Course' #. Label of the currency (Link) field in DocType 'LMS Payment' -#: frontend/src/pages/BatchForm.vue:217 frontend/src/pages/CourseForm.vue:226 +#: frontend/src/pages/BatchForm.vue:217 frontend/src/pages/CourseForm.vue:222 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_payment/lms_payment.json @@ -1585,9 +1586,9 @@ msgstr "Varsayılan Para Birimi" msgid "Degree Type" msgstr "Derece Türü" -#: frontend/src/components/CourseOutline.vue:247 -#: frontend/src/components/CourseOutline.vue:305 -#: frontend/src/pages/CourseForm.vue:485 +#: frontend/src/components/CourseOutline.vue:248 +#: frontend/src/components/CourseOutline.vue:306 +#: frontend/src/pages/CourseForm.vue:483 msgid "Delete" msgstr "Sil" @@ -1595,27 +1596,27 @@ msgstr "Sil" msgid "Delete Chapter" msgstr "Bölümü Sil" -#: frontend/src/pages/CourseForm.vue:479 +#: frontend/src/pages/CourseForm.vue:477 msgid "Delete Course" msgstr "Kursu Sil" -#: frontend/src/components/CourseOutline.vue:299 +#: frontend/src/components/CourseOutline.vue:300 msgid "Delete this chapter?" msgstr "Bu bölümü silmek istiyor musunuz?" -#: frontend/src/components/CourseOutline.vue:241 +#: frontend/src/components/CourseOutline.vue:242 msgid "Delete this lesson?" msgstr "Bu dersi silmek istiyor musunuz?" -#: frontend/src/pages/CourseForm.vue:480 +#: frontend/src/pages/CourseForm.vue:478 msgid "Deleting the course will also delete all its chapters and lessons. Are you sure you want to delete this course?" msgstr "Kursu silmek, tüm bölümlerini ve derslerini de silecektir. Bu kursu silmek istediğinizden emin misiniz?" -#: frontend/src/components/CourseOutline.vue:300 +#: frontend/src/components/CourseOutline.vue:301 msgid "Deleting this chapter will also delete all its lessons and permanently remove it from the course. This action cannot be undone. Are you sure you want to continue?" msgstr "Bu bölümü silmek, tüm derslerini de silecek ve onu kurstan kalıcı olarak kaldıracaktır. Bu eylem geri alınamaz. Devam etmek istediğinizden emin misiniz?" -#: frontend/src/components/CourseOutline.vue:242 +#: frontend/src/components/CourseOutline.vue:243 msgid "Deleting this lesson will permanently remove it from the course. This action cannot be undone. Are you sure you want to continue?" msgstr "Bu dersi silmek onu kurstan kalıcı olarak kaldıracaktır. Bu eylem geri alınamaz. Devam etmek istediğinizden emin misiniz?" @@ -1650,15 +1651,15 @@ msgstr "Açıklama" #: frontend/src/components/Apps.vue:51 msgid "Desk" -msgstr "" +msgstr "Masa" #: frontend/src/components/Modals/DiscussionModal.vue:22 #: frontend/src/pages/AssignmentForm.vue:27 frontend/src/pages/BatchForm.vue:14 -#: frontend/src/pages/CourseForm.vue:29 frontend/src/pages/QuizForm.vue:42 +#: frontend/src/pages/CourseForm.vue:25 frontend/src/pages/QuizForm.vue:42 msgid "Details" msgstr "Ayrıntılar" -#: frontend/src/pages/CourseForm.vue:195 +#: frontend/src/pages/CourseForm.vue:191 msgid "Disable Self Enrollment" msgstr "Kendi Kendine Kayıt Olmayı Devre Dışı Bırak" @@ -1667,6 +1668,11 @@ msgstr "Kendi Kendine Kayıt Olmayı Devre Dışı Bırak" msgid "Disable Self Learning" msgstr "Kendi kendine öğrenmeyi devre dışı bırak" +#. Label of the disable_signup (Check) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Disable Signup" +msgstr "" + #. Label of the disabled (Check) field in DocType 'Job Opportunity' #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Disabled" @@ -1808,7 +1814,7 @@ msgstr "Personel" msgid "Enable" msgstr "Etkinleştir" -#: lms/lms/doctype/lms_settings/lms_settings.py:20 +#: lms/lms/doctype/lms_settings/lms_settings.py:21 msgid "Enable Google API in Google Settings to send calendar invites for evaluations." msgstr "Değerlendirmeler için takvim davetleri göndermek üzere Google Ayarları'nda Google API'yi etkinleştirin." @@ -1867,7 +1873,7 @@ msgstr "Bitiş Zamanı" msgid "Enroll Now" msgstr "Hemen Kaydol" -#: frontend/src/pages/Batches.vue:295 frontend/src/pages/Courses.vue:294 +#: frontend/src/pages/Batches.vue:297 frontend/src/pages/Courses.vue:297 msgid "Enrolled" msgstr "Kayıtlı" @@ -1902,7 +1908,7 @@ msgstr "Kayıt Başarısız" msgid "Enrollments" msgstr "Kayıtlar" -#: lms/lms/doctype/lms_settings/lms_settings.py:25 +#: lms/lms/doctype/lms_settings/lms_settings.py:26 msgid "Enter Client Id and Client Secret in Google Settings to send calendar invites for evaluations." msgstr "Değerlendirmeler için takvim davetleri göndermek üzere Google Ayarları'na İstemci Kimliği ve İstemci Gizli Anahtarını girin." @@ -1921,19 +1927,19 @@ msgstr "Doğru cevabı girin" #: frontend/src/components/Assignment.vue:287 #: frontend/src/components/Modals/AnnouncementModal.vue:105 #: frontend/src/components/Modals/BulkCertificates.vue:115 -#: frontend/src/components/Modals/ChapterModal.vue:157 -#: frontend/src/components/Modals/ChapterModal.vue:164 -#: frontend/src/components/Modals/ChapterModal.vue:200 -#: frontend/src/components/Modals/Question.vue:251 -#: frontend/src/components/Modals/Question.vue:272 -#: frontend/src/components/Modals/Question.vue:329 -#: frontend/src/components/Modals/StudentModal.vue:70 +#: frontend/src/components/Modals/ChapterModal.vue:160 +#: frontend/src/components/Modals/ChapterModal.vue:167 +#: frontend/src/components/Modals/ChapterModal.vue:203 +#: frontend/src/components/Modals/Question.vue:252 +#: frontend/src/components/Modals/Question.vue:275 +#: frontend/src/components/Modals/Question.vue:332 +#: frontend/src/components/Modals/StudentModal.vue:73 #: frontend/src/components/Quiz.vue:592 #: frontend/src/components/SettingDetails.vue:62 -#: frontend/src/pages/AssignmentForm.vue:139 -#: frontend/src/pages/AssignmentForm.vue:159 frontend/src/pages/Billing.vue:261 -#: frontend/src/pages/QuizForm.vue:346 frontend/src/pages/QuizForm.vue:361 -#: frontend/src/pages/QuizSubmission.vue:147 +#: frontend/src/pages/AssignmentForm.vue:142 +#: frontend/src/pages/AssignmentForm.vue:162 frontend/src/pages/Billing.vue:262 +#: frontend/src/pages/QuizForm.vue:349 frontend/src/pages/QuizForm.vue:364 +#: frontend/src/pages/QuizSubmission.vue:150 msgid "Error" msgstr "Hata" @@ -1982,7 +1988,7 @@ msgstr "" #. Label of the evaluator (Link) field in DocType 'LMS Course' #: frontend/src/components/Modals/BatchCourseModal.vue:26 #: frontend/src/components/Modals/BulkCertificates.vue:22 -#: frontend/src/pages/CourseForm.vue:232 frontend/src/pages/ProfileRoles.vue:22 +#: frontend/src/pages/CourseForm.vue:228 frontend/src/pages/ProfileRoles.vue:22 #: lms/lms/doctype/batch_course/batch_course.json #: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json @@ -2100,7 +2106,7 @@ msgstr "Başarısız" #. Label of the featured (Check) field in DocType 'LMS Course' #: frontend/src/components/CourseCard.vue:16 -#: frontend/src/pages/CourseForm.vue:190 +#: frontend/src/pages/CourseForm.vue:186 #: lms/lms/doctype/lms_course/lms_course.json msgid "Featured" msgstr "Öne Çıkan" @@ -2149,10 +2155,6 @@ msgstr "Sabit 8-5" msgid "Flexible Time" msgstr "Esnek Zaman" -#: frontend/src/pages/QuizForm.vue:459 -msgid "Form to create and edit quizzes" -msgstr "" - #. Option for the 'Attire Preference' (Select) field in DocType 'User' #: lms/fixtures/custom_field.json msgid "Formal Wear" @@ -2163,7 +2165,7 @@ msgid "Free" msgstr "Serbest" #. Option for the 'Type' (Select) field in DocType 'Job Opportunity' -#: frontend/src/pages/Jobs.vue:147 +#: frontend/src/pages/Jobs.vue:164 #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Freelance" msgstr "Serbest çalışan" @@ -2207,7 +2209,7 @@ msgid "Full Name" msgstr "Tam Adı" #. Option for the 'Type' (Select) field in DocType 'Job Opportunity' -#: frontend/src/pages/Jobs.vue:144 +#: frontend/src/pages/Jobs.vue:161 #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Full Time" msgstr "Tam Zamanlı" @@ -2385,7 +2387,7 @@ msgstr "Bir iş arıyorum" msgid "I am unavailable" msgstr "Müsait değilim" -#: frontend/src/pages/QuizForm.vue:380 +#: frontend/src/pages/QuizForm.vue:383 msgid "ID" msgstr "ID" @@ -2395,6 +2397,11 @@ msgstr "ID" msgid "Icon" msgstr "Simge" +#. Label of the user_category (Check) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Identify User Persona" +msgstr "" + #: frontend/src/components/LessonHelp.vue:11 msgid "If Include in Preview is enabled for a lesson then the lesson will also be accessible to non logged in users." msgstr "" @@ -2425,7 +2432,7 @@ msgstr "Herhangi bir sorunuz veya yardıma ihtiyacınız varsa bizimle iletişim msgid "If you set an amount here, then the USD equivalent setting will not get applied." msgstr "Burada bir tutar belirlerseniz, USD karşılığı uygulanmayacaktır." -#: lms/lms/doctype/lms_quiz/lms_quiz.py:63 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:61 msgid "If you want open ended questions then make sure each question in the quiz is of open ended type." msgstr "" @@ -2451,7 +2458,7 @@ msgstr "Resim" msgid "Image search powered by" msgstr "" -#: lms/lms/doctype/lms_quiz/lms_quiz.py:221 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:219 msgid "Image: Corrupted Data Stream" msgstr "Resim: Bozuk Veri Akışı" @@ -2540,7 +2547,7 @@ msgstr "Eğitmen Notları" #. Label of the instructors (Table MultiSelect) field in DocType 'LMS Batch' #. Label of the instructors (Rating) field in DocType 'LMS Batch Feedback' #. Label of the instructors (Table MultiSelect) field in DocType 'LMS Course' -#: frontend/src/pages/BatchForm.vue:93 frontend/src/pages/CourseForm.vue:155 +#: frontend/src/pages/BatchForm.vue:93 frontend/src/pages/CourseForm.vue:151 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json #: lms/lms/doctype/lms_course/lms_course.json @@ -2565,10 +2572,14 @@ msgstr "Tanıtım/Giriş" msgid "Invalid Invite Code." msgstr "Geçersiz Davetiye Kodu." -#: lms/lms/doctype/course_lesson/course_lesson.py:20 +#: lms/lms/doctype/course_lesson/course_lesson.py:19 msgid "Invalid Quiz ID" msgstr "Geçersiz Sınav Kimliği" +#: lms/lms/doctype/course_lesson/course_lesson.py:33 +msgid "Invalid Quiz ID in content" +msgstr "" + #. Label of the invite_code (Data) field in DocType 'Cohort Subgroup' #. Label of the invite_code (Data) field in DocType 'Invite Request' #: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json @@ -2607,11 +2618,6 @@ msgstr "" msgid "Is Correct" msgstr "Doğru" -#. Label of the is_onboarding_complete (Check) field in DocType 'LMS Settings' -#: lms/lms/doctype/lms_settings/lms_settings.json -msgid "Is Onboarding Complete" -msgstr "Tanıtım Tamamlandı" - #. Label of the is_scorm_package (Check) field in DocType 'Course Chapter' #. Label of the is_scorm_package (Check) field in DocType 'Course Lesson' #: lms/lms/doctype/course_chapter/course_chapter.json @@ -2650,7 +2656,7 @@ msgstr "Yayınlanma Tarihi" msgid "Items in Sidebar" msgstr "Kenar Çubuğundaki Öğeler" -#: frontend/src/pages/ProgramForm.vue:272 +#: frontend/src/pages/ProgramForm.vue:275 msgid "Items removed successfully" msgstr "" @@ -2677,7 +2683,7 @@ msgstr "İş İlanı Başlığı" msgid "Job Details" msgstr "İş Detayları" -#: lms/www/lms.py:111 +#: lms/www/lms.py:159 msgid "Job Openings" msgstr "İş Alımları" @@ -2700,6 +2706,7 @@ msgstr "İş İlanı Başlığı" #. Label of the jobs (Check) field in DocType 'LMS Settings' #: frontend/src/pages/JobDetail.vue:10 frontend/src/pages/Jobs.vue:8 +#: frontend/src/pages/Jobs.vue:170 #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Jobs" msgstr "İşler" @@ -2923,7 +2930,6 @@ msgstr "ÖYS Kaynağı" #: lms/job/doctype/lms_job_application/lms_job_application.json #: lms/lms/doctype/cohort_join_request/cohort_join_request.json #: lms/lms/doctype/course_chapter/course_chapter.json -#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/function/function.json #: lms/lms/doctype/industry/industry.json #: lms/lms/doctype/lms_assignment/lms_assignment.json @@ -3035,7 +3041,7 @@ msgstr "" msgid "Limit Questions To" msgstr "" -#: lms/lms/doctype/lms_quiz/lms_quiz.py:40 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:38 msgid "Limit cannot be greater than or equal to the number of questions in the quiz." msgstr "" @@ -3055,12 +3061,8 @@ msgstr "LinkedIn" msgid "Links" msgstr "Bağlantılar" -#: frontend/src/pages/Quizzes.vue:149 -msgid "List of quizzes" -msgstr "Sınavların listesi" - #. Option for the 'Status' (Select) field in DocType 'Cohort' -#: frontend/src/pages/Courses.vue:278 lms/lms/doctype/cohort/cohort.json +#: frontend/src/pages/Courses.vue:281 lms/lms/doctype/cohort/cohort.json msgid "Live" msgstr "Canlı" @@ -3092,7 +3094,7 @@ msgstr "Yerel" #. Label of the location (Data) field in DocType 'Job Opportunity' #. Label of the location (Data) field in DocType 'Education Detail' #. Label of the location (Data) field in DocType 'Work Experience' -#: frontend/src/pages/JobCreation.vue:26 frontend/src/pages/JobDetail.vue:85 +#: frontend/src/pages/JobCreation.vue:26 frontend/src/pages/JobDetail.vue:92 #: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/lms/doctype/education_detail/education_detail.json #: lms/lms/doctype/work_experience/work_experience.json @@ -3114,7 +3116,7 @@ msgstr "Giriş" msgid "Login to Frappe Cloud?" msgstr "Frappe Cloud'a Giriş Yapın?" -#: frontend/src/pages/JobDetail.vue:48 +#: frontend/src/pages/JobDetail.vue:54 msgid "Login to apply" msgstr "Başvurmak için giriş yapın" @@ -3171,7 +3173,7 @@ msgstr "Okundu olarak İşaretle" #. Label of the marks (Int) field in DocType 'LMS Quiz Result' #: frontend/src/components/Modals/Question.vue:50 #: frontend/src/components/Modals/Question.vue:99 -#: frontend/src/components/Quiz.vue:96 frontend/src/pages/QuizForm.vue:390 +#: frontend/src/components/Quiz.vue:96 frontend/src/pages/QuizForm.vue:393 #: frontend/src/pages/QuizSubmission.vue:65 #: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json #: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json @@ -3233,7 +3235,7 @@ msgstr "Orta:" #. Label of the member (Link) field in DocType 'LMS Quiz Submission' #: frontend/src/pages/AssignmentSubmissionList.vue:14 #: frontend/src/pages/QuizSubmission.vue:31 -#: frontend/src/pages/QuizSubmissionList.vue:86 +#: frontend/src/pages/QuizSubmissionList.vue:102 #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_submission/exercise_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json @@ -3314,7 +3316,7 @@ msgstr "Üye Türü" msgid "Member Username" msgstr "" -#: frontend/src/pages/ProgramForm.vue:251 +#: frontend/src/pages/ProgramForm.vue:254 msgid "Member added to program" msgstr "" @@ -3378,6 +3380,11 @@ msgstr "Mentor Talebi Oluşturma Şablonu" msgid "Mentor Request Status Update Template" msgstr "Mentor Talebi Durum Güncelleme Şablonu" +#. Label of the meta_description (Small Text) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Meta Description" +msgstr "Meta Açıklaması" + #. Label of the meta_image (Attach Image) field in DocType 'LMS Batch' #: frontend/src/pages/BatchForm.vue:44 lms/lms/doctype/lms_batch/lms_batch.json #: lms/public/js/common_functions.js:362 @@ -3400,6 +3407,7 @@ msgstr "" #. Name of a role #: frontend/src/pages/ProfileRoles.vue:10 #: lms/lms/doctype/course_evaluator/course_evaluator.json +#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/lms_assignment/lms_assignment.json #: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json #: lms/lms/doctype/lms_batch/lms_batch.json @@ -3459,12 +3467,13 @@ msgstr "Takvimim" #. Option for the 'Event' (Select) field in DocType 'LMS Badge' #: frontend/src/pages/Assignments.vue:18 frontend/src/pages/Batches.vue:17 -#: frontend/src/pages/Courses.vue:17 frontend/src/pages/Courses.vue:281 +#: frontend/src/pages/Courses.vue:17 frontend/src/pages/Courses.vue:284 #: frontend/src/pages/Programs.vue:14 lms/lms/doctype/lms_badge/lms_badge.json msgid "New" msgstr "Yeni" -#: frontend/src/pages/AssignmentForm.vue:178 +#: frontend/src/pages/AssignmentForm.vue:181 +#: frontend/src/pages/AssignmentForm.vue:197 msgid "New Assignment" msgstr "" @@ -3472,11 +3481,11 @@ msgstr "" msgid "New Assignment Submission" msgstr "Yeni Ödev Gönderimi" -#: lms/public/js/common_functions.js:255 lms/www/lms.py:89 +#: lms/public/js/common_functions.js:255 lms/www/lms.py:134 msgid "New Batch" msgstr "Yeni Parti" -#: lms/www/lms.py:40 +#: frontend/src/pages/CourseForm.vue:577 lms/www/lms.py:78 msgid "New Course" msgstr "Yeni Kurs" @@ -3504,7 +3513,7 @@ msgstr "" msgid "New Question" msgstr "Yeni Soru" -#: frontend/src/pages/QuizForm.vue:450 frontend/src/pages/QuizForm.vue:458 +#: frontend/src/pages/QuizForm.vue:453 frontend/src/pages/QuizForm.vue:461 #: frontend/src/pages/Quizzes.vue:18 msgid "New Quiz" msgstr "Yeni Test" @@ -3599,9 +3608,9 @@ msgstr "" msgid "No introduction" msgstr "Tanıtım yok" -#: frontend/src/pages/Jobs.vue:77 -msgid "No jobs posted" -msgstr "Hiçbir iş ilanı yayınlanmadı" +#: frontend/src/pages/Jobs.vue:80 +msgid "No jobs found" +msgstr "" #: frontend/src/components/LiveClass.vue:71 msgid "No live classes scheduled" @@ -3615,6 +3624,10 @@ msgstr "Katılımcı bulunamadı" msgid "No programs found" msgstr "Hiçbir program bulunamadı" +#: frontend/src/pages/QuizSubmissionList.vue:52 +msgid "No quiz submissions found. Please check again later." +msgstr "" + #: frontend/src/pages/Quizzes.vue:61 msgid "No quizzes found" msgstr "Hiçbir sınav bulunamadı" @@ -3624,6 +3637,7 @@ msgid "No slots available for this date." msgstr "Bu tarih için boş yer bulunmamaktadır." #: frontend/src/pages/AssignmentSubmissionList.vue:67 +#: frontend/src/pages/QuizSubmissionList.vue:49 msgid "No submissions" msgstr "Başvuru yok" @@ -3724,11 +3738,11 @@ msgstr "" msgid "Only files of type {0} will be accepted." msgstr "Sadece {0} türündeki dosyalar kabul edilecektir." -#: frontend/src/pages/CourseForm.vue:509 frontend/src/utils/index.js:549 +#: frontend/src/pages/CourseForm.vue:507 frontend/src/utils/index.js:550 msgid "Only image file is allowed." msgstr "Sadece resim dosyasına izin verilir." -#: frontend/src/components/Modals/ChapterModal.vue:218 +#: frontend/src/components/Modals/ChapterModal.vue:221 msgid "Only zip files are allowed" msgstr "" @@ -3786,7 +3800,7 @@ msgstr "Seçenek 4" msgid "Order ID" msgstr "Sipariş No" -#: frontend/src/pages/JobDetail.vue:74 +#: frontend/src/pages/JobDetail.vue:81 msgid "Organisation" msgstr "" @@ -3835,7 +3849,7 @@ msgid "Paid Batch" msgstr "" #. Label of the paid_certificate (Check) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:218 +#: frontend/src/pages/CourseForm.vue:214 #: lms/lms/doctype/lms_course/lms_course.json msgid "Paid Certificate" msgstr "" @@ -3845,7 +3859,7 @@ msgid "Paid Certificate after Evaluation" msgstr "" #. Label of the paid_course (Check) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:208 +#: frontend/src/pages/CourseForm.vue:204 #: lms/lms/doctype/lms_course/lms_course.json msgid "Paid Course" msgstr "Ücretli Kurs" @@ -3855,7 +3869,7 @@ msgid "Pan Number" msgstr "" #. Option for the 'Type' (Select) field in DocType 'Job Opportunity' -#: frontend/src/pages/Jobs.vue:145 +#: frontend/src/pages/Jobs.vue:162 #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Part Time" msgstr "Yarı Zamanlı" @@ -3877,7 +3891,7 @@ msgstr "Başarılı" #. Label of the passing_percentage (Int) field in DocType 'LMS Quiz' #. Label of the passing_percentage (Int) field in DocType 'LMS Quiz Submission' -#: frontend/src/pages/QuizForm.vue:72 frontend/src/pages/Quizzes.vue:127 +#: frontend/src/pages/QuizForm.vue:72 frontend/src/pages/Quizzes.vue:129 #: lms/lms/doctype/lms_quiz/lms_quiz.json #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json msgid "Passing Percentage" @@ -3888,7 +3902,7 @@ msgstr "Başarı Yüzdesi" msgid "Password" msgstr "Şifre" -#: frontend/src/pages/CourseForm.vue:113 +#: frontend/src/pages/CourseForm.vue:109 msgid "Paste the youtube link of a short video introducing the course" msgstr "" @@ -3980,7 +3994,7 @@ msgstr "Bekliyor" #. Label of the percentage (Int) field in DocType 'LMS Quiz Submission' #: frontend/src/pages/QuizSubmission.vue:44 -#: frontend/src/pages/QuizSubmissionList.vue:97 +#: frontend/src/pages/QuizSubmissionList.vue:113 #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json msgid "Percentage" msgstr "Yüzde" @@ -4002,7 +4016,7 @@ msgstr "Telefon Numarası" msgid "Please Login" msgstr "Lütfen Giriş Yapın" -#: lms/lms/doctype/lms_settings/lms_settings.py:33 +#: lms/lms/doctype/lms_settings/lms_settings.py:34 msgid "Please add {1} for {3} to send calendar invites for evaluations." msgstr "" @@ -4026,7 +4040,7 @@ msgstr "" msgid "Please enable Zoom Settings to use this feature." msgstr "Bu özelliği kullanmak için lütfen Zoom Ayarlarını etkinleştirin." -#: frontend/src/components/CourseOutline.vue:324 +#: frontend/src/components/CourseOutline.vue:325 msgid "Please enroll for this course to view this lesson" msgstr "" @@ -4063,7 +4077,7 @@ msgstr "Ücretli ödeme grupları oluşturmak için lütfen Ödemeler uygulamas msgid "Please install the Payments app to create a paid courses." msgstr "Ücretli kurslar oluşturmak için lütfen Ödemeler uygulamasını yükleyin." -#: frontend/src/pages/Billing.vue:253 +#: frontend/src/pages/Billing.vue:254 msgid "Please let us know where you heard about us from." msgstr "Lütfen bizi nereden duyduğunuzu belirtin." @@ -4112,7 +4126,7 @@ msgstr "" msgid "Please take appropriate action at {0}" msgstr "" -#: frontend/src/components/Modals/ChapterModal.vue:175 +#: frontend/src/components/Modals/ChapterModal.vue:178 msgid "Please upload a SCORM package" msgstr "" @@ -4158,7 +4172,7 @@ msgstr "Gönder" msgid "Postal Code" msgstr "Posta Kodu" -#: frontend/src/pages/JobDetail.vue:107 +#: frontend/src/pages/JobDetail.vue:114 msgid "Posted on" msgstr "Yayınlama Tarihi" @@ -4193,7 +4207,7 @@ msgstr "" msgid "Preview Image" msgstr "Resim Önizleme" -#: frontend/src/pages/CourseForm.vue:111 +#: frontend/src/pages/CourseForm.vue:107 msgid "Preview Video" msgstr "Video Önzileme" @@ -4208,7 +4222,7 @@ msgid "Pricing" msgstr "Fiyatlandırma" #. Label of the pricing_tab (Tab Break) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:202 +#: frontend/src/pages/CourseForm.vue:198 #: lms/lms/doctype/lms_course/lms_course.json msgid "Pricing and Certification" msgstr "" @@ -4272,6 +4286,10 @@ msgstr "" msgid "Program Members" msgstr "" +#: frontend/src/pages/Programs.vue:219 lms/www/lms.py:273 +msgid "Programs" +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/BatchStudents.vue:75 @@ -4301,7 +4319,7 @@ msgstr "Katılımcı Sayfasında Yayınla" #. Label of the published (Check) field in DocType 'LMS Course' #: frontend/src/components/Modals/BulkCertificates.vue:51 #: frontend/src/components/Modals/Event.vue:108 -#: frontend/src/pages/BatchForm.vue:27 frontend/src/pages/CourseForm.vue:172 +#: frontend/src/pages/BatchForm.vue:27 frontend/src/pages/CourseForm.vue:168 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/public/js/common_functions.js:266 @@ -4314,7 +4332,7 @@ msgid "Published Courses" msgstr "Yayınlamış Kurslar" #. Label of the published_on (Date) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:176 +#: frontend/src/pages/CourseForm.vue:172 #: lms/lms/doctype/lms_course/lms_course.json msgid "Published On" msgstr "Yayınlanma Zamanı" @@ -4333,7 +4351,7 @@ msgstr "" #. Label of the question (Text) field in DocType 'LMS Quiz Result' #: frontend/src/components/Assignment.vue:20 #: frontend/src/components/Modals/Question.vue:38 -#: frontend/src/pages/AssignmentForm.vue:45 frontend/src/pages/QuizForm.vue:385 +#: frontend/src/pages/AssignmentForm.vue:45 frontend/src/pages/QuizForm.vue:388 #: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/lms_assignment/lms_assignment.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json @@ -4358,11 +4376,11 @@ msgstr "Soru Detayı" msgid "Question Name" msgstr "Soru Adı" -#: frontend/src/components/Modals/Question.vue:267 +#: frontend/src/components/Modals/Question.vue:270 msgid "Question added successfully" msgstr "Soru başarıyla eklendi" -#: frontend/src/components/Modals/Question.vue:319 +#: frontend/src/components/Modals/Question.vue:322 msgid "Question updated successfully" msgstr "Soru başarıyla güncellendi" @@ -4379,7 +4397,7 @@ msgstr "Soru {0} / {1}" msgid "Questions" msgstr "Sorular" -#: frontend/src/pages/QuizForm.vue:427 +#: frontend/src/pages/QuizForm.vue:430 msgid "Questions deleted successfully" msgstr "Sorular başarıyla silindi" @@ -4397,13 +4415,13 @@ msgid "Quiz ID" msgstr "Sınav Kimliği" #. Label of a Link in the LMS Workspace -#: frontend/src/pages/QuizPage.vue:56 frontend/src/pages/QuizPage.vue:62 -#: lms/lms/workspace/lms/lms.json +#: frontend/src/pages/QuizPage.vue:57 lms/lms/workspace/lms/lms.json msgid "Quiz Submission" msgstr "Sınav Gönderimi" -#: frontend/src/pages/QuizSubmission.vue:128 -#: frontend/src/pages/QuizSubmissionList.vue:106 +#: frontend/src/pages/QuizSubmission.vue:131 +#: frontend/src/pages/QuizSubmissionList.vue:122 +#: frontend/src/pages/QuizSubmissionList.vue:127 msgid "Quiz Submissions" msgstr "" @@ -4416,7 +4434,7 @@ msgstr "Sınav Özeti" msgid "Quiz Title" msgstr "" -#: frontend/src/pages/QuizForm.vue:339 +#: frontend/src/pages/QuizForm.vue:342 msgid "Quiz created successfully" msgstr "" @@ -4424,7 +4442,7 @@ msgstr "" msgid "Quiz is not available to Guest users. Please login to continue." msgstr "" -#: frontend/src/pages/QuizForm.vue:358 +#: frontend/src/pages/QuizForm.vue:361 msgid "Quiz updated successfully" msgstr "Sınav başarıyla güncellendi" @@ -4434,8 +4452,8 @@ msgid "Quiz will appear at the bottom of the lesson." msgstr "" #: frontend/src/components/AppSidebar.vue:530 -#: frontend/src/pages/QuizForm.vue:438 frontend/src/pages/Quizzes.vue:138 -#: frontend/src/pages/Quizzes.vue:148 +#: frontend/src/pages/QuizForm.vue:441 frontend/src/pages/Quizzes.vue:140 +#: frontend/src/pages/Quizzes.vue:150 lms/www/lms.py:229 msgid "Quizzes" msgstr "Sınavlar" @@ -4513,7 +4531,7 @@ msgstr "Reddedildi" msgid "Related Courses" msgstr "İlgili Kurslar" -#: frontend/src/pages/BatchForm.vue:77 frontend/src/pages/CourseForm.vue:100 +#: frontend/src/pages/BatchForm.vue:77 frontend/src/pages/CourseForm.vue:96 msgid "Remove" msgstr "Kaldır" @@ -4607,7 +4625,7 @@ msgstr "" msgid "Row #{0} Start time cannot be outside the batch duration." msgstr "" -#: lms/lms/doctype/lms_quiz/lms_quiz.py:34 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:32 msgid "Rows {0} have the duplicate questions." msgstr "{0} satırlarında yinelenen sorular var." @@ -4631,6 +4649,11 @@ msgstr "" msgid "SCORM Package Path" msgstr "" +#. Label of the seo_tab (Tab Break) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "SEO" +msgstr "" + #. Option for the 'Day' (Select) field in DocType 'Evaluator Schedule' #. Option for the 'Day' (Select) field in DocType 'LMS Certificate Request' #: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json @@ -4644,7 +4667,7 @@ msgstr "Cumartesi" #: frontend/src/components/Modals/Event.vue:101 #: frontend/src/components/Modals/Event.vue:129 #: frontend/src/pages/AssignmentForm.vue:21 frontend/src/pages/BatchForm.vue:8 -#: frontend/src/pages/CourseForm.vue:21 frontend/src/pages/JobCreation.vue:8 +#: frontend/src/pages/CourseForm.vue:17 frontend/src/pages/JobCreation.vue:8 #: frontend/src/pages/LessonForm.vue:14 frontend/src/pages/ProgramForm.vue:7 #: frontend/src/pages/QuizForm.vue:34 frontend/src/pages/QuizSubmission.vue:14 #: lms/public/js/common_functions.js:405 @@ -4673,7 +4696,7 @@ msgstr "Kapsam" #. Label of the score (Int) field in DocType 'LMS Quiz Submission' #: frontend/src/pages/QuizSubmission.vue:39 -#: frontend/src/pages/QuizSubmissionList.vue:91 +#: frontend/src/pages/QuizSubmissionList.vue:107 #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json #: lms/templates/quiz/quiz.html:148 msgid "Score" @@ -4767,7 +4790,7 @@ msgstr "" #: frontend/src/components/AppSidebar.vue:556 #: frontend/src/components/Modals/Settings.vue:7 -#: frontend/src/pages/BatchForm.vue:148 frontend/src/pages/CourseForm.vue:162 +#: frontend/src/pages/BatchForm.vue:148 frontend/src/pages/CourseForm.vue:158 #: frontend/src/pages/ProfileRoles.vue:4 frontend/src/pages/QuizForm.vue:79 msgid "Settings" msgstr "Ayarlar" @@ -4781,7 +4804,7 @@ msgid "Short Description" msgstr "" #. Label of the short_introduction (Small Text) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:39 +#: frontend/src/pages/CourseForm.vue:35 #: lms/lms/doctype/lms_course/lms_course.json msgid "Short Introduction" msgstr "Kısa Tanıtım" @@ -4892,10 +4915,6 @@ msgstr "Yetkinlikler" msgid "Skip" msgstr "Geç" -#: frontend/src/components/OnboardingBanner.vue:3 -msgid "Skip Onboarding" -msgstr "" - #: lms/lms/doctype/course_evaluator/course_evaluator.py:63 msgid "Slot Times are overlapping for some schedules." msgstr "" @@ -5009,8 +5028,9 @@ msgstr "Durum" #. Label of the tab_4_tab (Tab Break) field in DocType 'LMS Course' #. Label of the statistics (Check) field in DocType 'LMS Settings' #: frontend/src/components/BatchStudents.vue:5 +#: frontend/src/pages/Statistics.vue:322 #: lms/lms/doctype/lms_course/lms_course.json -#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:136 +#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:182 msgid "Statistics" msgstr "İstatistik" @@ -5110,7 +5130,7 @@ msgstr "" #: frontend/src/components/Modals/AssessmentModal.vue:9 #: frontend/src/components/Modals/BatchCourseModal.vue:9 #: frontend/src/components/Modals/EvaluationModal.vue:9 -#: frontend/src/components/Modals/Question.vue:341 +#: frontend/src/components/Modals/Question.vue:344 #: frontend/src/components/Quiz.vue:218 lms/templates/assignment.html:9 #: lms/templates/livecode/extension_footer.html:25 #: lms/templates/quiz/quiz.html:128 lms/templates/reviews.html:163 @@ -5135,18 +5155,18 @@ msgstr "Kaydedildi {0}" #: frontend/src/components/Modals/AnnouncementModal.vue:99 #: frontend/src/components/Modals/AssessmentModal.vue:73 #: frontend/src/components/Modals/BulkCertificates.vue:121 -#: frontend/src/components/Modals/ChapterModal.vue:151 -#: frontend/src/components/Modals/ChapterModal.vue:196 +#: frontend/src/components/Modals/ChapterModal.vue:154 +#: frontend/src/components/Modals/ChapterModal.vue:199 #: frontend/src/components/Modals/Event.vue:255 #: frontend/src/components/Modals/Event.vue:310 -#: frontend/src/components/Modals/Question.vue:267 -#: frontend/src/components/Modals/Question.vue:318 -#: frontend/src/pages/AssignmentForm.vue:155 -#: frontend/src/pages/CourseForm.vue:472 frontend/src/pages/ProgramForm.vue:229 -#: frontend/src/pages/ProgramForm.vue:251 -#: frontend/src/pages/ProgramForm.vue:272 -#: frontend/src/pages/ProgramForm.vue:298 frontend/src/pages/QuizForm.vue:339 -#: frontend/src/pages/QuizForm.vue:358 frontend/src/pages/QuizForm.vue:427 +#: frontend/src/components/Modals/Question.vue:270 +#: frontend/src/components/Modals/Question.vue:321 +#: frontend/src/pages/AssignmentForm.vue:158 +#: frontend/src/pages/CourseForm.vue:470 frontend/src/pages/ProgramForm.vue:232 +#: frontend/src/pages/ProgramForm.vue:254 +#: frontend/src/pages/ProgramForm.vue:275 +#: frontend/src/pages/ProgramForm.vue:301 frontend/src/pages/QuizForm.vue:342 +#: frontend/src/pages/QuizForm.vue:361 frontend/src/pages/QuizForm.vue:430 msgid "Success" msgstr "Başarılı" @@ -5164,7 +5184,7 @@ msgstr "Özet" msgid "Sunday" msgstr "Pazar" -#: lms/lms/api.py:1026 +#: lms/lms/api.py:1027 msgid "Suspicious pattern found in {0}: {1}" msgstr "" @@ -5220,7 +5240,7 @@ msgid "System Manager" msgstr "Sistem Yöneticisi" #. Label of the tags (Data) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:121 +#: frontend/src/pages/CourseForm.vue:117 #: lms/lms/doctype/lms_course/lms_course.json msgid "Tags" msgstr "Etiketler" @@ -5325,6 +5345,10 @@ msgstr "Bu kursta bölüm bulunmamaktadır. Bölümleri buradan oluşturun ve y msgid "There are no courses matching the criteria. Keep an eye out, fresh learning experiences are on the way soon!" msgstr "" +#: frontend/src/pages/Jobs.vue:84 +msgid "There are no jobs available at the moment. Open a job opportunity or check here again later." +msgstr "" + #: frontend/src/pages/CertifiedParticipants.vue:92 msgid "There are no participants matching this criteria." msgstr "Bu kriterlere uyan katılımcı bulunamadı." @@ -5384,8 +5408,10 @@ msgstr "Bu kursta:" msgid "This course is free." msgstr "Bu kurs ücretsizdir." -#: frontend/src/pages/SCORMChapter.vue:201 -msgid "This is a chapter in the course {0}" +#. Description of the 'Meta Description' (Small Text) field in DocType 'LMS +#. Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "This description will be shown on lists and pages without meta description" msgstr "" #: frontend/src/pages/Lesson.vue:16 @@ -5482,10 +5508,10 @@ msgstr "" #: frontend/src/components/Modals/DiscussionModal.vue:18 #: frontend/src/components/Modals/LiveClassModal.vue:23 #: frontend/src/pages/AssignmentForm.vue:32 -#: frontend/src/pages/Assignments.vue:152 frontend/src/pages/BatchForm.vue:19 -#: frontend/src/pages/CourseForm.vue:33 frontend/src/pages/JobCreation.vue:20 +#: frontend/src/pages/Assignments.vue:155 frontend/src/pages/BatchForm.vue:19 +#: frontend/src/pages/CourseForm.vue:29 frontend/src/pages/JobCreation.vue:20 #: frontend/src/pages/ProgramForm.vue:11 frontend/src/pages/Programs.vue:116 -#: frontend/src/pages/QuizForm.vue:48 frontend/src/pages/Quizzes.vue:116 +#: frontend/src/pages/QuizForm.vue:48 frontend/src/pages/Quizzes.vue:118 #: lms/lms/doctype/cohort/cohort.json #: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json #: lms/lms/doctype/cohort_web_page/cohort_web_page.json @@ -5507,7 +5533,7 @@ msgstr "" msgid "Title" msgstr "Başlık" -#: frontend/src/components/Modals/ChapterModal.vue:172 +#: frontend/src/components/Modals/ChapterModal.vue:175 msgid "Title is required" msgstr "" @@ -5539,7 +5565,7 @@ msgid "Total" msgstr "Toplam" #. Label of the total_marks (Int) field in DocType 'LMS Quiz' -#: frontend/src/pages/QuizForm.vue:67 frontend/src/pages/Quizzes.vue:121 +#: frontend/src/pages/QuizForm.vue:67 frontend/src/pages/Quizzes.vue:123 #: lms/lms/doctype/lms_quiz/lms_quiz.json msgid "Total Marks" msgstr "" @@ -5577,7 +5603,7 @@ msgstr "X" #: frontend/src/components/Modals/AssessmentModal.vue:22 #: frontend/src/components/Modals/Question.vue:54 #: frontend/src/pages/AssignmentForm.vue:39 -#: frontend/src/pages/Assignments.vue:30 frontend/src/pages/Assignments.vue:157 +#: frontend/src/pages/Assignments.vue:30 frontend/src/pages/Assignments.vue:160 #: frontend/src/pages/JobCreation.vue:33 frontend/src/pages/Jobs.vue:55 #: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/lms/doctype/lms_assignment/lms_assignment.json @@ -5624,7 +5650,7 @@ msgstr "İnceleniyor" msgid "Unlisted" msgstr "Listelenmemiş" -#: frontend/src/pages/Batches.vue:293 +#: frontend/src/pages/Batches.vue:295 msgid "Unpublished" msgstr "" @@ -5646,8 +5672,8 @@ msgstr "Ayarlanmamış Rol" #. Option for the 'Status' (Select) field in DocType 'Cohort' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request' #. Label of the upcoming (Check) field in DocType 'LMS Course' -#: frontend/src/pages/Batches.vue:291 frontend/src/pages/CourseForm.vue:185 -#: frontend/src/pages/Courses.vue:284 lms/lms/doctype/cohort/cohort.json +#: frontend/src/pages/Batches.vue:293 frontend/src/pages/CourseForm.vue:181 +#: frontend/src/pages/Courses.vue:287 lms/lms/doctype/cohort/cohort.json #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_course/lms_course.json msgid "Upcoming" @@ -5672,7 +5698,7 @@ msgstr "Güncelle" msgid "Update Password" msgstr "Şifreyi Güncelle" -#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:81 +#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:77 msgid "Upload" msgstr "Yükle" @@ -5778,6 +5804,10 @@ msgstr "Görünürlülük" msgid "Visit Batch" msgstr "" +#: frontend/src/pages/JobDetail.vue:38 +msgid "Visit Website" +msgstr "" + #: lms/templates/emails/batch_confirmation.html:23 msgid "Visit the following link to view your " msgstr "Görüntülemek için aşağıdaki bağlantıyı ziyaret edin " @@ -5899,7 +5929,7 @@ msgstr "Bu sınıfın üyesi değilsiniz. Lütfen yaklaşan sınıflara göz at msgid "You are not a mentor of the course {0}" msgstr "Kursun mentoru değilsiniz {0}" -#: frontend/src/components/CourseOutline.vue:323 +#: frontend/src/components/CourseOutline.vue:324 msgid "You are not enrolled" msgstr "Kayıtlı değilsiniz" @@ -6123,11 +6153,7 @@ msgstr "/" msgid "out of" msgstr "" -#: frontend/src/components/JobCard.vue:30 -msgid "posted" -msgstr "gönderildi" - -#: frontend/src/pages/QuizForm.vue:386 +#: frontend/src/pages/QuizForm.vue:389 msgid "question_detail" msgstr "" @@ -6147,7 +6173,7 @@ msgstr "" msgid "you can" msgstr "yapabilirsin" -#: lms/lms/api.py:816 lms/lms/api.py:824 +#: lms/lms/api.py:817 lms/lms/api.py:825 msgid "{0} Settings not found" msgstr "{0} Ayarları bulunamadı" diff --git a/lms/locale/zh.po b/lms/locale/zh.po index 3387c83d..10f84419 100644 --- a/lms/locale/zh.po +++ b/lms/locale/zh.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n" -"POT-Creation-Date: 2025-04-04 16:04+0000\n" -"PO-Revision-Date: 2025-04-08 03:58\n" +"POT-Creation-Date: 2025-04-11 16:04+0000\n" +"PO-Revision-Date: 2025-04-14 06:01\n" "Last-Translator: jannat@frappe.io\n" "Language-Team: Chinese Simplified\n" "MIME-Version: 1.0\n" @@ -71,7 +71,7 @@ msgstr "统计数据" msgid "A course cannot have both paid certificate and certificate of completion." msgstr "课程不可同时设置付费证书与结业证书。" -#: frontend/src/pages/CourseForm.vue:41 +#: frontend/src/pages/CourseForm.vue:37 msgid "A one line introduction to the course that appears on the course card" msgstr "课程卡片显示的课程简介(单行)" @@ -145,7 +145,6 @@ msgid "Add a Student" msgstr "添加学员" #: frontend/src/components/AppSidebar.vue:514 -#: frontend/src/components/OnboardingBanner.vue:56 msgid "Add a chapter" msgstr "添加章节" @@ -153,16 +152,15 @@ msgstr "添加章节" msgid "Add a course" msgstr "创建课程" -#: frontend/src/pages/CourseForm.vue:137 +#: frontend/src/pages/CourseForm.vue:133 msgid "Add a keyword and then press enter" msgstr "输入关键词后按回车键添加" #: frontend/src/components/AppSidebar.vue:515 -#: frontend/src/components/OnboardingBanner.vue:81 msgid "Add a lesson" msgstr "添加课时" -#: frontend/src/components/Modals/Question.vue:146 +#: frontend/src/components/Modals/Question.vue:147 #: frontend/src/pages/QuizForm.vue:183 msgid "Add a new question" msgstr "新增试题" @@ -235,7 +233,7 @@ msgid "Admin" msgstr "管理员" #. Name of a role -#: frontend/src/pages/Batches.vue:282 lms/lms/doctype/lms_badge/lms_badge.json +#: frontend/src/pages/Batches.vue:284 lms/lms/doctype/lms_badge/lms_badge.json msgid "All" msgstr "全部" @@ -259,7 +257,7 @@ msgstr "全部反馈" msgid "All Submissions" msgstr "所有提交记录" -#: lms/lms/doctype/lms_quiz/lms_quiz.py:46 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:44 msgid "All questions should have the same marks if the limit is set." msgstr "若设置分数限制,所有试题分值必须统一。" @@ -294,7 +292,7 @@ msgstr "已注册" #. Label of the amount (Currency) field in DocType 'LMS Batch' #. Label of the course_price (Currency) field in DocType 'LMS Course' #. Label of the amount (Currency) field in DocType 'LMS Payment' -#: frontend/src/pages/BatchForm.vue:209 frontend/src/pages/CourseForm.vue:221 +#: frontend/src/pages/BatchForm.vue:209 frontend/src/pages/CourseForm.vue:217 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_payment/lms_payment.json @@ -346,7 +344,7 @@ msgstr "公告发送成功" msgid "Answer" msgstr "答案" -#: frontend/src/pages/CourseForm.vue:85 frontend/src/pages/CourseForm.vue:103 +#: frontend/src/pages/CourseForm.vue:81 frontend/src/pages/CourseForm.vue:99 msgid "Appears on the course card in the course list" msgstr "显示在课程列表的课程卡片上" @@ -354,11 +352,11 @@ msgstr "显示在课程列表的课程卡片上" msgid "Appears when the batch URL is shared on any online platform" msgstr "在分享批次链接至网络平台时显示" -#: frontend/src/pages/JobDetail.vue:121 +#: frontend/src/pages/JobDetail.vue:128 msgid "Applications Received" msgstr "收到的申请" -#: frontend/src/pages/JobDetail.vue:42 +#: frontend/src/pages/JobDetail.vue:48 msgid "Apply" msgstr "应用" @@ -389,7 +387,7 @@ msgstr "已批准" msgid "Apps" msgstr "应用" -#: frontend/src/pages/Batches.vue:292 +#: frontend/src/pages/Batches.vue:294 msgid "Archived" msgstr "已归档" @@ -401,11 +399,6 @@ msgstr "确认取消本次评估?此操作不可撤销。" msgid "Are you sure you want to login to your Frappe Cloud dashboard?" msgstr "确定要登录Frappe Cloud控制面板?" -#. Label of the user_category (Check) field in DocType 'LMS Settings' -#: lms/lms/doctype/lms_settings/lms_settings.json -msgid "Ask User Category during Signup" -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 @@ -470,6 +463,10 @@ msgstr "作业附件" msgid "Assignment Submission Template" msgstr "作业提交模板" +#: frontend/src/pages/AssignmentSubmissionList.vue:223 +msgid "Assignment Submissions" +msgstr "" + #. Label of the assignment_title (Data) field in DocType 'LMS Assignment #. Submission' #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json @@ -480,7 +477,7 @@ msgstr "作业标题" msgid "Assignment for Lesson {0} by {1} already exists." msgstr "学员{1}的课时{0}作业已存在。" -#: frontend/src/pages/AssignmentForm.vue:155 +#: frontend/src/pages/AssignmentForm.vue:158 msgid "Assignment saved successfully" msgstr "作业保存成功" @@ -490,7 +487,8 @@ msgid "Assignment will appear at the bottom of the lesson." msgstr "作业将显示在课时末尾。" #: frontend/src/components/AppSidebar.vue:531 -#: frontend/src/pages/AssignmentForm.vue:174 +#: frontend/src/pages/AssignmentForm.vue:177 +#: frontend/src/pages/Assignments.vue:193 lms/www/lms.py:251 msgid "Assignments" msgstr "作业" @@ -656,8 +654,8 @@ msgid "Batch:" msgstr "批次:" #. Label of the batches (Check) field in DocType 'LMS Settings' -#: frontend/src/pages/Batches.vue:302 -#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:63 +#: frontend/src/pages/Batches.vue:304 frontend/src/pages/Batches.vue:311 +#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:105 msgid "Batches" msgstr "批次" @@ -675,7 +673,7 @@ msgstr "此致敬礼" #. Label of the billing_details_section (Section Break) field in DocType 'LMS #. Payment' -#: frontend/src/pages/Billing.vue:8 +#: frontend/src/pages/Billing.vue:8 frontend/src/pages/Billing.vue:363 #: lms/lms/doctype/lms_payment/lms_payment.json msgid "Billing Details" msgstr "账单明细" @@ -757,8 +755,9 @@ msgstr "便装" #. Label of the category (Link) field in DocType 'LMS Course' #: frontend/src/pages/BatchForm.vue:190 frontend/src/pages/Batches.vue:55 #: frontend/src/pages/CertifiedParticipants.vue:37 -#: frontend/src/pages/CourseForm.vue:148 frontend/src/pages/Courses.vue:51 -#: frontend/src/pages/JobDetail.vue:96 lms/lms/doctype/lms_batch/lms_batch.json +#: frontend/src/pages/CourseForm.vue:144 frontend/src/pages/Courses.vue:51 +#: frontend/src/pages/JobDetail.vue:103 +#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/public/js/common_functions.js:316 lms/templates/signup-form.html:22 @@ -813,7 +812,7 @@ msgstr "证书生成成功" #: frontend/src/components/Modals/Event.vue:371 #: frontend/src/pages/BatchForm.vue:37 frontend/src/pages/Batches.vue:38 #: frontend/src/pages/CourseCertification.vue:10 -#: frontend/src/pages/CourseCertification.vue:133 +#: frontend/src/pages/CourseCertification.vue:135 #: frontend/src/pages/Courses.vue:34 lms/fixtures/custom_field.json #: lms/lms/doctype/certification/certification.json #: lms/lms/doctype/lms_batch/lms_batch.json @@ -837,7 +836,8 @@ msgid "Certified" msgstr "已认证" #. Label of the certified_participants (Check) field in DocType 'LMS Settings' -#: frontend/src/pages/CertifiedParticipants.vue:161 +#: frontend/src/pages/CertifiedParticipants.vue:164 +#: frontend/src/pages/CertifiedParticipants.vue:171 #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Certified Participants" msgstr "认证参与者" @@ -864,11 +864,11 @@ msgstr "章节" msgid "Chapter Reference" msgstr "章节引用" -#: frontend/src/components/Modals/ChapterModal.vue:152 +#: frontend/src/components/Modals/ChapterModal.vue:155 msgid "Chapter added successfully" msgstr "章节添加成功" -#: frontend/src/components/Modals/ChapterModal.vue:196 +#: frontend/src/components/Modals/ChapterModal.vue:199 msgid "Chapter updated successfully" msgstr "章节更新成功" @@ -1117,7 +1117,7 @@ msgid "Completed by Students" msgstr "学员完成情况" #. Label of the enable_certification (Check) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:213 +#: frontend/src/pages/CourseForm.vue:209 #: lms/lms/doctype/lms_course/lms_course.json msgid "Completion Certificate" msgstr "结业证书" @@ -1179,7 +1179,7 @@ msgid "Continue Learning" msgstr "继续学习" #. Option for the 'Type' (Select) field in DocType 'Job Opportunity' -#: frontend/src/pages/Jobs.vue:146 +#: frontend/src/pages/Jobs.vue:163 #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Contract" msgstr "合同" @@ -1294,6 +1294,7 @@ msgstr "课程完成" #. Name of a role #: frontend/src/pages/ProfileRoles.vue:16 #: lms/lms/doctype/course_chapter/course_chapter.json +#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_program/lms_program.json @@ -1307,7 +1308,7 @@ msgstr "课程创建者" msgid "Course Data" msgstr "课程数据" -#: frontend/src/pages/CourseForm.vue:50 +#: frontend/src/pages/CourseForm.vue:46 msgid "Course Description" msgstr "课程描述" @@ -1316,7 +1317,7 @@ msgstr "课程描述" msgid "Course Evaluator" msgstr "课程评估人" -#: frontend/src/pages/CourseForm.vue:63 +#: frontend/src/pages/CourseForm.vue:59 msgid "Course Image" msgstr "课程图片" @@ -1330,7 +1331,7 @@ msgstr "课程讲师" msgid "Course Lesson" msgstr "课程课时" -#: lms/www/lms.py:30 +#: lms/www/lms.py:70 msgid "Course List" msgstr "课程列表" @@ -1338,7 +1339,7 @@ msgstr "课程列表" msgid "Course Name" msgstr "课程名称" -#: frontend/src/pages/CourseDetail.vue:76 frontend/src/pages/CourseForm.vue:241 +#: frontend/src/pages/CourseDetail.vue:76 frontend/src/pages/CourseForm.vue:237 msgid "Course Outline" msgstr "课程大纲" @@ -1370,7 +1371,7 @@ msgstr "课程统计" msgid "Course Title" msgstr "课程标题" -#: frontend/src/pages/ProgramForm.vue:229 +#: frontend/src/pages/ProgramForm.vue:232 msgid "Course added to program" msgstr "课程已添加至项目" @@ -1378,11 +1379,11 @@ msgstr "课程已添加至项目" msgid "Course already added to the batch." msgstr "该课程已添加至批次" -#: frontend/src/pages/CourseForm.vue:472 +#: frontend/src/pages/CourseForm.vue:470 msgid "Course deleted successfully" msgstr "课程删除成功" -#: frontend/src/pages/ProgramForm.vue:298 +#: frontend/src/pages/ProgramForm.vue:301 msgid "Course moved successfully" msgstr "课程移动成功" @@ -1400,8 +1401,9 @@ msgstr "课程{0}已添加至本批次" #: frontend/src/components/BatchStudents.vue:92 #: frontend/src/components/Modals/BatchStudentProgress.vue:79 #: frontend/src/pages/BatchDetail.vue:21 frontend/src/pages/BatchDetail.vue:70 -#: frontend/src/pages/CourseCertification.vue:125 -#: frontend/src/pages/Courses.vue:301 frontend/src/pages/Statistics.vue:21 +#: frontend/src/pages/CourseCertification.vue:127 +#: frontend/src/pages/Courses.vue:304 frontend/src/pages/Courses.vue:311 +#: frontend/src/pages/Statistics.vue:21 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Courses" @@ -1443,7 +1445,6 @@ msgid "Create a batch" msgstr "" #: frontend/src/components/AppSidebar.vue:513 -#: frontend/src/components/OnboardingBanner.vue:30 msgid "Create a course" msgstr "创建课程" @@ -1467,7 +1468,7 @@ msgstr "" msgid "Create your first quiz" msgstr "" -#: frontend/src/pages/Assignments.vue:163 frontend/src/pages/Courses.vue:292 +#: frontend/src/pages/Assignments.vue:166 frontend/src/pages/Courses.vue:295 msgid "Created" msgstr "已创建" @@ -1482,7 +1483,7 @@ msgstr "" #. Label of the currency (Link) field in DocType 'LMS Batch' #. Label of the currency (Link) field in DocType 'LMS Course' #. Label of the currency (Link) field in DocType 'LMS Payment' -#: frontend/src/pages/BatchForm.vue:217 frontend/src/pages/CourseForm.vue:226 +#: frontend/src/pages/BatchForm.vue:217 frontend/src/pages/CourseForm.vue:222 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_payment/lms_payment.json @@ -1585,9 +1586,9 @@ msgstr "默认币种" msgid "Degree Type" msgstr "学位类型" -#: frontend/src/components/CourseOutline.vue:247 -#: frontend/src/components/CourseOutline.vue:305 -#: frontend/src/pages/CourseForm.vue:485 +#: frontend/src/components/CourseOutline.vue:248 +#: frontend/src/components/CourseOutline.vue:306 +#: frontend/src/pages/CourseForm.vue:483 msgid "Delete" msgstr "删除" @@ -1595,27 +1596,27 @@ msgstr "删除" msgid "Delete Chapter" msgstr "删除章节" -#: frontend/src/pages/CourseForm.vue:479 +#: frontend/src/pages/CourseForm.vue:477 msgid "Delete Course" msgstr "删除课程" -#: frontend/src/components/CourseOutline.vue:299 +#: frontend/src/components/CourseOutline.vue:300 msgid "Delete this chapter?" msgstr "确认删除此章节?" -#: frontend/src/components/CourseOutline.vue:241 +#: frontend/src/components/CourseOutline.vue:242 msgid "Delete this lesson?" msgstr "确认删除此课时?" -#: frontend/src/pages/CourseForm.vue:480 +#: frontend/src/pages/CourseForm.vue:478 msgid "Deleting the course will also delete all its chapters and lessons. Are you sure you want to delete this course?" msgstr "删除本课程将同时删除其所有章节和课时。此操作不可逆。确认继续吗?" -#: frontend/src/components/CourseOutline.vue:300 +#: frontend/src/components/CourseOutline.vue:301 msgid "Deleting this chapter will also delete all its lessons and permanently remove it from the course. This action cannot be undone. Are you sure you want to continue?" msgstr "删除本章节将同时删除其所有课时并永久移除。此操作不可撤销。确认继续吗?" -#: frontend/src/components/CourseOutline.vue:242 +#: frontend/src/components/CourseOutline.vue:243 msgid "Deleting this lesson will permanently remove it from the course. This action cannot be undone. Are you sure you want to continue?" msgstr "删除本课时将永久移除。此操作不可撤销。确认继续吗?" @@ -1654,11 +1655,11 @@ msgstr "工作台" #: frontend/src/components/Modals/DiscussionModal.vue:22 #: frontend/src/pages/AssignmentForm.vue:27 frontend/src/pages/BatchForm.vue:14 -#: frontend/src/pages/CourseForm.vue:29 frontend/src/pages/QuizForm.vue:42 +#: frontend/src/pages/CourseForm.vue:25 frontend/src/pages/QuizForm.vue:42 msgid "Details" msgstr "详情" -#: frontend/src/pages/CourseForm.vue:195 +#: frontend/src/pages/CourseForm.vue:191 msgid "Disable Self Enrollment" msgstr "禁用自助注册" @@ -1667,6 +1668,11 @@ msgstr "禁用自助注册" msgid "Disable Self Learning" msgstr "禁用自主学习" +#. Label of the disable_signup (Check) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Disable Signup" +msgstr "" + #. Label of the disabled (Check) field in DocType 'Job Opportunity' #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Disabled" @@ -1808,7 +1814,7 @@ msgstr "员工" msgid "Enable" msgstr "启用" -#: lms/lms/doctype/lms_settings/lms_settings.py:20 +#: lms/lms/doctype/lms_settings/lms_settings.py:21 msgid "Enable Google API in Google Settings to send calendar invites for evaluations." msgstr "在Google设置中启用API以发送评估日历邀请" @@ -1867,7 +1873,7 @@ msgstr "结束时间" msgid "Enroll Now" msgstr "立即报名" -#: frontend/src/pages/Batches.vue:295 frontend/src/pages/Courses.vue:294 +#: frontend/src/pages/Batches.vue:297 frontend/src/pages/Courses.vue:297 msgid "Enrolled" msgstr "已注册" @@ -1902,7 +1908,7 @@ msgstr "注册失败" msgid "Enrollments" msgstr "注册记录" -#: lms/lms/doctype/lms_settings/lms_settings.py:25 +#: lms/lms/doctype/lms_settings/lms_settings.py:26 msgid "Enter Client Id and Client Secret in Google Settings to send calendar invites for evaluations." msgstr "在Google设置中填写客户端ID和密钥以发送评估日历邀请" @@ -1921,19 +1927,19 @@ msgstr "输入正确答案" #: frontend/src/components/Assignment.vue:287 #: frontend/src/components/Modals/AnnouncementModal.vue:105 #: frontend/src/components/Modals/BulkCertificates.vue:115 -#: frontend/src/components/Modals/ChapterModal.vue:157 -#: frontend/src/components/Modals/ChapterModal.vue:164 -#: frontend/src/components/Modals/ChapterModal.vue:200 -#: frontend/src/components/Modals/Question.vue:251 -#: frontend/src/components/Modals/Question.vue:272 -#: frontend/src/components/Modals/Question.vue:329 -#: frontend/src/components/Modals/StudentModal.vue:70 +#: frontend/src/components/Modals/ChapterModal.vue:160 +#: frontend/src/components/Modals/ChapterModal.vue:167 +#: frontend/src/components/Modals/ChapterModal.vue:203 +#: frontend/src/components/Modals/Question.vue:252 +#: frontend/src/components/Modals/Question.vue:275 +#: frontend/src/components/Modals/Question.vue:332 +#: frontend/src/components/Modals/StudentModal.vue:73 #: frontend/src/components/Quiz.vue:592 #: frontend/src/components/SettingDetails.vue:62 -#: frontend/src/pages/AssignmentForm.vue:139 -#: frontend/src/pages/AssignmentForm.vue:159 frontend/src/pages/Billing.vue:261 -#: frontend/src/pages/QuizForm.vue:346 frontend/src/pages/QuizForm.vue:361 -#: frontend/src/pages/QuizSubmission.vue:147 +#: frontend/src/pages/AssignmentForm.vue:142 +#: frontend/src/pages/AssignmentForm.vue:162 frontend/src/pages/Billing.vue:262 +#: frontend/src/pages/QuizForm.vue:349 frontend/src/pages/QuizForm.vue:364 +#: frontend/src/pages/QuizSubmission.vue:150 msgid "Error" msgstr "错误" @@ -1982,7 +1988,7 @@ msgstr "评估保存成功" #. Label of the evaluator (Link) field in DocType 'LMS Course' #: frontend/src/components/Modals/BatchCourseModal.vue:26 #: frontend/src/components/Modals/BulkCertificates.vue:22 -#: frontend/src/pages/CourseForm.vue:232 frontend/src/pages/ProfileRoles.vue:22 +#: frontend/src/pages/CourseForm.vue:228 frontend/src/pages/ProfileRoles.vue:22 #: lms/lms/doctype/batch_course/batch_course.json #: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json @@ -2100,7 +2106,7 @@ msgstr "未通过" #. Label of the featured (Check) field in DocType 'LMS Course' #: frontend/src/components/CourseCard.vue:16 -#: frontend/src/pages/CourseForm.vue:190 +#: frontend/src/pages/CourseForm.vue:186 #: lms/lms/doctype/lms_course/lms_course.json msgid "Featured" msgstr "精选" @@ -2149,10 +2155,6 @@ msgstr "固定9-5工作制" msgid "Flexible Time" msgstr "弹性时间" -#: frontend/src/pages/QuizForm.vue:459 -msgid "Form to create and edit quizzes" -msgstr "测验创建与编辑表单" - #. Option for the 'Attire Preference' (Select) field in DocType 'User' #: lms/fixtures/custom_field.json msgid "Formal Wear" @@ -2163,7 +2165,7 @@ msgid "Free" msgstr "免费" #. Option for the 'Type' (Select) field in DocType 'Job Opportunity' -#: frontend/src/pages/Jobs.vue:147 +#: frontend/src/pages/Jobs.vue:164 #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Freelance" msgstr "自由职业" @@ -2207,7 +2209,7 @@ msgid "Full Name" msgstr "全名" #. Option for the 'Type' (Select) field in DocType 'Job Opportunity' -#: frontend/src/pages/Jobs.vue:144 +#: frontend/src/pages/Jobs.vue:161 #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Full Time" msgstr "全职" @@ -2385,7 +2387,7 @@ msgstr "我正在求职" msgid "I am unavailable" msgstr "我暂不可用" -#: frontend/src/pages/QuizForm.vue:380 +#: frontend/src/pages/QuizForm.vue:383 msgid "ID" msgstr "ID" @@ -2395,6 +2397,11 @@ msgstr "ID" msgid "Icon" msgstr "图标" +#. Label of the user_category (Check) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Identify User Persona" +msgstr "" + #: frontend/src/components/LessonHelp.vue:11 msgid "If Include in Preview is enabled for a lesson then the lesson will also be accessible to non logged in users." msgstr "启用'包含在预览中'后,课时将对未登录用户开放" @@ -2425,7 +2432,7 @@ msgstr "如需帮助,请随时联系我们" msgid "If you set an amount here, then the USD equivalent setting will not get applied." msgstr "此处设置金额后将不再应用美元等值换算" -#: lms/lms/doctype/lms_quiz/lms_quiz.py:63 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:61 msgid "If you want open ended questions then make sure each question in the quiz is of open ended type." msgstr "若需开放性问题,请确保测验中所有题目均为开放型" @@ -2451,7 +2458,7 @@ msgstr "图片" msgid "Image search powered by" msgstr "图片搜索由{0}提供" -#: lms/lms/doctype/lms_quiz/lms_quiz.py:221 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:219 msgid "Image: Corrupted Data Stream" msgstr "图片:数据流损坏" @@ -2540,7 +2547,7 @@ msgstr "讲师备注" #. Label of the instructors (Table MultiSelect) field in DocType 'LMS Batch' #. Label of the instructors (Rating) field in DocType 'LMS Batch Feedback' #. Label of the instructors (Table MultiSelect) field in DocType 'LMS Course' -#: frontend/src/pages/BatchForm.vue:93 frontend/src/pages/CourseForm.vue:155 +#: frontend/src/pages/BatchForm.vue:93 frontend/src/pages/CourseForm.vue:151 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json #: lms/lms/doctype/lms_course/lms_course.json @@ -2565,10 +2572,14 @@ msgstr "简介" msgid "Invalid Invite Code." msgstr "无效邀请码" -#: lms/lms/doctype/course_lesson/course_lesson.py:20 +#: lms/lms/doctype/course_lesson/course_lesson.py:19 msgid "Invalid Quiz ID" msgstr "无效的测验ID" +#: lms/lms/doctype/course_lesson/course_lesson.py:33 +msgid "Invalid Quiz ID in content" +msgstr "" + #. Label of the invite_code (Data) field in DocType 'Cohort Subgroup' #. Label of the invite_code (Data) field in DocType 'Invite Request' #: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json @@ -2607,11 +2618,6 @@ msgstr "" msgid "Is Correct" msgstr "是否正确" -#. Label of the is_onboarding_complete (Check) field in DocType 'LMS Settings' -#: lms/lms/doctype/lms_settings/lms_settings.json -msgid "Is Onboarding Complete" -msgstr "是否完成入职引导" - #. Label of the is_scorm_package (Check) field in DocType 'Course Chapter' #. Label of the is_scorm_package (Check) field in DocType 'Course Lesson' #: lms/lms/doctype/course_chapter/course_chapter.json @@ -2650,7 +2656,7 @@ msgstr "签发于" msgid "Items in Sidebar" msgstr "侧边栏项目" -#: frontend/src/pages/ProgramForm.vue:272 +#: frontend/src/pages/ProgramForm.vue:275 msgid "Items removed successfully" msgstr "项目移除成功" @@ -2677,7 +2683,7 @@ msgstr "招聘看板标题" msgid "Job Details" msgstr "职位详情" -#: lms/www/lms.py:111 +#: lms/www/lms.py:159 msgid "Job Openings" msgstr "职位空缺" @@ -2700,6 +2706,7 @@ msgstr "职位名称" #. Label of the jobs (Check) field in DocType 'LMS Settings' #: frontend/src/pages/JobDetail.vue:10 frontend/src/pages/Jobs.vue:8 +#: frontend/src/pages/Jobs.vue:170 #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Jobs" msgstr "职位" @@ -2923,7 +2930,6 @@ msgstr "学习管理系统来源" #: lms/job/doctype/lms_job_application/lms_job_application.json #: lms/lms/doctype/cohort_join_request/cohort_join_request.json #: lms/lms/doctype/course_chapter/course_chapter.json -#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/function/function.json #: lms/lms/doctype/industry/industry.json #: lms/lms/doctype/lms_assignment/lms_assignment.json @@ -3035,7 +3041,7 @@ msgstr "字母评分(如A、B-)" msgid "Limit Questions To" msgstr "题目限制数量" -#: lms/lms/doctype/lms_quiz/lms_quiz.py:40 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:38 msgid "Limit cannot be greater than or equal to the number of questions in the quiz." msgstr "限制数不可大于或等于测验题目总数" @@ -3055,12 +3061,8 @@ msgstr "领英账号" msgid "Links" msgstr "链接" -#: frontend/src/pages/Quizzes.vue:149 -msgid "List of quizzes" -msgstr "测验列表" - #. Option for the 'Status' (Select) field in DocType 'Cohort' -#: frontend/src/pages/Courses.vue:278 lms/lms/doctype/cohort/cohort.json +#: frontend/src/pages/Courses.vue:281 lms/lms/doctype/cohort/cohort.json msgid "Live" msgstr "直播" @@ -3092,7 +3094,7 @@ msgstr "本地" #. Label of the location (Data) field in DocType 'Job Opportunity' #. Label of the location (Data) field in DocType 'Education Detail' #. Label of the location (Data) field in DocType 'Work Experience' -#: frontend/src/pages/JobCreation.vue:26 frontend/src/pages/JobDetail.vue:85 +#: frontend/src/pages/JobCreation.vue:26 frontend/src/pages/JobDetail.vue:92 #: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/lms/doctype/education_detail/education_detail.json #: lms/lms/doctype/work_experience/work_experience.json @@ -3114,7 +3116,7 @@ msgstr "登录" msgid "Login to Frappe Cloud?" msgstr "登录Frappe云平台?" -#: frontend/src/pages/JobDetail.vue:48 +#: frontend/src/pages/JobDetail.vue:54 msgid "Login to apply" msgstr "登录后申请" @@ -3171,7 +3173,7 @@ msgstr "标记为已读" #. Label of the marks (Int) field in DocType 'LMS Quiz Result' #: frontend/src/components/Modals/Question.vue:50 #: frontend/src/components/Modals/Question.vue:99 -#: frontend/src/components/Quiz.vue:96 frontend/src/pages/QuizForm.vue:390 +#: frontend/src/components/Quiz.vue:96 frontend/src/pages/QuizForm.vue:393 #: frontend/src/pages/QuizSubmission.vue:65 #: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json #: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json @@ -3233,7 +3235,7 @@ msgstr "媒介:" #. Label of the member (Link) field in DocType 'LMS Quiz Submission' #: frontend/src/pages/AssignmentSubmissionList.vue:14 #: frontend/src/pages/QuizSubmission.vue:31 -#: frontend/src/pages/QuizSubmissionList.vue:86 +#: frontend/src/pages/QuizSubmissionList.vue:102 #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_submission/exercise_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json @@ -3314,7 +3316,7 @@ msgstr "成员类型" msgid "Member Username" msgstr "成员用户名" -#: frontend/src/pages/ProgramForm.vue:251 +#: frontend/src/pages/ProgramForm.vue:254 msgid "Member added to program" msgstr "成员已添加至项目" @@ -3378,6 +3380,11 @@ msgstr "导师请求创建模板" msgid "Mentor Request Status Update Template" msgstr "导师请求状态更新模板" +#. Label of the meta_description (Small Text) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "Meta Description" +msgstr "元描述" + #. Label of the meta_image (Attach Image) field in DocType 'LMS Batch' #: frontend/src/pages/BatchForm.vue:44 lms/lms/doctype/lms_batch/lms_batch.json #: lms/public/js/common_functions.js:362 @@ -3400,6 +3407,7 @@ msgstr "多选题至少需要两个选项" #. Name of a role #: frontend/src/pages/ProfileRoles.vue:10 #: lms/lms/doctype/course_evaluator/course_evaluator.json +#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/lms_assignment/lms_assignment.json #: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json #: lms/lms/doctype/lms_batch/lms_batch.json @@ -3459,12 +3467,13 @@ msgstr "我的日历" #. Option for the 'Event' (Select) field in DocType 'LMS Badge' #: frontend/src/pages/Assignments.vue:18 frontend/src/pages/Batches.vue:17 -#: frontend/src/pages/Courses.vue:17 frontend/src/pages/Courses.vue:281 +#: frontend/src/pages/Courses.vue:17 frontend/src/pages/Courses.vue:284 #: frontend/src/pages/Programs.vue:14 lms/lms/doctype/lms_badge/lms_badge.json msgid "New" msgstr "新建" -#: frontend/src/pages/AssignmentForm.vue:178 +#: frontend/src/pages/AssignmentForm.vue:181 +#: frontend/src/pages/AssignmentForm.vue:197 msgid "New Assignment" msgstr "新建作业" @@ -3472,11 +3481,11 @@ msgstr "新建作业" msgid "New Assignment Submission" msgstr "新建作业提交" -#: lms/public/js/common_functions.js:255 lms/www/lms.py:89 +#: lms/public/js/common_functions.js:255 lms/www/lms.py:134 msgid "New Batch" msgstr "新建批次" -#: lms/www/lms.py:40 +#: frontend/src/pages/CourseForm.vue:577 lms/www/lms.py:78 msgid "New Course" msgstr "新建课程" @@ -3504,7 +3513,7 @@ msgstr "新项目成员" msgid "New Question" msgstr "新建试题" -#: frontend/src/pages/QuizForm.vue:450 frontend/src/pages/QuizForm.vue:458 +#: frontend/src/pages/QuizForm.vue:453 frontend/src/pages/QuizForm.vue:461 #: frontend/src/pages/Quizzes.vue:18 msgid "New Quiz" msgstr "新建测验" @@ -3599,9 +3608,9 @@ msgstr "尚未收到反馈" msgid "No introduction" msgstr "无简介" -#: frontend/src/pages/Jobs.vue:77 -msgid "No jobs posted" -msgstr "未发布职位" +#: frontend/src/pages/Jobs.vue:80 +msgid "No jobs found" +msgstr "" #: frontend/src/components/LiveClass.vue:71 msgid "No live classes scheduled" @@ -3615,6 +3624,10 @@ msgstr "未找到参与者" msgid "No programs found" msgstr "未找到项目" +#: frontend/src/pages/QuizSubmissionList.vue:52 +msgid "No quiz submissions found. Please check again later." +msgstr "" + #: frontend/src/pages/Quizzes.vue:61 msgid "No quizzes found" msgstr "未找到测验" @@ -3624,6 +3637,7 @@ msgid "No slots available for this date." msgstr "该日期无可用时段" #: frontend/src/pages/AssignmentSubmissionList.vue:67 +#: frontend/src/pages/QuizSubmissionList.vue:49 msgid "No submissions" msgstr "无提交记录" @@ -3724,11 +3738,11 @@ msgstr "仅允许添加已禁用自主学习的课程至项目" msgid "Only files of type {0} will be accepted." msgstr "仅接受{0}类型文件" -#: frontend/src/pages/CourseForm.vue:509 frontend/src/utils/index.js:549 +#: frontend/src/pages/CourseForm.vue:507 frontend/src/utils/index.js:550 msgid "Only image file is allowed." msgstr "仅允许图片文件" -#: frontend/src/components/Modals/ChapterModal.vue:218 +#: frontend/src/components/Modals/ChapterModal.vue:221 msgid "Only zip files are allowed" msgstr "仅允许zip文件" @@ -3786,7 +3800,7 @@ msgstr "选项4" msgid "Order ID" msgstr "订单ID" -#: frontend/src/pages/JobDetail.vue:74 +#: frontend/src/pages/JobDetail.vue:81 msgid "Organisation" msgstr "组织" @@ -3835,7 +3849,7 @@ msgid "Paid Batch" msgstr "付费批次" #. Label of the paid_certificate (Check) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:218 +#: frontend/src/pages/CourseForm.vue:214 #: lms/lms/doctype/lms_course/lms_course.json msgid "Paid Certificate" msgstr "付费证书" @@ -3845,7 +3859,7 @@ msgid "Paid Certificate after Evaluation" msgstr "评估后付费证书" #. Label of the paid_course (Check) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:208 +#: frontend/src/pages/CourseForm.vue:204 #: lms/lms/doctype/lms_course/lms_course.json msgid "Paid Course" msgstr "付费课程" @@ -3855,7 +3869,7 @@ msgid "Pan Number" msgstr "PAN号码" #. Option for the 'Type' (Select) field in DocType 'Job Opportunity' -#: frontend/src/pages/Jobs.vue:145 +#: frontend/src/pages/Jobs.vue:162 #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Part Time" msgstr "兼职" @@ -3877,7 +3891,7 @@ msgstr "通过" #. Label of the passing_percentage (Int) field in DocType 'LMS Quiz' #. Label of the passing_percentage (Int) field in DocType 'LMS Quiz Submission' -#: frontend/src/pages/QuizForm.vue:72 frontend/src/pages/Quizzes.vue:127 +#: frontend/src/pages/QuizForm.vue:72 frontend/src/pages/Quizzes.vue:129 #: lms/lms/doctype/lms_quiz/lms_quiz.json #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json msgid "Passing Percentage" @@ -3888,7 +3902,7 @@ msgstr "通过百分比" msgid "Password" msgstr "密码" -#: frontend/src/pages/CourseForm.vue:113 +#: frontend/src/pages/CourseForm.vue:109 msgid "Paste the youtube link of a short video introducing the course" msgstr "粘贴课程简介的YouTube短视频链接" @@ -3980,7 +3994,7 @@ msgstr "待处理" #. Label of the percentage (Int) field in DocType 'LMS Quiz Submission' #: frontend/src/pages/QuizSubmission.vue:44 -#: frontend/src/pages/QuizSubmissionList.vue:97 +#: frontend/src/pages/QuizSubmissionList.vue:113 #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json msgid "Percentage" msgstr "百分比" @@ -4002,7 +4016,7 @@ msgstr "电话号码" msgid "Please Login" msgstr "请登录" -#: lms/lms/doctype/lms_settings/lms_settings.py:33 +#: lms/lms/doctype/lms_settings/lms_settings.py:34 msgid "Please add {1} for {3} to send calendar invites for evaluations." msgstr "请为{3}添加{1}以发送评估日历邀请" @@ -4026,7 +4040,7 @@ msgstr "请先完成项目前置课程以报名本课程" msgid "Please enable Zoom Settings to use this feature." msgstr "请启用Zoom设置以使用此功能" -#: frontend/src/components/CourseOutline.vue:324 +#: frontend/src/components/CourseOutline.vue:325 msgid "Please enroll for this course to view this lesson" msgstr "请报名本课程以查看此课时" @@ -4063,7 +4077,7 @@ msgstr "请安装支付应用以创建付费批次" msgid "Please install the Payments app to create a paid courses." msgstr "请安装支付应用以创建付费课程" -#: frontend/src/pages/Billing.vue:253 +#: frontend/src/pages/Billing.vue:254 msgid "Please let us know where you heard about us from." msgstr "请告知您通过何种渠道了解到我们" @@ -4112,7 +4126,7 @@ msgstr "请选择时区" msgid "Please take appropriate action at {0}" msgstr "请在{0}采取适当操作" -#: frontend/src/components/Modals/ChapterModal.vue:175 +#: frontend/src/components/Modals/ChapterModal.vue:178 msgid "Please upload a SCORM package" msgstr "请上传SCORM包" @@ -4158,7 +4172,7 @@ msgstr "发布" msgid "Postal Code" msgstr "邮政编码" -#: frontend/src/pages/JobDetail.vue:107 +#: frontend/src/pages/JobDetail.vue:114 msgid "Posted on" msgstr "发布于" @@ -4193,7 +4207,7 @@ msgstr "首选地点" msgid "Preview Image" msgstr "预览图片" -#: frontend/src/pages/CourseForm.vue:111 +#: frontend/src/pages/CourseForm.vue:107 msgid "Preview Video" msgstr "预览视频" @@ -4208,7 +4222,7 @@ msgid "Pricing" msgstr "定价" #. Label of the pricing_tab (Tab Break) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:202 +#: frontend/src/pages/CourseForm.vue:198 #: lms/lms/doctype/lms_course/lms_course.json msgid "Pricing and Certification" msgstr "定价与认证" @@ -4272,6 +4286,10 @@ msgstr "项目成员" msgid "Program Members" msgstr "项目成员" +#: frontend/src/pages/Programs.vue:219 lms/www/lms.py:273 +msgid "Programs" +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/BatchStudents.vue:75 @@ -4301,7 +4319,7 @@ msgstr "发布至参与者页面" #. Label of the published (Check) field in DocType 'LMS Course' #: frontend/src/components/Modals/BulkCertificates.vue:51 #: frontend/src/components/Modals/Event.vue:108 -#: frontend/src/pages/BatchForm.vue:27 frontend/src/pages/CourseForm.vue:172 +#: frontend/src/pages/BatchForm.vue:27 frontend/src/pages/CourseForm.vue:168 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/public/js/common_functions.js:266 @@ -4314,7 +4332,7 @@ msgid "Published Courses" msgstr "已发布课程" #. Label of the published_on (Date) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:176 +#: frontend/src/pages/CourseForm.vue:172 #: lms/lms/doctype/lms_course/lms_course.json msgid "Published On" msgstr "发布于" @@ -4333,7 +4351,7 @@ msgstr "已购证书" #. Label of the question (Text) field in DocType 'LMS Quiz Result' #: frontend/src/components/Assignment.vue:20 #: frontend/src/components/Modals/Question.vue:38 -#: frontend/src/pages/AssignmentForm.vue:45 frontend/src/pages/QuizForm.vue:385 +#: frontend/src/pages/AssignmentForm.vue:45 frontend/src/pages/QuizForm.vue:388 #: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/lms_assignment/lms_assignment.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json @@ -4358,11 +4376,11 @@ msgstr "问题详情" msgid "Question Name" msgstr "问题名称" -#: frontend/src/components/Modals/Question.vue:267 +#: frontend/src/components/Modals/Question.vue:270 msgid "Question added successfully" msgstr "问题添加成功" -#: frontend/src/components/Modals/Question.vue:319 +#: frontend/src/components/Modals/Question.vue:322 msgid "Question updated successfully" msgstr "问题更新成功" @@ -4379,7 +4397,7 @@ msgstr "第{0}/{1}题" msgid "Questions" msgstr "问题" -#: frontend/src/pages/QuizForm.vue:427 +#: frontend/src/pages/QuizForm.vue:430 msgid "Questions deleted successfully" msgstr "问题删除成功" @@ -4397,13 +4415,13 @@ msgid "Quiz ID" msgstr "测验ID" #. Label of a Link in the LMS Workspace -#: frontend/src/pages/QuizPage.vue:56 frontend/src/pages/QuizPage.vue:62 -#: lms/lms/workspace/lms/lms.json +#: frontend/src/pages/QuizPage.vue:57 lms/lms/workspace/lms/lms.json msgid "Quiz Submission" msgstr "测验提交" -#: frontend/src/pages/QuizSubmission.vue:128 -#: frontend/src/pages/QuizSubmissionList.vue:106 +#: frontend/src/pages/QuizSubmission.vue:131 +#: frontend/src/pages/QuizSubmissionList.vue:122 +#: frontend/src/pages/QuizSubmissionList.vue:127 msgid "Quiz Submissions" msgstr "测验提交记录" @@ -4416,7 +4434,7 @@ msgstr "测验摘要" msgid "Quiz Title" msgstr "测验标题" -#: frontend/src/pages/QuizForm.vue:339 +#: frontend/src/pages/QuizForm.vue:342 msgid "Quiz created successfully" msgstr "测验创建成功" @@ -4424,7 +4442,7 @@ msgstr "测验创建成功" msgid "Quiz is not available to Guest users. Please login to continue." msgstr "访客无法访问测验,请登录继续" -#: frontend/src/pages/QuizForm.vue:358 +#: frontend/src/pages/QuizForm.vue:361 msgid "Quiz updated successfully" msgstr "测验更新成功" @@ -4434,8 +4452,8 @@ msgid "Quiz will appear at the bottom of the lesson." msgstr "测验将显示在课时末尾" #: frontend/src/components/AppSidebar.vue:530 -#: frontend/src/pages/QuizForm.vue:438 frontend/src/pages/Quizzes.vue:138 -#: frontend/src/pages/Quizzes.vue:148 +#: frontend/src/pages/QuizForm.vue:441 frontend/src/pages/Quizzes.vue:140 +#: frontend/src/pages/Quizzes.vue:150 lms/www/lms.py:229 msgid "Quizzes" msgstr "测验" @@ -4513,7 +4531,7 @@ msgstr "已拒绝" msgid "Related Courses" msgstr "相关课程" -#: frontend/src/pages/BatchForm.vue:77 frontend/src/pages/CourseForm.vue:100 +#: frontend/src/pages/BatchForm.vue:77 frontend/src/pages/CourseForm.vue:96 msgid "Remove" msgstr "移除" @@ -4607,7 +4625,7 @@ msgstr "第{0}行开始时间不可大于等于结束时间" msgid "Row #{0} Start time cannot be outside the batch duration." msgstr "第{0}行开始时间不可超出批次周期" -#: lms/lms/doctype/lms_quiz/lms_quiz.py:34 +#: lms/lms/doctype/lms_quiz/lms_quiz.py:32 msgid "Rows {0} have the duplicate questions." msgstr "第{0}行存在重复试题" @@ -4631,6 +4649,11 @@ msgstr "SCORM包" msgid "SCORM Package Path" msgstr "SCORM包路径" +#. Label of the seo_tab (Tab Break) field in DocType 'LMS Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "SEO" +msgstr "" + #. Option for the 'Day' (Select) field in DocType 'Evaluator Schedule' #. Option for the 'Day' (Select) field in DocType 'LMS Certificate Request' #: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json @@ -4644,7 +4667,7 @@ msgstr "星期六" #: frontend/src/components/Modals/Event.vue:101 #: frontend/src/components/Modals/Event.vue:129 #: frontend/src/pages/AssignmentForm.vue:21 frontend/src/pages/BatchForm.vue:8 -#: frontend/src/pages/CourseForm.vue:21 frontend/src/pages/JobCreation.vue:8 +#: frontend/src/pages/CourseForm.vue:17 frontend/src/pages/JobCreation.vue:8 #: frontend/src/pages/LessonForm.vue:14 frontend/src/pages/ProgramForm.vue:7 #: frontend/src/pages/QuizForm.vue:34 frontend/src/pages/QuizSubmission.vue:14 #: lms/public/js/common_functions.js:405 @@ -4673,7 +4696,7 @@ msgstr "范围" #. Label of the score (Int) field in DocType 'LMS Quiz Submission' #: frontend/src/pages/QuizSubmission.vue:39 -#: frontend/src/pages/QuizSubmissionList.vue:91 +#: frontend/src/pages/QuizSubmissionList.vue:107 #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json #: lms/templates/quiz/quiz.html:148 msgid "Score" @@ -4767,7 +4790,7 @@ msgstr "" #: frontend/src/components/AppSidebar.vue:556 #: frontend/src/components/Modals/Settings.vue:7 -#: frontend/src/pages/BatchForm.vue:148 frontend/src/pages/CourseForm.vue:162 +#: frontend/src/pages/BatchForm.vue:148 frontend/src/pages/CourseForm.vue:158 #: frontend/src/pages/ProfileRoles.vue:4 frontend/src/pages/QuizForm.vue:79 msgid "Settings" msgstr "设置" @@ -4781,7 +4804,7 @@ msgid "Short Description" msgstr "简短描述" #. Label of the short_introduction (Small Text) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:39 +#: frontend/src/pages/CourseForm.vue:35 #: lms/lms/doctype/lms_course/lms_course.json msgid "Short Introduction" msgstr "简介" @@ -4892,10 +4915,6 @@ msgstr "技能" msgid "Skip" msgstr "跳过" -#: frontend/src/components/OnboardingBanner.vue:3 -msgid "Skip Onboarding" -msgstr "跳过引导流程" - #: lms/lms/doctype/course_evaluator/course_evaluator.py:63 msgid "Slot Times are overlapping for some schedules." msgstr "部分日程时段存在重叠" @@ -5009,8 +5028,9 @@ msgstr "状态" #. Label of the tab_4_tab (Tab Break) field in DocType 'LMS Course' #. Label of the statistics (Check) field in DocType 'LMS Settings' #: frontend/src/components/BatchStudents.vue:5 +#: frontend/src/pages/Statistics.vue:322 #: lms/lms/doctype/lms_course/lms_course.json -#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:136 +#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:182 msgid "Statistics" msgstr "统计" @@ -5110,7 +5130,7 @@ msgstr "提交人" #: frontend/src/components/Modals/AssessmentModal.vue:9 #: frontend/src/components/Modals/BatchCourseModal.vue:9 #: frontend/src/components/Modals/EvaluationModal.vue:9 -#: frontend/src/components/Modals/Question.vue:341 +#: frontend/src/components/Modals/Question.vue:344 #: frontend/src/components/Quiz.vue:218 lms/templates/assignment.html:9 #: lms/templates/livecode/extension_footer.html:25 #: lms/templates/quiz/quiz.html:128 lms/templates/reviews.html:163 @@ -5135,18 +5155,18 @@ msgstr "已提交{0}" #: frontend/src/components/Modals/AnnouncementModal.vue:99 #: frontend/src/components/Modals/AssessmentModal.vue:73 #: frontend/src/components/Modals/BulkCertificates.vue:121 -#: frontend/src/components/Modals/ChapterModal.vue:151 -#: frontend/src/components/Modals/ChapterModal.vue:196 +#: frontend/src/components/Modals/ChapterModal.vue:154 +#: frontend/src/components/Modals/ChapterModal.vue:199 #: frontend/src/components/Modals/Event.vue:255 #: frontend/src/components/Modals/Event.vue:310 -#: frontend/src/components/Modals/Question.vue:267 -#: frontend/src/components/Modals/Question.vue:318 -#: frontend/src/pages/AssignmentForm.vue:155 -#: frontend/src/pages/CourseForm.vue:472 frontend/src/pages/ProgramForm.vue:229 -#: frontend/src/pages/ProgramForm.vue:251 -#: frontend/src/pages/ProgramForm.vue:272 -#: frontend/src/pages/ProgramForm.vue:298 frontend/src/pages/QuizForm.vue:339 -#: frontend/src/pages/QuizForm.vue:358 frontend/src/pages/QuizForm.vue:427 +#: frontend/src/components/Modals/Question.vue:270 +#: frontend/src/components/Modals/Question.vue:321 +#: frontend/src/pages/AssignmentForm.vue:158 +#: frontend/src/pages/CourseForm.vue:470 frontend/src/pages/ProgramForm.vue:232 +#: frontend/src/pages/ProgramForm.vue:254 +#: frontend/src/pages/ProgramForm.vue:275 +#: frontend/src/pages/ProgramForm.vue:301 frontend/src/pages/QuizForm.vue:342 +#: frontend/src/pages/QuizForm.vue:361 frontend/src/pages/QuizForm.vue:430 msgid "Success" msgstr "成功" @@ -5164,7 +5184,7 @@ msgstr "摘要" msgid "Sunday" msgstr "星期日" -#: lms/lms/api.py:1026 +#: lms/lms/api.py:1027 msgid "Suspicious pattern found in {0}: {1}" msgstr "在{0}中发现可疑模式:{1}" @@ -5220,7 +5240,7 @@ msgid "System Manager" msgstr "系统管理员" #. Label of the tags (Data) field in DocType 'LMS Course' -#: frontend/src/pages/CourseForm.vue:121 +#: frontend/src/pages/CourseForm.vue:117 #: lms/lms/doctype/lms_course/lms_course.json msgid "Tags" msgstr "标签" @@ -5325,6 +5345,10 @@ msgstr "本课程暂无章节,请在此创建和管理章节" msgid "There are no courses matching the criteria. Keep an eye out, fresh learning experiences are on the way soon!" msgstr "暂无符合条件的课程,请持续关注,新学习项目即将上线!" +#: frontend/src/pages/Jobs.vue:84 +msgid "There are no jobs available at the moment. Open a job opportunity or check here again later." +msgstr "" + #: frontend/src/pages/CertifiedParticipants.vue:92 msgid "There are no participants matching this criteria." msgstr "暂无符合条件的参与者" @@ -5384,9 +5408,11 @@ msgstr "本课程包含:" msgid "This course is free." msgstr "本课程免费" -#: frontend/src/pages/SCORMChapter.vue:201 -msgid "This is a chapter in the course {0}" -msgstr "这是课程{0}的章节" +#. Description of the 'Meta Description' (Small Text) field in DocType 'LMS +#. Settings' +#: lms/lms/doctype/lms_settings/lms_settings.json +msgid "This description will be shown on lists and pages without meta description" +msgstr "" #: frontend/src/pages/Lesson.vue:16 msgid "This lesson is not available for preview. Please enroll in the course to access it." @@ -5482,10 +5508,10 @@ msgstr "时间安排:" #: frontend/src/components/Modals/DiscussionModal.vue:18 #: frontend/src/components/Modals/LiveClassModal.vue:23 #: frontend/src/pages/AssignmentForm.vue:32 -#: frontend/src/pages/Assignments.vue:152 frontend/src/pages/BatchForm.vue:19 -#: frontend/src/pages/CourseForm.vue:33 frontend/src/pages/JobCreation.vue:20 +#: frontend/src/pages/Assignments.vue:155 frontend/src/pages/BatchForm.vue:19 +#: frontend/src/pages/CourseForm.vue:29 frontend/src/pages/JobCreation.vue:20 #: frontend/src/pages/ProgramForm.vue:11 frontend/src/pages/Programs.vue:116 -#: frontend/src/pages/QuizForm.vue:48 frontend/src/pages/Quizzes.vue:116 +#: frontend/src/pages/QuizForm.vue:48 frontend/src/pages/Quizzes.vue:118 #: lms/lms/doctype/cohort/cohort.json #: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json #: lms/lms/doctype/cohort_web_page/cohort_web_page.json @@ -5507,7 +5533,7 @@ msgstr "时间安排:" msgid "Title" msgstr "标题" -#: frontend/src/components/Modals/ChapterModal.vue:172 +#: frontend/src/components/Modals/ChapterModal.vue:175 msgid "Title is required" msgstr "标题为必填项" @@ -5539,7 +5565,7 @@ msgid "Total" msgstr "总计" #. Label of the total_marks (Int) field in DocType 'LMS Quiz' -#: frontend/src/pages/QuizForm.vue:67 frontend/src/pages/Quizzes.vue:121 +#: frontend/src/pages/QuizForm.vue:67 frontend/src/pages/Quizzes.vue:123 #: lms/lms/doctype/lms_quiz/lms_quiz.json msgid "Total Marks" msgstr "总分" @@ -5577,7 +5603,7 @@ msgstr "推特" #: frontend/src/components/Modals/AssessmentModal.vue:22 #: frontend/src/components/Modals/Question.vue:54 #: frontend/src/pages/AssignmentForm.vue:39 -#: frontend/src/pages/Assignments.vue:30 frontend/src/pages/Assignments.vue:157 +#: frontend/src/pages/Assignments.vue:30 frontend/src/pages/Assignments.vue:160 #: frontend/src/pages/JobCreation.vue:33 frontend/src/pages/Jobs.vue:55 #: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/lms/doctype/lms_assignment/lms_assignment.json @@ -5624,7 +5650,7 @@ msgstr "审核中" msgid "Unlisted" msgstr "未列出" -#: frontend/src/pages/Batches.vue:293 +#: frontend/src/pages/Batches.vue:295 msgid "Unpublished" msgstr "未发布" @@ -5646,8 +5672,8 @@ msgstr "非结构化角色" #. Option for the 'Status' (Select) field in DocType 'Cohort' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request' #. Label of the upcoming (Check) field in DocType 'LMS Course' -#: frontend/src/pages/Batches.vue:291 frontend/src/pages/CourseForm.vue:185 -#: frontend/src/pages/Courses.vue:284 lms/lms/doctype/cohort/cohort.json +#: frontend/src/pages/Batches.vue:293 frontend/src/pages/CourseForm.vue:181 +#: frontend/src/pages/Courses.vue:287 lms/lms/doctype/cohort/cohort.json #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_course/lms_course.json msgid "Upcoming" @@ -5672,7 +5698,7 @@ msgstr "更新" msgid "Update Password" msgstr "更新密码" -#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:81 +#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:77 msgid "Upload" msgstr "上传" @@ -5778,6 +5804,10 @@ msgstr "可见性" msgid "Visit Batch" msgstr "访问批次" +#: frontend/src/pages/JobDetail.vue:38 +msgid "Visit Website" +msgstr "" + #: lms/templates/emails/batch_confirmation.html:23 msgid "Visit the following link to view your " msgstr "访问以下链接查看您的" @@ -5899,7 +5929,7 @@ msgstr "您不属于本批次成员,请查看即将开课批次" msgid "You are not a mentor of the course {0}" msgstr "您不是课程{0}的导师" -#: frontend/src/components/CourseOutline.vue:323 +#: frontend/src/components/CourseOutline.vue:324 msgid "You are not enrolled" msgstr "未注册" @@ -6123,11 +6153,7 @@ msgstr "/" msgid "out of" msgstr "超出" -#: frontend/src/components/JobCard.vue:30 -msgid "posted" -msgstr "已发布" - -#: frontend/src/pages/QuizForm.vue:386 +#: frontend/src/pages/QuizForm.vue:389 msgid "question_detail" msgstr "问题详情" @@ -6147,7 +6173,7 @@ msgstr "周" msgid "you can" msgstr "您可以" -#: lms/lms/api.py:816 lms/lms/api.py:824 +#: lms/lms/api.py:817 lms/lms/api.py:825 msgid "{0} Settings not found" msgstr "未找到{0}设置" diff --git a/lms/www/lms.py b/lms/www/lms.py index 2131a6a8..97f520a5 100644 --- a/lms/www/lms.py +++ b/lms/www/lms.py @@ -3,7 +3,6 @@ import re from bs4 import BeautifulSoup from frappe import _ from frappe.utils.telemetry import capture -from frappe.utils import cint no_cache = 1 @@ -15,22 +14,24 @@ def get_context(): or "/assets/lms/frontend/favicon.png" ) title = frappe.db.get_single_value("Website Settings", "app_name") or "Frappe Learning" + description = frappe.db.get_single_value("LMS Settings", "meta_description") csrf_token = frappe.sessions.get_csrf_token() frappe.db.commit() context = frappe._dict() context.csrf_token = csrf_token - context.meta = get_meta(app_path, title, favicon) + context.meta = get_meta(app_path, title, favicon, description) capture("active_site", "lms") context.title = title context.favicon = favicon return context -def get_meta(app_path, title, favicon): - meta = {} +def get_meta(app_path, title, favicon, description): + meta = frappe._dict() + if app_path: - meta = get_meta_from_document(app_path, favicon) + meta = get_meta_from_document(app_path) route_meta = frappe.get_all("Website Meta Tag", {"parent": app_path}, ["key", "value"]) @@ -47,22 +48,32 @@ def get_meta(app_path, title, favicon): elif row.key == "link": meta["link"] = row.value + if not meta.get("title"): + meta["title"] = title + + if not meta.get("description"): + meta["description"] = description + + if not meta.get("image"): + meta["image"] = favicon + + if not meta.get("keywords"): + meta["keywords"] = "" + if not meta: meta = { "title": title, "image": favicon, - "description": "Easy to use Learning Management System", + "description": description, } return meta -def get_meta_from_document(app_path, favicon): +def get_meta_from_document(app_path): if app_path == "courses": return { "title": _("Course List"), - "image": favicon, - "description": "This page lists all the courses published on our website", "keywords": "All Courses, Courses, Learn", "link": "/courses", } @@ -72,7 +83,6 @@ def get_meta_from_document(app_path, favicon): return { "title": _("New Course"), "image": frappe.db.get_single_value("Website Settings", "banner_image"), - "description": "Create a new course", "keywords": "New Course, Create Course", "link": "/lms/courses/new/edit", } @@ -99,8 +109,6 @@ def get_meta_from_document(app_path, favicon): if app_path == "batches": return { "title": _("Batches"), - "image": favicon, - "description": "This page lists all the batches published on our website", "keywords": "All Batches, Batches, Learn", "link": "/batches", } @@ -130,8 +138,6 @@ def get_meta_from_document(app_path, favicon): if "new/edit" in app_path: return { "title": _("New Batch"), - "image": favicon, - "description": "Create a new batch", "keywords": "New Batch, Create Batch", "link": "/lms/batches/new/edit", } @@ -157,8 +163,6 @@ def get_meta_from_document(app_path, favicon): if app_path == "job-openings": return { "title": _("Job Openings"), - "image": favicon, - "description": "This page lists all the job openings published on our website", "keywords": "Job Openings, Jobs, Vacancies", "link": "/job-openings", } @@ -171,6 +175,11 @@ def get_meta_from_document(app_path, favicon): ["job_title", "company_logo", "description"], as_dict=True, ) + + if job_opening.description: + soup = BeautifulSoup(job_opening.description, "html.parser") + job_opening.description = soup.get_text() + return { "title": job_opening.job_title, "image": job_opening.company_logo, @@ -182,8 +191,6 @@ def get_meta_from_document(app_path, favicon): if app_path == "statistics": return { "title": _("Statistics"), - "image": favicon, - "description": "This page lists all the statistics of this platform", "keywords": "Enrollment Count, Completion, Signups", "link": "/statistics", } @@ -231,8 +238,6 @@ def get_meta_from_document(app_path, favicon): if app_path == "quizzes": return { "title": _("Quizzes"), - "image": favicon, - "description": _("Test your knowledge with interactive quizzes and more."), "keywords": "Quizzes, interactive quizzes, online quizzes", "link": "/quizzes", } @@ -248,8 +253,6 @@ def get_meta_from_document(app_path, favicon): if quiz: return { "title": quiz.title, - "image": favicon, - "description": "Test your knowledge with interactive quizzes.", "keywords": quiz.title, "link": f"/quizzes/{quiz_name}", } @@ -257,8 +260,6 @@ def get_meta_from_document(app_path, favicon): if app_path == "assignments": return { "title": _("Assignments"), - "image": favicon, - "description": _("Test your knowledge with interactive assignments and more."), "keywords": "Assignments, interactive assignments, online assignments", "link": "/assignments", } @@ -274,8 +275,6 @@ def get_meta_from_document(app_path, favicon): if assignment: return { "title": assignment.title, - "image": favicon, - "description": "Test your knowledge with interactive assignments.", "keywords": assignment.title, "link": f"/assignments/{assignment_name}", } @@ -283,8 +282,8 @@ def get_meta_from_document(app_path, favicon): if app_path == "programs": return { "title": _("Programs"), - "image": favicon, - "description": "This page lists all the programs published on our website", "keywords": "All Programs, Programs, Learn", "link": "/programs", } + + return {}