diff --git a/.github/helper/update_pot_file.sh b/.github/helper/update_pot_file.sh index d07d2e25..c0682779 100644 --- a/.github/helper/update_pot_file.sh +++ b/.github/helper/update_pot_file.sh @@ -22,7 +22,7 @@ git config user.name "frappe-pr-bot" echo "Setting the correct git remote..." # Here, the git remote is a local file path by default. Let's change it to the upstream repo. -git remote add upstream https://github.com/frappe/lms.git +git remote set-url upstream https://github.com/frappe/lms.git echo "Creating a new branch..." isodate=$(date -u +"%Y-%m-%d") diff --git a/.github/workflows/generate-pot-file.yml b/.github/workflows/generate-pot-file.yml index 390393d7..4c5d81e1 100644 --- a/.github/workflows/generate-pot-file.yml +++ b/.github/workflows/generate-pot-file.yml @@ -5,7 +5,7 @@ on: workflow_dispatch: jobs: - regeneratee-pot-file: + regenerate-pot-file: name: Release runs-on: ubuntu-latest strategy: diff --git a/.github/workflows/make_release_pr.yml b/.github/workflows/make_release_pr.yml new file mode 100644 index 00000000..b8064ea2 --- /dev/null +++ b/.github/workflows/make_release_pr.yml @@ -0,0 +1,27 @@ +name: Create weekly release +on: + schedule: + # 13:00 UTC -> 7pm IST on every Wednesday + - cron: '30 4 * * 3' + workflow_dispatch: + +jobs: + release: + name: Release + runs-on: ubuntu-latest + strategy: + fail-fast: false + + steps: + - uses: octokit/request-action@v2.x + with: + route: POST /repos/{owner}/{repo}/pulls + owner: frappe + repo: lms + title: |- + "chore: merge 'develop' into 'main'" + body: "Automated weekly release" + base: main + head: develop + env: + GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }} \ No newline at end of file diff --git a/.gitignore b/.gitignore index 957c519f..95242ce7 100644 --- a/.gitignore +++ b/.gitignore @@ -11,4 +11,5 @@ __pycache__/ node_modules package-lock.json lms/public/frontend -lms/www/lms.html \ No newline at end of file +lms/www/lms.html +frappe-ui \ No newline at end of file diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 00000000..e82154a1 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "frappe-ui"] + path = frappe-ui + url = https://github.com/pateljannat/frappe-ui diff --git a/docker/init.sh b/docker/init.sh index 54afbac5..178735c0 100644 --- a/docker/init.sh +++ b/docker/init.sh @@ -35,7 +35,6 @@ bench new-site lms.localhost \ bench --site lms.localhost install-app lms bench --site lms.localhost set-config developer_mode 1 bench --site lms.localhost clear-cache -bench --site lms.localhost set-config mute_emails 1 bench use lms.localhost bench start diff --git a/frontend/src/App.vue b/frontend/src/App.vue index 6a9d4d5b..e7dfc8dc 100644 --- a/frontend/src/App.vue +++ b/frontend/src/App.vue @@ -8,10 +8,12 @@ diff --git a/frontend/src/components/AppSidebar.vue b/frontend/src/components/AppSidebar.vue index 1b796b20..9bbbb0c9 100644 --- a/frontend/src/components/AppSidebar.vue +++ b/frontend/src/components/AppSidebar.vue @@ -7,7 +7,7 @@ class="flex flex-col overflow-hidden" :class="isSidebarCollapsed ? 'items-center' : ''" > - +
@@ -87,7 +87,16 @@ name="item-label" v-bind="{ active, selected, option }" > - {{ option.label }} +
+
+ {{ option.label }} +
+
+
diff --git a/frontend/src/components/Controls/Link.vue b/frontend/src/components/Controls/Link.vue index 8ce30846..c5f6f63f 100644 --- a/frontend/src/components/Controls/Link.vue +++ b/frontend/src/components/Controls/Link.vue @@ -118,6 +118,7 @@ const options = createResource({ return { label: option.value, value: option.value, + description: option.description, } }) }, diff --git a/frontend/src/components/Controls/Rating.vue b/frontend/src/components/Controls/Rating.vue index 95897d12..08ecd278 100644 --- a/frontend/src/components/Controls/Rating.vue +++ b/frontend/src/components/Controls/Rating.vue @@ -13,6 +13,7 @@ + diff --git a/frontend/src/components/Modals/Settings.vue b/frontend/src/components/Modals/Settings.vue new file mode 100644 index 00000000..e1d8a36d --- /dev/null +++ b/frontend/src/components/Modals/Settings.vue @@ -0,0 +1,270 @@ + + diff --git a/frontend/src/components/SettingDetails.vue b/frontend/src/components/SettingDetails.vue new file mode 100644 index 00000000..fe4abe9d --- /dev/null +++ b/frontend/src/components/SettingDetails.vue @@ -0,0 +1,89 @@ + + + diff --git a/frontend/src/components/UserDropdown.vue b/frontend/src/components/UserDropdown.vue index 210114af..67c4bc96 100644 --- a/frontend/src/components/UserDropdown.vue +++ b/frontend/src/components/UserDropdown.vue @@ -1,5 +1,5 @@ diff --git a/frontend/src/pages/Quizzes.vue b/frontend/src/pages/Quizzes.vue new file mode 100644 index 00000000..3a678e91 --- /dev/null +++ b/frontend/src/pages/Quizzes.vue @@ -0,0 +1,126 @@ + + diff --git a/frontend/src/router.js b/frontend/src/router.js index e8e96180..8909be56 100644 --- a/frontend/src/router.js +++ b/frontend/src/router.js @@ -97,8 +97,8 @@ const routes = [ }, { path: '/courses/:courseName/edit', - name: 'CreateCourse', - component: () => import('@/pages/CreateCourse.vue'), + name: 'CourseForm', + component: () => import('@/pages/CourseForm.vue'), props: true, }, { @@ -109,8 +109,8 @@ const routes = [ }, { path: '/batches/:batchName/edit', - name: 'BatchCreation', - component: () => import('@/pages/BatchCreation.vue'), + name: 'BatchForm', + component: () => import('@/pages/BatchForm.vue'), props: true, }, { @@ -141,6 +141,17 @@ const routes = [ component: () => import('@/pages/Badge.vue'), props: true, }, + { + path: '/quizzes', + name: 'Quizzes', + component: () => import('@/pages/Quizzes.vue'), + }, + { + path: '/quizzes/:quizID', + name: 'QuizCreation', + component: () => import('@/pages/QuizCreation.vue'), + props: true, + }, ] let router = createRouter({ diff --git a/frontend/src/telemetry.ts b/frontend/src/telemetry.ts new file mode 100644 index 00000000..dfd5e3b6 --- /dev/null +++ b/frontend/src/telemetry.ts @@ -0,0 +1,98 @@ +import { useStorage } from "@vueuse/core"; +import { call } from "frappe-ui"; +import "../../../frappe/frappe/public/js/lib/posthog.js"; + +const APP = "lms"; +const SITENAME = window.location.hostname; + +declare global { + interface Window { + posthog: any; + } +} + +const telemetry = useStorage("telemetry", { + enabled: false, + project_id: "", + host: "", +}); + +export async function init() { + await set_enabled(); + if (!telemetry.value.enabled) return; + try { + await set_credentials(); + window.posthog.init(telemetry.value.project_id, { + api_host: telemetry.value.host, + autocapture: false, + person_profiles: "always", + capture_pageview: true, + capture_pageleave: true, + disable_session_recording: false, + session_recording: { + maskAllInputs: false, + maskInputOptions: { + password: true, + }, + }, + loaded: (posthog) => { + window.posthog = posthog; + window.posthog.identify(SITENAME); + }, + }); + } catch (e) { + console.trace("Failed to initialize telemetry", e); + telemetry.value.enabled = false; + } +} + +async function set_enabled() { + if (telemetry.value.enabled) return; + + await call("lms.lms.telemetry.is_enabled").then((res) => { + telemetry.value.enabled = res; + }); +} + +async function set_credentials() { + if (!telemetry.value.enabled) return; + if (telemetry.value.project_id && telemetry.value.host) return; + + await call("lms.lms.telemetry.get_credentials").then((res) => { + telemetry.value.project_id = res.project_id; + telemetry.value.host = res.telemetry_host; + }); +} + +interface CaptureOptions { + data: { + user: string; + [key: string]: string | number | boolean | object; + }; +} + +export function capture( + event: string, + options: CaptureOptions = { data: { user: "" } } +) { + if (!telemetry.value.enabled) return; + window.posthog.capture(`${APP}_${event}`, options); +} + +export function recordSession() { + if (!telemetry.value.enabled) return; + if (window.posthog && window.posthog.__loaded) { + window.posthog.startSessionRecording(); + } +} + +export function stopSession() { + if (!telemetry.value.enabled) return; + if ( + window.posthog && + window.posthog.__loaded && + window.posthog.sessionRecordingStarted() + ) { + window.posthog.stopSessionRecording(); + } +} diff --git a/frontend/src/translation.js b/frontend/src/translation.js index 0f9911dc..f6b9050b 100644 --- a/frontend/src/translation.js +++ b/frontend/src/translation.js @@ -2,6 +2,7 @@ import { createResource } from 'frappe-ui' export default function translationPlugin(app) { app.config.globalProperties.__ = translate + window.__ = translate if (!window.translatedMessages) fetchTranslations() } diff --git a/frontend/src/utils/index.js b/frontend/src/utils/index.js index 05372373..94b04f85 100644 --- a/frontend/src/utils/index.js +++ b/frontend/src/utils/index.js @@ -236,7 +236,7 @@ export function getEditorTools() { regex: /https:\/\/docs\.google\.com\/presentation\/d\/e\/([A-Za-z0-9_-]+)\/pub/, embedUrl: 'https://docs.google.com/presentation/d/e/<%= remote_id %>/embed', - html: "", + html: "", }, drive: { regex: /https:\/\/drive\.google\.com\/file\/d\/([A-Za-z0-9_-]+)\/view(\?.+)?/, @@ -260,7 +260,7 @@ export function getEditorTools() { regex: /https:\/\/docs\.google\.com\/presentation\/d\/([A-Za-z0-9_-]+)\/edit(\?.+)?/, embedUrl: 'https://docs.google.com/presentation/d/<%= remote_id %>/embed', - html: "", + html: "", }, codesandbox: { regex: /^https:\/\/codesandbox\.io\/(?:embed\/)?([A-Za-z0-9_-]+)(?:\?[^\/]*)?$/, @@ -424,7 +424,7 @@ export function getSidebarLinks() { 'Courses', 'CourseDetail', 'Lesson', - 'CreateCourse', + 'CourseForm', 'LessonForm', ], }, @@ -432,7 +432,7 @@ export function getSidebarLinks() { label: 'Batches', icon: 'Users', to: 'Batches', - activeFor: ['Batches', 'BatchDetail', 'Batch', 'BatchCreation'], + activeFor: ['Batches', 'BatchDetail', 'Batch', 'BatchForm'], }, { label: 'Certified Participants', @@ -483,3 +483,19 @@ export function getLineStartPosition(string, position) { return position } + +export function singularize(word) { + const endings = { + ves: 'fe', + ies: 'y', + i: 'us', + zes: 'ze', + ses: 's', + es: 'e', + s: '', + } + return word.replace( + new RegExp(`(${Object.keys(endings).join('|')})$`), + (r) => endings[r] + ) +} diff --git a/frontend/yarn.lock b/frontend/yarn.lock index 30adce7c..7833087e 100644 --- a/frontend/yarn.lock +++ b/frontend/yarn.lock @@ -68,13 +68,6 @@ dependencies: "@codexteam/icons" "^0.0.5" -"@editorjs/image@^2.9.2": - version "2.9.2" - resolved "https://registry.yarnpkg.com/@editorjs/image/-/image-2.9.2.tgz#c8bea65a578fab65a1a75df1223b4fd8f06b57d5" - integrity sha512-n09sMieGW8cksoeflpplzvbmFH2bdVzVTWbnidPWAHaeU467HRteoXU9yfGBB7+eeHZLnmCulQ2dr6ae+G2niw== - dependencies: - "@codexteam/icons" "^0.3.0" - "@editorjs/inline-code@^1.5.0": version "1.5.0" resolved "https://registry.yarnpkg.com/@editorjs/inline-code/-/inline-code-1.5.0.tgz#ad5849bac3396b9dad22dceeda76198dd991e426" @@ -1882,8 +1875,16 @@ source-map-js@^1.2.0: resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.2.0.tgz#16b809c162517b5b8c3e7dcd315a2a5c2612b2af" integrity sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg== -"string-width-cjs@npm:string-width@^4.2.0", string-width@^4.1.0: - name string-width-cjs +"string-width-cjs@npm:string-width@^4.2.0": + version "4.2.3" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" + integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== + dependencies: + emoji-regex "^8.0.0" + is-fullwidth-code-point "^3.0.0" + strip-ansi "^6.0.1" + +string-width@^4.1.0: version "4.2.3" resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== @@ -1901,8 +1902,14 @@ string-width@^5.0.1, string-width@^5.1.2: emoji-regex "^9.2.2" strip-ansi "^7.0.1" -"strip-ansi-cjs@npm:strip-ansi@^6.0.1", strip-ansi@^6.0.0, strip-ansi@^6.0.1: - name strip-ansi-cjs +"strip-ansi-cjs@npm:strip-ansi@^6.0.1": + version "6.0.1" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" + integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== + dependencies: + ansi-regex "^5.0.1" + +strip-ansi@^6.0.0, strip-ansi@^6.0.1: version "6.0.1" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== diff --git a/lms/__init__.py b/lms/__init__.py index 8c0d5d5b..9aa3f903 100644 --- a/lms/__init__.py +++ b/lms/__init__.py @@ -1 +1 @@ -__version__ = "2.0.0" +__version__ = "2.1.0" diff --git a/lms/lms/api.py b/lms/lms/api.py index 67300c13..d04ec783 100644 --- a/lms/lms/api.py +++ b/lms/lms/api.py @@ -6,6 +6,7 @@ from frappe.translate import get_all_translations from frappe import _ from frappe.query_builder import DocType from frappe.query_builder.functions import Count +from frappe.utils import time_diff, now_datetime, get_datetime @frappe.whitelist() @@ -265,7 +266,9 @@ def get_chart_details(): "upcoming": 0, }, ) - details.users = frappe.db.count("User", {"enabled": 1}) + details.users = frappe.db.count( + "User", {"enabled": 1, "name": ["not in", ("Administrator", "Guest")]} + ) details.completions = frappe.db.count( "LMS Enrollment", {"progress": ["like", "%100%"]} ) diff --git a/lms/lms/doctype/lms_certificate_request/lms_certificate_request.py b/lms/lms/doctype/lms_certificate_request/lms_certificate_request.py index 22e01439..4a39f39f 100644 --- a/lms/lms/doctype/lms_certificate_request/lms_certificate_request.py +++ b/lms/lms/doctype/lms_certificate_request/lms_certificate_request.py @@ -26,6 +26,9 @@ class LMSCertificateRequest(Document): self.validate_if_existing_requests() self.validate_evaluation_end_date() + def after_insert(self): + self.send_notification() + def set_evaluator(self): if not self.evaluator: self.evaluator = get_evaluator(self.course, self.batch_name) @@ -108,6 +111,35 @@ class LMSCertificateRequest(Document): ) ) + def send_notification(self): + outgoing_email_account = frappe.get_cached_value( + "Email Account", {"default_outgoing": 1, "enable_outgoing": 1}, "name" + ) + if outgoing_email_account or frappe.conf.get("mail_login"): + subject = _("Your evaluation slot has been booked") + template = "certificate_request_notification" + + args = { + "course": frappe.db.get_value("LMS Course", self.course, "title"), + "timezone": frappe.db.get_value("LMS Batch", self.batch_name, "timezone") + if self.batch_name + else "", + "date": format_date(self.date, "medium"), + "member_name": self.member_name, + "start_time": format_time(self.start_time, "short"), + "evaluator": frappe.db.get_value("User", self.evaluator, "full_name"), + } + + frappe.sendmail( + recipients=[self.member], + cc=[self.evaluator], + subject=subject, + template=template, + args=args, + header=[subject, "green"], + retry=3, + ) + def schedule_evals(): if frappe.db.get_single_value("LMS Settings", "send_calendar_invite_for_evaluations"): diff --git a/lms/lms/doctype/lms_question/lms_question.json b/lms/lms/doctype/lms_question/lms_question.json index 6118ff6d..2a8b45f6 100644 --- a/lms/lms/doctype/lms_question/lms_question.json +++ b/lms/lms/doctype/lms_question/lms_question.json @@ -196,7 +196,7 @@ "index_web_pages_for_search": 1, "links": [], "make_attachments_public": 1, - "modified": "2024-08-01 13:01:55.000072", + "modified": "2024-08-01 12:53:22.540990", "modified_by": "Administrator", "module": "LMS", "name": "LMS Question", diff --git a/lms/lms/doctype/lms_question/lms_question.py b/lms/lms/doctype/lms_question/lms_question.py index 0e6f87bd..5f18e0dd 100644 --- a/lms/lms/doctype/lms_question/lms_question.py +++ b/lms/lms/doctype/lms_question/lms_question.py @@ -10,6 +10,7 @@ from lms.lms.utils import has_course_instructor_role, has_course_moderator_role class LMSQuestion(Document): def validate(self): validate_correct_answers(self) + update_question_title(self) def validate_correct_answers(question): @@ -62,6 +63,16 @@ def validate_possible_answer(question): ) +def update_question_title(question): + if not question.is_new(): + question_rows = frappe.get_all( + "LMS Quiz Question", {"question": question.name}, pluck="name" + ) + + for row in question_rows: + frappe.db.set_value("LMS Quiz Question", row, "question_detail", question.question) + + def get_correct_options(question): correct_options = [] correct_option_fields = [ diff --git a/lms/lms/doctype/lms_quiz/lms_quiz.json b/lms/lms/doctype/lms_quiz/lms_quiz.json index 9c1b8e95..dd5de78d 100644 --- a/lms/lms/doctype/lms_quiz/lms_quiz.json +++ b/lms/lms/doctype/lms_quiz/lms_quiz.json @@ -9,16 +9,15 @@ "field_order": [ "title", "max_attempts", - "limit_questions_to", + "show_answers", "column_break_gaac", "total_marks", "passing_percentage", - "section_break_hsiv", - "show_answers", - "column_break_rocd", "show_submission_history", - "column_break_dsup", + "section_break_tzbu", "shuffle_questions", + "column_break_clsh", + "limit_questions_to", "section_break_sbjx", "questions", "section_break_3", @@ -74,6 +73,7 @@ "default": "1", "fieldname": "show_answers", "fieldtype": "Check", + "in_standard_filter": 1, "label": "Show Answers" }, { @@ -90,35 +90,25 @@ "fieldtype": "Check", "label": "Show Submission History" }, - { - "fieldname": "section_break_hsiv", - "fieldtype": "Section Break", - "label": "Settings" - }, { "fieldname": "passing_percentage", "fieldtype": "Int", + "in_list_view": 1, + "in_standard_filter": 1, "label": "Passing Percentage", "non_negative": 1, "reqd": 1 }, - { - "fieldname": "column_break_rocd", - "fieldtype": "Column Break" - }, { "default": "0", "fieldname": "total_marks", "fieldtype": "Int", + "in_list_view": 1, "label": "Total Marks", "non_negative": 1, "read_only": 1, "reqd": 1 }, - { - "fieldname": "column_break_dsup", - "fieldtype": "Column Break" - }, { "default": "0", "fieldname": "shuffle_questions", @@ -126,14 +116,23 @@ "label": "Shuffle Questions" }, { + "depends_on": "shuffle_questions", "fieldname": "limit_questions_to", "fieldtype": "Int", "label": "Limit Questions To" + }, + { + "fieldname": "section_break_tzbu", + "fieldtype": "Section Break" + }, + { + "fieldname": "column_break_clsh", + "fieldtype": "Column Break" } ], "index_web_pages_for_search": 1, "links": [], - "modified": "2024-06-27 22:03:48.576489", + "modified": "2024-08-09 12:21:36.256522", "modified_by": "Administrator", "module": "LMS", "name": "LMS Quiz", diff --git a/lms/lms/doctype/lms_quiz/lms_quiz.py b/lms/lms/doctype/lms_quiz/lms_quiz.py index ef7f6243..33abac89 100644 --- a/lms/lms/doctype/lms_quiz/lms_quiz.py +++ b/lms/lms/doctype/lms_quiz/lms_quiz.py @@ -5,7 +5,7 @@ import json import frappe from frappe import _ from frappe.model.document import Document -from frappe.utils import cstr, comma_and +from frappe.utils import cstr, comma_and, cint from fuzzywuzzy import fuzz from lms.lms.doctype.course_lesson.course_lesson import save_progress from lms.lms.utils import ( @@ -30,12 +30,12 @@ class LMSQuiz(Document): ) def validate_limit(self): - if self.limit_questions_to and self.limit_questions_to >= len(self.questions): + if self.limit_questions_to and cint(self.limit_questions_to) >= len(self.questions): frappe.throw( _("Limit cannot be greater than or equal to the number of questions in the quiz.") ) - if self.limit_questions_to and self.limit_questions_to < len(self.questions): + if self.limit_questions_to and cint(self.limit_questions_to) < len(self.questions): marks = [question.marks for question in self.questions] if len(set(marks)) > 1: frappe.throw(_("All questions should have the same marks if the limit is set.")) @@ -43,10 +43,10 @@ class LMSQuiz(Document): def calculate_total_marks(self): if self.limit_questions_to: self.total_marks = sum( - question.marks for question in self.questions[: self.limit_questions_to] + question.marks for question in self.questions[: cint(self.limit_questions_to)] ) else: - self.total_marks = sum(question.marks for question in self.questions) + self.total_marks = sum(cint(question.marks) for question in self.questions) def autoname(self): if not self.name: diff --git a/lms/lms/doctype/lms_quiz_question/lms_quiz_question.json b/lms/lms/doctype/lms_quiz_question/lms_quiz_question.json index e14a8d48..5570559f 100644 --- a/lms/lms/doctype/lms_quiz_question/lms_quiz_question.json +++ b/lms/lms/doctype/lms_quiz_question/lms_quiz_question.json @@ -6,7 +6,10 @@ "engine": "InnoDB", "field_order": [ "question", - "marks" + "column_break_qcpo", + "marks", + "section_break_huup", + "question_detail" ], "fields": [ { @@ -25,12 +28,28 @@ "label": "Marks", "non_negative": 1, "reqd": 1 + }, + { + "fetch_from": "question.question", + "fieldname": "question_detail", + "fieldtype": "Text", + "in_list_view": 1, + "label": "Question Detail", + "read_only": 1 + }, + { + "fieldname": "column_break_qcpo", + "fieldtype": "Column Break" + }, + { + "fieldname": "section_break_huup", + "fieldtype": "Section Break" } ], "index_web_pages_for_search": 1, "istable": 1, "links": [], - "modified": "2023-10-16 19:51:03.893144", + "modified": "2024-07-29 15:10:09.662715", "modified_by": "Administrator", "module": "LMS", "name": "LMS Quiz Question", diff --git a/lms/lms/doctype/lms_settings/lms_settings.json b/lms/lms/doctype/lms_settings/lms_settings.json index 5d0af7a3..68b5ddde 100644 --- a/lms/lms/doctype/lms_settings/lms_settings.json +++ b/lms/lms/doctype/lms_settings/lms_settings.json @@ -10,14 +10,9 @@ "column_break_zdel", "unsplash_access_key", "livecode_url", - "course_settings_section", - "search_placeholder", - "column_break_iqxy", - "portal_course_creation", "section_break_szgq", "send_calendar_invite_for_evaluations", "show_day_view", - "allow_student_progress", "column_break_2", "show_dashboard", "show_courses", @@ -48,7 +43,6 @@ "notifications", "section_break_qlss", "sidebar_items", - "mentor_request_tab", "mentor_request_section", "mentor_request_creation", "mentor_request_status_update", @@ -98,11 +92,6 @@ "fieldtype": "Column Break", "label": "Show Tab in Batch" }, - { - "fieldname": "search_placeholder", - "fieldtype": "Data", - "label": "Course List Search Bar Placeholder" - }, { "default": "0", "fieldname": "terms_of_use", @@ -139,13 +128,6 @@ "fieldname": "column_break_12", "fieldtype": "Column Break" }, - { - "default": "Course Creator Role", - "fieldname": "portal_course_creation", - "fieldtype": "Select", - "label": "Course Creation Access Through Website To", - "options": "Course Creator Role\nAnyone" - }, { "fieldname": "column_break_9", "fieldtype": "Column Break" @@ -203,19 +185,6 @@ "fieldtype": "Tab Break", "label": "Signup Settings" }, - { - "fieldname": "mentor_request_tab", - "fieldtype": "Tab Break", - "hidden": 1, - "label": "Mentor Request" - }, - { - "default": "0", - "fieldname": "allow_student_progress", - "fieldtype": "Check", - "hidden": 1, - "label": "Allow students to see each others progress in class" - }, { "fieldname": "payment_section", "fieldtype": "Section Break" @@ -230,15 +199,6 @@ "fieldname": "column_break_cfcv", "fieldtype": "Column Break" }, - { - "fieldname": "course_settings_section", - "fieldtype": "Section Break", - "label": "Course Settings" - }, - { - "fieldname": "column_break_iqxy", - "fieldtype": "Column Break" - }, { "fieldname": "razorpay_key", "fieldtype": "Data", @@ -423,7 +383,7 @@ "index_web_pages_for_search": 1, "issingle": 1, "links": [], - "modified": "2024-06-27 21:57:02.193336", + "modified": "2024-08-13 19:02:58.714080", "modified_by": "Administrator", "module": "LMS", "name": "LMS Settings", diff --git a/lms/lms/notification/certificate_request_creation/certificate_request_creation.json b/lms/lms/notification/certificate_request_creation/certificate_request_creation.json index 15c58963..ca9c3826 100644 --- a/lms/lms/notification/certificate_request_creation/certificate_request_creation.json +++ b/lms/lms/notification/certificate_request_creation/certificate_request_creation.json @@ -6,14 +6,14 @@ "docstatus": 0, "doctype": "Notification", "document_type": "LMS Certificate Request", - "enabled": 1, + "enabled": 0, "event": "New", "idx": 0, "is_standard": 1, - "message": "{% set title = frappe.db.get_value(\"LMS Course\", doc.course, \"title\") %}\n{% set timezone = frappe.db.get_value(\"LMS Batch\", doc.batch, \"timezone\") %}\n{% set timezone = timezone if timezone else '' %}\n{% set evaluator_name = frappe.db.get_value(\"User\", doc.evaluator, \"full_name\") %}\n\n

{{ _(\"Hey {0}\").format(doc.member_name) }}

\n

{{ _('Your evaluation for the course {0} has been scheduled on {1} at {2} {3}.').format(title, frappe.utils.format_date(doc.date, \"medium\"), frappe.utils.format_time(doc.start_time, \"short\"), timezone) }}

\n

{{ _(\"Your evaluator is {0}\").format(evaluator_name) }}\n

{{ _(\"Please prepare well and be on time for the evaluations.\") }}

\n", + "message": "{% set title = frappe.db.get_value(\"LMS Course\", doc.course, \"title\") %}\n{% set timezone = frappe.db.get_value(\"LMS Batch\", doc.batch, \"timezone\") %}\n{% set timezone = timezone if timezone else '' %}\n{% set evaluator_name = frappe.db.get_value(\"User\", doc.evaluator, \"full_name\") %}\n\n

{{ _(\"Hey {0}\").format(doc.member_name) }}

\n

{{ _('Your evaluation for the course {0} has been scheduled on {1} at {2} {3}.').format(title, frappe.utils.format_date(doc.date, \"medium\"), frappe.utils.format_time(doc.start_time, \"short\"), timezone) }}

\n

{{ _(\"Your evaluator is {0}\").format(evaluator_name) }}

\n

{{ _(\"Please prepare well and be on time for the evaluations.\") }}

\n", "message_type": "HTML", - "modified": "2024-07-10 15:51:03.429317", - "modified_by": "sayali@erpnext.com", + "modified": "2024-08-01 12:17:40.647724", + "modified_by": "jannat@frappe.io", "module": "LMS", "name": "Certificate Request Creation", "owner": "Administrator", diff --git a/lms/lms/telemetry.py b/lms/lms/telemetry.py new file mode 100644 index 00000000..7e4de8ec --- /dev/null +++ b/lms/lms/telemetry.py @@ -0,0 +1,18 @@ +import frappe + + +@frappe.whitelist() +def is_enabled(): + return bool( + frappe.get_system_settings("enable_telemetry") + and frappe.conf.get("posthog_host") + and frappe.conf.get("posthog_project_id") + ) + + +@frappe.whitelist() +def get_credentials(): + return { + "project_id": frappe.conf.get("posthog_project_id"), + "telemetry_host": frappe.conf.get("posthog_host"), + } diff --git a/lms/lms/utils.py b/lms/lms/utils.py index a421e394..a49208ad 100644 --- a/lms/lms/utils.py +++ b/lms/lms/utils.py @@ -517,13 +517,6 @@ def can_create_courses(course, member=None): if has_course_instructor_role(member) and member in instructors: return True - portal_course_creation = frappe.db.get_single_value( - "LMS Settings", "portal_course_creation" - ) - - if portal_course_creation == "Anyone" and member in instructors: - return True - if not course and has_course_instructor_role(member): return True diff --git a/lms/lms/workspace/lms/lms.json b/lms/lms/workspace/lms/lms.json index c56d02c3..2a52d245 100644 --- a/lms/lms/workspace/lms/lms.json +++ b/lms/lms/workspace/lms/lms.json @@ -9,7 +9,7 @@ "label": "Enrollments" } ], - "content": "[{\"id\":\"jNO4sdKxHu\",\"type\":\"header\",\"data\":{\"text\":\"Get Started\",\"col\":12}},{\"id\":\"5s0qRBc4rY\",\"type\":\"paragraph\",\"data\":{\"text\":\"Visit LMS Portal\",\"col\":4}},{\"id\":\"lGMuNLpmv-\",\"type\":\"paragraph\",\"data\":{\"text\":\"Create a Course\",\"col\":4}},{\"id\":\"3TVyc9AkPy\",\"type\":\"paragraph\",\"data\":{\"text\":\"Setup a Home Page\",\"col\":4}},{\"id\":\"9zcbqpu2gm\",\"type\":\"paragraph\",\"data\":{\"text\":\"LMS Setting\",\"col\":4}},{\"id\":\"0ATmnKmXjc\",\"type\":\"paragraph\",\"data\":{\"text\":\"Documentation\",\"col\":4}},{\"id\":\"C128a4abjX\",\"type\":\"spacer\",\"data\":{\"col\":12}},{\"id\":\"5q4sPiv2ci\",\"type\":\"chart\",\"data\":{\"chart_name\":\"Signups\",\"col\":6}},{\"id\":\"8NSaRaEV5u\",\"type\":\"chart\",\"data\":{\"chart_name\":\"Enrollments\",\"col\":6}},{\"id\":\"kMuzko0uAU\",\"type\":\"spacer\",\"data\":{\"col\":12}},{\"id\":\"iuvIOHmztI\",\"type\":\"header\",\"data\":{\"text\":\"Statistics\",\"col\":12}},{\"id\":\"l0VTd66Uy2\",\"type\":\"shortcut\",\"data\":{\"shortcut_name\":\"Users\",\"col\":4}},{\"id\":\"wAWZin1KKk\",\"type\":\"shortcut\",\"data\":{\"shortcut_name\":\"Course\",\"col\":4}},{\"id\":\"RLrIlFx0Hd\",\"type\":\"shortcut\",\"data\":{\"shortcut_name\":\"Enrollments\",\"col\":4}},{\"id\":\"OuhWkhCQmq\",\"type\":\"shortcut\",\"data\":{\"shortcut_name\":\"Course Completed\",\"col\":4}},{\"id\":\"3g8QmNqUXG\",\"type\":\"shortcut\",\"data\":{\"shortcut_name\":\"Certificate\",\"col\":4}},{\"id\":\"EZsdsujs8N\",\"type\":\"shortcut\",\"data\":{\"shortcut_name\":\"Evaluation\",\"col\":4}},{\"id\":\"s-nfsFQbGV\",\"type\":\"spacer\",\"data\":{\"col\":12}},{\"id\":\"jeOBWBzHEa\",\"type\":\"header\",\"data\":{\"text\":\"Master\",\"col\":12}},{\"id\":\"sVhgfS5GIh\",\"type\":\"card\",\"data\":{\"card_name\":\"Course Data\",\"col\":4}},{\"id\":\"Iea0snm4Fg\",\"type\":\"card\",\"data\":{\"card_name\":\"Course Stats\",\"col\":4}},{\"id\":\"bZB7RqOl6a\",\"type\":\"card\",\"data\":{\"card_name\":\"Certification\",\"col\":4}}]", + "content": "[{\"id\":\"jNO4sdKxHu\",\"type\":\"header\",\"data\":{\"text\":\"Get Started\",\"col\":12}},{\"id\":\"5s0qRBc4rY\",\"type\":\"paragraph\",\"data\":{\"text\":\"Visit LMS Portal\",\"col\":4}},{\"id\":\"lGMuNLpmv-\",\"type\":\"paragraph\",\"data\":{\"text\":\"Create a Course\",\"col\":4}},{\"id\":\"3TVyc9AkPy\",\"type\":\"paragraph\",\"data\":{\"text\":\"Setup a Home Page\",\"col\":4}},{\"id\":\"9zcbqpu2gm\",\"type\":\"paragraph\",\"data\":{\"text\":\"LMS Settings\",\"col\":4}},{\"id\":\"0ATmnKmXjc\",\"type\":\"paragraph\",\"data\":{\"text\":\"Documentation\",\"col\":4}},{\"id\":\"C128a4abjX\",\"type\":\"spacer\",\"data\":{\"col\":12}},{\"id\":\"5q4sPiv2ci\",\"type\":\"chart\",\"data\":{\"chart_name\":\"Signups\",\"col\":6}},{\"id\":\"8NSaRaEV5u\",\"type\":\"chart\",\"data\":{\"chart_name\":\"Enrollments\",\"col\":6}},{\"id\":\"kMuzko0uAU\",\"type\":\"spacer\",\"data\":{\"col\":12}},{\"id\":\"iuvIOHmztI\",\"type\":\"header\",\"data\":{\"text\":\"Statistics\",\"col\":12}},{\"id\":\"l0VTd66Uy2\",\"type\":\"shortcut\",\"data\":{\"shortcut_name\":\"Users\",\"col\":4}},{\"id\":\"wAWZin1KKk\",\"type\":\"shortcut\",\"data\":{\"shortcut_name\":\"Course\",\"col\":4}},{\"id\":\"RLrIlFx0Hd\",\"type\":\"shortcut\",\"data\":{\"shortcut_name\":\"Enrollments\",\"col\":4}},{\"id\":\"OuhWkhCQmq\",\"type\":\"shortcut\",\"data\":{\"shortcut_name\":\"Course Completed\",\"col\":4}},{\"id\":\"3g8QmNqUXG\",\"type\":\"shortcut\",\"data\":{\"shortcut_name\":\"Certificate\",\"col\":4}},{\"id\":\"EZsdsujs8N\",\"type\":\"shortcut\",\"data\":{\"shortcut_name\":\"Evaluation\",\"col\":4}},{\"id\":\"s-nfsFQbGV\",\"type\":\"spacer\",\"data\":{\"col\":12}},{\"id\":\"jeOBWBzHEa\",\"type\":\"header\",\"data\":{\"text\":\"Master\",\"col\":12}},{\"id\":\"sVhgfS5GIh\",\"type\":\"card\",\"data\":{\"card_name\":\"Course Data\",\"col\":4}},{\"id\":\"Iea0snm4Fg\",\"type\":\"card\",\"data\":{\"card_name\":\"Course Stats\",\"col\":4}},{\"id\":\"bZB7RqOl6a\",\"type\":\"card\",\"data\":{\"card_name\":\"Certification\",\"col\":4}}]", "creation": "2021-10-21 17:20:01.358903", "custom_blocks": [], "docstatus": 0, @@ -145,7 +145,7 @@ "type": "Link" } ], - "modified": "2024-06-27 21:19:06.273056", + "modified": "2024-08-09 13:19:06.273056", "modified_by": "Administrator", "module": "LMS", "name": "LMS", @@ -213,4 +213,4 @@ } ], "title": "LMS" -} \ No newline at end of file +} diff --git a/lms/locale/main.pot b/lms/locale/main.pot index 8de95863..fae436ae 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: school@frappe.io\n" -"POT-Creation-Date: 2024-06-28 19:27+0553\n" -"PO-Revision-Date: 2024-06-28 19:27+0553\n" +"POT-Creation-Date: 2024-08-09 16:04+0000\n" +"PO-Revision-Date: 2024-08-09 16:04+0000\n" "Last-Translator: school@frappe.io\n" "Language-Team: school@frappe.io\n" "MIME-Version: 1.0\n" @@ -20,56 +20,26 @@ msgstr "" msgid " Please evaluate and grade it." msgstr "" -#: public/frontend/assets/ProfileAbout-M7A4DT21.js:1 -msgid "About" +#. Label of the verify_terms (Check) field in DocType 'User' +#: fixtures/custom_field.json +msgid "Acceptance for Terms and/or Policies" msgstr "" #. Option for the 'Status' (Select) field in DocType 'Cohort Join Request' #: lms/doctype/cohort_join_request/cohort_join_request.json -msgctxt "Cohort Join Request" msgid "Accepted" msgstr "" -#. Label of a Data field in DocType 'Zoom Settings' +#. Label of the account_id (Data) field in DocType 'Zoom Settings' #: lms/doctype/zoom_settings/zoom_settings.json -msgctxt "Zoom Settings" msgid "Account ID" msgstr "" -#: public/frontend/assets/ProfileAbout-M7A4DT21.js:1 -msgid "Achievements" -msgstr "" - #. Option for the 'Status' (Select) field in DocType 'LMS Batch Old' #: lms/doctype/lms_batch_old/lms_batch_old.json -msgctxt "LMS Batch Old" msgid "Active" msgstr "" -#: public/frontend/assets/CourseOutline-BVkxGD_M.js:1 -msgid "Add Chapter" -msgstr "" - -#: public/frontend/assets/Batch-BYfbr7eo.js:1 -msgid "Add Course" -msgstr "" - -#: public/frontend/assets/CourseOutline-BVkxGD_M.js:1 -msgid "Add Lesson" -msgstr "" - -#: public/frontend/assets/Batch-BYfbr7eo.js:1 -msgid "Add Live Class" -msgstr "" - -#: public/frontend/assets/ProfileEvaluator-bug1MVAq.js:1 -msgid "Add Slot" -msgstr "" - -#: public/frontend/assets/Batch-BYfbr7eo.js:1 -msgid "Add Student" -msgstr "" - #: templates/onboarding_header.html:26 msgid "Add a Chapter" msgstr "" @@ -78,51 +48,21 @@ msgstr "" msgid "Add a Lesson" msgstr "" -#: public/frontend/assets/Batch-BYfbr7eo.js:1 -msgid "Add a Student" -msgstr "" - -#: public/frontend/assets/Batch-BYfbr7eo.js:1 -msgid "Add a course" -msgstr "" - -#: public/frontend/assets/CreateLesson-7ZGJlo2v.js:1 -msgid "Add an image, video, pdf or audio." -msgstr "" - #: lms/doctype/lms_question/lms_question.py:59 msgid "Add at least one possible answer for this question: {0}" msgstr "" -#: public/frontend/assets/index-D1f05dS8.js:7369 -msgid "Add web page to sidebar" -msgstr "" - -#: public/frontend/assets/AssignmentSubmission-D1b-IhRa.js:1 -msgid "Add your assignment as {0}" -msgstr "" - -#. Label of a Link field in DocType 'LMS Payment' +#. Label of the address (Link) field in DocType 'LMS Payment' #: lms/doctype/lms_payment/lms_payment.json -msgctxt "LMS Payment" msgid "Address" msgstr "" #. Option for the 'Role' (Select) field in DocType 'Cohort Staff' -#: lms/doctype/cohort_staff/cohort_staff.json -msgctxt "Cohort Staff" -msgid "Admin" -msgstr "" - #. Option for the 'Required Role' (Select) field in DocType 'Cohort Web Page' -#: lms/doctype/cohort_web_page/cohort_web_page.json -msgctxt "Cohort Web Page" -msgid "Admin" -msgstr "" - #. Option for the 'Role' (Select) field in DocType 'LMS Enrollment' +#: lms/doctype/cohort_staff/cohort_staff.json +#: lms/doctype/cohort_web_page/cohort_web_page.json #: lms/doctype/lms_enrollment/lms_enrollment.json -msgctxt "LMS Enrollment" msgid "Admin" msgstr "" @@ -131,7 +71,7 @@ msgstr "" msgid "All" msgstr "" -#: lms/widgets/BreadCrumb.html:3 public/frontend/assets/Courses-C42D3lfQ.js:1 +#: lms/widgets/BreadCrumb.html:3 msgid "All Courses" msgstr "" @@ -143,31 +83,23 @@ msgstr "" msgid "All questions should have the same marks if the limit is set." msgstr "" -#. Label of a Check field in DocType 'Job Settings' +#. Label of the allow_posting (Check) field in DocType 'Job Settings' #: job/doctype/job_settings/job_settings.json -msgctxt "Job Settings" msgid "Allow Job Posting From Website" msgstr "" -#. Label of a Check field in DocType 'LMS Batch' +#. Label of the allow_self_enrollment (Check) field in DocType 'LMS Batch' #: lms/doctype/lms_batch/lms_batch.json -msgctxt "LMS Batch" msgid "Allow Self Enrollment" msgstr "" -#. Label of a Check field in DocType 'LMS Batch' +#. Label of the allow_future (Check) field in DocType 'LMS Batch' #: lms/doctype/lms_batch/lms_batch.json -msgctxt "LMS Batch" msgid "Allow accessing future dates" msgstr "" -#: public/frontend/assets/BatchCreation-9JuqnhbY.js:1 -msgid "Allow self enrollment" -msgstr "" - -#. Label of a Check field in DocType 'LMS Settings' +#. Label of the allow_student_progress (Check) field in DocType 'LMS Settings' #: lms/doctype/lms_settings/lms_settings.json -msgctxt "LMS Settings" msgid "Allow students to see each others progress in class" msgstr "" @@ -175,148 +107,88 @@ msgstr "" msgid "Already Registered" msgstr "" -#: public/frontend/assets/BatchCreation-9JuqnhbY.js:1 -#: public/js/common_functions.js:379 -msgid "Amount" -msgstr "" - -#. Label of a Currency field in DocType 'LMS Batch' +#. Label of the amount (Currency) field in DocType 'LMS Batch' +#. Label of the amount (Currency) field in DocType 'LMS Payment' #: lms/doctype/lms_batch/lms_batch.json -msgctxt "LMS Batch" -msgid "Amount" -msgstr "" - -#. Label of a Currency field in DocType 'LMS Payment' -#: lms/doctype/lms_payment/lms_payment.json -msgctxt "LMS Payment" +#: lms/doctype/lms_payment/lms_payment.json 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/doctype/lms_batch/lms_batch.json lms/doctype/lms_course/lms_course.json #: public/js/common_functions.js:397 msgid "Amount (USD)" msgstr "" -#. Label of a Currency field in DocType 'LMS Batch' -#: lms/doctype/lms_batch/lms_batch.json -msgctxt "LMS Batch" -msgid "Amount (USD)" -msgstr "" - -#. Label of a Currency field in DocType 'LMS Course' -#: lms/doctype/lms_course/lms_course.json -msgctxt "LMS Course" -msgid "Amount (USD)" -msgstr "" - -#. Label of a Currency field in DocType 'LMS Payment' +#. Label of the amount_with_gst (Currency) field in DocType 'LMS Payment' #: lms/doctype/lms_payment/lms_payment.json -msgctxt "LMS Payment" msgid "Amount with GST" msgstr "" -#: public/frontend/assets/Batch-BYfbr7eo.js:1 -msgid "Announcement" -msgstr "" - -#. Label of a Text Editor field in DocType 'LMS Assignment' +#. 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' #: lms/doctype/lms_assignment/lms_assignment.json -msgctxt "LMS Assignment" -msgid "Answer" -msgstr "" - -#. Label of a Text Editor field in DocType 'LMS Assignment Submission' #: lms/doctype/lms_assignment_submission/lms_assignment_submission.json -msgctxt "LMS Assignment Submission" -msgid "Answer" -msgstr "" - -#. Label of a Code field in DocType 'LMS Exercise' #: lms/doctype/lms_exercise/lms_exercise.json -msgctxt "LMS Exercise" msgid "Answer" msgstr "" #. Option for the 'Course Creation Access Through Website To' (Select) field in #. DocType 'LMS Settings' #: lms/doctype/lms_settings/lms_settings.json -msgctxt "LMS Settings" msgid "Anyone" msgstr "" -#. Label of a Check field in DocType 'LMS Settings' +#. Label of the apply_gst (Check) field in DocType 'LMS Settings' #: lms/doctype/lms_settings/lms_settings.json -msgctxt "LMS Settings" msgid "Apply GST for India" msgstr "" -#. Label of a Check field in DocType 'LMS Settings' +#. Label of the apply_rounding (Check) field in DocType 'LMS Settings' #: lms/doctype/lms_settings/lms_settings.json -msgctxt "LMS Settings" msgid "Apply Rounding on Equivalent" msgstr "" -#: public/frontend/assets/JobDetail-CBHvk1ll.js:1 -msgid "Apply for this job" -msgstr "" - #. Option for the 'Status' (Select) field in DocType 'Invite Request' -#: lms/doctype/invite_request/invite_request.json -msgctxt "Invite Request" -msgid "Approved" -msgstr "" - #. Option for the 'Status' (Select) field in DocType 'LMS Course' -#: lms/doctype/lms_course/lms_course.json -msgctxt "LMS Course" -msgid "Approved" -msgstr "" - #. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' +#: lms/doctype/invite_request/invite_request.json +#: lms/doctype/lms_course/lms_course.json #: lms/doctype/lms_mentor_request/lms_mentor_request.json -msgctxt "LMS Mentor Request" msgid "Approved" msgstr "" -#. Label of a Check field in DocType 'LMS Settings' +#. Label of the user_category (Check) field in DocType 'LMS Settings' #: lms/doctype/lms_settings/lms_settings.json -msgctxt "LMS Settings" msgid "Ask User Category during Signup" msgstr "" -#: templates/assessments.html:11 +#. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch' +#. Label of the assessment (Table) field in DocType 'LMS Batch' +#: lms/doctype/lms_batch/lms_batch.json templates/assessments.html:11 msgid "Assessment" msgstr "" -#. Label of a Tab Break field in DocType 'LMS Batch' -#. Label of a Table field in DocType 'LMS Batch' -#: lms/doctype/lms_batch/lms_batch.json -msgctxt "LMS Batch" -msgid "Assessment" -msgstr "" - -#. Label of a Dynamic Link field in DocType 'LMS Assessment' +#. Label of the assessment_name (Dynamic Link) field in DocType 'LMS +#. Assessment' #: lms/doctype/lms_assessment/lms_assessment.json -msgctxt "LMS Assessment" msgid "Assessment Name" msgstr "" -#. Label of a Link field in DocType 'LMS Assessment' +#. Label of the assessment_type (Link) field in DocType 'LMS Assessment' #: lms/doctype/lms_assessment/lms_assessment.json -msgctxt "LMS Assessment" msgid "Assessment Type" msgstr "" -#: lms/doctype/lms_batch/lms_batch.py:66 +#: lms/doctype/lms_batch/lms_batch.py:71 msgid "Assessment {0} has already been added to this batch." msgstr "" -#: public/frontend/assets/Batch-BYfbr7eo.js:1 templates/assessments.html:3 -msgid "Assessments" -msgstr "" - -#. Label of a Check field in DocType 'LMS Settings' -#: lms/doctype/lms_settings/lms_settings.json -msgctxt "LMS Settings" +#. Label of the show_assessments (Check) field in DocType 'LMS Settings' +#: lms/doctype/lms_settings/lms_settings.json templates/assessments.html:3 msgid "Assessments" msgstr "" @@ -324,37 +196,31 @@ msgstr "" msgid "Assign" msgstr "" -#: lms/doctype/course_lesson/course_lesson.js:32 templates/assignment.html:3 -msgid "Assignment" -msgstr "" - -#. Label of a Section Break field in DocType 'Course Lesson' +#. Label of the section_break_16 (Section Break) field in DocType 'Course +#. Lesson' +#. Label of the assignment (Link) field in DocType 'LMS Assignment Submission' +#: lms/doctype/course_lesson/course_lesson.js:32 #: lms/doctype/course_lesson/course_lesson.json -msgctxt "Course Lesson" +#: lms/doctype/lms_assignment_submission/lms_assignment_submission.json +#: templates/assignment.html:3 msgid "Assignment" msgstr "" -#. Label of a Link field in DocType 'LMS Assignment Submission' +#. Label of the assignment_attachment (Attach) field in DocType 'LMS Assignment +#. Submission' #: lms/doctype/lms_assignment_submission/lms_assignment_submission.json -msgctxt "LMS Assignment Submission" -msgid "Assignment" -msgstr "" - -#. Label of a Attach field in DocType 'LMS Assignment Submission' -#: lms/doctype/lms_assignment_submission/lms_assignment_submission.json -msgctxt "LMS Assignment Submission" msgid "Assignment Attachment" msgstr "" -#. Label of a Link field in DocType 'LMS Settings' +#. Label of the assignment_submission_template (Link) field in DocType 'LMS +#. Settings' #: lms/doctype/lms_settings/lms_settings.json -msgctxt "LMS Settings" msgid "Assignment Submission Template" msgstr "" -#. Label of a Data field in DocType 'LMS Assignment Submission' +#. Label of the assignment_title (Data) field in DocType 'LMS Assignment +#. Submission' #: lms/doctype/lms_assignment_submission/lms_assignment_submission.json -msgctxt "LMS Assignment Submission" msgid "Assignment Title" msgstr "" @@ -364,7 +230,6 @@ msgstr "" #. Description of the 'Question' (Small Text) field in DocType 'Course Lesson' #: lms/doctype/course_lesson/course_lesson.json -msgctxt "Course Lesson" msgid "Assignment will appear at the bottom of the lesson." msgstr "" @@ -372,69 +237,49 @@ msgstr "" msgid "At least one option must be correct for this question." msgstr "" -#: public/frontend/assets/ProfileEvaluator-bug1MVAq.js:1 -msgid "Authorize Google Calendar Access" +#. Label of the attire (Select) field in DocType 'User' +#: fixtures/custom_field.json +msgid "Attire Preference" msgstr "" #. Option for the 'Event' (Select) field in DocType 'LMS Badge' #: lms/doctype/lms_badge/lms_badge.json -msgctxt "LMS Badge" msgid "Auto Assign" msgstr "" -#: public/frontend/assets/Batch-BYfbr7eo.js:1 -msgid "Auto Recording" -msgstr "" - -#. Label of a Select field in DocType 'LMS Live Class' +#. Label of the auto_recording (Select) field in DocType 'LMS Live Class' #: lms/doctype/lms_live_class/lms_live_class.json -msgctxt "LMS Live Class" msgid "Auto Recording" msgstr "" -#: public/frontend/assets/CourseCard-BK77fFq6.js:1 -msgid "Average Rating" -msgstr "" - -#. Label of a Link field in DocType 'LMS Badge Assignment' +#. Label of the badge (Link) field in DocType 'LMS Badge Assignment' #: lms/doctype/lms_badge_assignment/lms_badge_assignment.json -msgctxt "LMS Badge Assignment" msgid "Badge" msgstr "" -#. Label of a Small Text field in DocType 'LMS Badge Assignment' +#. Label of the badge_description (Small Text) field in DocType 'LMS Badge +#. Assignment' #: lms/doctype/lms_badge_assignment/lms_badge_assignment.json -msgctxt "LMS Badge Assignment" msgid "Badge Description" msgstr "" -#. Label of a Attach field in DocType 'LMS Badge Assignment' +#. Label of the badge_image (Attach) field in DocType 'LMS Badge Assignment' #: lms/doctype/lms_badge_assignment/lms_badge_assignment.json -msgctxt "LMS Badge Assignment" msgid "Badge Image" msgstr "" -#. Label of a Link field in DocType 'LMS Certificate' +#. 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' #: lms/doctype/lms_certificate/lms_certificate.json -msgctxt "LMS Certificate" -msgid "Batch" -msgstr "" - -#. Label of a Link field in DocType 'LMS Certificate Request' #: lms/doctype/lms_certificate_request/lms_certificate_request.json -msgctxt "LMS Certificate Request" -msgid "Batch" -msgstr "" - -#. Label of a Link field in DocType 'LMS Live Class' #: lms/doctype/lms_live_class/lms_live_class.json -msgctxt "LMS Live Class" msgid "Batch" msgstr "" -#. Label of a Link field in DocType 'LMS Settings' +#. Label of the batch_confirmation_template (Link) field in DocType 'LMS +#. Settings' #: lms/doctype/lms_settings/lms_settings.json -msgctxt "LMS Settings" msgid "Batch Confirmation Template" msgstr "" @@ -447,31 +292,20 @@ msgstr "" msgid "Batch Created" msgstr "" -#. Label of a Section Break field in DocType 'LMS Batch Old' +#. Label of the section_break_5 (Section Break) field in DocType 'LMS Batch +#. Old' #: lms/doctype/lms_batch_old/lms_batch_old.json -msgctxt "LMS Batch Old" msgid "Batch Description" msgstr "" -#: public/frontend/assets/BatchCreation-9JuqnhbY.js:1 -#: public/js/common_functions.js:349 -#: templates/emails/batch_confirmation.html:29 +#. Label of the batch_details (Text Editor) field in DocType 'LMS Batch' +#: lms/doctype/lms_batch/lms_batch.json public/js/common_functions.js:349 +#: templates/emails/batch_confirmation.html:30 msgid "Batch Details" msgstr "" -#. Label of a Text Editor field in DocType 'LMS Batch' -#: lms/doctype/lms_batch/lms_batch.json -msgctxt "LMS Batch" -msgid "Batch Details" -msgstr "" - -#: public/js/common_functions.js:356 -msgid "Batch Details Raw" -msgstr "" - -#. Label of a HTML Editor field in DocType 'LMS Batch' -#: lms/doctype/lms_batch/lms_batch.json -msgctxt "LMS Batch" +#. Label of the batch_details_raw (HTML Editor) field in DocType 'LMS Batch' +#: lms/doctype/lms_batch/lms_batch.json public/js/common_functions.js:356 msgid "Batch Details Raw" msgstr "" @@ -483,43 +317,30 @@ msgstr "" msgid "Batch Evaluator" msgstr "" -#. Label of a Link field in DocType 'LMS Certificate Evaluation' +#. Label of the batch_name (Link) field in DocType 'LMS Certificate Evaluation' #: lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json -msgctxt "LMS Certificate Evaluation" msgid "Batch Name" msgstr "" -#. Label of a Link field in DocType 'Exercise Latest Submission' +#. 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/doctype/exercise_latest_submission/exercise_latest_submission.json -msgctxt "Exercise Latest Submission" -msgid "Batch Old" -msgstr "" - -#. Label of a Link field in DocType 'Exercise Submission' #: lms/doctype/exercise_submission/exercise_submission.json -msgctxt "Exercise Submission" -msgid "Batch Old" -msgstr "" - -#. Label of a Link field in DocType 'LMS Enrollment' #: lms/doctype/lms_enrollment/lms_enrollment.json -msgctxt "LMS Enrollment" msgid "Batch Old" msgstr "" -#. Label of a Section Break field in DocType 'LMS Batch Old' +#. 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/doctype/lms_batch_old/lms_batch_old.json -msgctxt "LMS Batch Old" -msgid "Batch Settings" -msgstr "" - -#. Label of a Section Break field in DocType 'LMS Settings' #: lms/doctype/lms_settings/lms_settings.json -msgctxt "LMS Settings" msgid "Batch Settings" msgstr "" -#: templates/emails/batch_confirmation.html:16 +#: templates/emails/batch_confirmation.html:17 msgid "Batch Start Date:" msgstr "" @@ -532,60 +353,59 @@ msgstr "" msgid "Batch Updated" msgstr "" +#: lms/doctype/lms_batch/lms_batch.py:42 +msgid "Batch end date cannot be before the batch start date" +msgstr "" + #: lms/web_form/add_a_new_batch/add_a_new_batch.js:6 msgid "Batch {0} has been successfully created!" msgstr "" -#: www/lms.py:61 -msgid "Batches" -msgstr "" - #. Group in LMS Course's connections +#. Label of the batches (Check) field in DocType 'LMS Settings' #: lms/doctype/lms_course/lms_course.json -msgctxt "LMS Course" +#: lms/doctype/lms_settings/lms_settings.json www/lms.py:61 msgid "Batches" msgstr "" -#. Label of a Check field in DocType 'LMS Settings' -#: lms/doctype/lms_settings/lms_settings.json -msgctxt "LMS Settings" -msgid "Batches" -msgstr "" - -#. Label of a Date field in DocType 'Cohort' +#. Label of the begin_date (Date) field in DocType 'Cohort' #: lms/doctype/cohort/cohort.json -msgctxt "Cohort" msgid "Begin Date" msgstr "" -#: templates/emails/batch_confirmation.html:36 +#: templates/emails/batch_confirmation.html:37 #: templates/emails/certification.html:20 msgid "Best Regards" msgstr "" -#. Label of a Section Break field in DocType 'LMS Payment' +#. Label of the billing_details_section (Section Break) field in DocType 'LMS +#. Payment' #: lms/doctype/lms_payment/lms_payment.json -msgctxt "LMS Payment" msgid "Billing Details" msgstr "" -#. Label of a Data field in DocType 'LMS Payment' +#. Label of the billing_name (Data) field in DocType 'LMS Payment' #: lms/doctype/lms_payment/lms_payment.json -msgctxt "LMS Payment" msgid "Billing Name" msgstr "" -#: public/frontend/assets/Profile-CcZj7_FE.js:1 -msgid "Bio" -msgstr "" - -#. Label of a Markdown Editor field in DocType 'Course Lesson' +#. Label of the body (Markdown Editor) field in DocType 'Course Lesson' #: lms/doctype/course_lesson/course_lesson.json -msgctxt "Course Lesson" msgid "Body" msgstr "" -#: templates/signup-form.html:22 +#. Option for the 'Collaboration Preference' (Select) field in DocType 'User' +#: fixtures/custom_field.json +msgid "Both Individual and Team Work" +msgstr "" + +#. Label of the branch (Data) field in DocType 'User' +#: fixtures/custom_field.json +msgid "Branch" +msgstr "" + +#. Option for the 'User Category' (Select) field in DocType 'User' +#: fixtures/custom_field.json templates/signup-form.html:22 msgid "Business Owner" msgstr "" @@ -595,48 +415,41 @@ msgstr "" #. Option for the 'Grade Type' (Select) field in DocType 'Education Detail' #: lms/doctype/education_detail/education_detail.json -msgctxt "Education Detail" msgid "CGPA/4" msgstr "" #. Option for the 'Status' (Select) field in DocType 'Cohort' -#: lms/doctype/cohort/cohort.json -msgctxt "Cohort" -msgid "Cancelled" -msgstr "" - #. Option for the 'Stage' (Select) field in DocType 'LMS Batch Old' -#: lms/doctype/lms_batch_old/lms_batch_old.json -msgctxt "LMS Batch Old" +#: lms/doctype/cohort/cohort.json lms/doctype/lms_batch_old/lms_batch_old.json msgid "Cancelled" msgstr "" -#: public/frontend/assets/BatchCreation-9JuqnhbY.js:1 -#: public/js/common_functions.js:316 templates/signup-form.html:21 -msgid "Category" +#. Label of the carrer_preference_details (Section Break) field in DocType +#. 'User' +#: fixtures/custom_field.json +msgid "Career Preference Details" msgstr "" -#. Label of a Link field in DocType 'LMS Batch' +#. Option for the 'Attire Preference' (Select) field in DocType 'User' +#: 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' #: lms/doctype/lms_batch/lms_batch.json -msgctxt "LMS Batch" -msgid "Category" -msgstr "" - -#. Label of a Data field in DocType 'LMS Category' -#: lms/doctype/lms_category/lms_category.json -msgctxt "LMS Category" +#: lms/doctype/lms_category/lms_category.json public/js/common_functions.js:316 +#: templates/signup-form.html:21 msgid "Category" msgstr "" #. Label of a shortcut in the LMS Workspace #: lms/workspace/lms/lms.json -msgctxt "LMS Certificate" msgid "Certificate" msgstr "" -#. Label of a Link field in DocType 'LMS Settings' +#. Label of the certification_template (Link) field in DocType 'LMS Settings' #: lms/doctype/lms_settings/lms_settings.json -msgctxt "LMS Settings" msgid "Certificate Email Template" msgstr "" @@ -644,43 +457,33 @@ msgstr "" msgid "Certificate Link" msgstr "" -#: public/frontend/assets/ProfileCertificates-QrJyNc6L.js:1 -msgid "Certificates" -msgstr "" - +#. Label of the certification (Table) field in DocType 'User' #. Name of a DocType +#. Label of the certification_tab (Tab Break) field in DocType 'LMS Course' #. Label of a Card Break in the LMS Workspace -#: lms/doctype/certification/certification.json lms/workspace/lms/lms.json -msgid "Certification" -msgstr "" - #. Label of a Link in the LMS Workspace -#: lms/workspace/lms/lms.json -msgctxt "LMS Certificate" +#: fixtures/custom_field.json lms/doctype/certification/certification.json +#: lms/doctype/lms_course/lms_course.json lms/workspace/lms/lms.json msgid "Certification" msgstr "" -#. Label of a Section Break field in DocType 'LMS Course' -#: lms/doctype/lms_course/lms_course.json -msgctxt "LMS Course" -msgid "Certification" +#. Label of the certification_details (Section Break) field in DocType 'User' +#: fixtures/custom_field.json +msgid "Certification Details" msgstr "" -#. Label of a Int field in DocType 'LMS Course' +#. Label of the expiry (Int) field in DocType 'LMS Course' #: lms/doctype/lms_course/lms_course.json -msgctxt "LMS Course" msgid "Certification Expires After (Years)" msgstr "" -#. Label of a Data field in DocType 'Certification' +#. Label of the certification_name (Data) field in DocType 'Certification' #: lms/doctype/certification/certification.json -msgctxt "Certification" msgid "Certification Name" msgstr "" -#. Label of a Check field in DocType 'LMS Settings' +#. Label of the certified_participants (Check) field in DocType 'LMS Settings' #: lms/doctype/lms_settings/lms_settings.json -msgctxt "LMS Settings" msgid "Certified Participants" msgstr "" @@ -688,21 +491,12 @@ msgstr "" msgid "Change" msgstr "" -#. Label of a Link field in DocType 'Chapter Reference' -#: lms/doctype/chapter_reference/chapter_reference.json -msgctxt "Chapter Reference" -msgid "Chapter" -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/workspace/lms/lms.json -msgctxt "Course Chapter" -msgid "Chapter" -msgstr "" - -#. Label of a Link field in DocType 'LMS Course Progress' +#: lms/doctype/chapter_reference/chapter_reference.json #: lms/doctype/lms_course_progress/lms_course_progress.json -msgctxt "LMS Course Progress" +#: lms/workspace/lms/lms.json msgid "Chapter" msgstr "" @@ -711,14 +505,13 @@ msgstr "" msgid "Chapter Reference" msgstr "" -#. Label of a Table field in DocType 'LMS Course' +#. Label of the chapters (Table) field in DocType 'LMS Course' #. Group in LMS Course's connections #: lms/doctype/lms_course/lms_course.json -msgctxt "LMS Course" msgid "Chapters" msgstr "" -#: public/frontend/assets/index-D1f05dS8.js:7351 templates/quiz/quiz.html:120 +#: templates/quiz/quiz.html:120 msgid "Check" msgstr "" @@ -730,102 +523,70 @@ msgstr "" msgid "Check out the {0} to know more about certification." msgstr "" -#: public/frontend/assets/Profile-CcZj7_FE.js:1 -msgid "Checkout Courses" -msgstr "" - #. Option for the 'Type' (Select) field in DocType 'LMS Question' #: lms/doctype/lms_question/lms_question.json -msgctxt "LMS Question" msgid "Choices" msgstr "" -#: public/frontend/assets/index-D1f05dS8.js:7351 templates/quiz/quiz.html:53 +#: templates/quiz/quiz.html:53 msgid "Choose all answers that apply" msgstr "" -#: public/frontend/assets/index-D1f05dS8.js:7369 -msgid "Choose an icon" -msgstr "" - -#: public/frontend/assets/index-D1f05dS8.js:7351 templates/quiz/quiz.html:53 +#: templates/quiz/quiz.html:53 msgid "Choose one answer" msgstr "" -#. Label of a Data field in DocType 'Zoom Settings' +#. Label of the city (Data) field in DocType 'User' +#: fixtures/custom_field.json +msgid "City" +msgstr "" + +#. Option for the 'Role Preference' (Select) field in DocType 'User' +#: fixtures/custom_field.json +msgid "Clearly Defined Role" +msgstr "" + +#. Label of the client_id (Data) field in DocType 'Zoom Settings' #: lms/doctype/zoom_settings/zoom_settings.json -msgctxt "Zoom Settings" msgid "Client ID" msgstr "" -#. Label of a Password field in DocType 'Zoom Settings' +#. Label of the client_secret (Password) field in DocType 'Zoom Settings' #: lms/doctype/zoom_settings/zoom_settings.json -msgctxt "Zoom Settings" msgid "Client Secret" msgstr "" #. Option for the 'Status' (Select) field in DocType 'Job Opportunity' -#: job/doctype/job_opportunity/job_opportunity.json -msgctxt "Job Opportunity" -msgid "Closed" -msgstr "" - #. Option for the 'Membership' (Select) field in DocType 'LMS Batch Old' +#: job/doctype/job_opportunity/job_opportunity.json #: lms/doctype/lms_batch_old/lms_batch_old.json -msgctxt "LMS Batch Old" msgid "Closed" msgstr "" #. Option for the 'Auto Recording' (Select) field in DocType 'LMS Live Class' #: lms/doctype/lms_live_class/lms_live_class.json -msgctxt "LMS Live Class" msgid "Cloud" msgstr "" -#. Label of a Code field in DocType 'LMS Exercise' +#. Label of the code (Code) field in DocType 'LMS Exercise' #: lms/doctype/lms_exercise/lms_exercise.json -msgctxt "LMS Exercise" msgid "Code" msgstr "" #. Name of a DocType -#: lms/doctype/cohort/cohort.json -msgid "Cohort" -msgstr "" - -#. Label of a Link field in DocType 'Cohort Join Request' -#: lms/doctype/cohort_join_request/cohort_join_request.json -msgctxt "Cohort Join Request" -msgid "Cohort" -msgstr "" - -#. Label of a Link field in DocType 'Cohort Mentor' -#: lms/doctype/cohort_mentor/cohort_mentor.json -msgctxt "Cohort Mentor" -msgid "Cohort" -msgstr "" - -#. Label of a Link field in DocType 'Cohort Staff' -#: lms/doctype/cohort_staff/cohort_staff.json -msgctxt "Cohort Staff" -msgid "Cohort" -msgstr "" - -#. Label of a Link field in DocType 'Cohort Subgroup' -#: lms/doctype/cohort_subgroup/cohort_subgroup.json -msgctxt "Cohort Subgroup" -msgid "Cohort" -msgstr "" - +#. 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/doctype/cohort/cohort.json +#: lms/doctype/cohort_join_request/cohort_join_request.json +#: lms/doctype/cohort_mentor/cohort_mentor.json +#: lms/doctype/cohort_staff/cohort_staff.json +#: lms/doctype/cohort_subgroup/cohort_subgroup.json #: lms/doctype/cohort_web_page/cohort_web_page.json -msgctxt "Cohort Web Page" -msgid "Cohort" -msgstr "" - -#. Label of a Link field in DocType 'LMS Enrollment' #: lms/doctype/lms_enrollment/lms_enrollment.json -msgctxt "LMS Enrollment" msgid "Cohort" msgstr "" @@ -834,12 +595,6 @@ msgstr "" msgid "Cohort Join Request" msgstr "" -#. Linked DocType in Cohort Subgroup's connections -#: lms/doctype/cohort_subgroup/cohort_subgroup.json -msgctxt "Cohort Subgroup" -msgid "Cohort Join Request" -msgstr "" - #. Name of a DocType #: lms/doctype/cohort_mentor/cohort_mentor.json msgid "Cohort Mentor" @@ -855,44 +610,36 @@ msgstr "" msgid "Cohort Subgroup" msgstr "" -#. Linked DocType in Cohort's connections -#: lms/doctype/cohort/cohort.json -msgctxt "Cohort" -msgid "Cohort Subgroup" -msgstr "" - #. Name of a DocType #: lms/doctype/cohort_web_page/cohort_web_page.json msgid "Cohort Web Page" msgstr "" -#. Label of a Color field in DocType 'LMS Timetable Legend' +#. Label of the collaboration (Select) field in DocType 'User' +#: fixtures/custom_field.json +msgid "Collaboration Preference" +msgstr "" + +#. Label of the college (Data) field in DocType 'User' +#: fixtures/custom_field.json +msgid "College Name" +msgstr "" + +#. Label of the color (Color) field in DocType 'LMS Timetable Legend' #: lms/doctype/lms_timetable_legend/lms_timetable_legend.json -msgctxt "LMS Timetable Legend" msgid "Color" msgstr "" -#. Label of a Small Text field in DocType 'Exercise Latest Submission' +#. 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 (Small Text) field in DocType 'LMS Assignment +#. Submission' +#. Label of the comments (Small Text) field in DocType 'LMS Mentor Request' #: lms/doctype/exercise_latest_submission/exercise_latest_submission.json -msgctxt "Exercise Latest Submission" -msgid "Comments" -msgstr "" - -#. Label of a Small Text field in DocType 'Exercise Submission' #: lms/doctype/exercise_submission/exercise_submission.json -msgctxt "Exercise Submission" -msgid "Comments" -msgstr "" - -#. Label of a Small Text field in DocType 'LMS Assignment Submission' #: lms/doctype/lms_assignment_submission/lms_assignment_submission.json -msgctxt "LMS Assignment Submission" -msgid "Comments" -msgstr "" - -#. Label of a Small Text field in DocType 'LMS Mentor Request' #: lms/doctype/lms_mentor_request/lms_mentor_request.json -msgctxt "LMS Mentor Request" msgid "Comments" msgstr "" @@ -900,75 +647,47 @@ msgstr "" msgid "Community" msgstr "" -#. Label of a Data field in DocType 'LMS Job Application' +#. Label of the company (Data) field in DocType 'LMS Job Application' +#. Label of the company (Data) field in DocType 'Work Experience' #: job/doctype/lms_job_application/lms_job_application.json -msgctxt "LMS Job Application" -msgid "Company" -msgstr "" - -#. Label of a Data field in DocType 'Work Experience' #: lms/doctype/work_experience/work_experience.json -msgctxt "Work Experience" msgid "Company" msgstr "" -#: public/frontend/assets/JobCreation-CU_0h0cz.js:1 +#. Label of the company_details_section (Section Break) field in DocType 'Job +#. Opportunity' +#: job/doctype/job_opportunity/job_opportunity.json msgid "Company Details" msgstr "" -#. Label of a Section Break field in DocType 'Job Opportunity' +#. Label of the company_email_address (Data) field in DocType 'Job Opportunity' #: job/doctype/job_opportunity/job_opportunity.json -msgctxt "Job Opportunity" -msgid "Company Details" -msgstr "" - -#: public/frontend/assets/JobCreation-CU_0h0cz.js:1 msgid "Company Email Address" msgstr "" -#. Label of a Data field in DocType 'Job Opportunity' +#. Label of the company_logo (Attach Image) field in DocType 'Job Opportunity' #: job/doctype/job_opportunity/job_opportunity.json -msgctxt "Job Opportunity" -msgid "Company Email Address" -msgstr "" - -#: public/frontend/assets/JobCreation-CU_0h0cz.js:1 msgid "Company Logo" msgstr "" -#. Label of a Attach Image field in DocType 'Job Opportunity' +#. Label of the company_name (Data) field in DocType 'Job Opportunity' #: job/doctype/job_opportunity/job_opportunity.json -msgctxt "Job Opportunity" -msgid "Company Logo" -msgstr "" - -#: public/frontend/assets/JobCreation-CU_0h0cz.js:1 msgid "Company Name" msgstr "" -#. Label of a Data field in DocType 'Job Opportunity' +#. Label of the company_type (Select) field in DocType 'User' +#: fixtures/custom_field.json +msgid "Company Type" +msgstr "" + +#. Label of the company_website (Data) field in DocType 'Job Opportunity' #: job/doctype/job_opportunity/job_opportunity.json -msgctxt "Job Opportunity" -msgid "Company Name" -msgstr "" - -#: public/frontend/assets/JobCreation-CU_0h0cz.js:1 msgid "Company Website" msgstr "" -#. Label of a Data field in DocType 'Job Opportunity' -#: job/doctype/job_opportunity/job_opportunity.json -msgctxt "Job Opportunity" -msgid "Company Website" -msgstr "" - -#: lms/widgets/CourseCard.html:75 templates/reviews.html:48 -msgid "Complete" -msgstr "" - #. Option for the 'Status' (Select) field in DocType 'LMS Course Progress' #: lms/doctype/lms_course_progress/lms_course_progress.json -msgctxt "LMS Course Progress" +#: lms/widgets/CourseCard.html:75 templates/reviews.html:48 msgid "Complete" msgstr "" @@ -976,46 +695,29 @@ msgstr "" msgid "Complete Sign Up" msgstr "" +#. Option for the 'Status' (Select) field in DocType 'Cohort' +#. Option for the 'Stage' (Select) field in DocType 'LMS Batch Old' +#: lms/doctype/cohort/cohort.json lms/doctype/lms_batch_old/lms_batch_old.json #: lms/widgets/CourseCard.html:78 msgid "Completed" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'Cohort' -#: lms/doctype/cohort/cohort.json -msgctxt "Cohort" -msgid "Completed" -msgstr "" - -#. Option for the 'Stage' (Select) field in DocType 'LMS Batch Old' -#: lms/doctype/lms_batch_old/lms_batch_old.json -msgctxt "LMS Batch Old" -msgid "Completed" -msgstr "" - -#. Option for the 'Grant Certificate After' (Select) field in DocType 'LMS -#. Course' -#: lms/doctype/lms_course/lms_course.json -msgctxt "LMS Course" -msgid "Completion" -msgstr "" - -#: public/frontend/assets/Statistics-Df9qvpz5.js:18 -msgid "Completions" -msgstr "" - -#: public/frontend/assets/CreateLesson-7ZGJlo2v.js:1 -msgid "Components" -msgstr "" - -#. Label of a Code field in DocType 'LMS Badge' +#. Label of the condition (Code) field in DocType 'LMS Badge' #: lms/doctype/lms_badge/lms_badge.json -msgctxt "LMS Badge" msgid "Condition" msgstr "" -#. Label of a Check field in DocType 'Batch Student' +#: lms/doctype/lms_badge/lms_badge.py:16 +msgid "Condition must be in valid JSON format." +msgstr "" + +#: lms/doctype/lms_badge/lms_badge.py:21 +msgid "Condition must be valid python code." +msgstr "" + +#. Label of the confirmation_email_sent (Check) field in DocType 'Batch +#. Student' #: lms/doctype/batch_student/batch_student.json -msgctxt "Batch Student" msgid "Confirmation Email Sent" msgstr "" @@ -1023,13 +725,8 @@ msgstr "" msgid "Congratulations on getting certified!" msgstr "" -#: public/frontend/assets/CreateLesson-7ZGJlo2v.js:2 -msgid "Content" -msgstr "" - -#. Label of a Text field in DocType 'Course Lesson' +#. Label of the content (Text) field in DocType 'Course Lesson' #: lms/doctype/course_lesson/course_lesson.json -msgctxt "Course Lesson" msgid "Content" msgstr "" @@ -1037,13 +734,8 @@ msgstr "" msgid "Content Type" msgstr "" -#: public/frontend/assets/CreateLesson-7ZGJlo2v.js:1 -msgid "Content such as quiz, video and image will be added in the editor you select." -msgstr "" - #. Option for the 'Type' (Select) field in DocType 'Job Opportunity' #: job/doctype/job_opportunity/job_opportunity.json -msgctxt "Job Opportunity" msgid "Contract" msgstr "" @@ -1051,9 +743,8 @@ msgstr "" msgid "Cookie Policy" msgstr "" -#. Label of a Link field in DocType 'LMS Settings' +#. Label of the cookie_policy_page (Link) field in DocType 'LMS Settings' #: lms/doctype/lms_settings/lms_settings.json -msgctxt "LMS Settings" msgid "Cookie Policy Page" msgstr "" @@ -1069,206 +760,89 @@ msgstr "" msgid "Copy and paste the syntax in the editor. Replace 'lms_quiz_id' with the ID of the Quiz you want to add. You can get the ID of the quiz from the {0}." msgstr "" -#: public/frontend/assets/index-D1f05dS8.js:7351 -msgid "Correct" +#. Option for the 'Company Type' (Select) field in DocType 'User' +#: fixtures/custom_field.json +msgid "Corporate Organization" msgstr "" #. Option for the 'Status' (Select) field in DocType 'Exercise Latest #. Submission' -#: lms/doctype/exercise_latest_submission/exercise_latest_submission.json -msgctxt "Exercise Latest Submission" -msgid "Correct" -msgstr "" - #. Option for the 'Status' (Select) field in DocType 'Exercise Submission' +#: lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/doctype/exercise_submission/exercise_submission.json -msgctxt "Exercise Submission" msgid "Correct" msgstr "" -#. Label of a Link field in DocType 'Payment Country' -#: lms/doctype/payment_country/payment_country.json -msgctxt "Payment Country" +#. Label of the country (Link) field in DocType 'User' +#. Label of the country (Link) field in DocType 'Payment Country' +#: fixtures/custom_field.json lms/doctype/payment_country/payment_country.json msgid "Country" msgstr "" -#: lms/report/course_progress_summary/course_progress_summary.js:9 -#: lms/report/course_progress_summary/course_progress_summary.py:51 -#: public/frontend/assets/Batch-BYfbr7eo.js:1 -msgid "Course" -msgstr "" - -#. Label of a Link field in DocType 'Batch Course' -#: lms/doctype/batch_course/batch_course.json -msgctxt "Batch Course" -msgid "Course" -msgstr "" - -#. Label of a Link field in DocType 'Cohort' -#: lms/doctype/cohort/cohort.json -msgctxt "Cohort" -msgid "Course" -msgstr "" - -#. Label of a Link field in DocType 'Cohort Mentor' -#: lms/doctype/cohort_mentor/cohort_mentor.json -msgctxt "Cohort Mentor" -msgid "Course" -msgstr "" - -#. Label of a Link field in DocType 'Cohort Staff' -#: lms/doctype/cohort_staff/cohort_staff.json -msgctxt "Cohort Staff" -msgid "Course" -msgstr "" - -#. Label of a Link field in DocType 'Cohort Subgroup' -#: lms/doctype/cohort_subgroup/cohort_subgroup.json -msgctxt "Cohort Subgroup" -msgid "Course" -msgstr "" - -#. Label of a Link field in DocType 'Course Chapter' -#: lms/doctype/course_chapter/course_chapter.json -msgctxt "Course Chapter" -msgid "Course" -msgstr "" - -#. Label of a Link field in DocType 'Course Lesson' -#: lms/doctype/course_lesson/course_lesson.json -msgctxt "Course Lesson" -msgid "Course" -msgstr "" - -#. Label of a Link field in DocType 'Exercise Latest Submission' -#: lms/doctype/exercise_latest_submission/exercise_latest_submission.json -msgctxt "Exercise Latest Submission" -msgid "Course" -msgstr "" - -#. Label of a Link field in DocType 'Exercise Submission' -#: lms/doctype/exercise_submission/exercise_submission.json -msgctxt "Exercise Submission" -msgid "Course" -msgstr "" - -#. Label of a Link field in DocType 'LMS Assignment Submission' -#: lms/doctype/lms_assignment_submission/lms_assignment_submission.json -msgctxt "LMS Assignment Submission" -msgid "Course" -msgstr "" - -#. Label of a Link field in DocType 'LMS Batch Old' -#: lms/doctype/lms_batch_old/lms_batch_old.json -msgctxt "LMS Batch Old" -msgid "Course" -msgstr "" - -#. Label of a Link field in DocType 'LMS Certificate' -#: lms/doctype/lms_certificate/lms_certificate.json -msgctxt "LMS Certificate" -msgid "Course" -msgstr "" - -#. Label of a Link field in DocType 'LMS Certificate Evaluation' -#: lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json -msgctxt "LMS Certificate Evaluation" -msgid "Course" -msgstr "" - -#. Label of a Link field in DocType 'LMS Certificate Request' -#: lms/doctype/lms_certificate_request/lms_certificate_request.json -msgctxt "LMS Certificate Request" -msgid "Course" -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 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 -#: lms/workspace/lms/lms.json -msgctxt "LMS Course" -msgid "Course" -msgstr "" - -#. Label of a Link field in DocType 'LMS Course Interest' +#: lms/doctype/batch_course/batch_course.json lms/doctype/cohort/cohort.json +#: lms/doctype/cohort_mentor/cohort_mentor.json +#: lms/doctype/cohort_staff/cohort_staff.json +#: lms/doctype/cohort_subgroup/cohort_subgroup.json +#: lms/doctype/course_chapter/course_chapter.json +#: lms/doctype/course_lesson/course_lesson.json +#: lms/doctype/exercise_latest_submission/exercise_latest_submission.json +#: lms/doctype/exercise_submission/exercise_submission.json +#: lms/doctype/lms_assignment_submission/lms_assignment_submission.json +#: lms/doctype/lms_batch_old/lms_batch_old.json +#: lms/doctype/lms_certificate/lms_certificate.json +#: lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json +#: lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/doctype/lms_course_interest/lms_course_interest.json -msgctxt "LMS Course Interest" -msgid "Course" -msgstr "" - -#. Label of a Link field in DocType 'LMS Course Mentor Mapping' #: lms/doctype/lms_course_mentor_mapping/lms_course_mentor_mapping.json -msgctxt "LMS Course Mentor Mapping" -msgid "Course" -msgstr "" - -#. Label of a Link field in DocType 'LMS Course Progress' #: lms/doctype/lms_course_progress/lms_course_progress.json -msgctxt "LMS Course Progress" -msgid "Course" -msgstr "" - -#. Label of a Link field in DocType 'LMS Course Review' #: lms/doctype/lms_course_review/lms_course_review.json -msgctxt "LMS Course Review" -msgid "Course" -msgstr "" - -#. Label of a Link field in DocType 'LMS Enrollment' #: lms/doctype/lms_enrollment/lms_enrollment.json -msgctxt "LMS Enrollment" -msgid "Course" -msgstr "" - -#. Label of a Link field in DocType 'LMS Exercise' #: lms/doctype/lms_exercise/lms_exercise.json -msgctxt "LMS Exercise" -msgid "Course" -msgstr "" - -#. Label of a Link field in DocType 'LMS Mentor Request' #: lms/doctype/lms_mentor_request/lms_mentor_request.json -msgctxt "LMS Mentor Request" -msgid "Course" -msgstr "" - -#. Label of a Link field in DocType 'LMS Quiz' #: lms/doctype/lms_quiz/lms_quiz.json -msgctxt "LMS Quiz" -msgid "Course" -msgstr "" - -#. Label of a Link field in DocType 'LMS Quiz Submission' #: lms/doctype/lms_quiz_submission/lms_quiz_submission.json -msgctxt "LMS Quiz Submission" -msgid "Course" -msgstr "" - -#. Label of a Link field in DocType 'Related Courses' #: lms/doctype/related_courses/related_courses.json -msgctxt "Related Courses" +#: lms/report/course_progress_summary/course_progress_summary.js:9 +#: lms/report/course_progress_summary/course_progress_summary.py:51 +#: lms/workspace/lms/lms.json msgid "Course" msgstr "" #. Name of a DocType +#. Label of the chapter (Link) field in DocType 'Course Lesson' #: lms/doctype/course_chapter/course_chapter.json -msgid "Course Chapter" -msgstr "" - -#. Label of a Link field in DocType 'Course Lesson' #: lms/doctype/course_lesson/course_lesson.json -msgctxt "Course Lesson" -msgid "Course Chapter" -msgstr "" - -#. Linked DocType in LMS Course's connections -#: lms/doctype/lms_course/lms_course.json -msgctxt "LMS Course" msgid "Course Chapter" msgstr "" #. Label of a shortcut in the LMS Workspace #: lms/workspace/lms/lms.json -msgctxt "LMS Enrollment" msgid "Course Completed" msgstr "" @@ -1276,9 +850,8 @@ msgstr "" msgid "Course Content" msgstr "" -#. Label of a Select field in DocType 'LMS Settings' +#. Label of the portal_course_creation (Select) field in DocType 'LMS Settings' #: lms/doctype/lms_settings/lms_settings.json -msgctxt "LMS Settings" msgid "Course Creation Access Through Website To" msgstr "" @@ -1286,14 +859,12 @@ msgstr "" #: lms/doctype/lms_course/lms_course.json #: lms/doctype/lms_question/lms_question.json #: lms/doctype/lms_quiz/lms_quiz.json -#: public/frontend/assets/ProfileRoles-CVq7nQGs.js:1 msgid "Course Creator" msgstr "" #. Option for the 'Course Creation Access Through Website To' (Select) field in #. DocType 'LMS Settings' #: lms/doctype/lms_settings/lms_settings.json -msgctxt "LMS Settings" msgid "Course Creator Role" msgstr "" @@ -1302,19 +873,11 @@ msgstr "" msgid "Course Data" msgstr "" -#: public/frontend/assets/CreateCourse-2snz_azq.js:1 -msgid "Course Description" -msgstr "" - #. Name of a DocType #: lms/doctype/course_evaluator/course_evaluator.json msgid "Course Evaluator" msgstr "" -#: public/frontend/assets/CreateCourse-2snz_azq.js:1 -msgid "Course Image" -msgstr "" - #. Name of a DocType #: lms/doctype/course_instructor/course_instructor.json msgid "Course Instructor" @@ -1325,19 +888,12 @@ msgstr "" msgid "Course Lesson" msgstr "" -#. Linked DocType in Course Chapter's connections -#: lms/doctype/course_chapter/course_chapter.json -msgctxt "Course Chapter" -msgid "Course Lesson" -msgstr "" - #: www/lms.py:28 msgid "Course List" msgstr "" -#. Label of a Data field in DocType 'LMS Settings' +#. Label of the search_placeholder (Data) field in DocType 'LMS Settings' #: lms/doctype/lms_settings/lms_settings.json -msgctxt "LMS Settings" msgid "Course List Search Bar Placeholder" msgstr "" @@ -1345,13 +901,8 @@ msgstr "" msgid "Course Name" msgstr "" -#: public/frontend/assets/CreateCourse-2snz_azq.js:1 -msgid "Course Price" -msgstr "" - -#. Label of a Currency field in DocType 'LMS Course' +#. Label of the course_price (Currency) field in DocType 'LMS Course' #: lms/doctype/lms_course/lms_course.json -msgctxt "LMS Course" msgid "Course Price" msgstr "" @@ -1360,15 +911,11 @@ msgstr "" msgid "Course Progress Summary" msgstr "" -#. Label of a Section Break field in DocType 'LMS Course' +#. Label of the section_break_7 (Section Break) field in DocType 'LMS Course' +#. Label of the course_settings_section (Section Break) field in DocType 'LMS +#. Settings' #: lms/doctype/lms_course/lms_course.json -msgctxt "LMS Course" -msgid "Course Settings" -msgstr "" - -#. Label of a Section Break field in DocType 'LMS Settings' #: lms/doctype/lms_settings/lms_settings.json -msgctxt "LMS Settings" msgid "Course Settings" msgstr "" @@ -1377,40 +924,26 @@ msgstr "" msgid "Course Stats" msgstr "" -#. Label of a Data field in DocType 'Batch Course' +#. Label of the title (Data) field in DocType 'Batch Course' +#. Label of the course_title (Data) field in DocType 'LMS Certificate' #: lms/doctype/batch_course/batch_course.json -msgctxt "Batch Course" -msgid "Course Title" -msgstr "" - -#. Label of a Data field in DocType 'LMS Certificate' #: lms/doctype/lms_certificate/lms_certificate.json -msgctxt "LMS Certificate" msgid "Course Title" msgstr "" -#: lms/doctype/lms_batch/lms_batch.py:321 +#: lms/doctype/lms_batch/lms_batch.py:327 msgid "Course already added to the batch." msgstr "" -#: lms/doctype/lms_batch/lms_batch.py:55 +#: lms/doctype/lms_batch/lms_batch.py:60 msgid "Course {0} has already been added to this batch." msgstr "" -#: public/frontend/assets/Batch-BYfbr7eo.js:1 -#: public/frontend/assets/Statistics-Df9qvpz5.js:18 -msgid "Courses" -msgstr "" - -#. Label of a Table field in DocType 'LMS Batch' +#. 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' #: lms/doctype/lms_batch/lms_batch.json -msgctxt "LMS Batch" -msgid "Courses" -msgstr "" - -#. Label of a Check field in DocType 'LMS Settings' #: lms/doctype/lms_settings/lms_settings.json -msgctxt "LMS Settings" msgid "Courses" msgstr "" @@ -1423,6 +956,11 @@ msgstr "" msgid "Courses Mentored" msgstr "" +#. Label of the cover_image (Attach Image) field in DocType 'User' +#: fixtures/custom_field.json +msgid "Cover Image" +msgstr "" + #: lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.js:7 msgid "Create LMS Certificate" msgstr "" @@ -1435,127 +973,64 @@ msgstr "" msgid "Create a Course" msgstr "" -#: public/frontend/assets/Batch-BYfbr7eo.js:1 -msgid "Create a Live Class" -msgstr "" - -#: public/frontend/assets/BatchCreation-9JuqnhbY.js:1 -#: public/frontend/assets/CreateCourse-2snz_azq.js:1 -#: public/js/common_functions.js:387 +#. 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' +#: lms/doctype/lms_batch/lms_batch.json lms/doctype/lms_course/lms_course.json +#: lms/doctype/lms_payment/lms_payment.json public/js/common_functions.js:387 msgid "Currency" msgstr "" -#. Label of a Link field in DocType 'LMS Batch' -#: lms/doctype/lms_batch/lms_batch.json -msgctxt "LMS Batch" -msgid "Currency" -msgstr "" - -#. Label of a Link field in DocType 'LMS Course' -#: lms/doctype/lms_course/lms_course.json -msgctxt "LMS Course" -msgid "Currency" -msgstr "" - -#. Label of a Link field in DocType 'LMS Payment' -#: lms/doctype/lms_payment/lms_payment.json -msgctxt "LMS Payment" -msgid "Currency" -msgstr "" - -#. Label of a Link field in DocType 'LMS Enrollment' +#. Label of the current_lesson (Link) field in DocType 'LMS Enrollment' #: lms/doctype/lms_enrollment/lms_enrollment.json -msgctxt "LMS Enrollment" msgid "Current Lesson" msgstr "" -#. Label of a Code field in DocType 'LMS Batch' +#. Label of the custom_component (Code) field in DocType 'LMS Batch' #: lms/doctype/lms_batch/lms_batch.json -msgctxt "LMS Batch" msgid "Custom HTML" msgstr "" -#. Label of a Code field in DocType 'LMS Batch' +#. Label of the custom_script (Code) field in DocType 'LMS Batch' #: lms/doctype/lms_batch/lms_batch.json -msgctxt "LMS Batch" msgid "Custom Script (JavaScript)" msgstr "" -#. Label of a Tab Break field in DocType 'LMS Batch' +#. Label of the customisations_tab (Tab Break) field in DocType 'LMS Batch' #: lms/doctype/lms_batch/lms_batch.json -msgctxt "LMS Batch" msgid "Customisations" msgstr "" -#. Label of a Check field in DocType 'LMS Settings' +#. Label of the show_dashboard (Check) field in DocType 'LMS Settings' #: lms/doctype/lms_settings/lms_settings.json -msgctxt "LMS Settings" msgid "Dashboard" msgstr "" -#: public/frontend/assets/Batch-BYfbr7eo.js:1 templates/quiz/quiz.html:149 -msgid "Date" -msgstr "" - -#. Label of a Date field in DocType 'LMS Batch Timetable' +#. Label of the date (Date) field in DocType 'LMS Batch Timetable' +#. Label of the date (Date) field in DocType 'LMS Certificate Evaluation' +#. Label of the date (Date) field in DocType 'LMS Certificate Request' +#. Label of the date (Date) field in DocType 'LMS Live Class' +#. Label of the date (Date) field in DocType 'Scheduled Flow' #: lms/doctype/lms_batch_timetable/lms_batch_timetable.json -msgctxt "LMS Batch Timetable" -msgid "Date" -msgstr "" - -#. Label of a Date field in DocType 'LMS Certificate Evaluation' #: lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json -msgctxt "LMS Certificate Evaluation" -msgid "Date" -msgstr "" - -#. Label of a Date field in DocType 'LMS Certificate Request' #: lms/doctype/lms_certificate_request/lms_certificate_request.json -msgctxt "LMS Certificate Request" -msgid "Date" -msgstr "" - -#. Label of a Date field in DocType 'LMS Live Class' #: lms/doctype/lms_live_class/lms_live_class.json -msgctxt "LMS Live Class" +#: lms/doctype/scheduled_flow/scheduled_flow.json templates/quiz/quiz.html:149 msgid "Date" msgstr "" -#. Label of a Date field in DocType 'Scheduled Flow' -#: lms/doctype/scheduled_flow/scheduled_flow.json -msgctxt "Scheduled Flow" -msgid "Date" -msgstr "" - -#: public/frontend/assets/BatchCreation-9JuqnhbY.js:1 +#. Label of the section_break_glxh (Section Break) field in DocType 'LMS Live +#. Class' +#: lms/doctype/lms_live_class/lms_live_class.json msgid "Date and Time" msgstr "" -#. Label of a Section Break field in DocType 'LMS Live Class' -#: lms/doctype/lms_live_class/lms_live_class.json -msgctxt "LMS Live Class" -msgid "Date and Time" -msgstr "" - -#: public/frontend/assets/ProfileEvaluator-bug1MVAq.js:1 -msgid "Day" -msgstr "" - -#. Label of a Select field in DocType 'Evaluator Schedule' +#. 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' #: lms/doctype/evaluator_schedule/evaluator_schedule.json -msgctxt "Evaluator Schedule" -msgid "Day" -msgstr "" - -#. Label of a Int field in DocType 'LMS Batch Timetable' #: lms/doctype/lms_batch_timetable/lms_batch_timetable.json -msgctxt "LMS Batch Timetable" -msgid "Day" -msgstr "" - -#. Label of a Select field in DocType 'LMS Certificate Request' #: lms/doctype/lms_certificate_request/lms_certificate_request.json -msgctxt "LMS Certificate Request" msgid "Day" msgstr "" @@ -1569,216 +1044,104 @@ msgstr "" msgid "Dear " msgstr "" -#. Label of a Link field in DocType 'LMS Settings' +#. Label of the default_currency (Link) field in DocType 'LMS Settings' #: lms/doctype/lms_settings/lms_settings.json -msgctxt "LMS Settings" msgid "Default Currency" msgstr "" -#. Label of a Data field in DocType 'Education Detail' +#. Label of the degree_type (Data) field in DocType 'Education Detail' #: lms/doctype/education_detail/education_detail.json -msgctxt "Education Detail" msgid "Degree Type" 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 'Course Chapter' +#. 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' +#: job/doctype/job_opportunity/job_opportunity.json +#: lms/doctype/certification/certification.json lms/doctype/cohort/cohort.json +#: lms/doctype/cohort_subgroup/cohort_subgroup.json +#: lms/doctype/course_chapter/course_chapter.json #: lms/doctype/course_lesson/course_lesson.js:17 -#: public/frontend/assets/Batch-BYfbr7eo.js:1 -#: public/frontend/assets/BatchCreation-9JuqnhbY.js:1 -#: public/frontend/assets/JobCreation-CU_0h0cz.js:1 +#: lms/doctype/lms_badge/lms_badge.json lms/doctype/lms_batch/lms_batch.json +#: lms/doctype/lms_batch_old/lms_batch_old.json +#: lms/doctype/lms_course/lms_course.json +#: lms/doctype/lms_exercise/lms_exercise.json +#: lms/doctype/lms_live_class/lms_live_class.json +#: lms/doctype/work_experience/work_experience.json #: public/js/common_functions.js:342 msgid "Description" msgstr "" -#. Label of a Small Text field in DocType 'Certification' -#: lms/doctype/certification/certification.json -msgctxt "Certification" -msgid "Description" -msgstr "" - -#. Label of a Markdown Editor field in DocType 'Cohort' -#: lms/doctype/cohort/cohort.json -msgctxt "Cohort" -msgid "Description" -msgstr "" - -#. Label of a Markdown Editor field in DocType 'Cohort Subgroup' -#: lms/doctype/cohort_subgroup/cohort_subgroup.json -msgctxt "Cohort Subgroup" -msgid "Description" -msgstr "" - -#. Label of a Small Text field in DocType 'Course Chapter' -#: lms/doctype/course_chapter/course_chapter.json -msgctxt "Course Chapter" -msgid "Description" -msgstr "" - -#. Label of a Text Editor field in DocType 'Job Opportunity' -#: job/doctype/job_opportunity/job_opportunity.json -msgctxt "Job Opportunity" -msgid "Description" -msgstr "" - -#. Label of a Small Text field in DocType 'LMS Badge' -#: lms/doctype/lms_badge/lms_badge.json -msgctxt "LMS Badge" -msgid "Description" -msgstr "" - -#. Label of a Small Text field in DocType 'LMS Batch' -#: lms/doctype/lms_batch/lms_batch.json -msgctxt "LMS Batch" -msgid "Description" -msgstr "" - -#. Label of a Markdown Editor field in DocType 'LMS Batch Old' -#: lms/doctype/lms_batch_old/lms_batch_old.json -msgctxt "LMS Batch Old" -msgid "Description" -msgstr "" - -#. Label of a Text Editor field in DocType 'LMS Course' +#. Label of the disable_self_learning (Check) field in DocType 'LMS Course' #: lms/doctype/lms_course/lms_course.json -msgctxt "LMS Course" -msgid "Description" -msgstr "" - -#. Label of a Small Text field in DocType 'LMS Exercise' -#: lms/doctype/lms_exercise/lms_exercise.json -msgctxt "LMS Exercise" -msgid "Description" -msgstr "" - -#. Label of a Text field in DocType 'LMS Live Class' -#: lms/doctype/lms_live_class/lms_live_class.json -msgctxt "LMS Live Class" -msgid "Description" -msgstr "" - -#. Label of a Small Text field in DocType 'Work Experience' -#: lms/doctype/work_experience/work_experience.json -msgctxt "Work Experience" -msgid "Description" -msgstr "" - -#: public/frontend/assets/BatchCreation-9JuqnhbY.js:1 -#: public/frontend/assets/CreateCourse-2snz_azq.js:1 -#: public/frontend/assets/Discussions-BUeR4n3G.js:1 -msgid "Details" -msgstr "" - -#: public/frontend/assets/CreateCourse-2snz_azq.js:1 -msgid "Disable Self Enrollment" -msgstr "" - -#. Label of a Check field in DocType 'LMS Course' -#: lms/doctype/lms_course/lms_course.json -msgctxt "LMS Course" msgid "Disable Self Learning" msgstr "" -#. Label of a Check field in DocType 'Job Opportunity' +#. Label of the disabled (Check) field in DocType 'Job Opportunity' #: job/doctype/job_opportunity/job_opportunity.json -msgctxt "Job Opportunity" msgid "Disabled" msgstr "" -#: lms/widgets/NoPreviewModal.html:25 -#: public/frontend/assets/Discussions-BUeR4n3G.js:1 templates/reviews.html:159 +#: lms/widgets/NoPreviewModal.html:25 templates/reviews.html:159 msgid "Discard" msgstr "" -#: public/frontend/assets/Batch-BYfbr7eo.js:1 -msgid "Discussions" -msgstr "" - -#. Label of a Check field in DocType 'LMS Settings' +#. Label of the show_discussions (Check) field in DocType 'LMS Settings' #: lms/doctype/lms_settings/lms_settings.json -msgctxt "LMS Settings" msgid "Discussions" msgstr "" -#: lms/doctype/course_lesson/course_lesson.js:32 -msgid "Document" -msgstr "" - #. Option for the 'File Type' (Select) field in DocType 'Course Lesson' -#: lms/doctype/course_lesson/course_lesson.json -msgctxt "Course Lesson" -msgid "Document" -msgstr "" - #. Option for the 'Type' (Select) field in DocType 'LMS Assignment' +#. Option for the 'Type' (Select) field in DocType 'LMS Assignment Submission' +#: lms/doctype/course_lesson/course_lesson.js:32 +#: lms/doctype/course_lesson/course_lesson.json #: lms/doctype/lms_assignment/lms_assignment.json -msgctxt "LMS Assignment" +#: lms/doctype/lms_assignment_submission/lms_assignment_submission.json msgid "Document" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'LMS Assignment Submission' -#: lms/doctype/lms_assignment_submission/lms_assignment_submission.json -msgctxt "LMS Assignment Submission" -msgid "Document" +#. Label of the dream_companies (Data) field in DocType 'User' +#: fixtures/custom_field.json +msgid "Dream Companies" msgstr "" #: lms/doctype/lms_question/lms_question.py:31 msgid "Duplicate options found for this question." msgstr "" -#: public/frontend/assets/Batch-BYfbr7eo.js:1 -msgid "Duration" -msgstr "" - -#. Label of a Data field in DocType 'Cohort' +#. 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' #: lms/doctype/cohort/cohort.json -msgctxt "Cohort" -msgid "Duration" -msgstr "" - -#. Label of a Data field in DocType 'LMS Batch Timetable' #: lms/doctype/lms_batch_timetable/lms_batch_timetable.json -msgctxt "LMS Batch Timetable" -msgid "Duration" -msgstr "" - -#. Label of a Int field in DocType 'LMS Live Class' #: lms/doctype/lms_live_class/lms_live_class.json -msgctxt "LMS Live Class" msgid "Duration" msgstr "" -#. Label of a Select field in DocType 'LMS Course' -#: lms/doctype/lms_course/lms_course.json -msgctxt "LMS Course" -msgid "Duration for Attempts" -msgstr "" - -#: public/frontend/assets/Batch-BYfbr7eo.js:1 -msgid "Duration of the live class in minutes" -msgstr "" - -#. Label of a Link field in DocType 'Cohort Join Request' +#. Label of the email (Link) field in DocType 'Cohort Join Request' #: lms/doctype/cohort_join_request/cohort_join_request.json -msgctxt "Cohort Join Request" msgid "E-Mail" msgstr "" -#. Label of a Link field in DocType 'Cohort Mentor' +#. Label of the email (Link) field in DocType 'Cohort Mentor' #: lms/doctype/cohort_mentor/cohort_mentor.json -msgctxt "Cohort Mentor" msgid "E-mail" msgstr "" -#: public/frontend/assets/Lesson-59XvRJIg.js:18 -#: public/frontend/assets/Profile-CcZj7_FE.js:1 -msgid "Edit" -msgstr "" - -#: public/frontend/assets/CourseOutline-BVkxGD_M.js:1 -msgid "Edit Chapter" -msgstr "" - -#: public/frontend/assets/Profile-CcZj7_FE.js:1 -msgid "Edit Profile" +#. Label of the education (Table) field in DocType 'User' +#: fixtures/custom_field.json +msgid "Education" msgstr "" #. Name of a DocType @@ -1786,41 +1149,42 @@ msgstr "" msgid "Education Detail" msgstr "" +#. Label of the education_details (Section Break) field in DocType 'User' +#: fixtures/custom_field.json +msgid "Education Details" +msgstr "" + #: templates/signup-form.html:9 msgid "Email" msgstr "" -#. Label of a Check field in DocType 'LMS Course Interest' +#. Label of the email_sent (Check) field in DocType 'LMS Course Interest' #: lms/doctype/lms_course_interest/lms_course_interest.json -msgctxt "LMS Course Interest" msgid "Email Sent" msgstr "" -#. Label of a Tab Break field in DocType 'LMS Settings' +#. Label of the email_templates_tab (Tab Break) field in DocType 'LMS Settings' #: lms/doctype/lms_settings/lms_settings.json -msgctxt "LMS Settings" msgid "Email Templates" msgstr "" -#. Label of a Check field in DocType 'LMS Settings' +#. Label of the show_emails (Check) field in DocType 'LMS Settings' #: lms/doctype/lms_settings/lms_settings.json -msgctxt "LMS Settings" msgid "Emails" msgstr "" -#: templates/signup-form.html:24 +#. Option for the 'User Category' (Select) field in DocType 'User' +#: fixtures/custom_field.json templates/signup-form.html:24 msgid "Employee" msgstr "" -#. Label of a Check field in DocType 'Zoom Settings' +#. Label of the enable (Check) field in DocType 'Zoom Settings' #: lms/doctype/zoom_settings/zoom_settings.json -msgctxt "Zoom Settings" msgid "Enable" msgstr "" -#. Label of a Check field in DocType 'LMS Course' +#. Label of the enable_certification (Check) field in DocType 'LMS Course' #: lms/doctype/lms_course/lms_course.json -msgctxt "LMS Course" msgid "Enable Certification" msgstr "" @@ -1828,92 +1192,46 @@ msgstr "" msgid "Enable Google API in Google Settings to send calendar invites for evaluations." msgstr "" -#. Label of a Check field in DocType 'LMS Badge' +#. Label of the enabled (Check) field in DocType 'LMS Badge' #: lms/doctype/lms_badge/lms_badge.json -msgctxt "LMS Badge" msgid "Enabled" msgstr "" -#: public/frontend/assets/BatchCreation-9JuqnhbY.js:1 +#. Label of the end_date (Date) field in DocType 'Cohort' +#. Label of the end_date (Date) field in DocType 'LMS Batch' +#: lms/doctype/cohort/cohort.json lms/doctype/lms_batch/lms_batch.json #: public/js/common_functions.js:282 msgid "End Date" msgstr "" -#. Label of a Date field in DocType 'Cohort' -#: lms/doctype/cohort/cohort.json -msgctxt "Cohort" -msgid "End Date" -msgstr "" - -#. Label of a Date field in DocType 'LMS Batch' -#: lms/doctype/lms_batch/lms_batch.json -msgctxt "LMS Batch" -msgid "End Date" -msgstr "" - -#. Label of a Date field in DocType 'Education Detail' +#. Label of the end_date (Date) field in DocType 'Education Detail' #: lms/doctype/education_detail/education_detail.json -msgctxt "Education Detail" msgid "End Date (or expected)" msgstr "" -#: public/frontend/assets/BatchCreation-9JuqnhbY.js:1 -#: public/frontend/assets/ProfileEvaluator-bug1MVAq.js:1 +#. 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' +#: lms/doctype/evaluator_schedule/evaluator_schedule.json +#: lms/doctype/lms_batch/lms_batch.json +#: lms/doctype/lms_batch_old/lms_batch_old.json +#: lms/doctype/lms_batch_timetable/lms_batch_timetable.json +#: lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json +#: lms/doctype/lms_certificate_request/lms_certificate_request.json +#: lms/doctype/scheduled_flow/scheduled_flow.json #: public/js/common_functions.js:299 msgid "End Time" msgstr "" -#. Label of a Time field in DocType 'Evaluator Schedule' -#: lms/doctype/evaluator_schedule/evaluator_schedule.json -msgctxt "Evaluator Schedule" -msgid "End Time" -msgstr "" - -#. Label of a Time field in DocType 'LMS Batch' -#: lms/doctype/lms_batch/lms_batch.json -msgctxt "LMS Batch" -msgid "End Time" -msgstr "" - -#. Label of a Time field in DocType 'LMS Batch Old' -#: lms/doctype/lms_batch_old/lms_batch_old.json -msgctxt "LMS Batch Old" -msgid "End Time" -msgstr "" - -#. Label of a Time field in DocType 'LMS Batch Timetable' -#: lms/doctype/lms_batch_timetable/lms_batch_timetable.json -msgctxt "LMS Batch Timetable" -msgid "End Time" -msgstr "" - -#. Label of a Time field in DocType 'LMS Certificate Evaluation' -#: lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json -msgctxt "LMS Certificate Evaluation" -msgid "End Time" -msgstr "" - -#. Label of a Time field in DocType 'LMS Certificate Request' -#: lms/doctype/lms_certificate_request/lms_certificate_request.json -msgctxt "LMS Certificate Request" -msgid "End Time" -msgstr "" - -#. Label of a Time field in DocType 'Scheduled Flow' -#: lms/doctype/scheduled_flow/scheduled_flow.json -msgctxt "Scheduled Flow" -msgid "End Time" -msgstr "" - -#: public/frontend/assets/CourseCard-BK77fFq6.js:1 -msgid "Enrolled Students" -msgstr "" - #: public/js/common_functions.js:96 msgid "Enrolled successfully" msgstr "" -#: lms/doctype/lms_batch/lms_batch.py:87 +#: lms/doctype/lms_batch/lms_batch.py:92 msgid "Enrollment Confirmation for the Next Training Batch" msgstr "" @@ -1923,13 +1241,8 @@ msgid "Enrollment Count" msgstr "" #. Label of a chart in the LMS Workspace -#: lms/workspace/lms/lms.json public/frontend/assets/Statistics-Df9qvpz5.js:18 -msgid "Enrollments" -msgstr "" - #. Label of a shortcut in the LMS Workspace #: lms/workspace/lms/lms.json -msgctxt "LMS Enrollment" msgid "Enrollments" msgstr "" @@ -1937,92 +1250,49 @@ msgstr "" msgid "Enter Client Id and Client Secret in Google Settings to send calendar invites for evaluations." msgstr "" -#: public/frontend/assets/AssignmentSubmission-D1b-IhRa.js:1 -msgid "Enter a URL" -msgstr "" - #: templates/quiz/quiz.html:53 msgid "Enter the correct answer" msgstr "" -#: lms/utils.py:1141 +#: lms/utils.py:1088 msgid "Error during payment: {0} Please contact the Administrator. Amount {1} Currency {2} Formatted {3}" msgstr "" #. Label of a Link in the LMS Workspace #. Label of a shortcut in the LMS Workspace #: lms/workspace/lms/lms.json -msgctxt "LMS Certificate Evaluation" msgid "Evaluation" msgstr "" -#. Option for the 'Grant Certificate After' (Select) field in DocType 'LMS -#. Course' -#: lms/doctype/lms_course/lms_course.json -msgctxt "LMS Course" -msgid "Evaluation" -msgstr "" - -#. Label of a Section Break field in DocType 'LMS Certificate Evaluation' +#. Label of the section_break_6 (Section Break) field in DocType 'LMS +#. Certificate Evaluation' #: lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json -msgctxt "LMS Certificate Evaluation" msgid "Evaluation Details" msgstr "" -#: public/frontend/assets/BatchCreation-9JuqnhbY.js:1 -#: public/js/common_functions.js:333 -msgid "Evaluation End Date" -msgstr "" - -#. Label of a Date field in DocType 'LMS Batch' -#: lms/doctype/lms_batch/lms_batch.json -msgctxt "LMS Batch" +#. Label of the evaluation_end_date (Date) field in DocType 'LMS Batch' +#: lms/doctype/lms_batch/lms_batch.json public/js/common_functions.js:333 msgid "Evaluation End Date" msgstr "" #. Label of a Link in the LMS Workspace #: lms/workspace/lms/lms.json -msgctxt "LMS Certificate Request" msgid "Evaluation Request" msgstr "" -#: lms/doctype/lms_batch/lms_batch.py:84 +#: lms/doctype/lms_batch/lms_batch.py:89 msgid "Evaluation end date cannot be less than the batch end date." msgstr "" -#: public/frontend/assets/Batch-BYfbr7eo.js:1 -#: public/frontend/assets/ProfileRoles-CVq7nQGs.js:1 -#: templates/upcoming_evals.html:33 -msgid "Evaluator" -msgstr "" - -#. Label of a Link field in DocType 'Batch Course' +#. 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 Request' #: lms/doctype/batch_course/batch_course.json -msgctxt "Batch Course" -msgid "Evaluator" -msgstr "" - -#. Label of a Link field in DocType 'Course Evaluator' #: lms/doctype/course_evaluator/course_evaluator.json -msgctxt "Course Evaluator" -msgid "Evaluator" -msgstr "" - -#. Label of a Link field in DocType 'LMS Assignment Submission' #: lms/doctype/lms_assignment_submission/lms_assignment_submission.json -msgctxt "LMS Assignment Submission" -msgid "Evaluator" -msgstr "" - -#. Label of a Link field in DocType 'LMS Certificate Request' #: lms/doctype/lms_certificate_request/lms_certificate_request.json -msgctxt "LMS Certificate Request" -msgid "Evaluator" -msgstr "" - -#. Label of a Link field in DocType 'LMS Course' -#: lms/doctype/lms_course/lms_course.json -msgctxt "LMS Course" +#: templates/upcoming_evals.html:33 msgid "Evaluator" msgstr "" @@ -2031,25 +1301,15 @@ msgstr "" msgid "Evaluator Schedule" msgstr "" -#: lms/doctype/lms_certificate_request/lms_certificate_request.py:44 -msgid "Evaluator is unavailable from {0} to {1}. Please select a date after {1}" -msgstr "" - -#. Label of a Select field in DocType 'LMS Badge' +#. Label of the event (Select) field in DocType 'LMS Badge' #: lms/doctype/lms_badge/lms_badge.json -msgctxt "LMS Badge" msgid "Event" msgstr "" -#. Label of a Link field in DocType 'Exercise Latest Submission' +#. Label of the exercise (Link) field in DocType 'Exercise Latest Submission' +#. Label of the exercise (Link) field in DocType 'Exercise Submission' #: lms/doctype/exercise_latest_submission/exercise_latest_submission.json -msgctxt "Exercise Latest Submission" -msgid "Exercise" -msgstr "" - -#. Label of a Link field in DocType 'Exercise Submission' #: lms/doctype/exercise_submission/exercise_submission.json -msgctxt "Exercise Submission" msgid "Exercise" msgstr "" @@ -2067,39 +1327,33 @@ msgstr "" msgid "Exercise Submission" msgstr "" -#. Label of a Data field in DocType 'Exercise Latest Submission' +#. Label of the exercise_title (Data) field in DocType 'Exercise Latest +#. Submission' +#. Label of the exercise_title (Data) field in DocType 'Exercise Submission' #: lms/doctype/exercise_latest_submission/exercise_latest_submission.json -msgctxt "Exercise Latest Submission" -msgid "Exercise Title" -msgstr "" - -#. Label of a Data field in DocType 'Exercise Submission' #: lms/doctype/exercise_submission/exercise_submission.json -msgctxt "Exercise Submission" msgid "Exercise Title" msgstr "" -#. Label of a Data field in DocType 'Certification' +#. Label of the expiration_date (Data) field in DocType 'Certification' #: lms/doctype/certification/certification.json -msgctxt "Certification" msgid "Expiration Date" msgstr "" -#. Label of a Date field in DocType 'LMS Certificate' +#. Label of the expiry_date (Date) field in DocType 'LMS Certificate' #: lms/doctype/lms_certificate/lms_certificate.json -msgctxt "LMS Certificate" msgid "Expiry Date" msgstr "" -#. Label of a Small Text field in DocType 'LMS Question' +#. 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' #: lms/doctype/lms_question/lms_question.json -msgctxt "LMS Question" msgid "Explanation" msgstr "" -#. Label of a Small Text field in DocType 'LMS Question' +#. Label of the explanation_2 (Small Text) field in DocType 'LMS Question' #: lms/doctype/lms_question/lms_question.json -msgctxt "LMS Question" msgid "Explanation " msgstr "" @@ -2110,42 +1364,25 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'LMS Assignment #. Submission' -#: lms/doctype/lms_assignment_submission/lms_assignment_submission.json -msgctxt "LMS Assignment Submission" -msgid "Fail" -msgstr "" - #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' +#: lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json -msgctxt "LMS Certificate Evaluation" msgid "Fail" msgstr "" -#: public/frontend/assets/CourseCard-BK77fFq6.js:1 -#: public/frontend/assets/CreateCourse-2snz_azq.js:1 -msgid "Featured" -msgstr "" - -#. Label of a Check field in DocType 'LMS Course' +#. Label of the featured (Check) field in DocType 'LMS Course' #: lms/doctype/lms_course/lms_course.json -msgctxt "LMS Course" msgid "Featured" msgstr "" -#: public/frontend/assets/AssignmentSubmission-D1b-IhRa.js:1 -msgid "Feel free to make edits to your submission if needed." -msgstr "" - -#. Label of a Select field in DocType 'LMS Badge' +#. Label of the field_to_check (Select) field in DocType 'LMS Badge' #: lms/doctype/lms_badge/lms_badge.json -msgctxt "LMS Badge" msgid "Field To Check" msgstr "" -#. Label of a Data field in DocType 'Education Detail' +#. Label of the major (Data) field in DocType 'Education Detail' #: lms/doctype/education_detail/education_detail.json -msgctxt "Education Detail" msgid "Field of Major/Study" msgstr "" @@ -2153,14 +1390,24 @@ msgstr "" msgid "File DocType" msgstr "" -#. Label of a Select field in DocType 'Course Lesson' +#. Label of the file_type (Select) field in DocType 'Course Lesson' #: lms/doctype/course_lesson/course_lesson.json -msgctxt "Course Lesson" msgid "File Type" msgstr "" -#: public/frontend/assets/Profile-CcZj7_FE.js:1 -msgid "First Name" +#. Option for the 'Time Preference' (Select) field in DocType 'User' +#: fixtures/custom_field.json +msgid "Fixed 9-5" +msgstr "" + +#. Option for the 'Time Preference' (Select) field in DocType 'User' +#: fixtures/custom_field.json +msgid "Flexible Time" +msgstr "" + +#. Option for the 'Attire Preference' (Select) field in DocType 'User' +#: fixtures/custom_field.json +msgid "Formal Wear" msgstr "" #: lms/widgets/CourseCard.html:114 @@ -2169,84 +1416,56 @@ msgstr "" #. Option for the 'Type' (Select) field in DocType 'Job Opportunity' #: job/doctype/job_opportunity/job_opportunity.json -msgctxt "Job Opportunity" msgid "Freelance" msgstr "" -#: templates/signup-form.html:26 +#. Option for the 'User Category' (Select) field in DocType 'User' +#: fixtures/custom_field.json templates/signup-form.html:26 msgid "Freelancer/Just looking" msgstr "" #. Option for the 'Grade Type' (Select) field in DocType 'Education Detail' #: lms/doctype/education_detail/education_detail.json -msgctxt "Education Detail" msgid "French (e.g. Distinction)" msgstr "" #. Option for the 'Day' (Select) field in DocType 'Evaluator Schedule' -#: lms/doctype/evaluator_schedule/evaluator_schedule.json -msgctxt "Evaluator Schedule" -msgid "Friday" -msgstr "" - #. Option for the 'Day' (Select) field in DocType 'LMS Certificate Request' +#: lms/doctype/evaluator_schedule/evaluator_schedule.json #: lms/doctype/lms_certificate_request/lms_certificate_request.json -msgctxt "LMS Certificate Request" msgid "Friday" msgstr "" -#: public/frontend/assets/ProfileEvaluator-bug1MVAq.js:1 -msgid "From" -msgstr "" - -#. Label of a Date field in DocType 'Course Evaluator' +#. Label of the unavailable_from (Date) field in DocType 'Course Evaluator' #: lms/doctype/course_evaluator/course_evaluator.json -msgctxt "Course Evaluator" msgid "From" msgstr "" -#. Label of a Date field in DocType 'Work Experience' +#. Label of the from_date (Date) field in DocType 'Work Experience' #: lms/doctype/work_experience/work_experience.json -msgctxt "Work Experience" msgid "From Date" msgstr "" -#: templates/signup-form.html:4 -msgid "Full Name" -msgstr "" - -#. Label of a Data field in DocType 'Invite Request' -#: lms/doctype/invite_request/invite_request.json -msgctxt "Invite Request" +#. Label of the full_name (Data) field in DocType 'Invite Request' +#: lms/doctype/invite_request/invite_request.json templates/signup-form.html:4 msgid "Full Name" msgstr "" #. Option for the 'Type' (Select) field in DocType 'Job Opportunity' #: job/doctype/job_opportunity/job_opportunity.json -msgctxt "Job Opportunity" 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/doctype/function/function.json -msgid "Function" -msgstr "" - -#. Label of a Data field in DocType 'Function' -#: lms/doctype/function/function.json -msgctxt "Function" -msgid "Function" -msgstr "" - -#. Label of a Link field in DocType 'Preferred Function' #: lms/doctype/preferred_function/preferred_function.json -msgctxt "Preferred Function" msgid "Function" msgstr "" -#. Label of a Data field in DocType 'LMS Payment' +#. Label of the gstin (Data) field in DocType 'LMS Payment' #: lms/doctype/lms_payment/lms_payment.json -msgctxt "LMS Payment" msgid "GSTIN" msgstr "" @@ -2258,39 +1477,34 @@ msgstr "" msgid "Get Started" msgstr "" -#. Label of a Data field in DocType 'LMS Certificate Request' +#. Label of the github (Data) field in DocType 'User' +#: fixtures/custom_field.json +msgid "Github ID" +msgstr "" + +#. Label of the google_meet_link (Data) field in DocType 'LMS Certificate +#. Request' #: lms/doctype/lms_certificate_request/lms_certificate_request.json -msgctxt "LMS Certificate Request" msgid "Google Meet Link" msgstr "" -#. Label of a Data field in DocType 'Education Detail' +#. Label of the grade (Data) field in DocType 'Education Detail' #: lms/doctype/education_detail/education_detail.json -msgctxt "Education Detail" msgid "Grade" msgstr "" -#. Label of a Check field in DocType 'LMS Assignment' +#. Label of the grade_assignment (Check) field in DocType 'LMS Assignment' #: lms/doctype/lms_assignment/lms_assignment.json -msgctxt "LMS Assignment" msgid "Grade Assignment" msgstr "" -#. Label of a Select field in DocType 'Education Detail' +#. Label of the grade_type (Select) field in DocType 'Education Detail' #: lms/doctype/education_detail/education_detail.json -msgctxt "Education Detail" msgid "Grade Type" msgstr "" -#. Label of a Select field in DocType 'LMS Course' -#: lms/doctype/lms_course/lms_course.json -msgctxt "LMS Course" -msgid "Grant Certificate After" -msgstr "" - -#. Label of a Check field in DocType 'LMS Badge' +#. Label of the grant_only_once (Check) field in DocType 'LMS Badge' #: lms/doctype/lms_badge/lms_badge.json -msgctxt "LMS Badge" msgid "Grant only once" msgstr "" @@ -2298,7 +1512,8 @@ msgstr "" msgid "Have an account? Login" msgstr "" -#: public/frontend/assets/Profile-CcZj7_FE.js:1 +#. Label of the headline (Data) field in DocType 'User' +#: fixtures/custom_field.json msgid "Headline" msgstr "" @@ -2306,9 +1521,8 @@ msgstr "" msgid "Hello" msgstr "" -#. Label of a Section Break field in DocType 'Course Lesson' +#. Label of the help_section (Section Break) field in DocType 'Course Lesson' #: lms/doctype/course_lesson/course_lesson.json -msgctxt "Course Lesson" msgid "Help" msgstr "" @@ -2324,7 +1538,7 @@ msgstr "" msgid "Here are a few courses we recommend for you to get started with {0}" msgstr "" -#: lms/notification/certificate_request_creation/certificate_request_creation.html:5 +#: lms/notification/certificate_request_creation/certificate_request_creation.html:6 msgid "Hey {0}" msgstr "" @@ -2340,21 +1554,23 @@ msgstr "" msgid "Hi," msgstr "" -#. Label of a Small Text field in DocType 'LMS Exercise' +#. Label of the hide_private (Check) field in DocType 'User' +#: fixtures/custom_field.json +msgid "Hide my Private Information from others" +msgstr "" + +#. Label of the hints (Small Text) field in DocType 'LMS Exercise' #: lms/doctype/lms_exercise/lms_exercise.json -msgctxt "LMS Exercise" msgid "Hints" msgstr "" -#. Label of a Link field in DocType 'LMS Live Class' +#. Label of the host (Link) field in DocType 'LMS Live Class' #: lms/doctype/lms_live_class/lms_live_class.json -msgctxt "LMS Live Class" msgid "Host" msgstr "" -#. Label of a Check field in DocType 'Work Experience' +#. Label of the current (Check) field in DocType 'Work Experience' #: lms/doctype/work_experience/work_experience.json -msgctxt "Work Experience" msgid "I am currently working here" msgstr "" @@ -2362,21 +1578,17 @@ msgstr "" msgid "I am delighted to inform you that you have successfully earned your certification for the {0} course. Congratulations!" msgstr "" -#: public/frontend/assets/ProfileEvaluator-bug1MVAq.js:1 -msgid "I am unavailable" +#. Label of the looking_for_job (Check) field in DocType 'User' +#: fixtures/custom_field.json +msgid "I am looking for a job" msgstr "" #: templates/signup-form.html:42 msgid "I have read and agree to your {0}" msgstr "" -#: public/frontend/assets/index-D1f05dS8.js:7369 -msgid "Icon" -msgstr "" - -#. Label of a Data field in DocType 'LMS Sidebar Item' +#. Label of the icon (Data) field in DocType 'LMS Sidebar Item' #: lms/doctype/lms_sidebar_item/lms_sidebar_item.json -msgctxt "LMS Sidebar Item" msgid "Icon" msgstr "" @@ -2384,218 +1596,119 @@ msgstr "" msgid "If you are not any more interested to mentor the course" msgstr "" -#: templates/emails/batch_confirmation.html:32 +#: templates/emails/batch_confirmation.html:33 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/doctype/lms_batch/lms_batch.json lms/doctype/lms_course/lms_course.json #: public/js/common_functions.js:400 msgid "If you set an amount here, then the USD equivalent setting will not get applied." msgstr "" -#. Description of the 'Amount (USD)' (Currency) field in DocType 'LMS Batch' -#: lms/doctype/lms_batch/lms_batch.json -msgctxt "LMS Batch" -msgid "If you set an amount here, then the USD equivalent setting will not get applied." -msgstr "" - -#. Description of the 'Amount (USD)' (Currency) field in DocType 'LMS Course' -#: lms/doctype/lms_course/lms_course.json -msgctxt "LMS Course" -msgid "If you set an amount here, then the USD equivalent setting will not get applied." -msgstr "" - -#: lms/doctype/course_lesson/course_lesson.js:32 -msgid "Image" -msgstr "" - #. Option for the 'File Type' (Select) field in DocType 'Course Lesson' -#: lms/doctype/course_lesson/course_lesson.json -msgctxt "Course Lesson" -msgid "Image" -msgstr "" - -#. Label of a Code field in DocType 'Exercise Latest Submission' -#: lms/doctype/exercise_latest_submission/exercise_latest_submission.json -msgctxt "Exercise Latest Submission" -msgid "Image" -msgstr "" - -#. Label of a Code field in DocType 'Exercise Submission' -#: lms/doctype/exercise_submission/exercise_submission.json -msgctxt "Exercise Submission" -msgid "Image" -msgstr "" - +#. 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' -#: lms/doctype/lms_assignment/lms_assignment.json -msgctxt "LMS Assignment" -msgid "Image" -msgstr "" - #. 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/doctype/course_lesson/course_lesson.js:32 +#: lms/doctype/course_lesson/course_lesson.json +#: lms/doctype/exercise_latest_submission/exercise_latest_submission.json +#: lms/doctype/exercise_submission/exercise_submission.json +#: lms/doctype/lms_assignment/lms_assignment.json #: lms/doctype/lms_assignment_submission/lms_assignment_submission.json -msgctxt "LMS Assignment Submission" -msgid "Image" -msgstr "" - -#. Label of a Attach Image field in DocType 'LMS Badge' #: lms/doctype/lms_badge/lms_badge.json -msgctxt "LMS Badge" -msgid "Image" -msgstr "" - -#. Label of a Code field in DocType 'LMS Exercise' #: lms/doctype/lms_exercise/lms_exercise.json -msgctxt "LMS Exercise" msgid "Image" msgstr "" -#: public/frontend/assets/Profile-CcZj7_FE.js:1 -msgid "Image search powered by" -msgstr "" - -#: templates/emails/batch_confirmation.html:11 -msgid "Important Details:" -msgstr "" - #. Option for the 'Stage' (Select) field in DocType 'LMS Batch Old' -#: lms/doctype/lms_batch_old/lms_batch_old.json -msgctxt "LMS Batch Old" -msgid "In Progress" -msgstr "" - #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' -#: lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json -msgctxt "LMS Certificate Evaluation" -msgid "In Progress" -msgstr "" - #. Option for the 'Status' (Select) field in DocType 'LMS Course' +#: lms/doctype/lms_batch_old/lms_batch_old.json +#: lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/doctype/lms_course/lms_course.json -msgctxt "LMS Course" msgid "In Progress" msgstr "" #. Option for the 'Status' (Select) field in DocType 'LMS Batch Old' #: lms/doctype/lms_batch_old/lms_batch_old.json -msgctxt "LMS Batch Old" msgid "Inactive" msgstr "" -#. Label of a Check field in DocType 'Course Lesson' +#. Label of the include_in_preview (Check) field in DocType 'Course Lesson' #: lms/doctype/course_lesson/course_lesson.json -msgctxt "Course Lesson" msgid "Include In Preview" msgstr "" #. Option for the 'Status' (Select) field in DocType 'LMS Course Progress' #: lms/doctype/lms_course_progress/lms_course_progress.json -msgctxt "LMS Course Progress" msgid "Incomplete" msgstr "" -#: public/frontend/assets/index-D1f05dS8.js:7351 -msgid "Incorrect" -msgstr "" - #. Option for the 'Status' (Select) field in DocType 'Exercise Latest #. Submission' -#: lms/doctype/exercise_latest_submission/exercise_latest_submission.json -msgctxt "Exercise Latest Submission" -msgid "Incorrect" -msgstr "" - #. Option for the 'Status' (Select) field in DocType 'Exercise Submission' +#: lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/doctype/exercise_submission/exercise_submission.json -msgctxt "Exercise Submission" msgid "Incorrect" msgstr "" -#. Label of a Int field in DocType 'LMS Exercise' +#. Label of the index_ (Int) field in DocType 'LMS Exercise' #: lms/doctype/lms_exercise/lms_exercise.json -msgctxt "LMS Exercise" msgid "Index" msgstr "" -#. Label of a Data field in DocType 'Course Lesson' +#. Label of the index_label (Data) field in DocType 'Course Lesson' +#. Label of the index_label (Data) field in DocType 'LMS Exercise' #: lms/doctype/course_lesson/course_lesson.json -msgctxt "Course Lesson" +#: lms/doctype/lms_exercise/lms_exercise.json msgid "Index Label" msgstr "" -#. Label of a Data field in DocType 'LMS Exercise' -#: lms/doctype/lms_exercise/lms_exercise.json -msgctxt "LMS Exercise" -msgid "Index Label" +#. Option for the 'Collaboration Preference' (Select) field in DocType 'User' +#: 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/doctype/industry/industry.json -msgid "Industry" -msgstr "" - -#. Label of a Data field in DocType 'Industry' -#: lms/doctype/industry/industry.json -msgctxt "Industry" -msgid "Industry" -msgstr "" - -#. Label of a Link field in DocType 'Preferred Industry' #: lms/doctype/preferred_industry/preferred_industry.json -msgctxt "Preferred Industry" msgid "Industry" msgstr "" -#. Label of a Data field in DocType 'Education Detail' +#. Label of the institution_name (Data) field in DocType 'Education Detail' #: lms/doctype/education_detail/education_detail.json -msgctxt "Education Detail" msgid "Institution Name" msgstr "" -#. Label of a Link field in DocType 'Cohort' +#. Label of the instructor (Link) field in DocType 'Cohort' +#. Label of the instructor (Link) field in DocType 'Course Instructor' #: lms/doctype/cohort/cohort.json -msgctxt "Cohort" -msgid "Instructor" -msgstr "" - -#. Label of a Link field in DocType 'Course Instructor' #: lms/doctype/course_instructor/course_instructor.json -msgctxt "Course Instructor" msgid "Instructor" msgstr "" -#. Label of a Text field in DocType 'Course Lesson' +#. Label of the instructor_content (Text) field in DocType 'Course Lesson' #: lms/doctype/course_lesson/course_lesson.json -msgctxt "Course Lesson" msgid "Instructor Content" msgstr "" -#: public/frontend/assets/CreateLesson-7ZGJlo2v.js:2 -#: public/frontend/assets/Lesson-59XvRJIg.js:18 -msgid "Instructor Notes" -msgstr "" - -#. Label of a Markdown Editor field in DocType 'Course Lesson' +#. Label of the instructor_notes (Markdown Editor) field in DocType 'Course +#. Lesson' #: lms/doctype/course_lesson/course_lesson.json -msgctxt "Course Lesson" msgid "Instructor Notes" msgstr "" -#: public/frontend/assets/BatchCreation-9JuqnhbY.js:1 -#: public/frontend/assets/CreateCourse-2snz_azq.js:1 -msgid "Instructors" -msgstr "" - -#. Label of a Table MultiSelect field in DocType 'LMS Batch' -#: lms/doctype/lms_batch/lms_batch.json -msgctxt "LMS Batch" -msgid "Instructors" -msgstr "" - -#. Label of a Table MultiSelect field in DocType 'LMS Course' -#: lms/doctype/lms_course/lms_course.json -msgctxt "LMS Course" +#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Batch' +#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Course' +#: lms/doctype/lms_batch/lms_batch.json lms/doctype/lms_course/lms_course.json msgid "Instructors" msgstr "" @@ -2605,13 +1718,11 @@ msgstr "" #. Label of a Link in the LMS Workspace #: lms/workspace/lms/lms.json -msgctxt "LMS Course Interest" msgid "Interest" msgstr "" #. Group in LMS Course's connections #: lms/doctype/lms_course/lms_course.json -msgctxt "LMS Course" msgid "Interests" msgstr "" @@ -2627,31 +1738,24 @@ msgstr "" msgid "Invalid Start or End Time." msgstr "" -#: lms/utils.py:985 +#: lms/utils.py:932 msgid "Invalid document provided." msgstr "" -#. Label of a Data field in DocType 'Cohort Subgroup' +#. Label of the invite_code (Data) field in DocType 'Cohort Subgroup' +#. Label of the invite_code (Data) field in DocType 'Invite Request' #: lms/doctype/cohort_subgroup/cohort_subgroup.json -msgctxt "Cohort Subgroup" +#: lms/doctype/invite_request/invite_request.json msgid "Invite Code" msgstr "" -#. Label of a Data field in DocType 'Invite Request' +#. Label of the invite_email (Data) field in DocType 'Invite Request' #: lms/doctype/invite_request/invite_request.json -msgctxt "Invite Request" -msgid "Invite Code" -msgstr "" - -#. Label of a Data field in DocType 'Invite Request' -#: lms/doctype/invite_request/invite_request.json -msgctxt "Invite Request" msgid "Invite Email" msgstr "" #. Option for the 'Membership' (Select) field in DocType 'LMS Batch Old' #: lms/doctype/lms_batch_old/lms_batch_old.json -msgctxt "LMS Batch Old" msgid "Invite Only" msgstr "" @@ -2660,56 +1764,42 @@ msgstr "" msgid "Invite Request" msgstr "" -#. Label of a Check field in DocType 'LMS Option' +#. 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/doctype/lms_option/lms_option.json -msgctxt "LMS Option" -msgid "Is Correct" -msgstr "" - -#. Label of a Check field in DocType 'LMS Question' #: lms/doctype/lms_question/lms_question.json -msgctxt "LMS Question" -msgid "Is Correct" -msgstr "" - -#. Label of a Check field in DocType 'LMS Quiz Result' #: lms/doctype/lms_quiz_result/lms_quiz_result.json -msgctxt "LMS Quiz Result" msgid "Is Correct" msgstr "" -#. Label of a Check field in DocType 'LMS Settings' +#. Label of the is_onboarding_complete (Check) field in DocType 'LMS Settings' #: lms/doctype/lms_settings/lms_settings.json -msgctxt "LMS Settings" msgid "Is Onboarding Complete" msgstr "" -#. Label of a Date field in DocType 'Certification' +#. Label of the issue_date (Date) field in DocType 'Certification' +#. Label of the issue_date (Date) field in DocType 'LMS Certificate' #: lms/doctype/certification/certification.json -msgctxt "Certification" -msgid "Issue Date" -msgstr "" - -#. Label of a Date field in DocType 'LMS Certificate' #: lms/doctype/lms_certificate/lms_certificate.json -msgctxt "LMS Certificate" msgid "Issue Date" msgstr "" -#. Label of a Date field in DocType 'LMS Badge Assignment' +#. Label of the issued_on (Date) field in DocType 'LMS Badge Assignment' #: lms/doctype/lms_badge_assignment/lms_badge_assignment.json -msgctxt "LMS Badge Assignment" msgid "Issued On" msgstr "" -#: public/frontend/assets/ProfileAbout-M7A4DT21.js:1 #: templates/certificates_section.html:11 msgid "Issued on" msgstr "" -#. Label of a Section Break field in DocType 'LMS Settings' +#. Label of the items_in_sidebar_section (Section Break) field in DocType 'LMS +#. Settings' #: lms/doctype/lms_settings/lms_settings.json -msgctxt "LMS Settings" msgid "Items in Sidebar" msgstr "" @@ -2717,28 +1807,21 @@ msgstr "" msgid "Jane Doe" msgstr "" -#. Label of a Link field in DocType 'LMS Job Application' +#. Label of the job (Link) field in DocType 'LMS Job Application' #: job/doctype/lms_job_application/lms_job_application.json -msgctxt "LMS Job Application" msgid "Job" msgstr "" -#. Label of a Data field in DocType 'Job Settings' +#. Label of the subtitle (Data) field in DocType 'Job Settings' #: job/doctype/job_settings/job_settings.json -msgctxt "Job Settings" msgid "Job Board Subtitle" msgstr "" -#. Label of a Data field in DocType 'Job Settings' +#. Label of the title (Data) field in DocType 'Job Settings' #: job/doctype/job_settings/job_settings.json -msgctxt "Job Settings" msgid "Job Board Title" msgstr "" -#: public/frontend/assets/JobCreation-CU_0h0cz.js:1 -msgid "Job Details" -msgstr "" - #: www/lms.py:109 msgid "Job Openings" msgstr "" @@ -2753,35 +1836,24 @@ msgstr "" msgid "Job Settings" msgstr "" -#. Label of a Data field in DocType 'Job Opportunity' +#. Label of the job_title (Data) field in DocType 'Job Opportunity' +#. Label of the job_title (Data) field in DocType 'LMS Job Application' #: job/doctype/job_opportunity/job_opportunity.json -msgctxt "Job Opportunity" -msgid "Job Title" -msgstr "" - -#. Label of a Data field in DocType 'LMS Job Application' #: job/doctype/lms_job_application/lms_job_application.json -msgctxt "LMS Job Application" msgid "Job Title" msgstr "" -#: public/frontend/assets/Jobs-CBReeD0M.js:1 -msgid "Jobs" -msgstr "" - -#. Label of a Check field in DocType 'LMS Settings' +#. Label of the jobs (Check) field in DocType 'LMS Settings' #: lms/doctype/lms_settings/lms_settings.json -msgctxt "LMS Settings" msgid "Jobs" msgstr "" -#: public/frontend/assets/Batch-BYfbr7eo.js:1 templates/upcoming_evals.html:15 +#: templates/upcoming_evals.html:15 msgid "Join" msgstr "" -#. Label of a Small Text field in DocType 'LMS Live Class' +#. Label of the join_url (Small Text) field in DocType 'LMS Live Class' #: lms/doctype/lms_live_class/lms_live_class.json -msgctxt "LMS Live Class" msgid "Join URL" msgstr "" @@ -2815,21 +1887,11 @@ msgstr "" msgid "LMS Badge Assignment" msgstr "" -#. Linked DocType in LMS Badge's connections -#: lms/doctype/lms_badge/lms_badge.json -msgctxt "LMS Badge" -msgid "LMS Badge Assignment" -msgstr "" - #. Name of a DocType -#: lms/doctype/lms_batch/lms_batch.json -msgid "LMS Batch" -msgstr "" - #. Option for the 'Payment for Document Type' (Select) field in DocType 'LMS #. Payment' +#: lms/doctype/lms_batch/lms_batch.json #: lms/doctype/lms_payment/lms_payment.json -msgctxt "LMS Payment" msgid "LMS Batch" msgstr "" @@ -2838,12 +1900,6 @@ msgstr "" msgid "LMS Batch Old" msgstr "" -#. Linked DocType in LMS Course's connections -#: lms/doctype/lms_course/lms_course.json -msgctxt "LMS Course" -msgid "LMS Batch Old" -msgstr "" - #. Name of a DocType #: lms/doctype/lms_batch_timetable/lms_batch_timetable.json msgid "LMS Batch Timetable" @@ -2870,14 +1926,10 @@ msgid "LMS Certificate Request" msgstr "" #. Name of a DocType -#: lms/doctype/lms_course/lms_course.json -msgid "LMS Course" -msgstr "" - #. Option for the 'Payment for Document Type' (Select) field in DocType 'LMS #. Payment' +#: lms/doctype/lms_course/lms_course.json #: lms/doctype/lms_payment/lms_payment.json -msgctxt "LMS Payment" msgid "LMS Course" msgstr "" @@ -2886,23 +1938,11 @@ msgstr "" msgid "LMS Course Interest" msgstr "" -#. Linked DocType in LMS Course's connections -#: lms/doctype/lms_course/lms_course.json -msgctxt "LMS Course" -msgid "LMS Course Interest" -msgstr "" - #. Name of a DocType #: lms/doctype/lms_course_mentor_mapping/lms_course_mentor_mapping.json msgid "LMS Course Mentor Mapping" msgstr "" -#. Linked DocType in LMS Course's connections -#: lms/doctype/lms_course/lms_course.json -msgctxt "LMS Course" -msgid "LMS Course Mentor Mapping" -msgstr "" - #. Name of a DocType #: lms/doctype/lms_course_progress/lms_course_progress.json msgid "LMS Course Progress" @@ -2918,12 +1958,6 @@ msgstr "" msgid "LMS Enrollment" msgstr "" -#. Linked DocType in LMS Batch Old's connections -#: lms/doctype/lms_batch_old/lms_batch_old.json -msgctxt "LMS Batch Old" -msgid "LMS Enrollment" -msgstr "" - #. Name of a DocType #: lms/doctype/lms_exercise/lms_exercise.json msgid "LMS Exercise" @@ -3027,77 +2061,34 @@ msgstr "" msgid "LMS Timetable Template" msgstr "" -#. Label of a Data field in DocType 'LMS Timetable Legend' +#. Label of the label (Data) field in DocType 'LMS Timetable Legend' #: lms/doctype/lms_timetable_legend/lms_timetable_legend.json -msgctxt "LMS Timetable Legend" msgid "Label" msgstr "" -#: public/frontend/assets/Profile-CcZj7_FE.js:1 -msgid "Last Name" -msgstr "" - -#. Label of a Link field in DocType 'Exercise Latest Submission' +#. Label of the latest_submission (Link) field in DocType 'Exercise Latest +#. Submission' #: lms/doctype/exercise_latest_submission/exercise_latest_submission.json -msgctxt "Exercise Latest Submission" msgid "Latest Submission" msgstr "" -#: public/frontend/assets/CreateLesson-7ZGJlo2v.js:1 -msgid "Learn More" -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/workspace/lms/lms.json -msgctxt "Course Lesson" -msgid "Lesson" -msgstr "" - -#. Label of a Link field in DocType 'Exercise Latest Submission' #: lms/doctype/exercise_latest_submission/exercise_latest_submission.json -msgctxt "Exercise Latest Submission" -msgid "Lesson" -msgstr "" - -#. Label of a Link field in DocType 'Exercise Submission' #: lms/doctype/exercise_submission/exercise_submission.json -msgctxt "Exercise Submission" -msgid "Lesson" -msgstr "" - -#. Label of a Link field in DocType 'LMS Assignment Submission' -#: lms/doctype/lms_assignment_submission/lms_assignment_submission.json -msgctxt "LMS Assignment Submission" -msgid "Lesson" -msgstr "" - -#. Label of a Link field in DocType 'LMS Course Progress' -#: lms/doctype/lms_course_progress/lms_course_progress.json -msgctxt "LMS Course Progress" -msgid "Lesson" -msgstr "" - -#. Label of a Link field in DocType 'LMS Exercise' -#: lms/doctype/lms_exercise/lms_exercise.json -msgctxt "LMS Exercise" -msgid "Lesson" -msgstr "" - -#. Label of a Link field in DocType 'LMS Quiz' -#: lms/doctype/lms_quiz/lms_quiz.json -msgctxt "LMS Quiz" -msgid "Lesson" -msgstr "" - -#. Label of a Link field in DocType 'Lesson Reference' #: lms/doctype/lesson_reference/lesson_reference.json -msgctxt "Lesson Reference" -msgid "Lesson" -msgstr "" - -#. Label of a Link field in DocType 'Scheduled Flow' -#: lms/doctype/scheduled_flow/scheduled_flow.json -msgctxt "Scheduled Flow" +#: lms/doctype/lms_assignment_submission/lms_assignment_submission.json +#: lms/doctype/lms_course_progress/lms_course_progress.json +#: lms/doctype/lms_exercise/lms_exercise.json +#: lms/doctype/lms_quiz/lms_quiz.json +#: lms/doctype/scheduled_flow/scheduled_flow.json lms/workspace/lms/lms.json msgid "Lesson" msgstr "" @@ -3106,20 +2097,14 @@ msgstr "" msgid "Lesson Reference" msgstr "" -#. Label of a Data field in DocType 'Scheduled Flow' +#. Label of the lesson_title (Data) field in DocType 'Scheduled Flow' #: lms/doctype/scheduled_flow/scheduled_flow.json -msgctxt "Scheduled Flow" msgid "Lesson Title" msgstr "" -#: public/frontend/assets/CourseCard-BK77fFq6.js:1 -msgid "Lessons" -msgstr "" - -#. Label of a Table field in DocType 'Course Chapter' +#. Label of the lessons (Table) field in DocType 'Course Chapter' #. Group in Course Chapter's connections #: lms/doctype/course_chapter/course_chapter.json -msgctxt "Course Chapter" msgid "Lessons" msgstr "" @@ -3134,13 +2119,11 @@ msgstr "" #. Option for the 'Grade Type' (Select) field in DocType 'Education Detail' #: lms/doctype/education_detail/education_detail.json -msgctxt "Education Detail" msgid "Letter Grade (e.g. A, B-)" msgstr "" -#. Label of a Int field in DocType 'LMS Quiz' +#. Label of the limit_questions_to (Int) field in DocType 'LMS Quiz' #: lms/doctype/lms_quiz/lms_quiz.json -msgctxt "LMS Quiz" msgid "Limit Questions To" msgstr "" @@ -3148,413 +2131,240 @@ msgstr "" msgid "Limit cannot be greater than or equal to the number of questions in the quiz." msgstr "" -#: public/frontend/assets/ProfileAbout-M7A4DT21.js:1 -msgid "LinkedIn" +#. Label of the linkedin (Data) field in DocType 'User' +#: fixtures/custom_field.json +msgid "LinkedIn ID" msgstr "" #. Group in Cohort's connections -#: lms/doctype/cohort/cohort.json -msgctxt "Cohort" -msgid "Links" -msgstr "" - #. Group in Cohort Subgroup's connections +#: lms/doctype/cohort/cohort.json #: lms/doctype/cohort_subgroup/cohort_subgroup.json -msgctxt "Cohort Subgroup" msgid "Links" msgstr "" #. Option for the 'Status' (Select) field in DocType 'Cohort' #: lms/doctype/cohort/cohort.json -msgctxt "Cohort" msgid "Live" msgstr "" -#: public/frontend/assets/Batch-BYfbr7eo.js:1 +#. Label of the show_live_class (Check) field in DocType 'LMS Settings' +#: lms/doctype/lms_settings/lms_settings.json msgid "Live Class" msgstr "" -#. Label of a Check field in DocType 'LMS Settings' +#. Label of the livecode_url (Data) field in DocType 'LMS Settings' #: lms/doctype/lms_settings/lms_settings.json -msgctxt "LMS Settings" -msgid "Live Class" -msgstr "" - -#. Label of a Data field in DocType 'LMS Settings' -#: lms/doctype/lms_settings/lms_settings.json -msgctxt "LMS Settings" msgid "LiveCode URL" msgstr "" #. Option for the 'Auto Recording' (Select) field in DocType 'LMS Live Class' #: lms/doctype/lms_live_class/lms_live_class.json -msgctxt "LMS Live Class" msgid "Local" msgstr "" -#: public/frontend/assets/JobCreation-CU_0h0cz.js:1 -msgid "Location" -msgstr "" - -#. Label of a Data field in DocType 'Education Detail' -#: lms/doctype/education_detail/education_detail.json -msgctxt "Education Detail" -msgid "Location" -msgstr "" - -#. Label of a Data field in DocType 'Job Opportunity' +#. 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' #: job/doctype/job_opportunity/job_opportunity.json -msgctxt "Job Opportunity" -msgid "Location" -msgstr "" - -#. Label of a Data field in DocType 'Work Experience' +#: lms/doctype/education_detail/education_detail.json #: lms/doctype/work_experience/work_experience.json -msgctxt "Work Experience" msgid "Location" msgstr "" -#: public/frontend/assets/Batch-BYfbr7eo.js:1 -#: public/frontend/assets/Lesson-59XvRJIg.js:18 -#: public/frontend/assets/Profile-CcZj7_FE.js:1 -#: public/frontend/assets/index-D1f05dS8.js:7351 -msgid "Login" +#. Label of the location_preference (Select) field in DocType 'User' +#: fixtures/custom_field.json +msgid "Location Preference" msgstr "" -#. Label of a Table MultiSelect field in DocType 'LMS Settings' +#. Label of the exception_country (Table MultiSelect) field in DocType 'LMS +#. Settings' #: lms/doctype/lms_settings/lms_settings.json -msgctxt "LMS Settings" msgid "Maintain Original Currency" msgstr "" -#. Label of a Check field in DocType 'LMS Settings' +#. Label of the default_home (Check) field in DocType 'LMS Settings' #: lms/doctype/lms_settings/lms_settings.json -msgctxt "LMS Settings" msgid "Make LMS the default home" msgstr "" -#: public/frontend/assets/Batch-BYfbr7eo.js:1 -msgid "Make an Announcement" -msgstr "" - #. Option for the 'Role' (Select) field in DocType 'Cohort Staff' #: lms/doctype/cohort_staff/cohort_staff.json -msgctxt "Cohort Staff" msgid "Manager" msgstr "" -#: templates/signup-form.html:23 +#. Option for the 'User Category' (Select) field in DocType 'User' +#: fixtures/custom_field.json templates/signup-form.html:23 msgid "Manager (Sales/Marketing/Customer)" msgstr "" -#: public/frontend/assets/index-D1f05dS8.js:7351 -msgid "Mark" -msgstr "" - -#: public/frontend/assets/Notifications-YFJ-Ay-J.js:1 -msgid "Mark all as read" -msgstr "" - -#: public/frontend/assets/Notifications-YFJ-Ay-J.js:1 -msgid "Mark as read" -msgstr "" - -#: public/frontend/assets/index-D1f05dS8.js:7351 templates/quiz/quiz.html:59 -msgid "Marks" -msgstr "" - -#. Label of a Int field in DocType 'LMS Quiz Question' +#. Label of the marks (Int) field in DocType 'LMS Quiz Question' +#. Label of the marks (Int) field in DocType 'LMS Quiz Result' #: lms/doctype/lms_quiz_question/lms_quiz_question.json -msgctxt "LMS Quiz Question" +#: lms/doctype/lms_quiz_result/lms_quiz_result.json templates/quiz/quiz.html:59 msgid "Marks" msgstr "" -#. Label of a Int field in DocType 'LMS Quiz Result' -#: lms/doctype/lms_quiz_result/lms_quiz_result.json -msgctxt "LMS Quiz Result" -msgid "Marks" -msgstr "" - -#. Label of a Int field in DocType 'LMS Quiz' +#. Label of the max_attempts (Int) field in DocType 'LMS Quiz' #: lms/doctype/lms_quiz/lms_quiz.json -msgctxt "LMS Quiz" msgid "Max Attempts" msgstr "" -#. Label of a Int field in DocType 'LMS Course' -#: lms/doctype/lms_course/lms_course.json -msgctxt "LMS Course" -msgid "Max Attempts for Evaluations" -msgstr "" - -#: public/frontend/assets/BatchCreation-9JuqnhbY.js:1 -#: public/js/common_functions.js:309 +#. Label of the medium (Select) field in DocType 'LMS Batch' +#: lms/doctype/lms_batch/lms_batch.json public/js/common_functions.js:309 msgid "Medium" msgstr "" -#. Label of a Select field in DocType 'LMS Batch' -#: lms/doctype/lms_batch/lms_batch.json -msgctxt "LMS Batch" -msgid "Medium" +#. Label of the medium (Data) field in DocType 'User' +#: fixtures/custom_field.json +msgid "Medium ID" msgstr "" -#: templates/emails/batch_confirmation.html:20 +#: templates/emails/batch_confirmation.html:21 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 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 Quiz Submission' +#: lms/doctype/exercise_latest_submission/exercise_latest_submission.json +#: lms/doctype/exercise_submission/exercise_submission.json +#: lms/doctype/lms_assignment_submission/lms_assignment_submission.json +#: lms/doctype/lms_badge_assignment/lms_badge_assignment.json +#: lms/doctype/lms_certificate/lms_certificate.json +#: lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json +#: lms/doctype/lms_certificate_request/lms_certificate_request.json +#: lms/doctype/lms_course_progress/lms_course_progress.json +#: lms/doctype/lms_enrollment/lms_enrollment.json +#: lms/doctype/lms_mentor_request/lms_mentor_request.json +#: lms/doctype/lms_payment/lms_payment.json +#: lms/doctype/lms_quiz_submission/lms_quiz_submission.json #: lms/report/course_progress_summary/course_progress_summary.py:64 msgid "Member" msgstr "" -#. Label of a Link field in DocType 'Exercise Latest Submission' +#. Label of the member_cohort (Link) field in DocType 'Exercise Latest +#. Submission' #: lms/doctype/exercise_latest_submission/exercise_latest_submission.json -msgctxt "Exercise Latest Submission" -msgid "Member" -msgstr "" - -#. Label of a Link field in DocType 'Exercise Submission' -#: lms/doctype/exercise_submission/exercise_submission.json -msgctxt "Exercise Submission" -msgid "Member" -msgstr "" - -#. Label of a Link field in DocType 'LMS Assignment Submission' -#: lms/doctype/lms_assignment_submission/lms_assignment_submission.json -msgctxt "LMS Assignment Submission" -msgid "Member" -msgstr "" - -#. Label of a Link field in DocType 'LMS Badge Assignment' -#: lms/doctype/lms_badge_assignment/lms_badge_assignment.json -msgctxt "LMS Badge Assignment" -msgid "Member" -msgstr "" - -#. Label of a Link field in DocType 'LMS Certificate' -#: lms/doctype/lms_certificate/lms_certificate.json -msgctxt "LMS Certificate" -msgid "Member" -msgstr "" - -#. Label of a Link field in DocType 'LMS Certificate Evaluation' -#: lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json -msgctxt "LMS Certificate Evaluation" -msgid "Member" -msgstr "" - -#. Label of a Link field in DocType 'LMS Certificate Request' -#: lms/doctype/lms_certificate_request/lms_certificate_request.json -msgctxt "LMS Certificate Request" -msgid "Member" -msgstr "" - -#. Label of a Link field in DocType 'LMS Course Progress' -#: lms/doctype/lms_course_progress/lms_course_progress.json -msgctxt "LMS Course Progress" -msgid "Member" -msgstr "" - -#. Label of a Link field in DocType 'LMS Enrollment' -#. Option for the 'Role' (Select) field in DocType 'LMS Enrollment' -#: lms/doctype/lms_enrollment/lms_enrollment.json -msgctxt "LMS Enrollment" -msgid "Member" -msgstr "" - -#. Label of a Link field in DocType 'LMS Mentor Request' -#: lms/doctype/lms_mentor_request/lms_mentor_request.json -msgctxt "LMS Mentor Request" -msgid "Member" -msgstr "" - -#. Label of a Link field in DocType 'LMS Payment' -#: lms/doctype/lms_payment/lms_payment.json -msgctxt "LMS Payment" -msgid "Member" -msgstr "" - -#. Label of a Link field in DocType 'LMS Quiz Submission' -#: lms/doctype/lms_quiz_submission/lms_quiz_submission.json -msgctxt "LMS Quiz Submission" -msgid "Member" -msgstr "" - -#. Label of a Link field in DocType 'Exercise Latest Submission' -#: lms/doctype/exercise_latest_submission/exercise_latest_submission.json -msgctxt "Exercise Latest Submission" msgid "Member Cohort" msgstr "" -#. Label of a Link field in DocType 'Exercise Latest Submission' +#. Label of the member_email (Link) field in DocType 'Exercise Latest +#. Submission' #: lms/doctype/exercise_latest_submission/exercise_latest_submission.json -msgctxt "Exercise Latest Submission" msgid "Member Email" msgstr "" +#. Label of the member_name (Data) field in DocType 'LMS Assignment Submission' +#. 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/doctype/lms_assignment_submission/lms_assignment_submission.json +#: lms/doctype/lms_certificate/lms_certificate.json +#: lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json +#: lms/doctype/lms_certificate_request/lms_certificate_request.json +#: lms/doctype/lms_course_progress/lms_course_progress.json +#: lms/doctype/lms_enrollment/lms_enrollment.json +#: lms/doctype/lms_mentor_request/lms_mentor_request.json +#: lms/doctype/lms_quiz_submission/lms_quiz_submission.json #: lms/report/course_progress_summary/course_progress_summary.py:71 msgid "Member Name" msgstr "" -#. Label of a Data field in DocType 'LMS Assignment Submission' -#: lms/doctype/lms_assignment_submission/lms_assignment_submission.json -msgctxt "LMS Assignment Submission" -msgid "Member Name" -msgstr "" - -#. Label of a Data field in DocType 'LMS Certificate' -#: lms/doctype/lms_certificate/lms_certificate.json -msgctxt "LMS Certificate" -msgid "Member Name" -msgstr "" - -#. Label of a Data field in DocType 'LMS Certificate Evaluation' -#: lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json -msgctxt "LMS Certificate Evaluation" -msgid "Member Name" -msgstr "" - -#. Label of a Data field in DocType 'LMS Certificate Request' -#: lms/doctype/lms_certificate_request/lms_certificate_request.json -msgctxt "LMS Certificate Request" -msgid "Member Name" -msgstr "" - -#. Label of a Data field in DocType 'LMS Course Progress' -#: lms/doctype/lms_course_progress/lms_course_progress.json -msgctxt "LMS Course Progress" -msgid "Member Name" -msgstr "" - -#. Label of a Data field in DocType 'LMS Enrollment' -#: lms/doctype/lms_enrollment/lms_enrollment.json -msgctxt "LMS Enrollment" -msgid "Member Name" -msgstr "" - -#. Label of a Data field in DocType 'LMS Mentor Request' -#: lms/doctype/lms_mentor_request/lms_mentor_request.json -msgctxt "LMS Mentor Request" -msgid "Member Name" -msgstr "" - -#. Label of a Data field in DocType 'LMS Quiz Submission' -#: lms/doctype/lms_quiz_submission/lms_quiz_submission.json -msgctxt "LMS Quiz Submission" -msgid "Member Name" -msgstr "" - -#. Label of a Link field in DocType 'Exercise Latest Submission' +#. Label of the member_subgroup (Link) field in DocType 'Exercise Latest +#. Submission' #: lms/doctype/exercise_latest_submission/exercise_latest_submission.json -msgctxt "Exercise Latest Submission" msgid "Member Subgroup" msgstr "" -#. Label of a Select field in DocType 'LMS Enrollment' +#. Label of the member_type (Select) field in DocType 'LMS Enrollment' #: lms/doctype/lms_enrollment/lms_enrollment.json -msgctxt "LMS Enrollment" msgid "Member Type" msgstr "" #. Group in LMS Batch Old's connections #: lms/doctype/lms_batch_old/lms_batch_old.json -msgctxt "LMS Batch Old" msgid "Members" msgstr "" -#. Label of a Select field in DocType 'LMS Batch Old' +#. Label of the membership (Select) field in DocType 'LMS Batch Old' #: lms/doctype/lms_batch_old/lms_batch_old.json -msgctxt "LMS Batch Old" msgid "Membership" msgstr "" -#. Label of a Data field in DocType 'LMS Enrollment' +#. Label of the member_username (Data) field in DocType 'LMS Enrollment' #: lms/doctype/lms_enrollment/lms_enrollment.json -msgctxt "LMS Enrollment" msgid "Memeber Username" msgstr "" #. Option for the 'Required Role' (Select) field in DocType 'Cohort Web Page' -#: lms/doctype/cohort_web_page/cohort_web_page.json -msgctxt "Cohort Web Page" -msgid "Mentor" -msgstr "" - -#. Label of a Link field in DocType 'LMS Course Mentor Mapping' -#: lms/doctype/lms_course_mentor_mapping/lms_course_mentor_mapping.json -msgctxt "LMS Course Mentor Mapping" -msgid "Mentor" -msgstr "" - +#. Label of the mentor (Link) field in DocType 'LMS Course Mentor Mapping' #. Option for the 'Member Type' (Select) field in DocType 'LMS Enrollment' +#: lms/doctype/cohort_web_page/cohort_web_page.json +#: lms/doctype/lms_course_mentor_mapping/lms_course_mentor_mapping.json #: lms/doctype/lms_enrollment/lms_enrollment.json -msgctxt "LMS Enrollment" msgid "Mentor" msgstr "" -#. Label of a Data field in DocType 'LMS Course Mentor Mapping' +#. Label of the mentor_name (Data) field in DocType 'LMS Course Mentor Mapping' #: lms/doctype/lms_course_mentor_mapping/lms_course_mentor_mapping.json -msgctxt "LMS Course Mentor Mapping" msgid "Mentor Name" msgstr "" -#. Label of a Section Break field in DocType 'LMS Settings' -#. Label of a Tab Break field in DocType 'LMS Settings' +#. Label of the mentor_request_section (Section Break) field in DocType 'LMS +#. Settings' +#. Label of the mentor_request_tab (Tab Break) field in DocType 'LMS Settings' #: lms/doctype/lms_settings/lms_settings.json -msgctxt "LMS Settings" msgid "Mentor Request" msgstr "" +#. Label of the mentor_request_creation (Link) field in DocType 'LMS Settings' +#: lms/doctype/lms_settings/lms_settings.json #: patches/create_mentor_request_email_templates.py:11 #: patches/create_mentor_request_email_templates.py:18 #: patches/create_mentor_request_email_templates.py:28 msgid "Mentor Request Creation Template" msgstr "" -#. Label of a Link field in DocType 'LMS Settings' +#. Label of the mentor_request_status_update (Link) field in DocType 'LMS +#. Settings' #: lms/doctype/lms_settings/lms_settings.json -msgctxt "LMS Settings" -msgid "Mentor Request Creation Template" -msgstr "" - #: patches/create_mentor_request_email_templates.py:31 #: patches/create_mentor_request_email_templates.py:38 #: patches/create_mentor_request_email_templates.py:48 msgid "Mentor Request Status Update Template" msgstr "" -#. Label of a Link field in DocType 'LMS Settings' -#: lms/doctype/lms_settings/lms_settings.json -msgctxt "LMS Settings" -msgid "Mentor Request Status Update Template" -msgstr "" - #. Group in LMS Course's connections #: lms/doctype/lms_course/lms_course.json -msgctxt "LMS Course" msgid "Mentors" msgstr "" -#: public/frontend/assets/BatchCreation-9JuqnhbY.js:1 -#: public/js/common_functions.js:362 +#. Label of the meta_image (Attach Image) field in DocType 'LMS Batch' +#: lms/doctype/lms_batch/lms_batch.json public/js/common_functions.js:362 msgid "Meta Image" msgstr "" -#. Label of a Attach Image field in DocType 'LMS Batch' -#: lms/doctype/lms_batch/lms_batch.json -msgctxt "LMS Batch" -msgid "Meta Image" -msgstr "" - -#. Label of a Check field in DocType 'LMS Batch Timetable' +#. Label of the milestone (Check) field in DocType 'LMS Batch Timetable' #: lms/doctype/lms_batch_timetable/lms_batch_timetable.json -msgctxt "LMS Batch Timetable" msgid "Milestone" msgstr "" -#: public/frontend/assets/Statistics-Df9qvpz5.js:18 -msgid "Milestones" -msgstr "" - #. Name of a role #: lms/doctype/course_evaluator/course_evaluator.json #: lms/doctype/lms_assignment/lms_assignment.json @@ -3568,7 +2378,6 @@ msgstr "" #: lms/doctype/lms_question/lms_question.json #: lms/doctype/lms_quiz/lms_quiz.json lms/doctype/lms_source/lms_source.json #: lms/doctype/lms_timetable_template/lms_timetable_template.json -#: public/frontend/assets/ProfileRoles-CVq7nQGs.js:1 msgid "Moderator" msgstr "" @@ -3585,34 +2394,19 @@ msgid "Module is incorrect." msgstr "" #. Option for the 'Day' (Select) field in DocType 'Evaluator Schedule' -#: lms/doctype/evaluator_schedule/evaluator_schedule.json -msgctxt "Evaluator Schedule" -msgid "Monday" -msgstr "" - #. Option for the 'Day' (Select) field in DocType 'LMS Certificate Request' +#: lms/doctype/evaluator_schedule/evaluator_schedule.json #: lms/doctype/lms_certificate_request/lms_certificate_request.json -msgctxt "LMS Certificate Request" msgid "Monday" msgstr "" -#. Label of a Check field in DocType 'LMS Question' +#. Label of the multiple (Check) field in DocType 'LMS Question' #: lms/doctype/lms_question/lms_question.json -msgctxt "LMS Question" msgid "Multiple Correct Answers" msgstr "" -#: public/frontend/assets/ProfileEvaluator-bug1MVAq.js:1 -msgid "My availability" -msgstr "" - -#: public/frontend/assets/ProfileEvaluator-bug1MVAq.js:1 -msgid "My calendar" -msgstr "" - #. Option for the 'Event' (Select) field in DocType 'LMS Badge' #: lms/doctype/lms_badge/lms_badge.json -msgctxt "LMS Badge" msgid "New" msgstr "" @@ -3628,10 +2422,6 @@ msgstr "" msgid "New Course" msgstr "" -#: public/frontend/assets/Jobs-CBReeD0M.js:1 -msgid "New Job" -msgstr "" - #: job/doctype/lms_job_application/lms_job_application.py:27 msgid "New Job Applicant" msgstr "" @@ -3640,28 +2430,19 @@ msgstr "" msgid "New Sign Up" msgstr "" -#: lms/utils.py:666 +#: lms/utils.py:619 msgid "New comment in batch {0}" msgstr "" -#: lms/utils.py:659 +#: lms/utils.py:612 msgid "New reply on the topic {0} in course {1}" msgstr "" -#: public/frontend/assets/Discussions-BUeR4n3G.js:1 -msgid "New {0}" -msgstr "" - -#: public/frontend/assets/Lesson-59XvRJIg.js:18 -#: public/frontend/assets/index-D1f05dS8.js:7351 -msgid "Next" -msgstr "" - #: templates/quiz/quiz.html:125 msgid "Next Question" msgstr "" -#: public/frontend/assets/Batch-BYfbr7eo.js:1 templates/assessments.html:58 +#: templates/assessments.html:58 msgid "No Assessments" msgstr "" @@ -3671,7 +2452,6 @@ msgstr "" #. Option for the 'Auto Recording' (Select) field in DocType 'LMS Live Class' #: lms/doctype/lms_live_class/lms_live_class.json -msgctxt "LMS Live Class" msgid "No Recording" msgstr "" @@ -3679,10 +2459,6 @@ msgstr "" msgid "No Upcoming Evaluations" msgstr "" -#: public/frontend/assets/Batch-BYfbr7eo.js:1 -msgid "No announcements" -msgstr "" - #: templates/certificates_section.html:23 msgid "No certificates" msgstr "" @@ -3695,31 +2471,11 @@ msgstr "" msgid "No courses under review" msgstr "" -#: public/frontend/assets/ProfileAbout-M7A4DT21.js:1 -msgid "No introduction" -msgstr "" - -#: public/frontend/assets/Jobs-CBReeD0M.js:1 -msgid "No jobs posted" -msgstr "" - -#: public/frontend/assets/Batch-BYfbr7eo.js:1 -msgid "No live classes scheduled" -msgstr "" - #: templates/search_course/search_course.html:61 #: templates/search_course/search_course.js:47 msgid "No result found" msgstr "" -#: public/frontend/assets/Batch-BYfbr7eo.js:1 -msgid "No slots available for this date." -msgstr "" - -#: public/frontend/assets/Batch-BYfbr7eo.js:1 -msgid "No upcoming evaluations." -msgstr "" - #: templates/course_list.html:13 msgid "No {0}" msgstr "" @@ -3735,7 +2491,6 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'LMS Assignment #. Submission' #: lms/doctype/lms_assignment_submission/lms_assignment_submission.json -msgctxt "LMS Assignment Submission" msgid "Not Applicable" msgstr "" @@ -3750,22 +2505,11 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'LMS Assignment #. Submission' #: lms/doctype/lms_assignment_submission/lms_assignment_submission.json -msgctxt "LMS Assignment Submission" msgid "Not Graded" msgstr "" -#: public/frontend/assets/Batch-BYfbr7eo.js:1 -#: public/frontend/assets/Profile-CcZj7_FE.js:1 -msgid "Not Permitted" -msgstr "" - -#: public/frontend/assets/Notifications-YFJ-Ay-J.js:1 -msgid "Nothing to see here." -msgstr "" - -#. Label of a Check field in DocType 'LMS Settings' +#. Label of the notifications (Check) field in DocType 'LMS Settings' #: lms/doctype/lms_settings/lms_settings.json -msgctxt "LMS Settings" msgid "Notifications" msgstr "" @@ -3773,15 +2517,18 @@ msgstr "" msgid "Notify me when available" msgstr "" -#. Label of a Section Break field in DocType 'Zoom Settings' +#. Label of the sb_00 (Section Break) field in DocType 'Zoom Settings' #: lms/doctype/zoom_settings/zoom_settings.json -msgctxt "Zoom Settings" msgid "OAuth Client ID" msgstr "" +#. Option for the 'Location Preference' (Select) field in DocType 'User' +#: fixtures/custom_field.json +msgid "Office close to Home" +msgstr "" + #. Option for the 'Medium' (Select) field in DocType 'LMS Batch' #: lms/doctype/lms_batch/lms_batch.json -msgctxt "LMS Batch" msgid "Offline" msgstr "" @@ -3793,13 +2540,8 @@ msgstr "" msgid "Once again, congratulations on this significant accomplishment." msgstr "" -#: public/frontend/assets/AssignmentSubmission-D1b-IhRa.js:1 -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/doctype/lms_batch/lms_batch.json -msgctxt "LMS Batch" msgid "Online" msgstr "" @@ -3808,14 +2550,9 @@ msgid "Only files of type {0} will be accepted." msgstr "" #. Option for the 'Status' (Select) field in DocType 'Job Opportunity' -#: job/doctype/job_opportunity/job_opportunity.json -msgctxt "Job Opportunity" -msgid "Open" -msgstr "" - #. Option for the 'Membership' (Select) field in DocType 'LMS Batch Old' +#: job/doctype/job_opportunity/job_opportunity.json #: lms/doctype/lms_batch_old/lms_batch_old.json -msgctxt "LMS Batch Old" msgid "Open" msgstr "" @@ -3831,49 +2568,43 @@ msgstr "" msgid "Open Network" msgstr "" -#. Label of a Data field in DocType 'LMS Option' +#. Label of the option (Data) field in DocType 'LMS Option' #: lms/doctype/lms_option/lms_option.json -msgctxt "LMS Option" msgid "Option" msgstr "" -#. Label of a Small Text field in DocType 'LMS Question' +#. Label of the option_1 (Small Text) field in DocType 'LMS Question' #: lms/doctype/lms_question/lms_question.json -msgctxt "LMS Question" msgid "Option 1" msgstr "" -#. Label of a Small Text field in DocType 'LMS Question' +#. Label of the option_2 (Small Text) field in DocType 'LMS Question' #: lms/doctype/lms_question/lms_question.json -msgctxt "LMS Question" msgid "Option 2" msgstr "" -#. Label of a Small Text field in DocType 'LMS Question' +#. Label of the option_3 (Small Text) field in DocType 'LMS Question' #: lms/doctype/lms_question/lms_question.json -msgctxt "LMS Question" msgid "Option 3" msgstr "" -#. Label of a Small Text field in DocType 'LMS Question' +#. Label of the option_4 (Small Text) field in DocType 'LMS Question' #: lms/doctype/lms_question/lms_question.json -msgctxt "LMS Question" msgid "Option 4" msgstr "" -#. Label of a Data field in DocType 'LMS Payment' +#. Label of the order_id (Data) field in DocType 'LMS Payment' #: lms/doctype/lms_payment/lms_payment.json -msgctxt "LMS Payment" msgid "Order ID" msgstr "" -#. Label of a Data field in DocType 'Certification' +#. Label of the organization (Data) field in DocType 'Certification' #: lms/doctype/certification/certification.json -msgctxt "Certification" msgid "Organization" msgstr "" -#: templates/signup-form.html:27 +#. Option for the 'User Category' (Select) field in DocType 'User' +#: fixtures/custom_field.json templates/signup-form.html:27 msgid "Others" msgstr "" @@ -3881,118 +2612,71 @@ msgstr "" msgid "Owner" msgstr "" -#. Label of a Data field in DocType 'LMS Payment' +#. Label of the pan (Data) field in DocType 'LMS Payment' #: lms/doctype/lms_payment/lms_payment.json -msgctxt "LMS Payment" msgid "PAN" msgstr "" -#: lms/doctype/course_lesson/course_lesson.js:32 -msgid "PDF" -msgstr "" - #. Option for the 'File Type' (Select) field in DocType 'Course Lesson' -#: lms/doctype/course_lesson/course_lesson.json -msgctxt "Course Lesson" -msgid "PDF" -msgstr "" - #. Option for the 'Type' (Select) field in DocType 'LMS Assignment' -#: lms/doctype/lms_assignment/lms_assignment.json -msgctxt "LMS Assignment" -msgid "PDF" -msgstr "" - #. Option for the 'Type' (Select) field in DocType 'LMS Assignment Submission' +#: lms/doctype/course_lesson/course_lesson.js:32 +#: lms/doctype/course_lesson/course_lesson.json +#: lms/doctype/lms_assignment/lms_assignment.json #: lms/doctype/lms_assignment_submission/lms_assignment_submission.json -msgctxt "LMS Assignment Submission" msgid "PDF" msgstr "" -#. Label of a Table field in DocType 'Cohort' +#. Label of the pages (Table) field in DocType 'Cohort' #: lms/doctype/cohort/cohort.json -msgctxt "Cohort" msgid "Pages" msgstr "" -#: public/frontend/assets/BatchCreation-9JuqnhbY.js:1 -#: public/js/common_functions.js:373 +#. Label of the paid_batch (Check) field in DocType 'LMS Batch' +#: lms/doctype/lms_batch/lms_batch.json public/js/common_functions.js:373 msgid "Paid Batch" msgstr "" -#. Label of a Check field in DocType 'LMS Batch' -#: lms/doctype/lms_batch/lms_batch.json -msgctxt "LMS Batch" -msgid "Paid Batch" -msgstr "" - -#: public/frontend/assets/CreateCourse-2snz_azq.js:1 -msgid "Paid Course" -msgstr "" - -#. Label of a Check field in DocType 'LMS Course' +#. Label of the paid_course (Check) field in DocType 'LMS Course' #: lms/doctype/lms_course/lms_course.json -msgctxt "LMS Course" msgid "Paid Course" msgstr "" #. Option for the 'Type' (Select) field in DocType 'Job Opportunity' #: job/doctype/job_opportunity/job_opportunity.json -msgctxt "Job Opportunity" msgid "Part Time" msgstr "" #. Option for the 'Status' (Select) field in DocType 'LMS Course Progress' #: lms/doctype/lms_course_progress/lms_course_progress.json -msgctxt "LMS Course Progress" msgid "Partially Complete" msgstr "" #. Option for the 'Status' (Select) field in DocType 'LMS Assignment #. Submission' -#: lms/doctype/lms_assignment_submission/lms_assignment_submission.json -msgctxt "LMS Assignment Submission" -msgid "Pass" -msgstr "" - #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' +#: lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json -msgctxt "LMS Certificate Evaluation" msgid "Pass" msgstr "" -#. Label of a Int field in DocType 'LMS Quiz' +#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz' +#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz Submission' #: lms/doctype/lms_quiz/lms_quiz.json -msgctxt "LMS Quiz" -msgid "Passing Percentage" -msgstr "" - -#. Label of a Int field in DocType 'LMS Quiz Submission' #: lms/doctype/lms_quiz_submission/lms_quiz_submission.json -msgctxt "LMS Quiz Submission" msgid "Passing Percentage" msgstr "" -#. Label of a Password field in DocType 'LMS Live Class' +#. Label of the password (Password) field in DocType 'LMS Live Class' #: lms/doctype/lms_live_class/lms_live_class.json -msgctxt "LMS Live Class" msgid "Password" msgstr "" -#: public/frontend/assets/BatchCreation-9JuqnhbY.js:1 -msgid "Payment" -msgstr "" - -#. Label of a Link field in DocType 'Batch Student' +#. Label of the payment (Link) field in DocType 'Batch Student' +#. Label of the payment (Link) field in DocType 'LMS Enrollment' #: lms/doctype/batch_student/batch_student.json -msgctxt "Batch Student" -msgid "Payment" -msgstr "" - -#. Label of a Link field in DocType 'LMS Enrollment' #: lms/doctype/lms_enrollment/lms_enrollment.json -msgctxt "LMS Enrollment" msgid "Payment" msgstr "" @@ -4001,80 +2685,63 @@ msgstr "" msgid "Payment Country" msgstr "" -#. Label of a Section Break field in DocType 'LMS Payment' +#. Label of the payment_details_section (Section Break) field in DocType 'LMS +#. Payment' #: lms/doctype/lms_payment/lms_payment.json -msgctxt "LMS Payment" msgid "Payment Details" msgstr "" -#. Label of a Data field in DocType 'LMS Payment' +#. Label of the payment_id (Data) field in DocType 'LMS Payment' #: lms/doctype/lms_payment/lms_payment.json -msgctxt "LMS Payment" msgid "Payment ID" msgstr "" -#. Label of a Check field in DocType 'LMS Payment' +#. Label of the payment_received (Check) field in DocType 'LMS Payment' #: lms/doctype/lms_payment/lms_payment.json -msgctxt "LMS Payment" msgid "Payment Received" msgstr "" -#. Label of a Tab Break field in DocType 'LMS Settings' +#. Label of the payment_settings_tab (Tab Break) field in DocType 'LMS +#. Settings' #: lms/doctype/lms_settings/lms_settings.json -msgctxt "LMS Settings" msgid "Payment Settings" msgstr "" -#. Label of a Dynamic Link field in DocType 'LMS Payment' +#. Label of the payment_for_document (Dynamic Link) field in DocType 'LMS +#. Payment' #: lms/doctype/lms_payment/lms_payment.json -msgctxt "LMS Payment" msgid "Payment for Document" msgstr "" -#. Label of a Select field in DocType 'LMS Payment' +#. Label of the payment_for_document_type (Select) field in DocType 'LMS +#. Payment' #: lms/doctype/lms_payment/lms_payment.json -msgctxt "LMS Payment" msgid "Payment for Document Type" msgstr "" -#: lms/utils.py:1002 +#: lms/utils.py:949 msgid "Payment for {0} course" msgstr "" #. Option for the 'Status' (Select) field in DocType 'Cohort Join Request' -#: lms/doctype/cohort_join_request/cohort_join_request.json -msgctxt "Cohort Join Request" -msgid "Pending" -msgstr "" - #. Option for the 'Status' (Select) field in DocType 'Invite Request' -#: lms/doctype/invite_request/invite_request.json -msgctxt "Invite Request" -msgid "Pending" -msgstr "" - #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' -#: lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json -msgctxt "LMS Certificate Evaluation" -msgid "Pending" -msgstr "" - #. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' +#: lms/doctype/cohort_join_request/cohort_join_request.json +#: lms/doctype/invite_request/invite_request.json +#: lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/doctype/lms_mentor_request/lms_mentor_request.json -msgctxt "LMS Mentor Request" msgid "Pending" msgstr "" -#. Label of a Int field in DocType 'LMS Quiz Submission' +#. Label of the percentage (Int) field in DocType 'LMS Quiz Submission' #: lms/doctype/lms_quiz_submission/lms_quiz_submission.json -msgctxt "LMS Quiz Submission" msgid "Percentage" msgstr "" #. Option for the 'Grade Type' (Select) field in DocType 'Education Detail' #: lms/doctype/education_detail/education_detail.json -msgctxt "Education Detail" msgid "Percentage (e.g. 70%)" msgstr "" @@ -4094,7 +2761,7 @@ msgstr "" msgid "Please click on the following button to set your new password" msgstr "" -#: lms/doctype/lms_batch/lms_batch.py:232 +#: lms/doctype/lms_batch/lms_batch.py:238 msgid "Please enable Zoom Settings to use this feature." msgstr "" @@ -4111,21 +2778,12 @@ msgstr "" msgid "Please enter your answer" msgstr "" -#: public/frontend/assets/index-D1f05dS8.js:7351 -msgid "Please login to access the quiz." -msgstr "" - -#: public/frontend/assets/Batch-BYfbr7eo.js:1 -#: public/frontend/assets/Profile-CcZj7_FE.js:1 -msgid "Please login to access this page." -msgstr "" - #: lms/api.py:180 msgid "Please login to continue with payment." msgstr "" -#: lms/notification/certificate_request_creation/certificate_request_creation.html:7 -#: lms/notification/certificate_request_reminder/certificate_request_reminder.html:7 +#: lms/notification/certificate_request_creation/certificate_request_creation.html:9 +#: lms/notification/certificate_request_reminder/certificate_request_reminder.html:8 msgid "Please prepare well and be on time for the evaluations." msgstr "" @@ -4139,82 +2797,69 @@ msgstr "" #. Option for the 'Grade Type' (Select) field in DocType 'Education Detail' #: lms/doctype/education_detail/education_detail.json -msgctxt "Education Detail" msgid "Point of Score (e.g. 70)" msgstr "" -#. Label of a Small Text field in DocType 'LMS Question' +#. Label of the possibility_1 (Small Text) field in DocType 'LMS Question' #: lms/doctype/lms_question/lms_question.json -msgctxt "LMS Question" msgid "Possible Answer 1" msgstr "" -#. Label of a Small Text field in DocType 'LMS Question' +#. Label of the possibility_2 (Small Text) field in DocType 'LMS Question' #: lms/doctype/lms_question/lms_question.json -msgctxt "LMS Question" msgid "Possible Answer 2" msgstr "" -#. Label of a Small Text field in DocType 'LMS Question' +#. Label of the possibility_3 (Small Text) field in DocType 'LMS Question' #: lms/doctype/lms_question/lms_question.json -msgctxt "LMS Question" msgid "Possible Answer 3" msgstr "" -#. Label of a Small Text field in DocType 'LMS Question' +#. Label of the possibility_4 (Small Text) field in DocType 'LMS Question' #: lms/doctype/lms_question/lms_question.json -msgctxt "LMS Question" msgid "Possible Answer 4" msgstr "" -#: public/frontend/assets/Discussions-BUeR4n3G.js:1 -msgid "Post" -msgstr "" - #. Name of a DocType #: lms/doctype/preferred_function/preferred_function.json msgid "Preferred Function" msgstr "" +#. Label of the preferred_functions (Table MultiSelect) field in DocType 'User' +#: fixtures/custom_field.json +msgid "Preferred Functions" +msgstr "" + +#. Label of the preferred_industries (Table MultiSelect) field in DocType +#. 'User' +#: fixtures/custom_field.json +msgid "Preferred Industries" +msgstr "" + #. Name of a DocType #: lms/doctype/preferred_industry/preferred_industry.json msgid "Preferred Industry" msgstr "" -#. Label of a Attach Image field in DocType 'LMS Course' +#. Label of the preferred_location (Data) field in DocType 'User' +#: fixtures/custom_field.json +msgid "Preferred Location" +msgstr "" + +#. Label of the image (Attach Image) field in DocType 'LMS Course' #: lms/doctype/lms_course/lms_course.json -msgctxt "LMS Course" msgid "Preview Image" msgstr "" -#: public/frontend/assets/CreateCourse-2snz_azq.js:1 -msgid "Preview Video" -msgstr "" - -#: public/frontend/assets/Lesson-59XvRJIg.js:18 -msgid "Previous" -msgstr "" - -#: public/frontend/assets/CreateCourse-2snz_azq.js:1 +#. Label of the pricing_tab (Tab Break) field in DocType 'LMS Batch' +#. Label of the pricing_tab (Tab Break) field in DocType 'LMS Course' +#: lms/doctype/lms_batch/lms_batch.json lms/doctype/lms_course/lms_course.json #: public/js/common_functions.js:368 msgid "Pricing" msgstr "" -#. Label of a Tab Break field in DocType 'LMS Batch' -#: lms/doctype/lms_batch/lms_batch.json -msgctxt "LMS Batch" -msgid "Pricing" -msgstr "" - -#. Label of a Section Break field in DocType 'LMS Course' -#: lms/doctype/lms_course/lms_course.json -msgctxt "LMS Course" -msgid "Pricing" -msgstr "" - -#. Label of a Link field in DocType 'Cohort Mentor' +#. Label of the subgroup (Link) field in DocType 'Cohort Mentor' #: lms/doctype/cohort_mentor/cohort_mentor.json -msgctxt "Cohort Mentor" msgid "Primary Subgroup" msgstr "" @@ -4222,25 +2867,34 @@ msgstr "" msgid "Privacy Policy" msgstr "" -#. Label of a Link field in DocType 'LMS Settings' +#. Label of the privacy_policy_page (Link) field in DocType 'LMS Settings' #: lms/doctype/lms_settings/lms_settings.json -msgctxt "LMS Settings" msgid "Privacy Policy Page" msgstr "" #. Option for the 'Visibility' (Select) field in DocType 'LMS Batch Old' #: lms/doctype/lms_batch_old/lms_batch_old.json -msgctxt "LMS Batch Old" msgid "Private" msgstr "" -#: public/frontend/assets/Profile-CcZj7_FE.js:1 -msgid "Profile Image" +#. Description of the 'Hide my Private Information from others' (Check) field +#. in DocType 'User' +#: fixtures/custom_field.json +msgid "Private Information includes your Grade and Work Environment Preferences" msgstr "" -#. Label of a Float field in DocType 'LMS Enrollment' +#. Label of the profession (Data) field in DocType 'User' +#: fixtures/custom_field.json +msgid "Profession" +msgstr "" + +#. Label of the profile_complete (Check) field in DocType 'User' +#: fixtures/custom_field.json +msgid "Profile Complete" +msgstr "" + +#. Label of the progress (Float) field in DocType 'LMS Enrollment' #: lms/doctype/lms_enrollment/lms_enrollment.json -msgctxt "LMS Enrollment" msgid "Progress" msgstr "" @@ -4249,94 +2903,48 @@ msgid "Progress (%)" msgstr "" #. Option for the 'Required Role' (Select) field in DocType 'Cohort Web Page' -#: lms/doctype/cohort_web_page/cohort_web_page.json -msgctxt "Cohort Web Page" -msgid "Public" -msgstr "" - #. Option for the 'Visibility' (Select) field in DocType 'LMS Batch Old' +#: lms/doctype/cohort_web_page/cohort_web_page.json #: lms/doctype/lms_batch_old/lms_batch_old.json -msgctxt "LMS Batch Old" msgid "Public" msgstr "" -#. Label of a Check field in DocType 'LMS Certificate' +#. Label of the published (Check) field in DocType 'LMS Certificate' #: lms/doctype/lms_certificate/lms_certificate.json -msgctxt "LMS Certificate" msgid "Publish on Participant Page" msgstr "" -#: public/frontend/assets/BatchCreation-9JuqnhbY.js:1 -#: public/frontend/assets/CreateCourse-2snz_azq.js:1 +#. Label of the published (Check) field in DocType 'LMS Batch' +#. Label of the published (Check) field in DocType 'LMS Course' +#: lms/doctype/lms_batch/lms_batch.json lms/doctype/lms_course/lms_course.json #: public/js/common_functions.js:266 msgid "Published" msgstr "" -#. Label of a Check field in DocType 'LMS Batch' -#: lms/doctype/lms_batch/lms_batch.json -msgctxt "LMS Batch" -msgid "Published" -msgstr "" - -#. Label of a Check field in DocType 'LMS Course' -#: lms/doctype/lms_course/lms_course.json -msgctxt "LMS Course" -msgid "Published" -msgstr "" - #: lms/web_template/lms_statistics/lms_statistics.html:14 #: templates/statistics.html:4 msgid "Published Courses" msgstr "" -#: public/frontend/assets/CreateCourse-2snz_azq.js:1 -msgid "Published On" -msgstr "" - -#. Label of a Date field in DocType 'LMS Course' +#. Label of the published_on (Date) field in DocType 'LMS Course' #: lms/doctype/lms_course/lms_course.json -msgctxt "LMS Course" msgid "Published On" msgstr "" -#: public/frontend/assets/AssignmentSubmission-D1b-IhRa.js:1 -#: templates/quiz/quiz.html:104 -msgid "Question" -msgstr "" - -#. Label of a Small Text field in DocType 'Course Lesson' +#. 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' #: lms/doctype/course_lesson/course_lesson.json -msgctxt "Course Lesson" -msgid "Question" -msgstr "" - -#. Label of a Text Editor field in DocType 'LMS Assignment' #: lms/doctype/lms_assignment/lms_assignment.json -msgctxt "LMS Assignment" -msgid "Question" -msgstr "" - -#. Label of a Text Editor field in DocType 'LMS Assignment Submission' #: lms/doctype/lms_assignment_submission/lms_assignment_submission.json -msgctxt "LMS Assignment Submission" -msgid "Question" -msgstr "" - -#. Label of a Text Editor field in DocType 'LMS Question' #: lms/doctype/lms_question/lms_question.json -msgctxt "LMS Question" -msgid "Question" -msgstr "" - -#. Label of a Link field in DocType 'LMS Quiz Question' #: lms/doctype/lms_quiz_question/lms_quiz_question.json -msgctxt "LMS Quiz Question" -msgid "Question" -msgstr "" - -#. Label of a Text field in DocType 'LMS Quiz Result' #: lms/doctype/lms_quiz_result/lms_quiz_result.json -msgctxt "LMS Quiz Result" +#: templates/quiz/quiz.html:104 msgid "Question" msgstr "" @@ -4344,45 +2952,26 @@ msgstr "" msgid "Question " msgstr "" -#. Label of a Link field in DocType 'LMS Quiz Result' +#. Label of the question_name (Link) field in DocType 'LMS Quiz Result' #: lms/doctype/lms_quiz_result/lms_quiz_result.json -msgctxt "LMS Quiz Result" msgid "Question Name" msgstr "" -#: public/frontend/assets/index-D1f05dS8.js:7351 -msgid "Question {0}" -msgstr "" - -#: public/frontend/assets/index-D1f05dS8.js:7351 -msgid "Question {0} of {1}" -msgstr "" - -#. Label of a Table field in DocType 'LMS Quiz' +#. Label of the questions (Table) field in DocType 'LMS Quiz' #: lms/doctype/lms_quiz/lms_quiz.json -msgctxt "LMS Quiz" msgid "Questions" msgstr "" -#: lms/doctype/course_lesson/course_lesson.js:23 -msgid "Quiz" -msgstr "" - +#. Label of the quiz (Link) field in DocType 'LMS Quiz Submission' #. Label of a Link in the LMS Workspace -#: lms/workspace/lms/lms.json -msgctxt "LMS Quiz" -msgid "Quiz" -msgstr "" - -#. Label of a Link field in DocType 'LMS Quiz Submission' +#: lms/doctype/course_lesson/course_lesson.js:23 #: lms/doctype/lms_quiz_submission/lms_quiz_submission.json -msgctxt "LMS Quiz Submission" +#: lms/workspace/lms/lms.json msgid "Quiz" msgstr "" -#. Label of a Data field in DocType 'Course Lesson' +#. Label of the quiz_id (Data) field in DocType 'Course Lesson' #: lms/doctype/course_lesson/course_lesson.json -msgctxt "Course Lesson" msgid "Quiz ID" msgstr "" @@ -4392,37 +2981,23 @@ msgstr "" #. Label of a Link in the LMS Workspace #: lms/workspace/lms/lms.json -msgctxt "LMS Quiz Submission" msgid "Quiz Submission" msgstr "" -#: public/frontend/assets/index-D1f05dS8.js:7351 -msgid "Quiz Summary" -msgstr "" - #: plugins.py:96 msgid "Quiz is not available to Guest users. Please login to continue." msgstr "" #. Description of the 'Quiz ID' (Data) field in DocType 'Course Lesson' #: lms/doctype/course_lesson/course_lesson.json -msgctxt "Course Lesson" msgid "Quiz will appear at the bottom of the lesson." msgstr "" -#: templates/reviews.html:125 -msgid "Rating" -msgstr "" - -#. Label of a Rating field in DocType 'LMS Certificate Evaluation' +#. Label of the rating (Rating) field in DocType 'LMS Certificate Evaluation' +#. Label of the rating (Rating) field in DocType 'LMS Course Review' #: lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json -msgctxt "LMS Certificate Evaluation" -msgid "Rating" -msgstr "" - -#. Label of a Rating field in DocType 'LMS Course Review' #: lms/doctype/lms_course_review/lms_course_review.json -msgctxt "LMS Course Review" +#: templates/reviews.html:125 msgid "Rating" msgstr "" @@ -4430,49 +3005,37 @@ msgstr "" msgid "Rating cannot be 0" msgstr "" -#. Label of a Data field in DocType 'LMS Settings' +#. Label of the razorpay_key (Data) field in DocType 'LMS Settings' #: lms/doctype/lms_settings/lms_settings.json -msgctxt "LMS Settings" msgid "Razorpay Key" msgstr "" -#. Label of a Password field in DocType 'LMS Settings' +#. Label of the razorpay_secret (Password) field in DocType 'LMS Settings' #: lms/doctype/lms_settings/lms_settings.json -msgctxt "LMS Settings" msgid "Razorpay Secret" msgstr "" -#: public/frontend/assets/AssignmentSubmission-D1b-IhRa.js:1 -msgid "Read the question carefully before attempting the assignment." -msgstr "" - #. Option for the 'Stage' (Select) field in DocType 'LMS Batch Old' #: lms/doctype/lms_batch_old/lms_batch_old.json -msgctxt "LMS Batch Old" msgid "Ready" msgstr "" -#. Label of a Dynamic Link field in DocType 'LMS Batch Timetable' +#. Label of the reference_docname (Dynamic Link) field in DocType 'LMS Batch +#. Timetable' #: lms/doctype/lms_batch_timetable/lms_batch_timetable.json -msgctxt "LMS Batch Timetable" msgid "Reference DocName" msgstr "" -#. Label of a Link field in DocType 'LMS Batch Timetable' +#. 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/doctype/lms_batch_timetable/lms_batch_timetable.json -msgctxt "LMS Batch Timetable" -msgid "Reference DocType" -msgstr "" - -#. Label of a Link field in DocType 'LMS Timetable Legend' #: lms/doctype/lms_timetable_legend/lms_timetable_legend.json -msgctxt "LMS Timetable Legend" msgid "Reference DocType" msgstr "" -#. Label of a Link field in DocType 'LMS Badge' +#. Label of the reference_doctype (Link) field in DocType 'LMS Badge' #: lms/doctype/lms_badge/lms_badge.json -msgctxt "LMS Badge" msgid "Reference Document Type" msgstr "" @@ -4482,7 +3045,6 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'Invite Request' #: lms/doctype/invite_request/invite_request.json -msgctxt "Invite Request" msgid "Registered" msgstr "" @@ -4491,38 +3053,21 @@ msgid "Registered but disabled" msgstr "" #. Option for the 'Status' (Select) field in DocType 'Cohort Join Request' -#: lms/doctype/cohort_join_request/cohort_join_request.json -msgctxt "Cohort Join Request" -msgid "Rejected" -msgstr "" - #. Option for the 'Status' (Select) field in DocType 'Invite Request' -#: lms/doctype/invite_request/invite_request.json -msgctxt "Invite Request" -msgid "Rejected" -msgstr "" - #. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' +#: lms/doctype/cohort_join_request/cohort_join_request.json +#: lms/doctype/invite_request/invite_request.json #: lms/doctype/lms_mentor_request/lms_mentor_request.json -msgctxt "LMS Mentor Request" msgid "Rejected" msgstr "" +#. Label of the related_courses (Table) field in DocType 'LMS Course' #. Name of a DocType +#: lms/doctype/lms_course/lms_course.json #: lms/doctype/related_courses/related_courses.json msgid "Related Courses" msgstr "" -#. Label of a Table field in DocType 'LMS Course' -#: lms/doctype/lms_course/lms_course.json -msgctxt "LMS Course" -msgid "Related Courses" -msgstr "" - -#: public/frontend/assets/Batch-BYfbr7eo.js:1 -msgid "Reply To" -msgstr "" - #: lms/widgets/RequestInvite.html:7 msgid "Request Invite" msgstr "" @@ -4531,39 +3076,30 @@ msgstr "" msgid "Request for Mentorship" msgstr "" -#. Label of a Select field in DocType 'Cohort Web Page' +#. Label of the required_role (Select) field in DocType 'Cohort Web Page' #: lms/doctype/cohort_web_page/cohort_web_page.json -msgctxt "Cohort Web Page" msgid "Required Role" msgstr "" #. Option for the 'Membership' (Select) field in DocType 'LMS Batch Old' #: lms/doctype/lms_batch_old/lms_batch_old.json -msgctxt "LMS Batch Old" msgid "Restricted" msgstr "" -#. Label of a Table field in DocType 'LMS Quiz Submission' +#. Label of the result (Table) field in DocType 'LMS Quiz Submission' #: lms/doctype/lms_quiz_submission/lms_quiz_submission.json -msgctxt "LMS Quiz Submission" msgid "Result" msgstr "" -#. Label of a Attach field in DocType 'LMS Job Application' +#. Label of the resume (Attach) field in DocType 'LMS Job Application' #: job/doctype/lms_job_application/lms_job_application.json -msgctxt "LMS Job Application" msgid "Resume" msgstr "" -#: templates/reviews.html:143 -msgid "Review" -msgstr "" - -#. Label of a Small Text field in DocType 'LMS Course Review' +#. Label of the review (Small Text) field in DocType 'LMS Course Review' #. Label of a Link in the LMS Workspace #: lms/doctype/lms_course_review/lms_course_review.json -#: lms/workspace/lms/lms.json -msgctxt "LMS Course Review" +#: lms/workspace/lms/lms.json templates/reviews.html:143 msgid "Review" msgstr "" @@ -4571,9 +3107,8 @@ msgstr "" msgid "Review the course" msgstr "" -#. Label of a Link field in DocType 'LMS Mentor Request' +#. Label of the reviewed_by (Link) field in DocType 'LMS Mentor Request' #: lms/doctype/lms_mentor_request/lms_mentor_request.json -msgctxt "LMS Mentor Request" msgid "Reviewed By" msgstr "" @@ -4581,37 +3116,36 @@ msgstr "" msgid "Reviews" msgstr "" -#. Label of a Select field in DocType 'Cohort Staff' +#. Label of the role (Select) field in DocType 'Cohort Staff' +#. Label of the role (Select) field in DocType 'LMS Enrollment' #: lms/doctype/cohort_staff/cohort_staff.json -msgctxt "Cohort Staff" -msgid "Role" -msgstr "" - -#. Label of a Select field in DocType 'LMS Enrollment' #: lms/doctype/lms_enrollment/lms_enrollment.json -msgctxt "LMS Enrollment" msgid "Role" msgstr "" -#. Label of a Data field in DocType 'LMS Sidebar Item' +#. Label of the role (Select) field in DocType 'User' +#: fixtures/custom_field.json +msgid "Role Preference" +msgstr "" + +#. Label of the route (Data) field in DocType 'LMS Sidebar Item' #: lms/doctype/lms_sidebar_item/lms_sidebar_item.json -msgctxt "LMS Sidebar Item" msgid "Route" msgstr "" -#: lms/doctype/lms_batch/lms_batch.py:161 +#: lms/doctype/lms_batch/lms_batch.py:167 msgid "Row #{0} Date cannot be outside the batch duration." msgstr "" -#: lms/doctype/lms_batch/lms_batch.py:156 +#: lms/doctype/lms_batch/lms_batch.py:162 msgid "Row #{0} End time cannot be outside the batch duration." msgstr "" -#: lms/doctype/lms_batch/lms_batch.py:138 +#: lms/doctype/lms_batch/lms_batch.py:144 msgid "Row #{0} Start time cannot be greater than or equal to end time." msgstr "" -#: lms/doctype/lms_batch/lms_batch.py:147 +#: lms/doctype/lms_batch/lms_batch.py:153 msgid "Row #{0} Start time cannot be outside the batch duration." msgstr "" @@ -4624,109 +3158,55 @@ msgid "Run" msgstr "" #. Option for the 'Day' (Select) field in DocType 'Evaluator Schedule' -#: lms/doctype/evaluator_schedule/evaluator_schedule.json -msgctxt "Evaluator Schedule" -msgid "Saturday" -msgstr "" - #. Option for the 'Day' (Select) field in DocType 'LMS Certificate Request' +#: lms/doctype/evaluator_schedule/evaluator_schedule.json #: lms/doctype/lms_certificate_request/lms_certificate_request.json -msgctxt "LMS Certificate Request" msgid "Saturday" msgstr "" -#: public/frontend/assets/AssignmentSubmission-D1b-IhRa.js:1 -#: public/frontend/assets/BatchCreation-9JuqnhbY.js:1 -#: public/frontend/assets/CreateCourse-2snz_azq.js:1 -#: public/frontend/assets/CreateLesson-7ZGJlo2v.js:2 -#: public/frontend/assets/JobCreation-CU_0h0cz.js:1 #: public/js/common_functions.js:405 msgid "Save" msgstr "" -#. Label of a Table field in DocType 'Course Evaluator' +#. Label of the schedule (Table) field in DocType 'Course Evaluator' #: lms/doctype/course_evaluator/course_evaluator.json -msgctxt "Course Evaluator" msgid "Schedule" msgstr "" -#: public/frontend/assets/Batch-BYfbr7eo.js:1 -msgid "Schedule Evaluation" -msgstr "" - #. Name of a DocType #: lms/doctype/scheduled_flow/scheduled_flow.json msgid "Scheduled Flow" msgstr "" -#. Label of a Select field in DocType 'Cohort Web Page' +#. Label of the scope (Select) field in DocType 'Cohort Web Page' #: lms/doctype/cohort_web_page/cohort_web_page.json -msgctxt "Cohort Web Page" msgid "Scope" msgstr "" +#. Label of the score (Int) field in DocType 'LMS Quiz Submission' +#: lms/doctype/lms_quiz_submission/lms_quiz_submission.json #: templates/quiz/quiz.html:148 msgid "Score" msgstr "" -#. Label of a Int field in DocType 'LMS Quiz Submission' +#. Label of the score_out_of (Int) field in DocType 'LMS Quiz Submission' #: lms/doctype/lms_quiz_submission/lms_quiz_submission.json -msgctxt "LMS Quiz Submission" -msgid "Score" -msgstr "" - -#. Label of a Int field in DocType 'LMS Quiz Submission' -#: lms/doctype/lms_quiz_submission/lms_quiz_submission.json -msgctxt "LMS Quiz Submission" msgid "Score Out Of" msgstr "" -#: public/frontend/assets/index-D1f05dS8.js:7369 -msgid "Search for an icon" -msgstr "" - -#: public/frontend/assets/BatchCreation-9JuqnhbY.js:1 -#: public/js/common_functions.js:327 +#. Label of the seat_count (Int) field in DocType 'LMS Batch' +#: lms/doctype/lms_batch/lms_batch.json public/js/common_functions.js:327 msgid "Seat Count" msgstr "" -#. Label of a Int field in DocType 'LMS Batch' -#: lms/doctype/lms_batch/lms_batch.json -msgctxt "LMS Batch" -msgid "Seat Count" -msgstr "" - -#: public/frontend/assets/BatchDetail-DSYJhLlb.js:1 -#: public/frontend/assets/Batches-8-67VJiw.js:1 -msgid "Seat Left" -msgstr "" - -#: public/frontend/assets/BatchDetail-DSYJhLlb.js:1 -#: public/frontend/assets/Batches-8-67VJiw.js:1 -msgid "Seats Left" -msgstr "" - -#: public/frontend/assets/CreateLesson-7ZGJlo2v.js:1 -msgid "Select a Quiz" -msgstr "" - -#: public/frontend/assets/Batch-BYfbr7eo.js:1 -msgid "Select a slot" -msgstr "" - -#: public/frontend/assets/CreateLesson-7ZGJlo2v.js:1 -msgid "Select an Editor" -msgstr "" - -#. Label of a Check field in DocType 'LMS Settings' +#. Label of the send_calendar_invite_for_evaluations (Check) field in DocType +#. 'LMS Settings' #: lms/doctype/lms_settings/lms_settings.json -msgctxt "LMS Settings" msgid "Send calendar invite for evaluations" msgstr "" -#. Label of a Data field in DocType 'LMS Batch Old' +#. Label of the sessions_on (Data) field in DocType 'LMS Batch Old' #: lms/doctype/lms_batch_old/lms_batch_old.json -msgctxt "LMS Batch Old" msgid "Sessions On Days" msgstr "" @@ -4734,107 +3214,78 @@ msgstr "" msgid "Set your Password" msgstr "" -#: public/frontend/assets/BatchCreation-9JuqnhbY.js:1 -#: public/frontend/assets/CreateCourse-2snz_azq.js:1 -#: public/frontend/assets/ProfileRoles-CVq7nQGs.js:1 -msgid "Settings" -msgstr "" - -#. Label of a Section Break field in DocType 'LMS Quiz' +#. Label of the section_break_hsiv (Section Break) field in DocType 'LMS Quiz' #: lms/doctype/lms_quiz/lms_quiz.json -msgctxt "LMS Quiz" msgid "Settings" msgstr "" -#: public/frontend/assets/ProfileAbout-M7A4DT21.js:1 -msgid "Share on" -msgstr "" - -#: public/frontend/assets/CreateCourse-2snz_azq.js:1 -msgid "Short Introduction" -msgstr "" - -#. Label of a Small Text field in DocType 'LMS Course' +#. Label of the short_introduction (Small Text) field in DocType 'LMS Course' #: lms/doctype/lms_course/lms_course.json -msgctxt "LMS Course" msgid "Short Introduction" msgstr "" -#. Label of a Check field in DocType 'LMS Assignment' +#. Label of the show_answer (Check) field in DocType 'LMS Assignment' #: lms/doctype/lms_assignment/lms_assignment.json -msgctxt "LMS Assignment" msgid "Show Answer" msgstr "" -#. Label of a Check field in DocType 'LMS Quiz' +#. Label of the show_answers (Check) field in DocType 'LMS Quiz' #: lms/doctype/lms_quiz/lms_quiz.json -msgctxt "LMS Quiz" msgid "Show Answers" msgstr "" -#. Label of a Check field in DocType 'LMS Settings' +#. Label of the cookie_policy (Check) field in DocType 'LMS Settings' #: lms/doctype/lms_settings/lms_settings.json -msgctxt "LMS Settings" msgid "Show Cookie Policy on Signup" msgstr "" -#. Label of a Check field in DocType 'LMS Settings' +#. Label of the privacy_policy (Check) field in DocType 'LMS Settings' #: lms/doctype/lms_settings/lms_settings.json -msgctxt "LMS Settings" msgid "Show Privacy Policy on Signup" msgstr "" -#. Label of a Check field in DocType 'LMS Quiz' +#. Label of the show_submission_history (Check) field in DocType 'LMS Quiz' #: lms/doctype/lms_quiz/lms_quiz.json -msgctxt "LMS Quiz" msgid "Show Submission History" msgstr "" -#. Label of a Column Break field in DocType 'LMS Settings' +#. Label of the column_break_2 (Column Break) field in DocType 'LMS Settings' #: lms/doctype/lms_settings/lms_settings.json -msgctxt "LMS Settings" msgid "Show Tab in Batch" msgstr "" -#. Label of a Check field in DocType 'LMS Settings' +#. Label of the terms_of_use (Check) field in DocType 'LMS Settings' #: lms/doctype/lms_settings/lms_settings.json -msgctxt "LMS Settings" msgid "Show Terms of Use on Signup" msgstr "" -#. Label of a Check field in DocType 'LMS Settings' +#. Label of the show_usd_equivalent (Check) field in DocType 'LMS Settings' #: lms/doctype/lms_settings/lms_settings.json -msgctxt "LMS Settings" msgid "Show USD Equivalent" msgstr "" -#. Label of a Check field in DocType 'LMS Settings' +#. Label of the show_day_view (Check) field in DocType 'LMS Settings' #: lms/doctype/lms_settings/lms_settings.json -msgctxt "LMS Settings" msgid "Show day view in timetable" msgstr "" -#. Label of a Check field in DocType 'LMS Batch' +#. Label of the show_live_class (Check) field in DocType 'LMS Batch' #: lms/doctype/lms_batch/lms_batch.json -msgctxt "LMS Batch" msgid "Show live class" msgstr "" -#. Label of a Check field in DocType 'LMS Quiz' +#. Label of the shuffle_questions (Check) field in DocType 'LMS Quiz' #: lms/doctype/lms_quiz/lms_quiz.json -msgctxt "LMS Quiz" msgid "Shuffle Questions" msgstr "" -#. Label of a Tab Break field in DocType 'LMS Settings' +#. Label of the sidebar_tab (Tab Break) field in DocType 'LMS Settings' #: lms/doctype/lms_settings/lms_settings.json -msgctxt "LMS Settings" msgid "Sidebar" msgstr "" -#. Label of a Table field in DocType 'LMS Settings' +#. Label of the sidebar_items (Table) field in DocType 'LMS Settings' #: lms/doctype/lms_settings/lms_settings.json -msgctxt "LMS Settings" msgid "Sidebar Items" msgstr "" @@ -4846,32 +3297,34 @@ msgstr "" msgid "Sign up" msgstr "" -#. Label of a Data field in DocType 'Invite Request' +#. Label of the signup_email (Data) field in DocType 'Invite Request' #: lms/doctype/invite_request/invite_request.json -msgctxt "Invite Request" msgid "Signup Email" msgstr "" -#. Label of a Tab Break field in DocType 'LMS Settings' +#. Label of the signup_settings_tab (Tab Break) field in DocType 'LMS Settings' #: lms/doctype/lms_settings/lms_settings.json -msgctxt "LMS Settings" msgid "Signup Settings" msgstr "" #. Label of a chart in the LMS Workspace -#: lms/workspace/lms/lms.json public/frontend/assets/Statistics-Df9qvpz5.js:18 +#: lms/workspace/lms/lms.json msgid "Signups" msgstr "" -#. Label of a Data field in DocType 'User Skill' -#: lms/doctype/user_skill/user_skill.json -msgctxt "User Skill" +#. Label of the skill (Table MultiSelect) field in DocType 'User' +#. Label of the skill (Data) field in DocType 'User Skill' +#: fixtures/custom_field.json lms/doctype/user_skill/user_skill.json msgid "Skill" msgstr "" -#. Label of a Link field in DocType 'Skills' +#. Label of the skill_details (Section Break) field in DocType 'User' +#: fixtures/custom_field.json +msgid "Skill Details" +msgstr "" + +#. Label of the skill_name (Link) field in DocType 'Skills' #: lms/doctype/skills/skills.json -msgctxt "Skills" msgid "Skill Name" msgstr "" @@ -4892,150 +3345,76 @@ msgstr "" msgid "Slot Times are overlapping for some schedules." msgstr "" -#. Label of a Data field in DocType 'Cohort' +#. 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/doctype/cohort/cohort.json -msgctxt "Cohort" -msgid "Slug" -msgstr "" - -#. Label of a Data field in DocType 'Cohort Subgroup' #: lms/doctype/cohort_subgroup/cohort_subgroup.json -msgctxt "Cohort Subgroup" -msgid "Slug" -msgstr "" - -#. Label of a Data field in DocType 'Cohort Web Page' #: lms/doctype/cohort_web_page/cohort_web_page.json -msgctxt "Cohort Web Page" msgid "Slug" msgstr "" -#. Label of a Code field in DocType 'Exercise Latest Submission' +#. Label of the solution (Code) field in DocType 'Exercise Latest Submission' +#. Label of the solution (Code) field in DocType 'Exercise Submission' #: lms/doctype/exercise_latest_submission/exercise_latest_submission.json -msgctxt "Exercise Latest Submission" -msgid "Solution" -msgstr "" - -#. Label of a Code field in DocType 'Exercise Submission' #: lms/doctype/exercise_submission/exercise_submission.json -msgctxt "Exercise Submission" msgid "Solution" msgstr "" -#. Label of a Link field in DocType 'Batch Student' +#. Label of the source (Link) field in DocType 'Batch Student' +#. Label of the source (Link) field in DocType 'LMS Payment' +#. Label of the source (Data) field in DocType 'LMS Source' #: lms/doctype/batch_student/batch_student.json -msgctxt "Batch Student" -msgid "Source" -msgstr "" - -#. Label of a Link field in DocType 'LMS Payment' #: lms/doctype/lms_payment/lms_payment.json -msgctxt "LMS Payment" -msgid "Source" -msgstr "" - -#. Label of a Data field in DocType 'LMS Source' #: lms/doctype/lms_source/lms_source.json -msgctxt "LMS Source" msgid "Source" msgstr "" #. Option for the 'Role' (Select) field in DocType 'Cohort Staff' -#: lms/doctype/cohort_staff/cohort_staff.json -msgctxt "Cohort Staff" -msgid "Staff" -msgstr "" - #. Option for the 'Member Type' (Select) field in DocType 'LMS Enrollment' +#: lms/doctype/cohort_staff/cohort_staff.json #: lms/doctype/lms_enrollment/lms_enrollment.json -msgctxt "LMS Enrollment" msgid "Staff" msgstr "" -#. Label of a Select field in DocType 'LMS Batch Old' +#. Label of the stage (Select) field in DocType 'LMS Batch Old' #: lms/doctype/lms_batch_old/lms_batch_old.json -msgctxt "LMS Batch Old" msgid "Stage" msgstr "" -#: public/frontend/assets/Batch-BYfbr7eo.js:1 -#: public/frontend/assets/index-D1f05dS8.js:7351 templates/quiz/quiz.html:39 +#: templates/quiz/quiz.html:39 msgid "Start" msgstr "" -#: public/frontend/assets/BatchCreation-9JuqnhbY.js:1 +#. 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' +#: lms/doctype/education_detail/education_detail.json +#: lms/doctype/lms_batch/lms_batch.json +#: lms/doctype/lms_batch_old/lms_batch_old.json #: public/js/common_functions.js:275 msgid "Start Date" msgstr "" -#. Label of a Date field in DocType 'Education Detail' -#: lms/doctype/education_detail/education_detail.json -msgctxt "Education Detail" -msgid "Start Date" -msgstr "" - -#. Label of a Date field in DocType 'LMS Batch' -#: lms/doctype/lms_batch/lms_batch.json -msgctxt "LMS Batch" -msgid "Start Date" -msgstr "" - -#. Label of a Date field in DocType 'LMS Batch Old' -#: lms/doctype/lms_batch_old/lms_batch_old.json -msgctxt "LMS Batch Old" -msgid "Start Date" -msgstr "" - -#: public/frontend/assets/Lesson-59XvRJIg.js:18 #: templates/emails/lms_course_interest.html:9 msgid "Start Learning" msgstr "" -#: public/frontend/assets/BatchCreation-9JuqnhbY.js:1 -#: public/frontend/assets/ProfileEvaluator-bug1MVAq.js:1 -#: public/js/common_functions.js:292 -msgid "Start Time" -msgstr "" - -#. Label of a Time field in DocType 'Evaluator Schedule' +#. 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' #: lms/doctype/evaluator_schedule/evaluator_schedule.json -msgctxt "Evaluator Schedule" -msgid "Start Time" -msgstr "" - -#. Label of a Time field in DocType 'LMS Batch' #: lms/doctype/lms_batch/lms_batch.json -msgctxt "LMS Batch" -msgid "Start Time" -msgstr "" - -#. Label of a Time field in DocType 'LMS Batch Old' #: lms/doctype/lms_batch_old/lms_batch_old.json -msgctxt "LMS Batch Old" -msgid "Start Time" -msgstr "" - -#. Label of a Time field in DocType 'LMS Batch Timetable' #: lms/doctype/lms_batch_timetable/lms_batch_timetable.json -msgctxt "LMS Batch Timetable" -msgid "Start Time" -msgstr "" - -#. Label of a Time field in DocType 'LMS Certificate Evaluation' #: lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json -msgctxt "LMS Certificate Evaluation" -msgid "Start Time" -msgstr "" - -#. Label of a Time field in DocType 'LMS Certificate Request' #: lms/doctype/lms_certificate_request/lms_certificate_request.json -msgctxt "LMS Certificate Request" -msgid "Start Time" -msgstr "" - -#. Label of a Time field in DocType 'Scheduled Flow' #: lms/doctype/scheduled_flow/scheduled_flow.json -msgctxt "Scheduled Flow" +#: public/js/common_functions.js:292 msgid "Start Time" msgstr "" @@ -5047,9 +3426,8 @@ msgstr "" msgid "Start Time should be less than End Time." msgstr "" -#. Label of a Small Text field in DocType 'LMS Live Class' +#. Label of the start_url (Small Text) field in DocType 'LMS Live Class' #: lms/doctype/lms_live_class/lms_live_class.json -msgctxt "LMS Live Class" msgid "Start URL" msgstr "" @@ -5057,89 +3435,40 @@ msgstr "" msgid "Start date cannot be a past date." msgstr "" -#: www/lms.py:134 +#. Option for the 'Company Type' (Select) field in DocType 'User' +#: fixtures/custom_field.json +msgid "Startup Organization" +msgstr "" + +#. Label of the statistics (Check) field in DocType 'LMS Settings' +#: lms/doctype/lms_settings/lms_settings.json www/lms.py:134 msgid "Statistics" msgstr "" -#. Label of a Check field in DocType 'LMS Settings' -#: lms/doctype/lms_settings/lms_settings.json -msgctxt "LMS Settings" -msgid "Statistics" -msgstr "" - -#: public/frontend/assets/JobCreation-CU_0h0cz.js:1 -msgid "Status" -msgstr "" - -#. Label of a Select field in DocType 'Cohort' -#: lms/doctype/cohort/cohort.json -msgctxt "Cohort" -msgid "Status" -msgstr "" - -#. Label of a Select field in DocType 'Cohort Join Request' -#: lms/doctype/cohort_join_request/cohort_join_request.json -msgctxt "Cohort Join Request" -msgid "Status" -msgstr "" - -#. Label of a Select field in DocType 'Exercise Latest Submission' -#: lms/doctype/exercise_latest_submission/exercise_latest_submission.json -msgctxt "Exercise Latest Submission" -msgid "Status" -msgstr "" - -#. Label of a Select field in DocType 'Exercise Submission' -#: lms/doctype/exercise_submission/exercise_submission.json -msgctxt "Exercise Submission" -msgid "Status" -msgstr "" - -#. Label of a Select field in DocType 'Invite Request' -#: lms/doctype/invite_request/invite_request.json -msgctxt "Invite Request" -msgid "Status" -msgstr "" - -#. Label of a Select field in DocType 'Job Opportunity' +#. 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 Course' +#. Label of the status (Select) field in DocType 'LMS Course Progress' +#. Label of the status (Select) field in DocType 'LMS Mentor Request' #: job/doctype/job_opportunity/job_opportunity.json -msgctxt "Job Opportunity" -msgid "Status" -msgstr "" - -#. Label of a Select field in DocType 'LMS Assignment Submission' +#: lms/doctype/cohort/cohort.json +#: lms/doctype/cohort_join_request/cohort_join_request.json +#: lms/doctype/exercise_latest_submission/exercise_latest_submission.json +#: lms/doctype/exercise_submission/exercise_submission.json +#: lms/doctype/invite_request/invite_request.json #: lms/doctype/lms_assignment_submission/lms_assignment_submission.json -msgctxt "LMS Assignment Submission" -msgid "Status" -msgstr "" - -#. Label of a Select field in DocType 'LMS Batch Old' #: lms/doctype/lms_batch_old/lms_batch_old.json -msgctxt "LMS Batch Old" -msgid "Status" -msgstr "" - -#. Label of a Select field in DocType 'LMS Certificate Evaluation' #: lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json -msgctxt "LMS Certificate Evaluation" -msgid "Status" -msgstr "" - -#. Label of a Select field in DocType 'LMS Course' #: lms/doctype/lms_course/lms_course.json -msgctxt "LMS Course" -msgid "Status" -msgstr "" - -#. Label of a Select field in DocType 'LMS Course Progress' #: lms/doctype/lms_course_progress/lms_course_progress.json -msgctxt "LMS Course Progress" -msgid "Status" -msgstr "" - -#. Label of a Select field in DocType 'LMS Mentor Request' #: lms/doctype/lms_mentor_request/lms_mentor_request.json -msgctxt "LMS Mentor Request" msgid "Status" msgstr "" @@ -5147,124 +3476,73 @@ msgstr "" msgid "Status/Score" msgstr "" -#: public/frontend/assets/ProfileRoles-CVq7nQGs.js:1 -#: templates/signup-form.html:25 -msgid "Student" -msgstr "" - -#. Label of a Link field in DocType 'Batch Student' -#: lms/doctype/batch_student/batch_student.json -msgctxt "Batch Student" -msgid "Student" -msgstr "" - +#. Option for the 'User Category' (Select) field in DocType 'User' +#. Label of the student (Link) field in DocType 'Batch Student' #. Option for the 'Required Role' (Select) field in DocType 'Cohort Web Page' -#: lms/doctype/cohort_web_page/cohort_web_page.json -msgctxt "Cohort Web Page" -msgid "Student" -msgstr "" - #. Option for the 'Member Type' (Select) field in DocType 'LMS Enrollment' -#: lms/doctype/lms_enrollment/lms_enrollment.json -msgctxt "LMS Enrollment" +#: fixtures/custom_field.json lms/doctype/batch_student/batch_student.json +#: lms/doctype/cohort_web_page/cohort_web_page.json +#: lms/doctype/lms_enrollment/lms_enrollment.json templates/signup-form.html:25 msgid "Student" msgstr "" -#. Label of a Section Break field in DocType 'Batch Student' +#. Label of the student_details_section (Section Break) field in DocType 'Batch +#. Student' #: lms/doctype/batch_student/batch_student.json -msgctxt "Batch Student" msgid "Student Details" msgstr "" -#. Label of a Data field in DocType 'Batch Student' +#. Label of the student_name (Data) field in DocType 'Batch Student' #: lms/doctype/batch_student/batch_student.json -msgctxt "Batch Student" msgid "Student Name" msgstr "" -#: lms/doctype/lms_batch/lms_batch.py:44 +#: lms/doctype/lms_batch/lms_batch.py:49 msgid "Student {0} has already been added to this batch." msgstr "" -#: public/frontend/assets/Batch-BYfbr7eo.js:1 -msgid "Students" -msgstr "" - -#. Label of a Table field in DocType 'LMS Batch' +#. Label of the students (Table) field in DocType 'LMS Batch' +#. Label of the show_students (Check) field in DocType 'LMS Settings' #: lms/doctype/lms_batch/lms_batch.json -msgctxt "LMS Batch" -msgid "Students" -msgstr "" - -#. Label of a Check field in DocType 'LMS Settings' #: lms/doctype/lms_settings/lms_settings.json -msgctxt "LMS Settings" msgid "Students" msgstr "" #. Description of the 'Paid Batch' (Check) field in DocType 'LMS Batch' #: lms/doctype/lms_batch/lms_batch.json -msgctxt "LMS Batch" msgid "Students will be enrolled in a paid batch once they complete the payment" msgstr "" -#. Label of a Link field in DocType 'Cohort Join Request' -#: lms/doctype/cohort_join_request/cohort_join_request.json -msgctxt "Cohort Join Request" -msgid "Subgroup" -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/doctype/cohort_join_request/cohort_join_request.json #: lms/doctype/cohort_web_page/cohort_web_page.json -msgctxt "Cohort Web Page" -msgid "Subgroup" -msgstr "" - -#. Label of a Link field in DocType 'LMS Enrollment' #: lms/doctype/lms_enrollment/lms_enrollment.json -msgctxt "LMS Enrollment" msgid "Subgroup" msgstr "" -#: public/frontend/assets/Batch-BYfbr7eo.js:1 -msgid "Subject" -msgstr "" - -#: public/frontend/assets/AssignmentSubmission-D1b-IhRa.js:1 -msgid "Submission" -msgstr "" - -#: public/frontend/assets/Batch-BYfbr7eo.js:1 -#: public/frontend/assets/index-D1f05dS8.js:7351 templates/assignment.html:9 -#: templates/livecode/extension_footer.html:25 templates/quiz/quiz.html:128 -#: templates/reviews.html:163 www/new-sign-up.html:32 +#: templates/assignment.html:9 templates/livecode/extension_footer.html:25 +#: templates/quiz/quiz.html:128 templates/reviews.html:163 +#: www/new-sign-up.html:32 msgid "Submit" msgstr "" -#: public/frontend/assets/JobDetail-CBHvk1ll.js:1 -msgid "Submit your resume to proceed with your application for this position. Upon submission, it will be shared with the job poster." -msgstr "" - #: templates/livecode/extension_footer.html:85 #: templates/livecode/extension_footer.html:115 msgid "Submitted {0}" msgstr "" -#. Label of a Small Text field in DocType 'LMS Certificate Evaluation' +#. Label of the summary (Small Text) field in DocType 'LMS Certificate +#. Evaluation' #: lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json -msgctxt "LMS Certificate Evaluation" msgid "Summary" msgstr "" #. Option for the 'Day' (Select) field in DocType 'Evaluator Schedule' -#: lms/doctype/evaluator_schedule/evaluator_schedule.json -msgctxt "Evaluator Schedule" -msgid "Sunday" -msgstr "" - #. Option for the 'Day' (Select) field in DocType 'LMS Certificate Request' +#: lms/doctype/evaluator_schedule/evaluator_schedule.json #: lms/doctype/lms_certificate_request/lms_certificate_request.json -msgctxt "LMS Certificate Request" msgid "Sunday" msgstr "" @@ -5324,13 +3602,8 @@ msgstr "" msgid "System Manager" msgstr "" -#: public/frontend/assets/CreateCourse-2snz_azq.js:1 -msgid "Tags" -msgstr "" - -#. Label of a Data field in DocType 'LMS Course' +#. Label of the tags (Data) field in DocType 'LMS Course' #: lms/doctype/lms_course/lms_course.json -msgctxt "LMS Course" msgid "Tags" msgstr "" @@ -5340,15 +3613,15 @@ msgstr "" msgid "Team School" msgstr "" -#. Label of a Link field in DocType 'Cohort Web Page' -#: lms/doctype/cohort_web_page/cohort_web_page.json -msgctxt "Cohort Web Page" -msgid "Template" +#. Option for the 'Collaboration Preference' (Select) field in DocType 'User' +#: fixtures/custom_field.json +msgid "Team Work" msgstr "" -#. Label of a Link field in DocType 'LMS Certificate' +#. Label of the template (Link) field in DocType 'Cohort Web Page' +#. Label of the template (Link) field in DocType 'LMS Certificate' +#: lms/doctype/cohort_web_page/cohort_web_page.json #: lms/doctype/lms_certificate/lms_certificate.json -msgctxt "LMS Certificate" msgid "Template" msgstr "" @@ -5360,39 +3633,29 @@ msgstr "" msgid "Terms of Use" msgstr "" -#. Label of a Link field in DocType 'LMS Settings' +#. Label of the terms_page (Link) field in DocType 'LMS Settings' #: lms/doctype/lms_settings/lms_settings.json -msgctxt "LMS Settings" msgid "Terms of Use Page" msgstr "" -#. Label of a Small Text field in DocType 'Exercise Latest Submission' +#. 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/doctype/exercise_latest_submission/exercise_latest_submission.json -msgctxt "Exercise Latest Submission" -msgid "Test Results" -msgstr "" - -#. Label of a Small Text field in DocType 'Exercise Submission' #: lms/doctype/exercise_submission/exercise_submission.json -msgctxt "Exercise Submission" msgid "Test Results" msgstr "" -#. Label of a Code field in DocType 'LMS Exercise' +#. Label of the tests (Code) field in DocType 'LMS Exercise' #: lms/doctype/lms_exercise/lms_exercise.json -msgctxt "LMS Exercise" msgid "Tests" msgstr "" #. Option for the 'Type' (Select) field in DocType 'LMS Assignment' -#: lms/doctype/lms_assignment/lms_assignment.json -msgctxt "LMS Assignment" -msgid "Text" -msgstr "" - #. Option for the 'Type' (Select) field in DocType 'LMS Assignment Submission' +#: lms/doctype/lms_assignment/lms_assignment.json #: lms/doctype/lms_assignment_submission/lms_assignment_submission.json -msgctxt "LMS Assignment Submission" msgid "Text" msgstr "" @@ -5407,11 +3670,15 @@ msgstr "" msgid "The course {0} is now available on {1}." msgstr "" -#: public/frontend/assets/index-D1f05dS8.js:7351 templates/quiz/quiz.html:24 +#: lms/doctype/lms_certificate_request/lms_certificate_request.py:44 +msgid "The evaluator of this course is unavailable from {0} to {1}. Please select a date after {1}" +msgstr "" + +#: templates/quiz/quiz.html:24 msgid "The quiz has a time limit. For each question you will be given {0} seconds." msgstr "" -#: lms/doctype/lms_certificate_request/lms_certificate_request.py:61 +#: lms/doctype/lms_certificate_request/lms_certificate_request.py:62 msgid "The slot is already booked by another participant." msgstr "" @@ -5419,40 +3686,30 @@ msgstr "" msgid "The status of your application has changed." msgstr "" -#: lms/doctype/lms_batch/lms_batch.py:129 +#: lms/doctype/lms_batch/lms_batch.py:135 msgid "There are no seats available in this batch." msgstr "" -#: public/frontend/assets/Batch-BYfbr7eo.js:1 -msgid "There are no students in this batch." -msgstr "" - #: templates/course_list.html:14 msgid "There are no {0} on this site." msgstr "" -#: lms/utils.py:1123 +#: lms/utils.py:1070 msgid "There is a problem with the payment gateway. Please contact the Administrator to proceed." msgstr "" #. Description of the 'section_break_ubxi' (Section Break) field in DocType #. 'LMS Batch' #: lms/doctype/lms_batch/lms_batch.json -msgctxt "LMS Batch" msgid "These customisations will work on the main batch page." msgstr "" -#: public/frontend/assets/Badge-DYL399Ho.js:1 -msgid "This badge has been awarded to {0} on {1}." -msgstr "" - -#. Label of a Check field in DocType 'Certification' +#. Label of the expire (Check) field in DocType 'Certification' #: lms/doctype/certification/certification.json -msgctxt "Certification" msgid "This certificate does no expire" msgstr "" -#: lms/utils.py:1081 lms/utils.py:1822 +#: lms/utils.py:1028 lms/utils.py:1769 msgid "This course is free." msgstr "" @@ -5460,214 +3717,105 @@ msgstr "" msgid "This lesson is not available for preview. As you are the Instructor of the course only you can see it." msgstr "" -#: public/frontend/assets/Lesson-59XvRJIg.js:18 -msgid "This lesson is not available for preview. Please enroll in the course to access it." -msgstr "" - #: lms/widgets/NoPreviewModal.html:16 msgid "This lesson is not available for preview. Please join the course to access it." msgstr "" -#: public/frontend/assets/index-D1f05dS8.js:7351 templates/quiz/quiz.html:6 +#: templates/quiz/quiz.html:6 msgid "This quiz consists of {0} questions." msgstr "" #. Option for the 'Day' (Select) field in DocType 'Evaluator Schedule' -#: lms/doctype/evaluator_schedule/evaluator_schedule.json -msgctxt "Evaluator Schedule" -msgid "Thursday" -msgstr "" - #. Option for the 'Day' (Select) field in DocType 'LMS Certificate Request' +#: lms/doctype/evaluator_schedule/evaluator_schedule.json #: lms/doctype/lms_certificate_request/lms_certificate_request.json -msgctxt "LMS Certificate Request" msgid "Thursday" msgstr "" -#: public/frontend/assets/Batch-BYfbr7eo.js:1 -msgid "Time" -msgstr "" - -#. Label of a Time field in DocType 'LMS Live Class' +#. Label of the time (Time) field in DocType 'LMS Live Class' #: lms/doctype/lms_live_class/lms_live_class.json -msgctxt "LMS Live Class" msgid "Time" msgstr "" -#: public/frontend/assets/Batch-BYfbr7eo.js:1 -msgid "Time must be in 24 hour format (HH:mm). Example 11:30 or 22:00" +#. Label of the time (Select) field in DocType 'User' +#: fixtures/custom_field.json +msgid "Time Preference" msgstr "" -#. Label of a Tab Break field in DocType 'LMS Batch' -#. Label of a Table field in DocType 'LMS Batch' +#. 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/doctype/lms_batch/lms_batch.json -msgctxt "LMS Batch" +#: lms/doctype/lms_timetable_template/lms_timetable_template.json msgid "Timetable" msgstr "" -#. Label of a Table field in DocType 'LMS Timetable Template' -#: lms/doctype/lms_timetable_template/lms_timetable_template.json -msgctxt "LMS Timetable Template" -msgid "Timetable" -msgstr "" - -#. Label of a Table field in DocType 'LMS Batch' +#. Label of the timetable_legends (Table) field in DocType 'LMS Batch' +#. Label of the timetable_legends (Table) field in DocType 'LMS Timetable +#. Template' #: lms/doctype/lms_batch/lms_batch.json -msgctxt "LMS Batch" +#: lms/doctype/lms_timetable_template/lms_timetable_template.json msgid "Timetable Legends" msgstr "" -#. Label of a Table field in DocType 'LMS Timetable Template' -#: lms/doctype/lms_timetable_template/lms_timetable_template.json -msgctxt "LMS Timetable Template" -msgid "Timetable Legends" -msgstr "" - -#. Label of a Link field in DocType 'LMS Batch' +#. Label of the timetable_template (Link) field in DocType 'LMS Batch' #: lms/doctype/lms_batch/lms_batch.json -msgctxt "LMS Batch" msgid "Timetable Template" msgstr "" -#: public/frontend/assets/Batch-BYfbr7eo.js:1 -#: public/frontend/assets/BatchCreation-9JuqnhbY.js:1 -msgid "Timezone" -msgstr "" - -#. Label of a Data field in DocType 'LMS Batch' +#. Label of the timezone (Data) field in DocType 'LMS Batch' +#. Label of the timezone (Data) field in DocType 'LMS Live Class' #: lms/doctype/lms_batch/lms_batch.json -msgctxt "LMS Batch" -msgid "Timezone" -msgstr "" - -#. Label of a Data field in DocType 'LMS Live Class' #: lms/doctype/lms_live_class/lms_live_class.json -msgctxt "LMS Live Class" msgid "Timezone" msgstr "" -#: templates/emails/batch_confirmation.html:24 +#: templates/emails/batch_confirmation.html:25 msgid "Timings:" msgstr "" -#: public/frontend/assets/Batch-BYfbr7eo.js:1 -#: public/frontend/assets/BatchCreation-9JuqnhbY.js:1 -#: public/frontend/assets/CreateCourse-2snz_azq.js:1 -#: public/frontend/assets/Discussions-BUeR4n3G.js:1 -#: public/frontend/assets/JobCreation-CU_0h0cz.js:1 +#. 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 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' +#: lms/doctype/cohort/cohort.json +#: lms/doctype/cohort_subgroup/cohort_subgroup.json +#: lms/doctype/cohort_web_page/cohort_web_page.json +#: lms/doctype/course_chapter/course_chapter.json +#: lms/doctype/course_lesson/course_lesson.json +#: lms/doctype/lms_assignment/lms_assignment.json +#: lms/doctype/lms_badge/lms_badge.json lms/doctype/lms_batch/lms_batch.json +#: lms/doctype/lms_batch_old/lms_batch_old.json +#: lms/doctype/lms_course/lms_course.json +#: lms/doctype/lms_exercise/lms_exercise.json +#: lms/doctype/lms_live_class/lms_live_class.json +#: lms/doctype/lms_quiz/lms_quiz.json +#: lms/doctype/lms_sidebar_item/lms_sidebar_item.json +#: lms/doctype/lms_timetable_template/lms_timetable_template.json +#: lms/doctype/work_experience/work_experience.json #: public/js/common_functions.js:259 msgid "Title" msgstr "" -#. Label of a Data field in DocType 'Cohort' -#: lms/doctype/cohort/cohort.json -msgctxt "Cohort" -msgid "Title" -msgstr "" - -#. Label of a Data field in DocType 'Cohort Subgroup' -#: lms/doctype/cohort_subgroup/cohort_subgroup.json -msgctxt "Cohort Subgroup" -msgid "Title" -msgstr "" - -#. Label of a Data field in DocType 'Cohort Web Page' -#: lms/doctype/cohort_web_page/cohort_web_page.json -msgctxt "Cohort Web Page" -msgid "Title" -msgstr "" - -#. Label of a Data field in DocType 'Course Chapter' -#: lms/doctype/course_chapter/course_chapter.json -msgctxt "Course Chapter" -msgid "Title" -msgstr "" - -#. Label of a Data field in DocType 'Course Lesson' -#: lms/doctype/course_lesson/course_lesson.json -msgctxt "Course Lesson" -msgid "Title" -msgstr "" - -#. Label of a Data field in DocType 'LMS Assignment' -#: lms/doctype/lms_assignment/lms_assignment.json -msgctxt "LMS Assignment" -msgid "Title" -msgstr "" - -#. Label of a Data field in DocType 'LMS Badge' -#: lms/doctype/lms_badge/lms_badge.json -msgctxt "LMS Badge" -msgid "Title" -msgstr "" - -#. Label of a Data field in DocType 'LMS Batch' -#: lms/doctype/lms_batch/lms_batch.json -msgctxt "LMS Batch" -msgid "Title" -msgstr "" - -#. Label of a Data field in DocType 'LMS Batch Old' -#: lms/doctype/lms_batch_old/lms_batch_old.json -msgctxt "LMS Batch Old" -msgid "Title" -msgstr "" - -#. Label of a Data field in DocType 'LMS Course' -#: lms/doctype/lms_course/lms_course.json -msgctxt "LMS Course" -msgid "Title" -msgstr "" - -#. Label of a Data field in DocType 'LMS Exercise' -#: lms/doctype/lms_exercise/lms_exercise.json -msgctxt "LMS Exercise" -msgid "Title" -msgstr "" - -#. Label of a Data field in DocType 'LMS Live Class' -#: lms/doctype/lms_live_class/lms_live_class.json -msgctxt "LMS Live Class" -msgid "Title" -msgstr "" - -#. Label of a Data field in DocType 'LMS Quiz' -#: lms/doctype/lms_quiz/lms_quiz.json -msgctxt "LMS Quiz" -msgid "Title" -msgstr "" - -#. Label of a Data field in DocType 'LMS Sidebar Item' -#: lms/doctype/lms_sidebar_item/lms_sidebar_item.json -msgctxt "LMS Sidebar Item" -msgid "Title" -msgstr "" - -#. Label of a Data field in DocType 'LMS Timetable Template' -#: lms/doctype/lms_timetable_template/lms_timetable_template.json -msgctxt "LMS Timetable Template" -msgid "Title" -msgstr "" - -#. Label of a Data field in DocType 'Work Experience' -#: lms/doctype/work_experience/work_experience.json -msgctxt "Work Experience" -msgid "Title" -msgstr "" - -#: public/frontend/assets/ProfileEvaluator-bug1MVAq.js:1 -msgid "To" -msgstr "" - -#. Label of a Date field in DocType 'Course Evaluator' +#. Label of the unavailable_to (Date) field in DocType 'Course Evaluator' #: lms/doctype/course_evaluator/course_evaluator.json -msgctxt "Course Evaluator" msgid "To" msgstr "" -#. Label of a Date field in DocType 'Work Experience' +#. Label of the to_date (Date) field in DocType 'Work Experience' #: lms/doctype/work_experience/work_experience.json -msgctxt "Work Experience" msgid "To Date" msgstr "" @@ -5675,11 +3823,7 @@ msgstr "" msgid "To Date is mandatory in Work Experience." msgstr "" -#: public/frontend/assets/CreateLesson-7ZGJlo2v.js:1 -msgid "To add a YouTube video, paste the URL of the video in the editor." -msgstr "" - -#: lms/utils.py:1090 lms/utils.py:1833 +#: lms/utils.py:1037 lms/utils.py:1780 msgid "To join this batch, please contact the Administrator." msgstr "" @@ -5687,9 +3831,8 @@ msgstr "" msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour" msgstr "" -#. Label of a Int field in DocType 'LMS Quiz' +#. Label of the total_marks (Int) field in DocType 'LMS Quiz' #: lms/doctype/lms_quiz/lms_quiz.json -msgctxt "LMS Quiz" msgid "Total Marks" msgstr "" @@ -5698,76 +3841,48 @@ msgstr "" msgid "Total Signups" msgstr "" -#: public/frontend/assets/index-D1f05dS8.js:7351 templates/quiz/quiz.html:131 +#. Option for the 'Location Preference' (Select) field in DocType 'User' +#: fixtures/custom_field.json +msgid "Travel" +msgstr "" + +#: templates/quiz/quiz.html:131 msgid "Try Again" msgstr "" #. Option for the 'Day' (Select) field in DocType 'Evaluator Schedule' -#: lms/doctype/evaluator_schedule/evaluator_schedule.json -msgctxt "Evaluator Schedule" -msgid "Tuesday" -msgstr "" - #. Option for the 'Day' (Select) field in DocType 'LMS Certificate Request' +#: lms/doctype/evaluator_schedule/evaluator_schedule.json #: lms/doctype/lms_certificate_request/lms_certificate_request.json -msgctxt "LMS Certificate Request" msgid "Tuesday" msgstr "" -#: public/frontend/assets/ProfileAbout-M7A4DT21.js:1 -msgid "Twitter" -msgstr "" - -#: public/frontend/assets/JobCreation-CU_0h0cz.js:1 -#: templates/assessments.html:14 -msgid "Type" -msgstr "" - -#. Label of a Select field in DocType 'Job Opportunity' +#. 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' #: job/doctype/job_opportunity/job_opportunity.json -msgctxt "Job Opportunity" -msgid "Type" -msgstr "" - -#. Label of a Select field in DocType 'LMS Assignment' #: lms/doctype/lms_assignment/lms_assignment.json -msgctxt "LMS Assignment" -msgid "Type" -msgstr "" - -#. Label of a Select field in DocType 'LMS Assignment Submission' #: lms/doctype/lms_assignment_submission/lms_assignment_submission.json -msgctxt "LMS Assignment Submission" -msgid "Type" -msgstr "" - -#. Label of a Select field in DocType 'LMS Question' -#: lms/doctype/lms_question/lms_question.json -msgctxt "LMS Question" +#: lms/doctype/lms_question/lms_question.json templates/assessments.html:14 msgid "Type" msgstr "" #. Option for the 'Grade Type' (Select) field in DocType 'Education Detail' #: lms/doctype/education_detail/education_detail.json -msgctxt "Education Detail" msgid "UK Grading (e.g. 1st, 2:2)" msgstr "" #. Option for the 'Type' (Select) field in DocType 'LMS Assignment' -#: lms/doctype/lms_assignment/lms_assignment.json -msgctxt "LMS Assignment" -msgid "URL" -msgstr "" - #. Option for the 'Type' (Select) field in DocType 'LMS Assignment Submission' +#: lms/doctype/lms_assignment/lms_assignment.json #: lms/doctype/lms_assignment_submission/lms_assignment_submission.json -msgctxt "LMS Assignment Submission" msgid "URL" msgstr "" -#. Label of a Section Break field in DocType 'Course Evaluator' +#. Label of the unavailability_section (Section Break) field in DocType 'Course +#. Evaluator' #: lms/doctype/course_evaluator/course_evaluator.json -msgctxt "Course Evaluator" msgid "Unavailability" msgstr "" @@ -5777,47 +3892,31 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'LMS Course' #: lms/doctype/lms_course/lms_course.json -msgctxt "LMS Course" msgid "Under Review" msgstr "" #. Option for the 'Visibility' (Select) field in DocType 'LMS Batch Old' #: lms/doctype/lms_batch_old/lms_batch_old.json -msgctxt "LMS Batch Old" msgid "Unlisted" msgstr "" -#: public/frontend/assets/Profile-CcZj7_FE.js:1 -msgid "Unsplash" -msgstr "" - -#. Label of a Data field in DocType 'LMS Settings' +#. Label of the unsplash_access_key (Data) field in DocType 'LMS Settings' #: lms/doctype/lms_settings/lms_settings.json -msgctxt "LMS Settings" msgid "Unsplash Access Key" msgstr "" -#: public/frontend/assets/CreateCourse-2snz_azq.js:1 -msgid "Upcoming" +#. Option for the 'Role Preference' (Select) field in DocType 'User' +#: fixtures/custom_field.json +msgid "Unstructured Role" msgstr "" #. Option for the 'Status' (Select) field in DocType 'Cohort' -#: lms/doctype/cohort/cohort.json -msgctxt "Cohort" +#. Label of the upcoming (Check) field in DocType 'LMS Course' +#: lms/doctype/cohort/cohort.json lms/doctype/lms_course/lms_course.json msgid "Upcoming" msgstr "" -#. Label of a Check field in DocType 'LMS Course' -#: lms/doctype/lms_course/lms_course.json -msgctxt "LMS Course" -msgid "Upcoming" -msgstr "" - -#: public/frontend/assets/Batch-BYfbr7eo.js:1 -msgid "Upcoming Batches" -msgstr "" - -#: public/frontend/assets/Batch-BYfbr7eo.js:1 templates/upcoming_evals.html:3 +#: templates/upcoming_evals.html:3 msgid "Upcoming Evaluations" msgstr "" @@ -5825,14 +3924,6 @@ msgstr "" msgid "Update Password" msgstr "" -#: public/frontend/assets/AssignmentSubmission-D1b-IhRa.js:1 -msgid "Upload File" -msgstr "" - -#: public/frontend/assets/CreateLesson-7ZGJlo2v.js:1 -msgid "Upload a File" -msgstr "" - #: lms/doctype/course_lesson/course_lesson.js:26 msgid "Upload a video from your local machine to the {0}. Copy and paste this syntax in the editor. Replace 'url_of_source' with the File URL field of the document you created in the File DocType." msgstr "" @@ -5841,46 +3932,27 @@ msgstr "" msgid "Upload the video on youtube." msgstr "" -#: public/frontend/assets/JobDetail-CBHvk1ll.js:1 -msgid "Uploading ${s}%" -msgstr "" - -#: public/frontend/assets/AssignmentSubmission-D1b-IhRa.js:1 -#: public/frontend/assets/CreateLesson-7ZGJlo2v.js:1 -msgid "Uploading {0}%" -msgstr "" - -#. Label of a Link field in DocType 'Cohort Staff' -#: lms/doctype/cohort_staff/cohort_staff.json -msgctxt "Cohort Staff" -msgid "User" -msgstr "" - -#. Label of a Link field in DocType 'LMS Course Interest' -#: lms/doctype/lms_course_interest/lms_course_interest.json -msgctxt "LMS Course Interest" -msgid "User" -msgstr "" - -#. Label of a Link field in DocType 'LMS Job Application' +#. 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' #: job/doctype/lms_job_application/lms_job_application.json -msgctxt "LMS Job Application" +#: lms/doctype/cohort_staff/cohort_staff.json +#: lms/doctype/lms_course_interest/lms_course_interest.json msgid "User" msgstr "" -#: templates/signup-form.html:16 +#. Label of the user_category (Select) field in DocType 'User' +#: fixtures/custom_field.json templates/signup-form.html:16 msgid "User Category" msgstr "" -#. Label of a Select field in DocType 'LMS Badge' +#. Label of the user_field (Select) field in DocType 'LMS Badge' #: lms/doctype/lms_badge/lms_badge.json -msgctxt "LMS Badge" msgid "User Field" msgstr "" #. Option for the 'Type' (Select) field in DocType 'LMS Question' #: lms/doctype/lms_question/lms_question.json -msgctxt "LMS Question" msgid "User Input" msgstr "" @@ -5893,27 +3965,20 @@ msgstr "" msgid "User {0} has reported the job post {1}" msgstr "" -#. Label of a Data field in DocType 'Batch Student' +#. Label of the username (Data) field in DocType 'Batch Student' +#. Label of the username (Data) field in DocType 'Invite Request' #: lms/doctype/batch_student/batch_student.json -msgctxt "Batch Student" -msgid "Username" -msgstr "" - -#. Label of a Data field in DocType 'Invite Request' #: lms/doctype/invite_request/invite_request.json -msgctxt "Invite Request" msgid "Username" msgstr "" #. Label of a shortcut in the LMS Workspace #: lms/workspace/lms/lms.json -msgctxt "User" msgid "Users" msgstr "" -#. Label of a Small Text field in DocType 'LMS Quiz Result' +#. Label of the answer (Small Text) field in DocType 'LMS Quiz Result' #: lms/doctype/lms_quiz_result/lms_quiz_result.json -msgctxt "LMS Quiz Result" msgid "Users Response" msgstr "" @@ -5923,7 +3988,6 @@ msgstr "" #. Option for the 'Event' (Select) field in DocType 'LMS Badge' #: lms/doctype/lms_badge/lms_badge.json -msgctxt "LMS Badge" msgid "Value Change" msgstr "" @@ -5931,57 +3995,38 @@ msgstr "" msgid "Video" msgstr "" -#. Label of a Data field in DocType 'LMS Course' +#. Label of the video_link (Data) field in DocType 'LMS Course' #: lms/doctype/lms_course/lms_course.json -msgctxt "LMS Course" msgid "Video Embed Link" msgstr "" -#: public/frontend/assets/Notifications-YFJ-Ay-J.js:1 -msgid "View" -msgstr "" - -#: public/frontend/assets/CreateCourse-2snz_azq.js:1 -msgid "View Course" -msgstr "" - -#. Label of a Select field in DocType 'LMS Batch Old' +#. Label of the visibility (Select) field in DocType 'LMS Batch Old' #: lms/doctype/lms_batch_old/lms_batch_old.json -msgctxt "LMS Batch Old" msgid "Visibility" msgstr "" -#: templates/emails/batch_confirmation.html:28 +#: templates/emails/batch_confirmation.html:29 msgid "Visit the following link to view your " msgstr "" +#. Label of the internship (Table) field in DocType 'User' +#: fixtures/custom_field.json +msgid "Volunteering or Internship" +msgstr "" + #: templates/emails/batch_confirmation.html:6 msgid "We are pleased to inform you that you have been enrolled in our upcoming batch. Congratulations!" msgstr "" -#: public/frontend/assets/index-D1f05dS8.js:7369 -msgid "Web Page" -msgstr "" - -#. Label of a Link field in DocType 'LMS Sidebar Item' +#. Label of the web_page (Link) field in DocType 'LMS Sidebar Item' #: lms/doctype/lms_sidebar_item/lms_sidebar_item.json -msgctxt "LMS Sidebar Item" msgid "Web Page" msgstr "" -#: public/frontend/assets/index-D1f05dS8.js:7369 -msgid "Web Pages" -msgstr "" - #. Option for the 'Day' (Select) field in DocType 'Evaluator Schedule' -#: lms/doctype/evaluator_schedule/evaluator_schedule.json -msgctxt "Evaluator Schedule" -msgid "Wednesday" -msgstr "" - #. Option for the 'Day' (Select) field in DocType 'LMS Certificate Request' +#: lms/doctype/evaluator_schedule/evaluator_schedule.json #: lms/doctype/lms_certificate_request/lms_certificate_request.json -msgctxt "LMS Certificate Request" msgid "Wednesday" msgstr "" @@ -6004,15 +4049,25 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' #: lms/doctype/lms_mentor_request/lms_mentor_request.json -msgctxt "LMS Mentor Request" msgid "Withdrawn" msgstr "" +#. Label of the work_environment (Section Break) field in DocType 'User' +#: fixtures/custom_field.json +msgid "Work Environment" +msgstr "" + +#. Label of the work_experience (Table) field in DocType 'User' #. Name of a DocType -#: lms/doctype/work_experience/work_experience.json +#: fixtures/custom_field.json lms/doctype/work_experience/work_experience.json msgid "Work Experience" msgstr "" +#. Label of the work_experience_details (Section Break) field in DocType 'User' +#: fixtures/custom_field.json +msgid "Work Experience Details" +msgstr "" + #: templates/reviews.html:117 msgid "Write a Review" msgstr "" @@ -6022,11 +4077,7 @@ msgstr "" msgid "Write a review" msgstr "" -#: public/frontend/assets/AssignmentSubmission-D1b-IhRa.js:1 -msgid "Write your answer here" -msgstr "" - -#: lms/doctype/lms_certificate_request/lms_certificate_request.py:85 +#: lms/doctype/lms_certificate_request/lms_certificate_request.py:86 msgid "You already have an evaluation on {0} at {1} for the course {2}." msgstr "" @@ -6038,10 +4089,6 @@ msgstr "" msgid "You are already enrolled for this course." msgstr "" -#: public/frontend/assets/Batch-BYfbr7eo.js:1 -msgid "You are not a member of this batch. Please checkout our upcoming batches." -msgstr "" - #: lms/doctype/lms_batch_old/lms_batch_old.py:20 msgid "You are not a mentor of the course {0}" msgstr "" @@ -6059,26 +4106,18 @@ msgstr "" msgid "You can attempt this quiz only {0} {1}" msgstr "" -#: public/frontend/assets/index-D1f05dS8.js:7351 -msgid "You can attempt this quiz {0}." -msgstr "" - #: templates/emails/job_application.html:6 msgid "You can find their resume attached to this email." msgstr "" -#: lms/doctype/lms_certificate_request/lms_certificate_request.py:105 +#: lms/doctype/lms_certificate_request/lms_certificate_request.py:106 msgid "You cannot schedule evaluations after {0}." msgstr "" -#: lms/doctype/lms_certificate_request/lms_certificate_request.py:94 +#: lms/doctype/lms_certificate_request/lms_certificate_request.py:95 msgid "You cannot schedule evaluations for past slots." msgstr "" -#: public/frontend/assets/Profile-CcZj7_FE.js:1 -msgid "You do not have permission to access this page." -msgstr "" - #: templates/notifications.html:27 msgid "You don't have any notifications." msgstr "" @@ -6087,16 +4126,11 @@ msgstr "" msgid "You got" msgstr "" -#: public/frontend/assets/index-D1f05dS8.js:7351 -#, python-format -msgid "You got {0}% correct answers with a score of {1} out of {2}" -msgstr "" - #: job/doctype/lms_job_application/lms_job_application.py:22 msgid "You have already applied for this job." msgstr "" -#: public/frontend/assets/index-D1f05dS8.js:7351 templates/quiz/quiz.html:43 +#: templates/quiz/quiz.html:43 msgid "You have already exceeded the maximum number of attempts allowed for this quiz." msgstr "" @@ -6112,7 +4146,7 @@ msgstr "" msgid "You haven't enrolled for any courses" msgstr "" -#: public/frontend/assets/index-D1f05dS8.js:7351 templates/quiz/quiz.html:11 +#: templates/quiz/quiz.html:11 #, python-format msgid "You will have to get {0}% correct answers in order to pass the quiz." msgstr "" @@ -6121,24 +4155,18 @@ msgstr "" msgid "You've applied to become a mentor for this course. Your request is currently under review." msgstr "" -#: public/frontend/assets/AssignmentSubmission-D1b-IhRa.js:1 -msgid "You've successfully submitted the assignment." -msgstr "" - #: lms/doctype/course_lesson/course_lesson.js:17 msgid "YouTube Video" msgstr "" -#. Label of a Data field in DocType 'Course Lesson' +#. Label of the youtube (Data) field in DocType 'Course Lesson' #: lms/doctype/course_lesson/course_lesson.json -msgctxt "Course Lesson" msgid "YouTube Video URL" msgstr "" #. Description of the 'YouTube Video URL' (Data) field in DocType 'Course #. Lesson' #: lms/doctype/course_lesson/course_lesson.json -msgctxt "Course Lesson" msgid "YouTube Video will appear at the top of the lesson." msgstr "" @@ -6146,13 +4174,14 @@ msgstr "" msgid "Your Account has been successfully created!" msgstr "" -#: public/frontend/assets/ProfileEvaluator-bug1MVAq.js:1 -msgid "Your calendar is set." +#: lms/notification/certificate_request_creation/certificate_request_creation.html:7 +#: lms/notification/certificate_request_reminder/certificate_request_reminder.html:6 +msgid "Your evaluation for the course {0} has been scheduled on {1} at {2} {3}." msgstr "" -#: lms/notification/certificate_request_creation/certificate_request_creation.html:6 -#: lms/notification/certificate_request_reminder/certificate_request_reminder.html:5 -msgid "Your evaluation for the course {0} has been scheduled on {1} at {2} {3}." +#: lms/notification/certificate_request_creation/certificate_request_creation.html:8 +#: lms/notification/certificate_request_reminder/certificate_request_reminder.html:7 +msgid "Your evaluator is {0}" msgstr "" #: templates/emails/mentor_request_status_update_email.html:4 @@ -6176,12 +4205,6 @@ msgstr "" msgid "correct answers" msgstr "" -#: public/frontend/assets/Billing-CGToWkz4.js:1 -#: public/frontend/assets/CourseDetail-CwRZRbF1.js:1 -#: public/frontend/assets/JobDetail-CBHvk1ll.js:1 -msgid "div" -msgstr "" - #: templates/emails/mentor_request_status_update_email.html:4 msgid "has been" msgstr "" @@ -6238,7 +4261,7 @@ msgstr "" msgid "{0} is already certified for the course {1}" msgstr "" -#: lms/utils.py:743 +#: lms/utils.py:696 msgid "{0} mentioned you in a comment" msgstr "" @@ -6246,55 +4269,41 @@ msgstr "" msgid "{0} mentioned you in a comment in your batch." msgstr "" -#: lms/utils.py:696 lms/utils.py:702 +#: lms/utils.py:649 lms/utils.py:655 msgid "{0} mentioned you in a comment in {1}" msgstr "" -#: lms/utils.py:499 +#: lms/utils.py:460 msgid "{0}k" msgstr "" -#: public/frontend/assets/frappe-ui-0rNYcqgR.js:137 -msgid "{|}~.]+@[-a-z0-9]+(.[-a-z0-9]+)*.[a-z]+)(?=$|s)/gmi,b=/<()(?:mailto:)?([-.w]+@[-a-z0-9]+(.[-a-z0-9]+)*.[a-z]+)>/gi,w=function(h){return function(y,g,x,S,E,C,M){x=x.replace(r.helper.regexes.asteriskDashAndColon,r.helper.escapeCharactersCallback);var O=x,P=\"\",j=\"\",$=g||\"\",T=M||\"\";return/^www./i.test(x)&&(x=x.replace(/^www./i,\"http://www.\")),h.excludeTrailingPunctuationFromURLs&&C&&(P=C),h.openLinksInNewWindow&&(j=' rel=\"noopener noreferrer\" target=\"¨E95Eblank\"'),$+'\"+O+\"\"+P+T}},k=function(h,y){return function(g,x,S){var E=\"mailto:\";return x=x||\"\",S=r.subParser(\"unescapeSpecialChars\")(S,h,y),h.encodeEmails?(E=r.helper.encodeEmailAddress(E+S),S=r.helper.encodeEmailAddress(S)):E=E+S,x+''+S+\"\"}};r.subParser(\"autoLinks\",function(h,y,g){return h=g.converter._dispatch(\"autoLinks.before\",h,y,g),h=h.replace(m,w(y)),h=h.replace(b,k(y,g)),h=g.converter._dispatch(\"autoLinks.after\",h,y,g),h}),r.subParser(\"simplifiedAutoLinks\",function(h,y,g){return y.simplifiedAutoLink&&(h=g.converter._dispatch(\"simplifiedAutoLinks.before\",h,y,g),y.excludeTrailingPunctuationFromURLs?h=h.replace(p,w(y)):h=h.replace(f,w(y)),h=h.replace(v,k(y,g)),h=g.converter._dispatch(\"simplifiedAutoLinks.after\",h,y,g)),h}),r.subParser(\"blockGamut\",function(h,y,g){return h=g.converter._dispatch(\"blockGamut.before\",h,y,g),h=r.subParser(\"blockQuotes\")(h,y,g),h=r.subParser(\"headers\")(h,y,g),h=r.subParser(\"horizontalRule\")(h,y,g),h=r.subParser(\"lists\")(h,y,g),h=r.subParser(\"codeBlocks\")(h,y,g),h=r.subParser(\"tables\")(h,y,g),h=r.subParser(\"hashHTMLBlocks\")(h,y,g),h=r.subParser(\"paragraphs\")(h,y,g),h=g.converter._dispatch(\"blockGamut.after\",h,y,g),h}),r.subParser(\"blockQuotes\",function(h,y,g){h=g.converter._dispatch(\"blockQuotes.before\",h,y,g),h=h+" -msgstr "" - -#: public/frontend/assets/Lesson-59XvRJIg.js:2 -msgid "{|}~])/g,Se=/&([a-z#][a-z0-9]{1,31});/gi,Be=new RegExp(m0.source+\"|\"+Se.source,\"gi\"),ze=/^#((?:x[a-f0-9]{1,8}|[0-9]{1,8}))$/i;function Te(u,e){if(e.charCodeAt(0)===35&&ze.test(e)){const n=e[1].toLowerCase()===\"x\"?parseInt(e.slice(2),16):parseInt(e.slice(1),10);return Lu(n)?bu(n):u}const t=x0(u);return t!==u?t:u}function qe(u){return u.indexOf(\"\\\")<0?u:u.replace(m0,\"$1\")}function uu(u){return u.indexOf(\"\\\")<0&&u.indexOf(\"&\")<0?u:u.replace(Be,function(e,t,n){return t||Te(e,n)})}const Ie=/[&<>\"]/,Me=/[&<>\"]/g,Ne={\"&\":\"&\",\"<\":\"<\",\">\":\">\",'\"':\""\"};function Re(u){return Ne[u]}function Q(u){return Ie.test(u)?u.replace(Me,Re):u}const Le=/[.?*+^$[]\\(){}|-]/g;function Pe(u){return u.replace(Le,\"\\$&\")}function F(u){switch(u){case 9:case 32:return!0}return!1}function nu(u){if(u>=8192&&u<=8202)return!0;switch(u){case 9:case 10:case 11:case 12:case 13:case 32:case 160:case 5760:case 8239:case 8287:case 12288:return!0}return!1}function cu(u){return Nu.test(u)||h0.test(u)}function ou(u){switch(u){case 33:case 34:case 35:case 36:case 37:case 38:case 39:case 40:case 41:case 42:case 43:case 44:case 45:case 46:case 47:case 58:case 59:case 60:case 61:case 62:case 63:case 64:case 91:case 92:case 93:case 94:case 95:case 96:case 123:case 124:case 125:case 126:return!0;default:return!1}}function _u(u){return u=u.trim().replace(/s+/g,\" \"),\"ẞ\".toLowerCase()===\"Ṿ\"&&(u=u.replace(/ẞ/g,\"ß\")),u.toLowerCase().toUpperCase()}const Oe={mdurl:fe,ucmicro:he},$e=Object.freeze(Object.defineProperty({__proto__:null,arrayReplaceAt:_0,assign:xu,escapeHtml:Q,escapeRE:Pe,fromCodePoint:bu,has:ve,isMdAsciiPunct:ou,isPunctChar:cu,isSpace:F,isString:Ru,isValidEntityCode:Lu,isWhiteSpace:nu,lib:Oe,normalizeReference:_u,unescapeAll:uu,unescapeMd:qe},Symbol.toStringTag,{value:\"Module\"}));function je(u,e,t){let n,r,c,i;const o=u.posMax,a=u.pos;for(u.pos=e+1,n=1;u.pos32))return c;if(n===41){if(i===0)break;i--}r++}return e===r||i!==0||(c.str=uu(u.slice(e,r)),c.pos=r,c.ok=!0),c}function He(u,e,t,n){let r,c=e;const i={ok:!1,can_continue:!1,pos:0,str:\"\",marker:0};if(n)i.str=n.str,i.marker=n.marker;else{if(c>=t)return i;let o=u.charCodeAt(c);if(o!==34&&o!==39&&o!==40)return i;e++,c++,o===40&&(o=41),i.marker=o}for(;c\"+Q(c.content)+\"\"};j.code_block=function(u,e,t,n,r){const c=u[e];return\"\"+Q(u[e].content)+" -msgstr "" - #. Count format of shortcut in the LMS Workspace #: lms/workspace/lms/lms.json -msgctxt "User" msgid "{} Active" msgstr "" #. Count format of shortcut in the LMS Workspace #: lms/workspace/lms/lms.json -msgctxt "LMS Enrollment" msgid "{} Completed" msgstr "" #. Count format of shortcut in the LMS Workspace #: lms/workspace/lms/lms.json -msgctxt "LMS Enrollment" msgid "{} Enrolled" msgstr "" #. Count format of shortcut in the LMS Workspace #: lms/workspace/lms/lms.json -msgctxt "LMS Certificate" msgid "{} Granted" msgstr "" #. Count format of shortcut in the LMS Workspace #: lms/workspace/lms/lms.json -msgctxt "LMS Certificate Evaluation" msgid "{} Passed" msgstr "" #. Count format of shortcut in the LMS Workspace #: lms/workspace/lms/lms.json -msgctxt "LMS Course" msgid "{} Published" msgstr "" diff --git a/lms/templates/emails/certificate_request_notification.html b/lms/templates/emails/certificate_request_notification.html new file mode 100644 index 00000000..6e4309bc --- /dev/null +++ b/lms/templates/emails/certificate_request_notification.html @@ -0,0 +1,4 @@ +

{{ _("Hey {0}").format(member_name) }}

+

{{ _('Your evaluation for the course {0} has been scheduled on {1} at {2} {3}.').format(title, date, start_time, timezone) }}

+

{{ _("Your evaluator is {0}").format(evaluator) }}

+

{{ _("Please prepare well and be on time for the evaluations.") }}

diff --git a/lms/templates/search_course/search_course.html b/lms/templates/search_course/search_course.html deleted file mode 100644 index 22bcd2a2..00000000 --- a/lms/templates/search_course/search_course.html +++ /dev/null @@ -1,14 +0,0 @@ -{% set search_placeholder = frappe.db.get_single_value("LMS Settings", "search_placeholder") %} -{% set portal_course_creation = frappe.db.get_single_value("LMS Settings", "portal_course_creation") %} - - - - diff --git a/lms/templates/search_course/search_course.js b/lms/templates/search_course/search_course.js deleted file mode 100644 index 2ba8d04d..00000000 --- a/lms/templates/search_course/search_course.js +++ /dev/null @@ -1,72 +0,0 @@ -frappe.ready(() => { - $("#search-course").keyup((e) => { - search_course(e); - }); - - $("#open-search").click((e) => { - show_search_bar(e); - }); - - $("#search-modal").on("hidden.bs.modal", () => { - hide_search_bar(); - }); - - $(document).keydown(function (e) { - if ((e.metaKey || e.ctrlKey) && e.key == "k") { - show_search_bar(e); - } - }); -}); - -const search_course = (e) => { - let input = $(e.currentTarget).val(); - if (input == window.input) return; - window.input = input; - - if (input.length < 3 || input.trim() == "") { - $(".result-row").remove(); - return; - } - - frappe.call({ - method: "lms.lms.doctype.lms_course.lms_course.search_course", - args: { - text: input, - }, - callback: (data) => { - render_course_list(data); - }, - }); -}; - -const render_course_list = (data) => { - let courses = data.message; - $(".result-row").remove(); - - if (!courses.length) { - let element = ` - ${__("No result found")} - `; - $(element).insertAfter("#search-course"); - return; - } - - for (let i in courses) { - let element = ` - ${courses[i].title} - `; - $(element).insertAfter("#search-course"); - } -}; - -const show_search_bar = (e) => { - $("#search-modal").modal("show"); - setTimeout(() => { - $("#search-course").focus(); - }, 1000); -}; - -const hide_search_bar = (e) => { - $("#search-course").val(""); - $(".result-row").remove(); -}; diff --git a/yarn.lock b/yarn.lock index 415d00a2..693509b7 100644 --- a/yarn.lock +++ b/yarn.lock @@ -107,7 +107,7 @@ asn1@~0.2.3: dependencies: safer-buffer "~2.1.0" -assert-plus@^1.0.0, assert-plus@1.0.0: +assert-plus@1.0.0, assert-plus@^1.0.0: version "1.0.0" resolved "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz" integrity sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw== @@ -294,7 +294,7 @@ concat-stream@^1.4.7: readable-stream "^2.2.2" typedarray "^0.0.6" -core-util-is@~1.0.0, core-util-is@1.0.2: +core-util-is@1.0.2, core-util-is@~1.0.0: version "1.0.2" resolved "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz" integrity sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ== @@ -322,7 +322,7 @@ cypress-file-upload@^5.0.8: resolved "https://registry.npmjs.org/cypress-file-upload/-/cypress-file-upload-5.0.8.tgz" integrity sha512-+8VzNabRk3zG6x8f8BWArF/xA/W0VK4IZNx3MV0jFWrJS/qKn8eHfa5nU73P9fOQAgwHFJx7zjg4lwOnljMO8g== -cypress@^13.9.0, cypress@>3.0.0: +cypress@^13.9.0: version "13.9.0" resolved "https://registry.npmjs.org/cypress/-/cypress-13.9.0.tgz" integrity sha512-atNjmYfHsvTuCaxTxLZr9xGoHz53LLui3266WWxXJHY7+N6OdwJdg/feEa3T+buez9dmUXHT1izCOklqG82uCQ== @@ -430,7 +430,7 @@ end-of-stream@^1.1.0: dependencies: once "^1.4.0" -enquirer@^2.3.6, "enquirer@>= 2.3.0 < 3": +enquirer@^2.3.6: version "2.4.1" resolved "https://registry.npmjs.org/enquirer/-/enquirer-2.4.1.tgz" integrity sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ== @@ -498,16 +498,16 @@ extract-zip@2.0.1: optionalDependencies: "@types/yauzl" "^2.9.1" -extsprintf@^1.2.0: - version "1.4.1" - resolved "https://registry.npmjs.org/extsprintf/-/extsprintf-1.4.1.tgz" - integrity sha512-Wrk35e8ydCKDj/ArClo1VrPVmN8zph5V4AtHwIuHhvMXsKf73UT3BOD+azBIW+3wOJ4FhEH7zyaJCFvChjYvMA== - extsprintf@1.3.0: version "1.3.0" resolved "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz" integrity sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g== +extsprintf@^1.2.0: + version "1.4.1" + resolved "https://registry.npmjs.org/extsprintf/-/extsprintf-1.4.1.tgz" + integrity sha512-Wrk35e8ydCKDj/ArClo1VrPVmN8zph5V4AtHwIuHhvMXsKf73UT3BOD+azBIW+3wOJ4FhEH7zyaJCFvChjYvMA== + fd-slicer@~1.1.0: version "1.1.0" resolved "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz" @@ -515,6 +515,11 @@ fd-slicer@~1.1.0: dependencies: pend "~1.2.0" +fflate@^0.4.8: + version "0.4.8" + resolved "https://registry.yarnpkg.com/fflate/-/fflate-0.4.8.tgz#f90b82aefbd8ac174213abb338bd7ef848f0f5ae" + integrity sha512-FJqqoDBR00Mdj9ppamLa/Y7vxm+PRmNWA67N846RvsoYVMKB4q3y/de5PA7gUmRMYK/8CMz2GDZQmCRN1wBcWA== + figures@^3.2.0: version "3.2.0" resolved "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz" @@ -836,16 +841,16 @@ minimist@^1.2.8: resolved "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz" integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== -ms@^2.1.1: - version "2.1.3" - resolved "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz" - integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== - ms@2.1.2: version "2.1.2" resolved "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz" integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== +ms@^2.1.1: + version "2.1.3" + resolved "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz" + integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== + npm-run-path@^4.0.0: version "4.0.1" resolved "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz" @@ -909,6 +914,15 @@ pify@^2.2.0: resolved "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz" integrity sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog== +posthog-js@^1.154.4: + version "1.154.4" + resolved "https://registry.yarnpkg.com/posthog-js/-/posthog-js-1.154.4.tgz#217524e45f7ceb68a268caf683da60dfa91eccbd" + integrity sha512-J6SvhjNGOqkL8uH/sL3h4rXN7bUz9MnCJ1bu/D9Vkf6Enft8LlkOnzackUwR8EpKdM/dhA0dUjDk5Fz/6dovbw== + dependencies: + fflate "^0.4.8" + preact "^10.19.3" + web-vitals "^4.0.1" + pre-commit@^1.2.2: version "1.2.2" resolved "https://registry.npmjs.org/pre-commit/-/pre-commit-1.2.2.tgz" @@ -918,6 +932,11 @@ pre-commit@^1.2.2: spawn-sync "^1.0.15" which "1.2.x" +preact@^10.19.3: + version "10.23.1" + resolved "https://registry.yarnpkg.com/preact/-/preact-10.23.1.tgz#d400107289bc979881c5212cb5f5cd22cd1dc38c" + integrity sha512-O5UdRsNh4vdZaTieWe3XOgSpdMAmkIYBCT3VhQDlKrzyCm8lUYsk0fmVEvoQQifoOjFRTaHZO69ylrzTW2BH+A== + pretty-bytes@^5.6.0: version "5.6.0" resolved "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz" @@ -1023,12 +1042,7 @@ safe-buffer@^5.0.1, safe-buffer@^5.1.2: resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz" integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== -safe-buffer@~5.1.0: - version "5.1.2" - resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz" - integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== - -safe-buffer@~5.1.1: +safe-buffer@~5.1.0, safe-buffer@~5.1.1: version "5.1.2" resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz" integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== @@ -1135,13 +1149,6 @@ sshpk@^1.14.1: safer-buffer "^2.0.2" tweetnacl "~0.14.0" -string_decoder@~1.1.1: - version "1.1.1" - resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz" - integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== - dependencies: - safe-buffer "~5.1.0" - string-width@^4.1.0, string-width@^4.2.0: version "4.2.3" resolved "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz" @@ -1151,6 +1158,13 @@ string-width@^4.1.0, string-width@^4.2.0: is-fullwidth-code-point "^3.0.0" strip-ansi "^6.0.1" +string_decoder@~1.1.1: + version "1.1.1" + resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz" + integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== + dependencies: + safe-buffer "~5.1.0" + strip-ansi@^6.0.0, strip-ansi@^6.0.1: version "6.0.1" resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz" @@ -1276,7 +1290,12 @@ verror@1.10.0: core-util-is "1.0.2" extsprintf "^1.2.0" -which@^1.2.9, which@1.2.x: +web-vitals@^4.0.1: + version "4.2.2" + resolved "https://registry.yarnpkg.com/web-vitals/-/web-vitals-4.2.2.tgz#e883245180b95e175eb75a5ca8903b1a11597d7a" + integrity sha512-nYfoOqb4EmElljyXU2qdeE76KsvoHdftQKY4DzA9Aw8DervCg2bG634pHLrJ/d6+B4mE3nWTSJv8Mo7B2mbZkw== + +which@1.2.x, which@^1.2.9: version "1.2.14" resolved "https://registry.npmjs.org/which/-/which-1.2.14.tgz" integrity sha512-16uPglFkRPzgiUXYMi1Jf8Z5EzN1iB4V0ZtMXcHZnwsBtQhhHeCqoWw7tsUY42hJGNDWtUsVLTjakIa5BgAxCw==