Merge pull request #1373 from frappe/develop
chore: merge 'develop' into 'main'
This commit is contained in:
@@ -38,6 +38,8 @@ Cypress.Commands.add("login", (email, password) => {
|
|||||||
method: "POST",
|
method: "POST",
|
||||||
body: { usr: email, pwd: password },
|
body: { usr: email, pwd: password },
|
||||||
timeout: 60000,
|
timeout: 60000,
|
||||||
|
retryOnStatusCodeFailure: true,
|
||||||
|
retryOnNetworkFailure: true,
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
@@ -37,6 +37,7 @@
|
|||||||
<script setup>
|
<script setup>
|
||||||
import { computed, inject, onMounted, ref } from 'vue'
|
import { computed, inject, onMounted, ref } from 'vue'
|
||||||
import { Breadcrumbs, call, createResource } from 'frappe-ui'
|
import { Breadcrumbs, call, createResource } from 'frappe-ui'
|
||||||
|
import { useRouter } from 'vue-router'
|
||||||
import UpcomingEvaluations from '@/components/UpcomingEvaluations.vue'
|
import UpcomingEvaluations from '@/components/UpcomingEvaluations.vue'
|
||||||
|
|
||||||
const courseTitle = ref(null)
|
const courseTitle = ref(null)
|
||||||
@@ -44,6 +45,7 @@ const evaluator = ref(null)
|
|||||||
const courses = ref([])
|
const courses = ref([])
|
||||||
const user = inject('$user')
|
const user = inject('$user')
|
||||||
const dayjs = inject('$dayjs')
|
const dayjs = inject('$dayjs')
|
||||||
|
const router = useRouter()
|
||||||
|
|
||||||
const props = defineProps({
|
const props = defineProps({
|
||||||
courseName: {
|
courseName: {
|
||||||
@@ -53,6 +55,7 @@ const props = defineProps({
|
|||||||
})
|
})
|
||||||
|
|
||||||
onMounted(() => {
|
onMounted(() => {
|
||||||
|
fetchEnrollmentDetails()
|
||||||
fetchCourseDetails()
|
fetchCourseDetails()
|
||||||
})
|
})
|
||||||
|
|
||||||
@@ -66,10 +69,26 @@ const certificate = createResource({
|
|||||||
},
|
},
|
||||||
fieldname: ['name', 'template', 'issue_date'],
|
fieldname: ['name', 'template', 'issue_date'],
|
||||||
},
|
},
|
||||||
auto: true,
|
|
||||||
cache: [user.data?.name, props.courseName],
|
cache: [user.data?.name, props.courseName],
|
||||||
})
|
})
|
||||||
|
|
||||||
|
const fetchEnrollmentDetails = () => {
|
||||||
|
call('frappe.client.get_value', {
|
||||||
|
doctype: 'LMS Enrollment',
|
||||||
|
filters: { member: user.data?.name, course: props.courseName },
|
||||||
|
fieldname: ['purchased_certificate'],
|
||||||
|
}).then((data) => {
|
||||||
|
if (data.purchased_certificate) {
|
||||||
|
certificate.reload()
|
||||||
|
} else {
|
||||||
|
router.push({
|
||||||
|
name: 'CourseDetail',
|
||||||
|
params: { courseName: props.courseName },
|
||||||
|
})
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
const fetchCourseDetails = () => {
|
const fetchCourseDetails = () => {
|
||||||
call('frappe.client.get_value', {
|
call('frappe.client.get_value', {
|
||||||
doctype: 'LMS Course',
|
doctype: 'LMS Course',
|
||||||
|
|||||||
@@ -283,7 +283,8 @@ const courseType = computed(() => {
|
|||||||
]
|
]
|
||||||
if (user.data?.is_student) {
|
if (user.data?.is_student) {
|
||||||
types.push({ label: __('Enrolled'), value: 'Enrolled' })
|
types.push({ label: __('Enrolled'), value: 'Enrolled' })
|
||||||
} else {
|
}
|
||||||
|
if (user.data?.is_moderator || user.data?.is_instructor) {
|
||||||
types.push({ label: __('Created'), value: 'Created' })
|
types.push({ label: __('Created'), value: 'Created' })
|
||||||
}
|
}
|
||||||
return types
|
return types
|
||||||
|
|||||||
@@ -623,4 +623,12 @@ iframe {
|
|||||||
.tc-table {
|
.tc-table {
|
||||||
border-left: 1px solid #e8e8eb;
|
border-left: 1px solid #e8e8eb;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.ce-toolbox__button[data-tool='markdown'] {
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.ce-popover-item[data-item-name='markdown'] {
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@@ -158,7 +158,10 @@ export function getEditorTools() {
|
|||||||
quiz: Quiz,
|
quiz: Quiz,
|
||||||
assignment: Assignment,
|
assignment: Assignment,
|
||||||
upload: Upload,
|
upload: Upload,
|
||||||
markdown: Markdown,
|
markdown: {
|
||||||
|
class: Markdown,
|
||||||
|
inlineToolbar: true,
|
||||||
|
},
|
||||||
image: SimpleImage,
|
image: SimpleImage,
|
||||||
table: {
|
table: {
|
||||||
class: Table,
|
class: Table,
|
||||||
|
|||||||
@@ -1,3 +1,6 @@
|
|||||||
|
import { CodeXml } from 'lucide-vue-next'
|
||||||
|
import { createApp, h } from 'vue'
|
||||||
|
|
||||||
export class Markdown {
|
export class Markdown {
|
||||||
constructor({ data, api, readOnly, config }) {
|
constructor({ data, api, readOnly, config }) {
|
||||||
this.api = api
|
this.api = api
|
||||||
@@ -18,13 +21,26 @@ export class Markdown {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static get toolbox() {
|
||||||
|
const app = createApp({
|
||||||
|
render: () =>
|
||||||
|
h(CodeXml, { size: 18, strokeWidth: 1.5, color: 'black' }),
|
||||||
|
})
|
||||||
|
|
||||||
|
const div = document.createElement('div')
|
||||||
|
app.mount(div)
|
||||||
|
return {
|
||||||
|
title: '',
|
||||||
|
icon: div.innerHTML,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
onPaste(event) {
|
onPaste(event) {
|
||||||
const data = {
|
const data = {
|
||||||
text: event.detail.data.innerHTML,
|
text: event.detail.data.innerHTML,
|
||||||
}
|
}
|
||||||
|
|
||||||
this.data = data
|
this.data = data
|
||||||
|
|
||||||
window.requestAnimationFrame(() => {
|
window.requestAnimationFrame(() => {
|
||||||
if (!this.wrapper) {
|
if (!this.wrapper) {
|
||||||
return
|
return
|
||||||
@@ -41,15 +57,14 @@ export class Markdown {
|
|||||||
|
|
||||||
render() {
|
render() {
|
||||||
this.wrapper = document.createElement('div')
|
this.wrapper = document.createElement('div')
|
||||||
this.wrapper.classList.add('cdx-block')
|
this.wrapper.classList.add('cdx-block', 'ce-paragraph')
|
||||||
this.wrapper.classList.add('ce-paragraph')
|
|
||||||
this.wrapper.innerHTML = this.text
|
this.wrapper.innerHTML = this.text
|
||||||
|
|
||||||
if (!this.readOnly) {
|
if (!this.readOnly) {
|
||||||
this.wrapper.contentEditable = true
|
this.wrapper.contentEditable = true
|
||||||
this.wrapper.innerHTML = this.text
|
this.wrapper.innerHTML = this.text
|
||||||
|
|
||||||
this.wrapper.addEventListener('keydown', (event) => {
|
this.wrapper.addEventListener('input', (event) => {
|
||||||
let value = event.target.textContent
|
let value = event.target.textContent
|
||||||
if (event.keyCode === 32 && value.startsWith('#')) {
|
if (event.keyCode === 32 && value.startsWith('#')) {
|
||||||
this.convertToHeader(event, value)
|
this.convertToHeader(event, value)
|
||||||
@@ -165,7 +180,7 @@ export class Markdown {
|
|||||||
}
|
}
|
||||||
|
|
||||||
canBeEmbed(line) {
|
canBeEmbed(line) {
|
||||||
return /^https?:\/\/.+/.test(line)
|
return /^https?:\/\/.+/.test(line.trim())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -912,6 +912,14 @@
|
|||||||
resolved "https://registry.yarnpkg.com/@vueuse/metadata/-/metadata-10.11.1.tgz#209db7bb5915aa172a87510b6de2ca01cadbd2a7"
|
resolved "https://registry.yarnpkg.com/@vueuse/metadata/-/metadata-10.11.1.tgz#209db7bb5915aa172a87510b6de2ca01cadbd2a7"
|
||||||
integrity sha512-IGa5FXd003Ug1qAZmyE8wF3sJ81xGLSqTqtQ6jaVfkeZ4i5kS2mwQF61yhVqojRnenVew5PldLyRgvdl4YYuSw==
|
integrity sha512-IGa5FXd003Ug1qAZmyE8wF3sJ81xGLSqTqtQ6jaVfkeZ4i5kS2mwQF61yhVqojRnenVew5PldLyRgvdl4YYuSw==
|
||||||
|
|
||||||
|
"@vueuse/router@^12.7.0":
|
||||||
|
version "12.8.2"
|
||||||
|
resolved "https://registry.yarnpkg.com/@vueuse/router/-/router-12.8.2.tgz#3792eab50493e50a79767592a52f6c5bb441ef33"
|
||||||
|
integrity sha512-TA3aXhi9uEzYA6shaEeC3tfU73KYFbUiRd4ssh4JVi52fZZgSmZAsS7M5nFu01TzUHfHlNhFEAYJpt5HPNi49Q==
|
||||||
|
dependencies:
|
||||||
|
"@vueuse/shared" "12.8.2"
|
||||||
|
vue "^3.5.13"
|
||||||
|
|
||||||
"@vueuse/shared@10.11.1", "@vueuse/shared@^10.11.0":
|
"@vueuse/shared@10.11.1", "@vueuse/shared@^10.11.0":
|
||||||
version "10.11.1"
|
version "10.11.1"
|
||||||
resolved "https://registry.yarnpkg.com/@vueuse/shared/-/shared-10.11.1.tgz#62b84e3118ae6e1f3ff38f4fbe71b0c5d0f10938"
|
resolved "https://registry.yarnpkg.com/@vueuse/shared/-/shared-10.11.1.tgz#62b84e3118ae6e1f3ff38f4fbe71b0c5d0f10938"
|
||||||
@@ -919,6 +927,13 @@
|
|||||||
dependencies:
|
dependencies:
|
||||||
vue-demi ">=0.14.8"
|
vue-demi ">=0.14.8"
|
||||||
|
|
||||||
|
"@vueuse/shared@12.8.2":
|
||||||
|
version "12.8.2"
|
||||||
|
resolved "https://registry.yarnpkg.com/@vueuse/shared/-/shared-12.8.2.tgz#b9e4611d0603629c8e151f982459da394e22f930"
|
||||||
|
integrity sha512-dznP38YzxZoNloI0qpEfpkms8knDtaoQ6Y/sfS0L7Yki4zh40LFHEhur0odJC6xTHG5dxWVPiUWBXn+wCG2s5w==
|
||||||
|
dependencies:
|
||||||
|
vue "^3.5.13"
|
||||||
|
|
||||||
"@yr/monotone-cubic-spline@^1.0.3":
|
"@yr/monotone-cubic-spline@^1.0.3":
|
||||||
version "1.0.3"
|
version "1.0.3"
|
||||||
resolved "https://registry.yarnpkg.com/@yr/monotone-cubic-spline/-/monotone-cubic-spline-1.0.3.tgz#7272d89f8e4f6fb7a1600c28c378cc18d3b577b9"
|
resolved "https://registry.yarnpkg.com/@yr/monotone-cubic-spline/-/monotone-cubic-spline-1.0.3.tgz#7272d89f8e4f6fb7a1600c28c378cc18d3b577b9"
|
||||||
@@ -1067,9 +1082,9 @@ camelcase-css@^2.0.1:
|
|||||||
integrity sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==
|
integrity sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==
|
||||||
|
|
||||||
caniuse-lite@^1.0.30001646, caniuse-lite@^1.0.30001688:
|
caniuse-lite@^1.0.30001646, caniuse-lite@^1.0.30001688:
|
||||||
version "1.0.30001701"
|
version "1.0.30001702"
|
||||||
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001701.tgz#ad9c90301f7153cf6b3314d16cc30757285bf9e7"
|
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001702.tgz#cde16fa8adaa066c04aec2967b6cde46354644c4"
|
||||||
integrity sha512-faRs/AW3jA9nTwmJBSO1PQ6L/EOgsB5HMQQq4iCu5zhPgVVgO/pZRHlmatwijZKetFw8/Pr4q6dEN8sJuq8qTw==
|
integrity sha512-LoPe/D7zioC0REI5W73PeR1e1MLCipRGq/VkovJnd6Df+QVqT+vT33OXCp8QUd7kA7RZrHWxb1B36OQKI/0gOA==
|
||||||
|
|
||||||
chalk@^4.1.0:
|
chalk@^4.1.0:
|
||||||
version "4.1.2"
|
version "4.1.2"
|
||||||
@@ -1232,9 +1247,9 @@ eastasianwidth@^0.2.0:
|
|||||||
integrity sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==
|
integrity sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==
|
||||||
|
|
||||||
electron-to-chromium@^1.5.73:
|
electron-to-chromium@^1.5.73:
|
||||||
version "1.5.109"
|
version "1.5.112"
|
||||||
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.109.tgz#905a573d2b4cbb31412a2de6267fb22cf45e097e"
|
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.112.tgz#8d3d95d4d5653836327890282c8eda5c6f26626d"
|
||||||
integrity sha512-AidaH9JETVRr9DIPGfp1kAarm/W6hRJTPuCnkF+2MqhF4KaAgRIcBc8nvjk+YMXZhwfISof/7WG29eS4iGxQLQ==
|
integrity sha512-oen93kVyqSb3l+ziUgzIOlWt/oOuy4zRmpwestMn4rhFWAoFJeFuCVte9F2fASjeZZo7l/Cif9TiyrdW4CwEMA==
|
||||||
|
|
||||||
emoji-regex@^8.0.0:
|
emoji-regex@^8.0.0:
|
||||||
version "8.0.0"
|
version "8.0.0"
|
||||||
@@ -1937,9 +1952,9 @@ prosemirror-schema-basic@^1.2.3:
|
|||||||
prosemirror-model "^1.19.0"
|
prosemirror-model "^1.19.0"
|
||||||
|
|
||||||
prosemirror-schema-list@^1.4.1:
|
prosemirror-schema-list@^1.4.1:
|
||||||
version "1.5.0"
|
version "1.5.1"
|
||||||
resolved "https://registry.yarnpkg.com/prosemirror-schema-list/-/prosemirror-schema-list-1.5.0.tgz#f05ddbe2e71efc9157a0dbedf80761c08bda5192"
|
resolved "https://registry.yarnpkg.com/prosemirror-schema-list/-/prosemirror-schema-list-1.5.1.tgz#5869c8f749e8745c394548bb11820b0feb1e32f5"
|
||||||
integrity sha512-gg1tAfH1sqpECdhIHOA/aLg2VH3ROKBWQ4m8Qp9mBKrOxQRW61zc+gMCI8nh22gnBzd1t2u1/NPLmO3nAa3ssg==
|
integrity sha512-927lFx/uwyQaGwJxLWCZRkjXG0p48KpMj6ueoYiu4JX05GGuGcgzAy62dfiV8eFZftgyBUvLx76RsMe20fJl+Q==
|
||||||
dependencies:
|
dependencies:
|
||||||
prosemirror-model "^1.0.0"
|
prosemirror-model "^1.0.0"
|
||||||
prosemirror-state "^1.0.0"
|
prosemirror-state "^1.0.0"
|
||||||
@@ -1974,16 +1989,16 @@ prosemirror-trailing-node@^3.0.0:
|
|||||||
escape-string-regexp "^4.0.0"
|
escape-string-regexp "^4.0.0"
|
||||||
|
|
||||||
prosemirror-transform@^1.0.0, prosemirror-transform@^1.1.0, prosemirror-transform@^1.10.2, prosemirror-transform@^1.7.3:
|
prosemirror-transform@^1.0.0, prosemirror-transform@^1.1.0, prosemirror-transform@^1.10.2, prosemirror-transform@^1.7.3:
|
||||||
version "1.10.2"
|
version "1.10.3"
|
||||||
resolved "https://registry.yarnpkg.com/prosemirror-transform/-/prosemirror-transform-1.10.2.tgz#8ebac4e305b586cd96595aa028118c9191bbf052"
|
resolved "https://registry.yarnpkg.com/prosemirror-transform/-/prosemirror-transform-1.10.3.tgz#fae660bd7ffef3159aff44bc21e9e044aa31b67d"
|
||||||
integrity sha512-2iUq0wv2iRoJO/zj5mv8uDUriOHWzXRnOTVgCzSXnktS/2iQRa3UUQwVlkBlYZFtygw6Nh1+X4mGqoYBINn5KQ==
|
integrity sha512-Nhh/+1kZGRINbEHmVu39oynhcap4hWTs/BlU7NnxWj3+l0qi8I1mu67v6mMdEe/ltD8hHvU4FV6PHiCw2VSpMw==
|
||||||
dependencies:
|
dependencies:
|
||||||
prosemirror-model "^1.21.0"
|
prosemirror-model "^1.21.0"
|
||||||
|
|
||||||
prosemirror-view@^1.0.0, prosemirror-view@^1.1.0, prosemirror-view@^1.27.0, prosemirror-view@^1.31.0, prosemirror-view@^1.37.0, prosemirror-view@^1.37.2:
|
prosemirror-view@^1.0.0, prosemirror-view@^1.1.0, prosemirror-view@^1.27.0, prosemirror-view@^1.31.0, prosemirror-view@^1.37.0, prosemirror-view@^1.37.2:
|
||||||
version "1.38.0"
|
version "1.38.1"
|
||||||
resolved "https://registry.yarnpkg.com/prosemirror-view/-/prosemirror-view-1.38.0.tgz#685a256adc8486ebd0c8652125812b2f8297a2d3"
|
resolved "https://registry.yarnpkg.com/prosemirror-view/-/prosemirror-view-1.38.1.tgz#566d30cc8b00a68d6b4c60f5d8a6ab97c82990b3"
|
||||||
integrity sha512-O45kxXQTaP9wPdXhp8TKqCR+/unS/gnfg9Q93svQcB3j0mlp2XSPAmsPefxHADwzC+fbNS404jqRxm3UQaGvgw==
|
integrity sha512-4FH/uM1A4PNyrxXbD+RAbAsf0d/mM0D/wAKSVVWK7o0A9Q/oOXJBrw786mBf2Vnrs/Edly6dH6Z2gsb7zWwaUw==
|
||||||
dependencies:
|
dependencies:
|
||||||
prosemirror-model "^1.20.0"
|
prosemirror-model "^1.20.0"
|
||||||
prosemirror-state "^1.0.0"
|
prosemirror-state "^1.0.0"
|
||||||
@@ -2370,7 +2385,7 @@ vue3-apexcharts@^1.8.0:
|
|||||||
resolved "https://registry.yarnpkg.com/vue3-apexcharts/-/vue3-apexcharts-1.8.0.tgz#1984648d966aa91bc4dc3e87fa847f5289f7f1cf"
|
resolved "https://registry.yarnpkg.com/vue3-apexcharts/-/vue3-apexcharts-1.8.0.tgz#1984648d966aa91bc4dc3e87fa847f5289f7f1cf"
|
||||||
integrity sha512-5tSD4mXTBbIJ9ir+58qHE6oNtIe0RNgqIRYMKpcsIaxkKtwUww4JhvPkpUFlmiW4OJbbdklgjleXq1lfcM4gdA==
|
integrity sha512-5tSD4mXTBbIJ9ir+58qHE6oNtIe0RNgqIRYMKpcsIaxkKtwUww4JhvPkpUFlmiW4OJbbdklgjleXq1lfcM4gdA==
|
||||||
|
|
||||||
vue@^3.4.23:
|
vue@^3.4.23, vue@^3.5.13:
|
||||||
version "3.5.13"
|
version "3.5.13"
|
||||||
resolved "https://registry.yarnpkg.com/vue/-/vue-3.5.13.tgz#9f760a1a982b09c0c04a867903fc339c9f29ec0a"
|
resolved "https://registry.yarnpkg.com/vue/-/vue-3.5.13.tgz#9f760a1a982b09c0c04a867903fc339c9f29ec0a"
|
||||||
integrity sha512-wmeiSMxkZCSc+PM2w2VRsOYAZC8GdipNFRTsLSfodVqI9mbejKeXEGr8SckuLnrQPGe3oJN5c3K0vpoU9q/wCQ==
|
integrity sha512-wmeiSMxkZCSc+PM2w2VRsOYAZC8GdipNFRTsLSfodVqI9mbejKeXEGr8SckuLnrQPGe3oJN5c3K0vpoU9q/wCQ==
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
__version__ = "2.25.0"
|
__version__ = "2.26.0"
|
||||||
|
|||||||
271
lms/locale/ar.po
271
lms/locale/ar.po
@@ -2,8 +2,8 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: frappe\n"
|
"Project-Id-Version: frappe\n"
|
||||||
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
|
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
|
||||||
"POT-Creation-Date: 2025-02-28 16:04+0000\n"
|
"POT-Creation-Date: 2025-03-07 16:04+0000\n"
|
||||||
"PO-Revision-Date: 2025-03-03 21:29\n"
|
"PO-Revision-Date: 2025-03-10 22:46\n"
|
||||||
"Last-Translator: jannat@frappe.io\n"
|
"Last-Translator: jannat@frappe.io\n"
|
||||||
"Language-Team: Arabic\n"
|
"Language-Team: Arabic\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -228,7 +228,7 @@ msgstr ""
|
|||||||
msgid "All Certified Participants"
|
msgid "All Certified Participants"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/widgets/BreadCrumb.html:3
|
#: frontend/src/pages/Courses.vue:26 lms/lms/widgets/BreadCrumb.html:3
|
||||||
msgid "All Courses"
|
msgid "All Courses"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -268,7 +268,7 @@ msgstr ""
|
|||||||
msgid "Allow self enrollment"
|
msgid "Allow self enrollment"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/overrides/user.py:199
|
#: lms/lms/user.py:34
|
||||||
msgid "Already Registered"
|
msgid "Already Registered"
|
||||||
msgstr "مسجل بالفعل"
|
msgstr "مسجل بالفعل"
|
||||||
|
|
||||||
@@ -368,7 +368,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: frontend/src/components/Apps.vue:13
|
#: frontend/src/components/Apps.vue:13
|
||||||
msgid "Apps"
|
msgid "Apps"
|
||||||
msgstr ""
|
msgstr "التطبيقات"
|
||||||
|
|
||||||
#: frontend/src/pages/Batches.vue:277 frontend/src/pages/Batches.vue:295
|
#: frontend/src/pages/Batches.vue:277 frontend/src/pages/Batches.vue:295
|
||||||
msgid "Archived"
|
msgid "Archived"
|
||||||
@@ -378,7 +378,7 @@ msgstr "أرشفة"
|
|||||||
msgid "Are you sure you want to cancel this evaluation? This action cannot be undone."
|
msgid "Are you sure you want to cancel this evaluation? This action cannot be undone."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/UserDropdown.vue:209
|
#: frontend/src/components/UserDropdown.vue:169
|
||||||
msgid "Are you sure you want to login to your Frappe Cloud dashboard?"
|
msgid "Are you sure you want to login to your Frappe Cloud dashboard?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -492,12 +492,12 @@ msgid "Auto Assign"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. Label of the auto_recording (Select) field in DocType 'LMS Live Class'
|
#. Label of the auto_recording (Select) field in DocType 'LMS Live Class'
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:71
|
#: frontend/src/components/Modals/LiveClassModal.vue:77
|
||||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||||
msgid "Auto Recording"
|
msgid "Auto Recording"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/CourseCard.vue:50
|
#: frontend/src/components/CourseCard.vue:51
|
||||||
#: frontend/src/pages/CourseDetail.vue:20
|
#: frontend/src/pages/CourseDetail.vue:20
|
||||||
msgid "Average Rating"
|
msgid "Average Rating"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -739,7 +739,7 @@ msgstr ""
|
|||||||
#. Label of the category (Link) field in DocType 'LMS Course'
|
#. Label of the category (Link) field in DocType 'LMS Course'
|
||||||
#: frontend/src/pages/BatchForm.vue:190 frontend/src/pages/Batches.vue:55
|
#: frontend/src/pages/BatchForm.vue:190 frontend/src/pages/Batches.vue:55
|
||||||
#: frontend/src/pages/CertifiedParticipants.vue:37
|
#: frontend/src/pages/CertifiedParticipants.vue:37
|
||||||
#: frontend/src/pages/CourseForm.vue:147 frontend/src/pages/Courses.vue:17
|
#: frontend/src/pages/CourseForm.vue:147 frontend/src/pages/Courses.vue:55
|
||||||
#: frontend/src/pages/JobDetail.vue:96 lms/lms/doctype/lms_batch/lms_batch.json
|
#: frontend/src/pages/JobDetail.vue:96 lms/lms/doctype/lms_batch/lms_batch.json
|
||||||
#: lms/lms/doctype/lms_category/lms_category.json
|
#: lms/lms/doctype/lms_category/lms_category.json
|
||||||
#: lms/lms/doctype/lms_course/lms_course.json
|
#: lms/lms/doctype/lms_course/lms_course.json
|
||||||
@@ -790,12 +790,12 @@ msgstr ""
|
|||||||
#. Enrollment'
|
#. Enrollment'
|
||||||
#. Label of a Card Break in the LMS Workspace
|
#. Label of a Card Break in the LMS Workspace
|
||||||
#. Label of a Link in the LMS Workspace
|
#. Label of a Link in the LMS Workspace
|
||||||
#: frontend/src/components/CourseCard.vue:110
|
#: frontend/src/components/CourseCard.vue:111
|
||||||
#: frontend/src/components/Modals/Event.vue:371
|
#: frontend/src/components/Modals/Event.vue:371
|
||||||
#: frontend/src/pages/BatchForm.vue:37 frontend/src/pages/Batches.vue:38
|
#: frontend/src/pages/BatchForm.vue:37 frontend/src/pages/Batches.vue:38
|
||||||
#: frontend/src/pages/CourseCertification.vue:10
|
#: frontend/src/pages/CourseCertification.vue:10
|
||||||
#: frontend/src/pages/CourseCertification.vue:114
|
#: frontend/src/pages/CourseCertification.vue:114
|
||||||
#: lms/fixtures/custom_field.json
|
#: frontend/src/pages/Courses.vue:38 lms/fixtures/custom_field.json
|
||||||
#: lms/lms/doctype/certification/certification.json
|
#: lms/lms/doctype/certification/certification.json
|
||||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
||||||
@@ -912,10 +912,6 @@ msgstr "واضح"
|
|||||||
msgid "Clearly Defined Role"
|
msgid "Clearly Defined Role"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:75
|
|
||||||
msgid "Click here to login"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: frontend/src/components/LessonHelp.vue:30
|
#: frontend/src/components/LessonHelp.vue:30
|
||||||
msgid "Click on the add icon in the editor and select Quiz from the menu. It opens up a dialog, where you can either select a quiz from the list or create a new quiz. When you select the Create New option it redirects you to the quiz creation page."
|
msgid "Click on the add icon in the editor and select Quiz from the menu. It opens up a dialog, where you can either select a quiz from the list or create a new quiz. When you select the Create New option it redirects you to the quiz creation page."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1084,7 +1080,7 @@ msgstr ""
|
|||||||
msgid "Complete Your Enrollment"
|
msgid "Complete Your Enrollment"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_payment/lms_payment.py:40
|
#: lms/lms/doctype/lms_payment/lms_payment.py:55
|
||||||
msgid "Complete Your Enrollment - Don't miss out!"
|
msgid "Complete Your Enrollment - Don't miss out!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -1125,7 +1121,11 @@ msgstr ""
|
|||||||
msgid "Condition must be valid python code."
|
msgid "Condition must be valid python code."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/UserDropdown.vue:214
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.js:7
|
||||||
|
msgid "Conduct Evaluation"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: frontend/src/components/UserDropdown.vue:174
|
||||||
msgid "Confirm"
|
msgid "Confirm"
|
||||||
msgstr "أكد"
|
msgstr "أكد"
|
||||||
|
|
||||||
@@ -1166,7 +1166,7 @@ msgstr ""
|
|||||||
msgid "Contract"
|
msgid "Contract"
|
||||||
msgstr "عقد"
|
msgstr "عقد"
|
||||||
|
|
||||||
#: lms/lms/utils.py:437
|
#: lms/lms/utils.py:438
|
||||||
msgid "Cookie Policy"
|
msgid "Cookie Policy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -1382,7 +1382,7 @@ msgstr ""
|
|||||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:79
|
#: frontend/src/components/Modals/BatchStudentProgress.vue:79
|
||||||
#: frontend/src/pages/BatchDetail.vue:21 frontend/src/pages/BatchDetail.vue:70
|
#: frontend/src/pages/BatchDetail.vue:21 frontend/src/pages/BatchDetail.vue:70
|
||||||
#: frontend/src/pages/CourseCertification.vue:106
|
#: frontend/src/pages/CourseCertification.vue:106
|
||||||
#: frontend/src/pages/Courses.vue:8 frontend/src/pages/Statistics.vue:21
|
#: frontend/src/pages/Courses.vue:314 frontend/src/pages/Statistics.vue:21
|
||||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||||
msgid "Courses"
|
msgid "Courses"
|
||||||
@@ -1393,10 +1393,6 @@ msgstr ""
|
|||||||
msgid "Courses Completed"
|
msgid "Courses Completed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/web_template/courses_mentored/courses_mentored.html:4
|
|
||||||
msgid "Courses Mentored"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: frontend/src/components/BatchCourses.vue:151
|
#: frontend/src/components/BatchCourses.vue:151
|
||||||
msgid "Courses deleted successfully"
|
msgid "Courses deleted successfully"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1412,14 +1408,10 @@ msgid "Create"
|
|||||||
msgstr "انشاء"
|
msgstr "انشاء"
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.js:7
|
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.js:7
|
||||||
msgid "Create LMS Certificate"
|
msgid "Create Certificate"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.js:8
|
#: lms/templates/onboarding_header.html:19
|
||||||
msgid "Create LMS Certificate Evaluation"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: frontend/src/pages/Courses.vue:136 lms/templates/onboarding_header.html:19
|
|
||||||
msgid "Create a Course"
|
msgid "Create a Course"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -1435,7 +1427,8 @@ msgstr ""
|
|||||||
msgid "Create a new question"
|
msgid "Create a new question"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/pages/Assignments.vue:163
|
#: frontend/src/pages/Assignments.vue:163 frontend/src/pages/Courses.vue:287
|
||||||
|
#: frontend/src/pages/Courses.vue:307
|
||||||
msgid "Created"
|
msgid "Created"
|
||||||
msgstr "أنشأ"
|
msgstr "أنشأ"
|
||||||
|
|
||||||
@@ -1488,7 +1481,7 @@ msgstr "لوحة القيادة"
|
|||||||
#. Label of the date (Date) field in DocType 'Scheduled Flow'
|
#. Label of the date (Date) field in DocType 'Scheduled Flow'
|
||||||
#: frontend/src/components/Modals/EvaluationModal.vue:26
|
#: frontend/src/components/Modals/EvaluationModal.vue:26
|
||||||
#: frontend/src/components/Modals/Event.vue:40
|
#: frontend/src/components/Modals/Event.vue:40
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:55
|
#: frontend/src/components/Modals/LiveClassModal.vue:61
|
||||||
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
|
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
|
||||||
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
|
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||||
@@ -1587,7 +1580,7 @@ msgstr ""
|
|||||||
#. Label of the description (Small Text) field in DocType 'LMS Exercise'
|
#. 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 (Text) field in DocType 'LMS Live Class'
|
||||||
#. Label of the description (Small Text) field in DocType 'Work Experience'
|
#. Label of the description (Small Text) field in DocType 'Work Experience'
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:78
|
#: frontend/src/components/Modals/LiveClassModal.vue:84
|
||||||
#: frontend/src/pages/BatchForm.vue:224 frontend/src/pages/JobCreation.vue:50
|
#: frontend/src/pages/BatchForm.vue:224 frontend/src/pages/JobCreation.vue:50
|
||||||
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
||||||
#: lms/lms/doctype/certification/certification.json
|
#: lms/lms/doctype/certification/certification.json
|
||||||
@@ -1614,10 +1607,6 @@ msgstr ""
|
|||||||
msgid "Details"
|
msgid "Details"
|
||||||
msgstr "تفاصيل"
|
msgstr "تفاصيل"
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:30
|
|
||||||
msgid "Didn't receive the code?"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: frontend/src/pages/CourseForm.vue:194
|
#: frontend/src/pages/CourseForm.vue:194
|
||||||
msgid "Disable Self Enrollment"
|
msgid "Disable Self Enrollment"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1668,7 +1657,7 @@ msgstr ""
|
|||||||
#. Label of the duration (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 (Data) field in DocType 'LMS Batch Timetable'
|
||||||
#. Label of the duration (Int) field in DocType 'LMS Live Class'
|
#. Label of the duration (Int) field in DocType 'LMS Live Class'
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:62
|
#: frontend/src/components/Modals/LiveClassModal.vue:68
|
||||||
#: lms/lms/doctype/cohort/cohort.json
|
#: lms/lms/doctype/cohort/cohort.json
|
||||||
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
|
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
|
||||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||||
@@ -1680,7 +1669,7 @@ msgstr "المدة الزمنية"
|
|||||||
msgid "Duration (in minutes)"
|
msgid "Duration (in minutes)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:58
|
#: frontend/src/components/Modals/LiveClassModal.vue:64
|
||||||
msgid "Duration of the live class in minutes"
|
msgid "Duration of the live class in minutes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -1755,7 +1744,7 @@ msgstr ""
|
|||||||
#. Label of the show_emails (Check) field in DocType 'LMS Settings'
|
#. Label of the show_emails (Check) field in DocType 'LMS Settings'
|
||||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||||
msgid "Emails"
|
msgid "Emails"
|
||||||
msgstr ""
|
msgstr "البريد الإلكتروني"
|
||||||
|
|
||||||
#. Option for the 'User Category' (Select) field in DocType 'User'
|
#. Option for the 'User Category' (Select) field in DocType 'User'
|
||||||
#: lms/fixtures/custom_field.json lms/templates/signup-form.html:25
|
#: lms/fixtures/custom_field.json lms/templates/signup-form.html:25
|
||||||
@@ -1826,11 +1815,12 @@ msgstr "وقت الانتهاء"
|
|||||||
msgid "Enroll Now"
|
msgid "Enroll Now"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/pages/Batches.vue:292
|
#: frontend/src/pages/Batches.vue:292 frontend/src/pages/Courses.vue:285
|
||||||
|
#: frontend/src/pages/Courses.vue:305
|
||||||
msgid "Enrolled"
|
msgid "Enrolled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/CourseCard.vue:41
|
#: frontend/src/components/CourseCard.vue:42
|
||||||
#: frontend/src/components/CourseCardOverlay.vue:106
|
#: frontend/src/components/CourseCardOverlay.vue:106
|
||||||
#: frontend/src/pages/CourseDetail.vue:33
|
#: frontend/src/pages/CourseDetail.vue:33
|
||||||
msgid "Enrolled Students"
|
msgid "Enrolled Students"
|
||||||
@@ -1849,11 +1839,11 @@ msgstr ""
|
|||||||
msgid "Enrollment Count"
|
msgid "Enrollment Count"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/utils.py:1769
|
#: lms/lms/utils.py:1898
|
||||||
msgid "Enrollment Failed"
|
msgid "Enrollment Failed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. Label of the enrollments (Data) field in DocType 'LMS Course'
|
#. Label of the enrollments (Int) field in DocType 'LMS Course'
|
||||||
#. Label of a chart in the LMS Workspace
|
#. Label of a chart in the LMS Workspace
|
||||||
#. Label of a shortcut in the LMS Workspace
|
#. Label of a shortcut in the LMS Workspace
|
||||||
#: frontend/src/pages/Statistics.vue:51
|
#: frontend/src/pages/Statistics.vue:51
|
||||||
@@ -2055,15 +2045,7 @@ msgstr ""
|
|||||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
||||||
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
|
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
|
||||||
msgid "Fail"
|
msgid "Fail"
|
||||||
msgstr ""
|
msgstr "فشل"
|
||||||
|
|
||||||
#: frontend/src/components/UserDropdown.vue:243
|
|
||||||
msgid "Failed to login to Frappe Cloud"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:91
|
|
||||||
msgid "Failed to resend code"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. Label of the featured (Check) field in DocType 'LMS Course'
|
#. Label of the featured (Check) field in DocType 'LMS Course'
|
||||||
#: frontend/src/components/CourseCard.vue:16
|
#: frontend/src/components/CourseCard.vue:16
|
||||||
@@ -2125,13 +2107,9 @@ msgstr ""
|
|||||||
msgid "Formal Wear"
|
msgid "Formal Wear"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:70
|
|
||||||
msgid "Frappe Cloud Login Successful"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lms/lms/widgets/CourseCard.html:114
|
#: lms/lms/widgets/CourseCard.html:114
|
||||||
msgid "Free"
|
msgid "Free"
|
||||||
msgstr ""
|
msgstr "مجاني"
|
||||||
|
|
||||||
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
|
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
|
||||||
#: frontend/src/pages/Jobs.vue:147
|
#: frontend/src/pages/Jobs.vue:147
|
||||||
@@ -2212,7 +2190,7 @@ msgstr "عام"
|
|||||||
msgid "Generate Certificates"
|
msgid "Generate Certificates"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.js:18
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.js:15
|
||||||
msgid "Generate Google Meet Link"
|
msgid "Generate Google Meet Link"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -2278,7 +2256,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: lms/lms/widgets/HelloWorld.html:13
|
#: lms/lms/widgets/HelloWorld.html:13
|
||||||
msgid "Hello"
|
msgid "Hello"
|
||||||
msgstr ""
|
msgstr "مرحبًا"
|
||||||
|
|
||||||
#: frontend/src/components/BatchFeedback.vue:11
|
#: frontend/src/components/BatchFeedback.vue:11
|
||||||
msgid "Help Us Improve"
|
msgid "Help Us Improve"
|
||||||
@@ -2382,10 +2360,6 @@ msgstr ""
|
|||||||
msgid "If you have any questions or require assistance, feel free to contact us."
|
msgid "If you have any questions or require assistance, feel free to contact us."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:71
|
|
||||||
msgid "If you haven't been redirected,"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. Description of the 'Amount (USD)' (Currency) field in DocType 'LMS Batch'
|
#. Description of the 'Amount (USD)' (Currency) field in DocType 'LMS Batch'
|
||||||
#. Description of the 'Amount (USD)' (Currency) field in DocType 'LMS Course'
|
#. Description of the 'Amount (USD)' (Currency) field in DocType 'LMS Course'
|
||||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||||
@@ -2969,8 +2943,8 @@ msgstr ""
|
|||||||
|
|
||||||
#. Label of the lessons (Table) field in DocType 'Course Chapter'
|
#. Label of the lessons (Table) field in DocType 'Course Chapter'
|
||||||
#. Group in Course Chapter's connections
|
#. Group in Course Chapter's connections
|
||||||
#. Label of the lessons (Data) field in DocType 'LMS Course'
|
#. Label of the lessons (Int) field in DocType 'LMS Course'
|
||||||
#: frontend/src/components/CourseCard.vue:32
|
#: frontend/src/components/CourseCard.vue:33
|
||||||
#: frontend/src/components/CourseCardOverlay.vue:99
|
#: frontend/src/components/CourseCardOverlay.vue:99
|
||||||
#: lms/lms/doctype/course_chapter/course_chapter.json
|
#: lms/lms/doctype/course_chapter/course_chapter.json
|
||||||
#: lms/lms/doctype/lms_course/lms_course.json
|
#: lms/lms/doctype/lms_course/lms_course.json
|
||||||
@@ -3021,7 +2995,7 @@ msgid "List of quizzes"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. Option for the 'Status' (Select) field in DocType 'Cohort'
|
#. Option for the 'Status' (Select) field in DocType 'Cohort'
|
||||||
#: lms/lms/doctype/cohort/cohort.json
|
#: frontend/src/pages/Courses.vue:295 lms/lms/doctype/cohort/cohort.json
|
||||||
msgid "Live"
|
msgid "Live"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -3039,6 +3013,7 @@ msgstr ""
|
|||||||
#: frontend/src/components/Members.vue:108
|
#: frontend/src/components/Members.vue:108
|
||||||
#: frontend/src/pages/Assignments.vue:71 frontend/src/pages/Batches.vue:94
|
#: frontend/src/pages/Assignments.vue:71 frontend/src/pages/Batches.vue:94
|
||||||
#: frontend/src/pages/CertifiedParticipants.vue:79
|
#: frontend/src/pages/CertifiedParticipants.vue:79
|
||||||
|
#: frontend/src/pages/Courses.vue:94
|
||||||
#: frontend/src/pages/QuizSubmissionList.vue:39
|
#: frontend/src/pages/QuizSubmissionList.vue:39
|
||||||
#: frontend/src/pages/Quizzes.vue:51
|
#: frontend/src/pages/Quizzes.vue:51
|
||||||
msgid "Load More"
|
msgid "Load More"
|
||||||
@@ -3071,16 +3046,7 @@ msgstr ""
|
|||||||
msgid "Login"
|
msgid "Login"
|
||||||
msgstr "دخول"
|
msgstr "دخول"
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:79
|
#: frontend/src/components/UserDropdown.vue:168
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:83
|
|
||||||
msgid "Login failed"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:6
|
|
||||||
msgid "Login to Frappe Cloud"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: frontend/src/components/UserDropdown.vue:208
|
|
||||||
msgid "Login to Frappe Cloud?"
|
msgid "Login to Frappe Cloud?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -3396,11 +3362,11 @@ msgstr ""
|
|||||||
msgid "Modified By"
|
msgid "Modified By"
|
||||||
msgstr "عدل من قبل"
|
msgstr "عدل من قبل"
|
||||||
|
|
||||||
#: lms/lms/api.py:208
|
#: lms/lms/api.py:214
|
||||||
msgid "Module Name is incorrect or does not exist."
|
msgid "Module Name is incorrect or does not exist."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/api.py:204
|
#: lms/lms/api.py:210
|
||||||
msgid "Module is incorrect."
|
msgid "Module is incorrect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -3430,7 +3396,8 @@ msgstr ""
|
|||||||
|
|
||||||
#. Option for the 'Event' (Select) field in DocType 'LMS Badge'
|
#. Option for the 'Event' (Select) field in DocType 'LMS Badge'
|
||||||
#: frontend/src/pages/Assignments.vue:18 frontend/src/pages/Batches.vue:17
|
#: frontend/src/pages/Assignments.vue:18 frontend/src/pages/Batches.vue:17
|
||||||
#: frontend/src/pages/Courses.vue:48 frontend/src/pages/Programs.vue:14
|
#: frontend/src/pages/Courses.vue:17 frontend/src/pages/Courses.vue:281
|
||||||
|
#: frontend/src/pages/Courses.vue:298 frontend/src/pages/Programs.vue:14
|
||||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||||
msgid "New"
|
msgid "New"
|
||||||
msgstr "جديد"
|
msgstr "جديد"
|
||||||
@@ -3484,11 +3451,11 @@ msgstr ""
|
|||||||
msgid "New Sign Up"
|
msgid "New Sign Up"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/utils.py:604
|
#: lms/lms/utils.py:605
|
||||||
msgid "New comment in batch {0}"
|
msgid "New comment in batch {0}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/utils.py:597
|
#: lms/lms/utils.py:598
|
||||||
msgid "New reply on the topic {0} in course {1}"
|
msgid "New reply on the topic {0} in course {1}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -3546,7 +3513,7 @@ msgstr ""
|
|||||||
msgid "No courses created"
|
msgid "No courses created"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/pages/Courses.vue:151
|
#: frontend/src/pages/Courses.vue:79
|
||||||
msgid "No courses found"
|
msgid "No courses found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -3598,15 +3565,11 @@ msgstr ""
|
|||||||
msgid "No {0}"
|
msgid "No {0}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/pages/Courses.vue:111
|
|
||||||
msgid "No {0} courses"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lms/templates/quiz/quiz.html:147
|
#: lms/templates/quiz/quiz.html:147
|
||||||
msgid "No."
|
msgid "No."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/overrides/user.py:194
|
#: lms/lms/user.py:29
|
||||||
msgid "Not Allowed"
|
msgid "Not Allowed"
|
||||||
msgstr "غير مسموح"
|
msgstr "غير مسموح"
|
||||||
|
|
||||||
@@ -3695,7 +3658,7 @@ msgstr ""
|
|||||||
msgid "Only files of type {0} will be accepted."
|
msgid "Only files of type {0} will be accepted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/pages/CourseForm.vue:506 frontend/src/utils/index.js:533
|
#: frontend/src/pages/CourseForm.vue:506 frontend/src/utils/index.js:552
|
||||||
msgid "Only image file is allowed."
|
msgid "Only image file is allowed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -3726,10 +3689,6 @@ msgstr ""
|
|||||||
msgid "Open Ended"
|
msgid "Open Ended"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/widgets/MemberCard.html:16
|
|
||||||
msgid "Open Network"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. Label of the option (Data) field in DocType 'LMS Option'
|
#. Label of the option (Data) field in DocType 'LMS Option'
|
||||||
#: frontend/src/components/Modals/Question.vue:64
|
#: frontend/src/components/Modals/Question.vue:64
|
||||||
#: lms/lms/doctype/lms_option/lms_option.json
|
#: lms/lms/doctype/lms_option/lms_option.json
|
||||||
@@ -3795,7 +3754,7 @@ msgstr ""
|
|||||||
#: lms/lms/doctype/lms_assignment/lms_assignment.json
|
#: lms/lms/doctype/lms_assignment/lms_assignment.json
|
||||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
||||||
msgid "PDF"
|
msgid "PDF"
|
||||||
msgstr ""
|
msgstr "ملف PDF"
|
||||||
|
|
||||||
#. Label of the pages (Table) field in DocType 'Cohort'
|
#. Label of the pages (Table) field in DocType 'Cohort'
|
||||||
#: lms/lms/doctype/cohort/cohort.json
|
#: lms/lms/doctype/cohort/cohort.json
|
||||||
@@ -3848,7 +3807,7 @@ msgstr ""
|
|||||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
||||||
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
|
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
|
||||||
msgid "Pass"
|
msgid "Pass"
|
||||||
msgstr ""
|
msgstr "إجتاز"
|
||||||
|
|
||||||
#. Label of the passing_percentage (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'
|
#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz Submission'
|
||||||
@@ -3981,11 +3940,11 @@ msgstr ""
|
|||||||
msgid "Please add <a href='{0}'>{1}</a> for <a href='{2}'>{3}</a> to send calendar invites for evaluations."
|
msgid "Please add <a href='{0}'>{1}</a> for <a href='{2}'>{3}</a> to send calendar invites for evaluations."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/overrides/user.py:240
|
#: lms/lms/user.py:75
|
||||||
msgid "Please ask your administrator to verify your sign-up"
|
msgid "Please ask your administrator to verify your sign-up"
|
||||||
msgstr "الرجاء اطلب من المشرف التأكد من تسجيلك"
|
msgstr "الرجاء اطلب من المشرف التأكد من تسجيلك"
|
||||||
|
|
||||||
#: lms/overrides/user.py:238
|
#: lms/lms/user.py:73
|
||||||
msgid "Please check your email for verification"
|
msgid "Please check your email for verification"
|
||||||
msgstr "يرجى التحقق من بريدك الالكتروني للتحقق"
|
msgstr "يرجى التحقق من بريدك الالكتروني للتحقق"
|
||||||
|
|
||||||
@@ -3993,7 +3952,7 @@ msgstr "يرجى التحقق من بريدك الالكتروني للتحقق"
|
|||||||
msgid "Please click on the following button to set your new password"
|
msgid "Please click on the following button to set your new password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/utils.py:1901 lms/lms/utils.py:1905
|
#: lms/lms/utils.py:2030 lms/lms/utils.py:2034
|
||||||
msgid "Please complete the previous courses in the program to enroll in this course."
|
msgid "Please complete the previous courses in the program to enroll in this course."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -4009,7 +3968,7 @@ msgstr ""
|
|||||||
msgid "Please ensure that you complete all the questions in {0} minutes."
|
msgid "Please ensure that you complete all the questions in {0} minutes."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:164
|
#: frontend/src/components/Modals/LiveClassModal.vue:170
|
||||||
msgid "Please enter a title."
|
msgid "Please enter a title."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -4018,7 +3977,7 @@ msgstr ""
|
|||||||
msgid "Please enter a valid URL."
|
msgid "Please enter a valid URL."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:176
|
#: frontend/src/components/Modals/LiveClassModal.vue:182
|
||||||
msgid "Please enter a valid time in the format HH:mm."
|
msgid "Please enter a valid time in the format HH:mm."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -4054,7 +4013,7 @@ msgstr ""
|
|||||||
msgid "Please login to access this page."
|
msgid "Please login to access this page."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/api.py:200
|
#: lms/lms/api.py:206
|
||||||
msgid "Please login to continue with payment."
|
msgid "Please login to continue with payment."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -4067,23 +4026,23 @@ msgstr ""
|
|||||||
msgid "Please schedule an evaluation to get certified."
|
msgid "Please schedule an evaluation to get certified."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:167
|
#: frontend/src/components/Modals/LiveClassModal.vue:173
|
||||||
msgid "Please select a date."
|
msgid "Please select a date."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:191
|
#: frontend/src/components/Modals/LiveClassModal.vue:197
|
||||||
msgid "Please select a duration."
|
msgid "Please select a duration."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:188
|
#: frontend/src/components/Modals/LiveClassModal.vue:194
|
||||||
msgid "Please select a future date and time."
|
msgid "Please select a future date and time."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:170
|
#: frontend/src/components/Modals/LiveClassModal.vue:176
|
||||||
msgid "Please select a time."
|
msgid "Please select a time."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:173
|
#: frontend/src/components/Modals/LiveClassModal.vue:179
|
||||||
msgid "Please select a timezone."
|
msgid "Please select a timezone."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -4091,13 +4050,6 @@ msgstr ""
|
|||||||
msgid "Please take appropriate action at {0}"
|
msgid "Please take appropriate action at {0}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:79
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:83
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:91
|
|
||||||
#: frontend/src/components/UserDropdown.vue:244
|
|
||||||
msgid "Please try again"
|
|
||||||
msgstr "حاول مرة اخرى"
|
|
||||||
|
|
||||||
#: frontend/src/components/Modals/ChapterModal.vue:177
|
#: frontend/src/components/Modals/ChapterModal.vue:177
|
||||||
msgid "Please upload a SCORM package"
|
msgid "Please upload a SCORM package"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -4210,7 +4162,7 @@ msgstr ""
|
|||||||
msgid "Primary Subgroup"
|
msgid "Primary Subgroup"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/utils.py:436
|
#: lms/lms/utils.py:437
|
||||||
msgid "Privacy Policy"
|
msgid "Privacy Policy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -4478,7 +4430,7 @@ msgstr ""
|
|||||||
msgid "Registered"
|
msgid "Registered"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/overrides/user.py:201
|
#: lms/lms/user.py:36
|
||||||
msgid "Registered but disabled"
|
msgid "Registered but disabled"
|
||||||
msgstr "سجل لكن المعوقين"
|
msgstr "سجل لكن المعوقين"
|
||||||
|
|
||||||
@@ -4519,10 +4471,6 @@ msgstr ""
|
|||||||
msgid "Required Role"
|
msgid "Required Role"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:31
|
|
||||||
msgid "Resend"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. Option for the 'Membership' (Select) field in DocType 'LMS Batch Old'
|
#. Option for the 'Membership' (Select) field in DocType 'LMS Batch Old'
|
||||||
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
|
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
|
||||||
msgid "Restricted"
|
msgid "Restricted"
|
||||||
@@ -4531,7 +4479,7 @@ msgstr ""
|
|||||||
#. Label of the result (Table) field in DocType 'LMS Quiz Submission'
|
#. Label of the result (Table) field in DocType 'LMS Quiz Submission'
|
||||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||||
msgid "Result"
|
msgid "Result"
|
||||||
msgstr ""
|
msgstr "نتيجة"
|
||||||
|
|
||||||
#. Label of the resume (Attach) field in DocType 'LMS Job Application'
|
#. Label of the resume (Attach) field in DocType 'LMS Job Application'
|
||||||
#: lms/job/doctype/lms_job_application/lms_job_application.json
|
#: lms/job/doctype/lms_job_application/lms_job_application.json
|
||||||
@@ -4639,7 +4587,7 @@ msgstr "حفظ"
|
|||||||
#. Label of the schedule (Table) field in DocType 'Course Evaluator'
|
#. Label of the schedule (Table) field in DocType 'Course Evaluator'
|
||||||
#: lms/lms/doctype/course_evaluator/course_evaluator.json
|
#: lms/lms/doctype/course_evaluator/course_evaluator.json
|
||||||
msgid "Schedule"
|
msgid "Schedule"
|
||||||
msgstr ""
|
msgstr "جدول"
|
||||||
|
|
||||||
#: frontend/src/components/Modals/EvaluationModal.vue:5
|
#: frontend/src/components/Modals/EvaluationModal.vue:5
|
||||||
#: frontend/src/components/UpcomingEvaluations.vue:14
|
#: frontend/src/components/UpcomingEvaluations.vue:14
|
||||||
@@ -4677,7 +4625,7 @@ msgstr "البحث"
|
|||||||
msgid "Search by Name"
|
msgid "Search by Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/pages/Batches.vue:45
|
#: frontend/src/pages/Batches.vue:45 frontend/src/pages/Courses.vue:45
|
||||||
msgid "Search by Title"
|
msgid "Search by Title"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -4819,7 +4767,7 @@ msgstr "الشريط الجانبي"
|
|||||||
msgid "Sidebar Items"
|
msgid "Sidebar Items"
|
||||||
msgstr "عناصر الشريط الجانبي"
|
msgstr "عناصر الشريط الجانبي"
|
||||||
|
|
||||||
#: lms/overrides/user.py:194
|
#: lms/lms/user.py:29
|
||||||
msgid "Sign Up is disabled"
|
msgid "Sign Up is disabled"
|
||||||
msgstr "تم تعطيل الاشتراك"
|
msgstr "تم تعطيل الاشتراك"
|
||||||
|
|
||||||
@@ -4863,10 +4811,6 @@ msgstr "اسم المهارة"
|
|||||||
msgid "Skills"
|
msgid "Skills"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/overrides/user.py:42
|
|
||||||
msgid "Skills must be unique"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lms/templates/onboarding_header.html:6
|
#: lms/templates/onboarding_header.html:6
|
||||||
msgid "Skip"
|
msgid "Skip"
|
||||||
msgstr "تخطى"
|
msgstr "تخطى"
|
||||||
@@ -5143,7 +5087,7 @@ msgstr "ملخص"
|
|||||||
msgid "Sunday"
|
msgid "Sunday"
|
||||||
msgstr "الأحد"
|
msgstr "الأحد"
|
||||||
|
|
||||||
#: lms/lms/api.py:1012
|
#: lms/lms/api.py:1018
|
||||||
msgid "Suspicious pattern found in {0}: {1}"
|
msgid "Suspicious pattern found in {0}: {1}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -5224,11 +5168,11 @@ msgstr ""
|
|||||||
msgid "Template"
|
msgid "Template"
|
||||||
msgstr "قالب"
|
msgstr "قالب"
|
||||||
|
|
||||||
#: lms/overrides/user.py:205
|
#: lms/lms/user.py:40
|
||||||
msgid "Temporarily Disabled"
|
msgid "Temporarily Disabled"
|
||||||
msgstr "موقوف مؤقتا"
|
msgstr "موقوف مؤقتا"
|
||||||
|
|
||||||
#: lms/lms/utils.py:435
|
#: lms/lms/utils.py:436
|
||||||
msgid "Terms of Use"
|
msgid "Terms of Use"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -5264,7 +5208,7 @@ msgstr ""
|
|||||||
msgid "Thanks and Regards"
|
msgid "Thanks and Regards"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/utils.py:1801
|
#: lms/lms/utils.py:1930
|
||||||
msgid "The batch is full. Please contact the Administrator."
|
msgid "The batch is full. Please contact the Administrator."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -5300,8 +5244,8 @@ msgstr ""
|
|||||||
msgid "There are no chapters in this course. Create and manage chapters from here."
|
msgid "There are no chapters in this course. Create and manage chapters from here."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/pages/Courses.vue:155
|
#: frontend/src/pages/Courses.vue:83
|
||||||
msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
|
msgid "There are no courses matching the criteria. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/pages/CertifiedParticipants.vue:92
|
#: frontend/src/pages/CertifiedParticipants.vue:92
|
||||||
@@ -5359,7 +5303,7 @@ msgstr ""
|
|||||||
msgid "This course has:"
|
msgid "This course has:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/utils.py:1644
|
#: lms/lms/utils.py:1773
|
||||||
msgid "This course is free."
|
msgid "This course is free."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -5427,7 +5371,7 @@ msgstr ""
|
|||||||
#. Label of the timezone (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 Certificate Request'
|
#. Label of the timezone (Data) field in DocType 'LMS Certificate Request'
|
||||||
#. Label of the timezone (Data) field in DocType 'LMS Live Class'
|
#. Label of the timezone (Data) field in DocType 'LMS Live Class'
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:46
|
#: frontend/src/components/Modals/LiveClassModal.vue:45
|
||||||
#: frontend/src/pages/BatchForm.vue:120
|
#: frontend/src/pages/BatchForm.vue:120
|
||||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||||
@@ -5501,7 +5445,7 @@ msgstr "إلى"
|
|||||||
msgid "To Date"
|
msgid "To Date"
|
||||||
msgstr "إلى تاريخ"
|
msgstr "إلى تاريخ"
|
||||||
|
|
||||||
#: lms/lms/utils.py:1655
|
#: lms/lms/utils.py:1784
|
||||||
msgid "To join this batch, please contact the Administrator."
|
msgid "To join this batch, please contact the Administrator."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -5509,7 +5453,7 @@ msgstr ""
|
|||||||
msgid "To upload Image, Video, Audio or PDF from your system, click on the add icon and select upload from the menu. Then choose the file you want to add to the lesson and it gets added to your lesson."
|
msgid "To upload Image, Video, Audio or PDF from your system, click on the add icon and select upload from the menu. Then choose the file you want to add to the lesson and it gets added to your lesson."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/overrides/user.py:206
|
#: lms/lms/user.py:41
|
||||||
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
|
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
|
||||||
msgstr "وقعت الكثير من المستخدمين في الآونة الأخيرة، وذلك هو تعطيل التسجيل. يرجى المحاولة مرة أخرى في ساعة"
|
msgstr "وقعت الكثير من المستخدمين في الآونة الأخيرة، وذلك هو تعطيل التسجيل. يرجى المحاولة مرة أخرى في ساعة"
|
||||||
|
|
||||||
@@ -5535,7 +5479,7 @@ msgstr "السفر"
|
|||||||
|
|
||||||
#: frontend/src/components/Quiz.vue:256 lms/templates/quiz/quiz.html:131
|
#: frontend/src/components/Quiz.vue:256 lms/templates/quiz/quiz.html:131
|
||||||
msgid "Try Again"
|
msgid "Try Again"
|
||||||
msgstr ""
|
msgstr "حاول مرة أخرى"
|
||||||
|
|
||||||
#. Option for the 'Day' (Select) field in DocType 'Evaluator Schedule'
|
#. Option for the 'Day' (Select) field in DocType 'Evaluator Schedule'
|
||||||
#. Option for the 'Day' (Select) field in DocType 'LMS Certificate Request'
|
#. Option for the 'Day' (Select) field in DocType 'LMS Certificate Request'
|
||||||
@@ -5626,7 +5570,8 @@ msgstr ""
|
|||||||
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request'
|
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request'
|
||||||
#. Label of the upcoming (Check) field in DocType 'LMS Course'
|
#. Label of the upcoming (Check) field in DocType 'LMS Course'
|
||||||
#: frontend/src/pages/Batches.vue:276 frontend/src/pages/Batches.vue:294
|
#: frontend/src/pages/Batches.vue:276 frontend/src/pages/Batches.vue:294
|
||||||
#: frontend/src/pages/CourseForm.vue:184 lms/lms/doctype/cohort/cohort.json
|
#: frontend/src/pages/CourseForm.vue:184 frontend/src/pages/Courses.vue:282
|
||||||
|
#: frontend/src/pages/Courses.vue:301 lms/lms/doctype/cohort/cohort.json
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||||
#: lms/lms/doctype/lms_course/lms_course.json
|
#: lms/lms/doctype/lms_course/lms_course.json
|
||||||
msgid "Upcoming"
|
msgid "Upcoming"
|
||||||
@@ -5727,14 +5672,6 @@ msgstr "القيمة"
|
|||||||
msgid "Value Change"
|
msgid "Value Change"
|
||||||
msgstr "قيمة التغير"
|
msgstr "قيمة التغير"
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:26
|
|
||||||
msgid "Verification Code"
|
|
||||||
msgstr "رمز التحقق"
|
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:9
|
|
||||||
msgid "Verify"
|
|
||||||
msgstr "تأكد من"
|
|
||||||
|
|
||||||
#. Label of the video_link (Data) field in DocType 'LMS Course'
|
#. Label of the video_link (Data) field in DocType 'LMS Course'
|
||||||
#: lms/lms/doctype/lms_course/lms_course.json
|
#: lms/lms/doctype/lms_course/lms_course.json
|
||||||
msgid "Video Embed Link"
|
msgid "Video Embed Link"
|
||||||
@@ -5776,10 +5713,6 @@ msgstr ""
|
|||||||
msgid "We have a limited number of seats, and they won't be available for long!"
|
msgid "We have a limited number of seats, and they won't be available for long!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:21
|
|
||||||
msgid "We have sent the verificaton code to your email id "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lms/templates/emails/payment_reminder.html:4
|
#: lms/templates/emails/payment_reminder.html:4
|
||||||
msgid "We noticed that you started enrolling in the"
|
msgid "We noticed that you started enrolling in the"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -5855,7 +5788,7 @@ msgstr ""
|
|||||||
msgid "Write your answer here"
|
msgid "Write your answer here"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:95
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:96
|
||||||
msgid "You already have an evaluation on {0} at {1} for the course {2}."
|
msgid "You already have an evaluation on {0} at {1} for the course {2}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -5863,11 +5796,11 @@ msgstr ""
|
|||||||
msgid "You are already certified for this course. Click on the card below to open your certificate."
|
msgid "You are already certified for this course. Click on the card below to open your certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/api.py:224
|
#: lms/lms/api.py:230
|
||||||
msgid "You are already enrolled for this batch."
|
msgid "You are already enrolled for this batch."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/api.py:216
|
#: lms/lms/api.py:222
|
||||||
msgid "You are already enrolled for this course."
|
msgid "You are already enrolled for this course."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -5887,10 +5820,6 @@ msgstr ""
|
|||||||
msgid "You are not enrolled in this course. Please enroll to access this lesson."
|
msgid "You are not enrolled in this course. Please enroll to access this lesson."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/pages/Courses.vue:139
|
|
||||||
msgid "You can add chapters and lessons to it."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lms/templates/emails/lms_course_interest.html:13
|
#: lms/templates/emails/lms_course_interest.html:13
|
||||||
#: lms/templates/emails/lms_invite_request_approved.html:11
|
#: lms/templates/emails/lms_invite_request_approved.html:11
|
||||||
msgid "You can also copy-paste following link in your browser"
|
msgid "You can also copy-paste following link in your browser"
|
||||||
@@ -5908,11 +5837,11 @@ msgstr ""
|
|||||||
msgid "You can find their resume attached to this email."
|
msgid "You can find their resume attached to this email."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:115
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:116
|
||||||
msgid "You cannot schedule evaluations after {0}."
|
msgid "You cannot schedule evaluations after {0}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:104
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:105
|
||||||
msgid "You cannot schedule evaluations for past slots."
|
msgid "You cannot schedule evaluations for past slots."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -5945,7 +5874,7 @@ msgstr ""
|
|||||||
msgid "You have already exceeded the maximum number of attempts allowed for this quiz."
|
msgid "You have already exceeded the maximum number of attempts allowed for this quiz."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/api.py:237
|
#: lms/lms/api.py:243
|
||||||
msgid "You have already purchased the certificate for this course."
|
msgid "You have already purchased the certificate for this course."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -5985,10 +5914,6 @@ msgstr ""
|
|||||||
msgid "You need to login first to enroll for this course"
|
msgid "You need to login first to enroll for this course"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:71
|
|
||||||
msgid "You will be redirected to Frappe Cloud soon."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: frontend/src/components/Quiz.vue:27 lms/templates/quiz/quiz.html:11
|
#: frontend/src/components/Quiz.vue:27 lms/templates/quiz/quiz.html:11
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "You will have to get {0}% correct answers in order to pass the quiz."
|
msgid "You will have to get {0}% correct answers in order to pass the quiz."
|
||||||
@@ -6026,7 +5951,7 @@ msgstr ""
|
|||||||
msgid "Your evaluation for the course {0} has been scheduled on {1} at {2} {3}."
|
msgid "Your evaluation for the course {0} has been scheduled on {1} at {2} {3}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:125
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:126
|
||||||
msgid "Your evaluation slot has been booked"
|
msgid "Your evaluation slot has been booked"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -6093,15 +6018,15 @@ msgstr ""
|
|||||||
|
|
||||||
#: frontend/src/pages/Programs.vue:31
|
#: frontend/src/pages/Programs.vue:31
|
||||||
msgid "members"
|
msgid "members"
|
||||||
msgstr ""
|
msgstr "الطلاب"
|
||||||
|
|
||||||
#: lms/templates/quiz/quiz.html:106
|
#: lms/templates/quiz/quiz.html:106
|
||||||
msgid "of"
|
msgid "of"
|
||||||
msgstr ""
|
msgstr "من"
|
||||||
|
|
||||||
#: lms/templates/quiz/quiz.js:141
|
#: lms/templates/quiz/quiz.js:141
|
||||||
msgid "out of"
|
msgid "out of"
|
||||||
msgstr ""
|
msgstr "من أصل"
|
||||||
|
|
||||||
#: frontend/src/components/JobCard.vue:30
|
#: frontend/src/components/JobCard.vue:30
|
||||||
msgid "posted"
|
msgid "posted"
|
||||||
@@ -6113,7 +6038,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: lms/templates/reviews.html:25
|
#: lms/templates/reviews.html:25
|
||||||
msgid "ratings"
|
msgid "ratings"
|
||||||
msgstr ""
|
msgstr "التقييمات"
|
||||||
|
|
||||||
#: lms/templates/reviews.html:43
|
#: lms/templates/reviews.html:43
|
||||||
msgid "stars"
|
msgid "stars"
|
||||||
@@ -6127,7 +6052,7 @@ msgstr ""
|
|||||||
msgid "you can"
|
msgid "you can"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/api.py:802 lms/lms/api.py:810
|
#: lms/lms/api.py:808 lms/lms/api.py:816
|
||||||
msgid "{0} Settings not found"
|
msgid "{0} Settings not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -6167,7 +6092,7 @@ msgstr ""
|
|||||||
msgid "{0} is your evaluator"
|
msgid "{0} is your evaluator"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/utils.py:681
|
#: lms/lms/utils.py:682
|
||||||
msgid "{0} mentioned you in a comment"
|
msgid "{0} mentioned you in a comment"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -6175,11 +6100,11 @@ msgstr ""
|
|||||||
msgid "{0} mentioned you in a comment in your batch."
|
msgid "{0} mentioned you in a comment in your batch."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/utils.py:634 lms/lms/utils.py:640
|
#: lms/lms/utils.py:635 lms/lms/utils.py:641
|
||||||
msgid "{0} mentioned you in a comment in {1}"
|
msgid "{0} mentioned you in a comment in {1}"
|
||||||
msgstr "{0} ذكرتك في تعليق في {1}"
|
msgstr "{0} ذكرتك في تعليق في {1}"
|
||||||
|
|
||||||
#: lms/lms/utils.py:457
|
#: lms/lms/utils.py:458
|
||||||
msgid "{0}k"
|
msgid "{0}k"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
247
lms/locale/bs.po
247
lms/locale/bs.po
@@ -2,8 +2,8 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: frappe\n"
|
"Project-Id-Version: frappe\n"
|
||||||
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
|
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
|
||||||
"POT-Creation-Date: 2025-02-28 16:04+0000\n"
|
"POT-Creation-Date: 2025-03-07 16:04+0000\n"
|
||||||
"PO-Revision-Date: 2025-03-03 21:29\n"
|
"PO-Revision-Date: 2025-03-10 22:46\n"
|
||||||
"Last-Translator: jannat@frappe.io\n"
|
"Last-Translator: jannat@frappe.io\n"
|
||||||
"Language-Team: Bosnian\n"
|
"Language-Team: Bosnian\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -228,7 +228,7 @@ msgstr "Sve Grupe"
|
|||||||
msgid "All Certified Participants"
|
msgid "All Certified Participants"
|
||||||
msgstr "Svi Certificirani Učesnici"
|
msgstr "Svi Certificirani Učesnici"
|
||||||
|
|
||||||
#: lms/lms/widgets/BreadCrumb.html:3
|
#: frontend/src/pages/Courses.vue:26 lms/lms/widgets/BreadCrumb.html:3
|
||||||
msgid "All Courses"
|
msgid "All Courses"
|
||||||
msgstr "Svi Kursevi"
|
msgstr "Svi Kursevi"
|
||||||
|
|
||||||
@@ -268,7 +268,7 @@ msgstr "Dozvoli Pristup Budućim Datumima"
|
|||||||
msgid "Allow self enrollment"
|
msgid "Allow self enrollment"
|
||||||
msgstr "Dozvoli Samostalnu Registraciju"
|
msgstr "Dozvoli Samostalnu Registraciju"
|
||||||
|
|
||||||
#: lms/overrides/user.py:199
|
#: lms/lms/user.py:34
|
||||||
msgid "Already Registered"
|
msgid "Already Registered"
|
||||||
msgstr "Već Registrovan"
|
msgstr "Već Registrovan"
|
||||||
|
|
||||||
@@ -378,7 +378,7 @@ msgstr "Arhivirano"
|
|||||||
msgid "Are you sure you want to cancel this evaluation? This action cannot be undone."
|
msgid "Are you sure you want to cancel this evaluation? This action cannot be undone."
|
||||||
msgstr "Jeste li sigurni da želite otkazati ovo ocjenjivanje? Ova radnja se ne može poništiti."
|
msgstr "Jeste li sigurni da želite otkazati ovo ocjenjivanje? Ova radnja se ne može poništiti."
|
||||||
|
|
||||||
#: frontend/src/components/UserDropdown.vue:209
|
#: frontend/src/components/UserDropdown.vue:169
|
||||||
msgid "Are you sure you want to login to your Frappe Cloud dashboard?"
|
msgid "Are you sure you want to login to your Frappe Cloud dashboard?"
|
||||||
msgstr "Jeste li sigurni da se želite prijaviti na svoju Frappe Cloud Nadzornu Tablu?"
|
msgstr "Jeste li sigurni da se želite prijaviti na svoju Frappe Cloud Nadzornu Tablu?"
|
||||||
|
|
||||||
@@ -492,12 +492,12 @@ msgid "Auto Assign"
|
|||||||
msgstr "Automatski Dodjeli"
|
msgstr "Automatski Dodjeli"
|
||||||
|
|
||||||
#. Label of the auto_recording (Select) field in DocType 'LMS Live Class'
|
#. Label of the auto_recording (Select) field in DocType 'LMS Live Class'
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:71
|
#: frontend/src/components/Modals/LiveClassModal.vue:77
|
||||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||||
msgid "Auto Recording"
|
msgid "Auto Recording"
|
||||||
msgstr "Automatsko Snimanje"
|
msgstr "Automatsko Snimanje"
|
||||||
|
|
||||||
#: frontend/src/components/CourseCard.vue:50
|
#: frontend/src/components/CourseCard.vue:51
|
||||||
#: frontend/src/pages/CourseDetail.vue:20
|
#: frontend/src/pages/CourseDetail.vue:20
|
||||||
msgid "Average Rating"
|
msgid "Average Rating"
|
||||||
msgstr "Prosječna Ocjena"
|
msgstr "Prosječna Ocjena"
|
||||||
@@ -739,7 +739,7 @@ msgstr "Ležerna Odjeća"
|
|||||||
#. Label of the category (Link) field in DocType 'LMS Course'
|
#. Label of the category (Link) field in DocType 'LMS Course'
|
||||||
#: frontend/src/pages/BatchForm.vue:190 frontend/src/pages/Batches.vue:55
|
#: frontend/src/pages/BatchForm.vue:190 frontend/src/pages/Batches.vue:55
|
||||||
#: frontend/src/pages/CertifiedParticipants.vue:37
|
#: frontend/src/pages/CertifiedParticipants.vue:37
|
||||||
#: frontend/src/pages/CourseForm.vue:147 frontend/src/pages/Courses.vue:17
|
#: frontend/src/pages/CourseForm.vue:147 frontend/src/pages/Courses.vue:55
|
||||||
#: frontend/src/pages/JobDetail.vue:96 lms/lms/doctype/lms_batch/lms_batch.json
|
#: frontend/src/pages/JobDetail.vue:96 lms/lms/doctype/lms_batch/lms_batch.json
|
||||||
#: lms/lms/doctype/lms_category/lms_category.json
|
#: lms/lms/doctype/lms_category/lms_category.json
|
||||||
#: lms/lms/doctype/lms_course/lms_course.json
|
#: lms/lms/doctype/lms_course/lms_course.json
|
||||||
@@ -790,12 +790,12 @@ msgstr "Certifikati su uspješno generirani"
|
|||||||
#. Enrollment'
|
#. Enrollment'
|
||||||
#. Label of a Card Break in the LMS Workspace
|
#. Label of a Card Break in the LMS Workspace
|
||||||
#. Label of a Link in the LMS Workspace
|
#. Label of a Link in the LMS Workspace
|
||||||
#: frontend/src/components/CourseCard.vue:110
|
#: frontend/src/components/CourseCard.vue:111
|
||||||
#: frontend/src/components/Modals/Event.vue:371
|
#: frontend/src/components/Modals/Event.vue:371
|
||||||
#: frontend/src/pages/BatchForm.vue:37 frontend/src/pages/Batches.vue:38
|
#: frontend/src/pages/BatchForm.vue:37 frontend/src/pages/Batches.vue:38
|
||||||
#: frontend/src/pages/CourseCertification.vue:10
|
#: frontend/src/pages/CourseCertification.vue:10
|
||||||
#: frontend/src/pages/CourseCertification.vue:114
|
#: frontend/src/pages/CourseCertification.vue:114
|
||||||
#: lms/fixtures/custom_field.json
|
#: frontend/src/pages/Courses.vue:38 lms/fixtures/custom_field.json
|
||||||
#: lms/lms/doctype/certification/certification.json
|
#: lms/lms/doctype/certification/certification.json
|
||||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
||||||
@@ -912,10 +912,6 @@ msgstr "Očisti"
|
|||||||
msgid "Clearly Defined Role"
|
msgid "Clearly Defined Role"
|
||||||
msgstr "Jasno Definisana Uloga"
|
msgstr "Jasno Definisana Uloga"
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:75
|
|
||||||
msgid "Click here to login"
|
|
||||||
msgstr "Klikni ovdje za prijavu"
|
|
||||||
|
|
||||||
#: frontend/src/components/LessonHelp.vue:30
|
#: frontend/src/components/LessonHelp.vue:30
|
||||||
msgid "Click on the add icon in the editor and select Quiz from the menu. It opens up a dialog, where you can either select a quiz from the list or create a new quiz. When you select the Create New option it redirects you to the quiz creation page."
|
msgid "Click on the add icon in the editor and select Quiz from the menu. It opens up a dialog, where you can either select a quiz from the list or create a new quiz. When you select the Create New option it redirects you to the quiz creation page."
|
||||||
msgstr "Klikni na ikonu za dodavanje u uređivaču i izaberite Kviz iz menija. Otvara se dijalog u kojem možete odabrati kviz sa liste ili kreirati novi kviz. Kada odaberete opciju Kreiraj novi, ona vas preusmjerava na stranicu za kreiranje kviza."
|
msgstr "Klikni na ikonu za dodavanje u uređivaču i izaberite Kviz iz menija. Otvara se dijalog u kojem možete odabrati kviz sa liste ili kreirati novi kviz. Kada odaberete opciju Kreiraj novi, ona vas preusmjerava na stranicu za kreiranje kviza."
|
||||||
@@ -1084,7 +1080,7 @@ msgstr "Završi Registraciju"
|
|||||||
msgid "Complete Your Enrollment"
|
msgid "Complete Your Enrollment"
|
||||||
msgstr "Završi Upis"
|
msgstr "Završi Upis"
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_payment/lms_payment.py:40
|
#: lms/lms/doctype/lms_payment/lms_payment.py:55
|
||||||
msgid "Complete Your Enrollment - Don't miss out!"
|
msgid "Complete Your Enrollment - Don't miss out!"
|
||||||
msgstr "Završi upis - ne propusti!"
|
msgstr "Završi upis - ne propusti!"
|
||||||
|
|
||||||
@@ -1125,7 +1121,11 @@ msgstr "Uvjet mora biti u važećem JSON formatu."
|
|||||||
msgid "Condition must be valid python code."
|
msgid "Condition must be valid python code."
|
||||||
msgstr "Uslov mora biti važeći Python kod."
|
msgstr "Uslov mora biti važeći Python kod."
|
||||||
|
|
||||||
#: frontend/src/components/UserDropdown.vue:214
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.js:7
|
||||||
|
msgid "Conduct Evaluation"
|
||||||
|
msgstr "Provedi Ocjenjivanje"
|
||||||
|
|
||||||
|
#: frontend/src/components/UserDropdown.vue:174
|
||||||
msgid "Confirm"
|
msgid "Confirm"
|
||||||
msgstr "Potvrdi"
|
msgstr "Potvrdi"
|
||||||
|
|
||||||
@@ -1166,7 +1166,7 @@ msgstr "Nastavi sa Učenjem"
|
|||||||
msgid "Contract"
|
msgid "Contract"
|
||||||
msgstr "Ugovor"
|
msgstr "Ugovor"
|
||||||
|
|
||||||
#: lms/lms/utils.py:437
|
#: lms/lms/utils.py:438
|
||||||
msgid "Cookie Policy"
|
msgid "Cookie Policy"
|
||||||
msgstr "Politika Kolačića"
|
msgstr "Politika Kolačića"
|
||||||
|
|
||||||
@@ -1382,7 +1382,7 @@ msgstr "Kurs {0} je već dodan ovoj grupi."
|
|||||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:79
|
#: frontend/src/components/Modals/BatchStudentProgress.vue:79
|
||||||
#: frontend/src/pages/BatchDetail.vue:21 frontend/src/pages/BatchDetail.vue:70
|
#: frontend/src/pages/BatchDetail.vue:21 frontend/src/pages/BatchDetail.vue:70
|
||||||
#: frontend/src/pages/CourseCertification.vue:106
|
#: frontend/src/pages/CourseCertification.vue:106
|
||||||
#: frontend/src/pages/Courses.vue:8 frontend/src/pages/Statistics.vue:21
|
#: frontend/src/pages/Courses.vue:314 frontend/src/pages/Statistics.vue:21
|
||||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||||
msgid "Courses"
|
msgid "Courses"
|
||||||
@@ -1393,10 +1393,6 @@ msgstr "Kursevi"
|
|||||||
msgid "Courses Completed"
|
msgid "Courses Completed"
|
||||||
msgstr "Završeni Kursevi"
|
msgstr "Završeni Kursevi"
|
||||||
|
|
||||||
#: lms/lms/web_template/courses_mentored/courses_mentored.html:4
|
|
||||||
msgid "Courses Mentored"
|
|
||||||
msgstr "Mentorisani Kursevi"
|
|
||||||
|
|
||||||
#: frontend/src/components/BatchCourses.vue:151
|
#: frontend/src/components/BatchCourses.vue:151
|
||||||
msgid "Courses deleted successfully"
|
msgid "Courses deleted successfully"
|
||||||
msgstr "Kursevi su uspješno izbrisani"
|
msgstr "Kursevi su uspješno izbrisani"
|
||||||
@@ -1412,14 +1408,10 @@ msgid "Create"
|
|||||||
msgstr "Kreiraj"
|
msgstr "Kreiraj"
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.js:7
|
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.js:7
|
||||||
msgid "Create LMS Certificate"
|
msgid "Create Certificate"
|
||||||
msgstr "Kreiraj Certifikat"
|
msgstr "Kreiraj Certifikat"
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.js:8
|
#: lms/templates/onboarding_header.html:19
|
||||||
msgid "Create LMS Certificate Evaluation"
|
|
||||||
msgstr "Kreiraj Procjenu Certifikata"
|
|
||||||
|
|
||||||
#: frontend/src/pages/Courses.vue:136 lms/templates/onboarding_header.html:19
|
|
||||||
msgid "Create a Course"
|
msgid "Create a Course"
|
||||||
msgstr "Kreiraj Kurs"
|
msgstr "Kreiraj Kurs"
|
||||||
|
|
||||||
@@ -1435,7 +1427,8 @@ msgstr "Kreiraj kurs"
|
|||||||
msgid "Create a new question"
|
msgid "Create a new question"
|
||||||
msgstr "Kreiraj novo pitanje"
|
msgstr "Kreiraj novo pitanje"
|
||||||
|
|
||||||
#: frontend/src/pages/Assignments.vue:163
|
#: frontend/src/pages/Assignments.vue:163 frontend/src/pages/Courses.vue:287
|
||||||
|
#: frontend/src/pages/Courses.vue:307
|
||||||
msgid "Created"
|
msgid "Created"
|
||||||
msgstr "Kreirano"
|
msgstr "Kreirano"
|
||||||
|
|
||||||
@@ -1479,7 +1472,7 @@ msgstr "Prilagodbe"
|
|||||||
#. Label of the show_dashboard (Check) field in DocType 'LMS Settings'
|
#. Label of the show_dashboard (Check) field in DocType 'LMS Settings'
|
||||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||||
msgid "Dashboard"
|
msgid "Dashboard"
|
||||||
msgstr "Nadzorna ploča"
|
msgstr "Nadzorna Tabla"
|
||||||
|
|
||||||
#. Label of the date (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 Evaluation'
|
||||||
@@ -1488,7 +1481,7 @@ msgstr "Nadzorna ploča"
|
|||||||
#. Label of the date (Date) field in DocType 'Scheduled Flow'
|
#. Label of the date (Date) field in DocType 'Scheduled Flow'
|
||||||
#: frontend/src/components/Modals/EvaluationModal.vue:26
|
#: frontend/src/components/Modals/EvaluationModal.vue:26
|
||||||
#: frontend/src/components/Modals/Event.vue:40
|
#: frontend/src/components/Modals/Event.vue:40
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:55
|
#: frontend/src/components/Modals/LiveClassModal.vue:61
|
||||||
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
|
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
|
||||||
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
|
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||||
@@ -1587,7 +1580,7 @@ msgstr "Brisanjem ove lekcije trajno će se ukloniti iz kursa. Ova radnja se ne
|
|||||||
#. Label of the description (Small Text) field in DocType 'LMS Exercise'
|
#. 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 (Text) field in DocType 'LMS Live Class'
|
||||||
#. Label of the description (Small Text) field in DocType 'Work Experience'
|
#. Label of the description (Small Text) field in DocType 'Work Experience'
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:78
|
#: frontend/src/components/Modals/LiveClassModal.vue:84
|
||||||
#: frontend/src/pages/BatchForm.vue:224 frontend/src/pages/JobCreation.vue:50
|
#: frontend/src/pages/BatchForm.vue:224 frontend/src/pages/JobCreation.vue:50
|
||||||
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
||||||
#: lms/lms/doctype/certification/certification.json
|
#: lms/lms/doctype/certification/certification.json
|
||||||
@@ -1614,10 +1607,6 @@ msgstr "Radni Prostor"
|
|||||||
msgid "Details"
|
msgid "Details"
|
||||||
msgstr "Detalji"
|
msgstr "Detalji"
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:30
|
|
||||||
msgid "Didn't receive the code?"
|
|
||||||
msgstr "Niste primili kod?"
|
|
||||||
|
|
||||||
#: frontend/src/pages/CourseForm.vue:194
|
#: frontend/src/pages/CourseForm.vue:194
|
||||||
msgid "Disable Self Enrollment"
|
msgid "Disable Self Enrollment"
|
||||||
msgstr "Onemogući Samostalni Upis"
|
msgstr "Onemogući Samostalni Upis"
|
||||||
@@ -1668,7 +1657,7 @@ msgstr "Pronađene su duple opcije za ovo pitanje."
|
|||||||
#. Label of the duration (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 (Data) field in DocType 'LMS Batch Timetable'
|
||||||
#. Label of the duration (Int) field in DocType 'LMS Live Class'
|
#. Label of the duration (Int) field in DocType 'LMS Live Class'
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:62
|
#: frontend/src/components/Modals/LiveClassModal.vue:68
|
||||||
#: lms/lms/doctype/cohort/cohort.json
|
#: lms/lms/doctype/cohort/cohort.json
|
||||||
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
|
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
|
||||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||||
@@ -1680,7 +1669,7 @@ msgstr "Trajanje"
|
|||||||
msgid "Duration (in minutes)"
|
msgid "Duration (in minutes)"
|
||||||
msgstr "Trajanje (u minutama)"
|
msgstr "Trajanje (u minutama)"
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:58
|
#: frontend/src/components/Modals/LiveClassModal.vue:64
|
||||||
msgid "Duration of the live class in minutes"
|
msgid "Duration of the live class in minutes"
|
||||||
msgstr "Trajanje predavanja uživo u minutama"
|
msgstr "Trajanje predavanja uživo u minutama"
|
||||||
|
|
||||||
@@ -1826,11 +1815,12 @@ msgstr "Vrijeme Završetka"
|
|||||||
msgid "Enroll Now"
|
msgid "Enroll Now"
|
||||||
msgstr "Upišite se sada"
|
msgstr "Upišite se sada"
|
||||||
|
|
||||||
#: frontend/src/pages/Batches.vue:292
|
#: frontend/src/pages/Batches.vue:292 frontend/src/pages/Courses.vue:285
|
||||||
|
#: frontend/src/pages/Courses.vue:305
|
||||||
msgid "Enrolled"
|
msgid "Enrolled"
|
||||||
msgstr "Upisan"
|
msgstr "Upisan"
|
||||||
|
|
||||||
#: frontend/src/components/CourseCard.vue:41
|
#: frontend/src/components/CourseCard.vue:42
|
||||||
#: frontend/src/components/CourseCardOverlay.vue:106
|
#: frontend/src/components/CourseCardOverlay.vue:106
|
||||||
#: frontend/src/pages/CourseDetail.vue:33
|
#: frontend/src/pages/CourseDetail.vue:33
|
||||||
msgid "Enrolled Students"
|
msgid "Enrolled Students"
|
||||||
@@ -1849,11 +1839,11 @@ msgstr "Potvrda upisa za {0}"
|
|||||||
msgid "Enrollment Count"
|
msgid "Enrollment Count"
|
||||||
msgstr "Broj Upisa"
|
msgstr "Broj Upisa"
|
||||||
|
|
||||||
#: lms/lms/utils.py:1769
|
#: lms/lms/utils.py:1898
|
||||||
msgid "Enrollment Failed"
|
msgid "Enrollment Failed"
|
||||||
msgstr "Upis nije uspio"
|
msgstr "Upis nije uspio"
|
||||||
|
|
||||||
#. Label of the enrollments (Data) field in DocType 'LMS Course'
|
#. Label of the enrollments (Int) field in DocType 'LMS Course'
|
||||||
#. Label of a chart in the LMS Workspace
|
#. Label of a chart in the LMS Workspace
|
||||||
#. Label of a shortcut in the LMS Workspace
|
#. Label of a shortcut in the LMS Workspace
|
||||||
#: frontend/src/pages/Statistics.vue:51
|
#: frontend/src/pages/Statistics.vue:51
|
||||||
@@ -2057,14 +2047,6 @@ msgstr "Istraži Više"
|
|||||||
msgid "Fail"
|
msgid "Fail"
|
||||||
msgstr "Neuspjeh"
|
msgstr "Neuspjeh"
|
||||||
|
|
||||||
#: frontend/src/components/UserDropdown.vue:243
|
|
||||||
msgid "Failed to login to Frappe Cloud"
|
|
||||||
msgstr "Prijava na Frappe Cloud nije uspjela"
|
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:91
|
|
||||||
msgid "Failed to resend code"
|
|
||||||
msgstr "Ponovno slanje koda nije uspjelo"
|
|
||||||
|
|
||||||
#. Label of the featured (Check) field in DocType 'LMS Course'
|
#. Label of the featured (Check) field in DocType 'LMS Course'
|
||||||
#: frontend/src/components/CourseCard.vue:16
|
#: frontend/src/components/CourseCard.vue:16
|
||||||
#: frontend/src/pages/CourseForm.vue:189
|
#: frontend/src/pages/CourseForm.vue:189
|
||||||
@@ -2125,10 +2107,6 @@ msgstr "Forma za kreiranje i uređivanje kvizova"
|
|||||||
msgid "Formal Wear"
|
msgid "Formal Wear"
|
||||||
msgstr "Formalna Odjeća"
|
msgstr "Formalna Odjeća"
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:70
|
|
||||||
msgid "Frappe Cloud Login Successful"
|
|
||||||
msgstr "Prijava u Frappe Cloud Uspjela"
|
|
||||||
|
|
||||||
#: lms/lms/widgets/CourseCard.html:114
|
#: lms/lms/widgets/CourseCard.html:114
|
||||||
msgid "Free"
|
msgid "Free"
|
||||||
msgstr "Besplatno"
|
msgstr "Besplatno"
|
||||||
@@ -2212,7 +2190,7 @@ msgstr "Općenito"
|
|||||||
msgid "Generate Certificates"
|
msgid "Generate Certificates"
|
||||||
msgstr "Generiši Certifikate"
|
msgstr "Generiši Certifikate"
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.js:18
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.js:15
|
||||||
msgid "Generate Google Meet Link"
|
msgid "Generate Google Meet Link"
|
||||||
msgstr "Generiraj Google Meet Vezu"
|
msgstr "Generiraj Google Meet Vezu"
|
||||||
|
|
||||||
@@ -2382,10 +2360,6 @@ msgstr "Ako imate bilo kakvih pitanja ili vam je potrebna pomoć, slobodno se ob
|
|||||||
msgid "If you have any questions or require assistance, feel free to contact us."
|
msgid "If you have any questions or require assistance, feel free to contact us."
|
||||||
msgstr "Ako imate bilo kakvih pitanja ili vam je potrebna pomoć, slobodno nas kontaktirajte."
|
msgstr "Ako imate bilo kakvih pitanja ili vam je potrebna pomoć, slobodno nas kontaktirajte."
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:71
|
|
||||||
msgid "If you haven't been redirected,"
|
|
||||||
msgstr "Ako niste bili preusmjereni,"
|
|
||||||
|
|
||||||
#. Description of the 'Amount (USD)' (Currency) field in DocType 'LMS Batch'
|
#. Description of the 'Amount (USD)' (Currency) field in DocType 'LMS Batch'
|
||||||
#. Description of the 'Amount (USD)' (Currency) field in DocType 'LMS Course'
|
#. Description of the 'Amount (USD)' (Currency) field in DocType 'LMS Course'
|
||||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||||
@@ -2969,8 +2943,8 @@ msgstr "Naziv Lekcije"
|
|||||||
|
|
||||||
#. Label of the lessons (Table) field in DocType 'Course Chapter'
|
#. Label of the lessons (Table) field in DocType 'Course Chapter'
|
||||||
#. Group in Course Chapter's connections
|
#. Group in Course Chapter's connections
|
||||||
#. Label of the lessons (Data) field in DocType 'LMS Course'
|
#. Label of the lessons (Int) field in DocType 'LMS Course'
|
||||||
#: frontend/src/components/CourseCard.vue:32
|
#: frontend/src/components/CourseCard.vue:33
|
||||||
#: frontend/src/components/CourseCardOverlay.vue:99
|
#: frontend/src/components/CourseCardOverlay.vue:99
|
||||||
#: lms/lms/doctype/course_chapter/course_chapter.json
|
#: lms/lms/doctype/course_chapter/course_chapter.json
|
||||||
#: lms/lms/doctype/lms_course/lms_course.json
|
#: lms/lms/doctype/lms_course/lms_course.json
|
||||||
@@ -3021,7 +2995,7 @@ msgid "List of quizzes"
|
|||||||
msgstr "Lista Kvizova"
|
msgstr "Lista Kvizova"
|
||||||
|
|
||||||
#. Option for the 'Status' (Select) field in DocType 'Cohort'
|
#. Option for the 'Status' (Select) field in DocType 'Cohort'
|
||||||
#: lms/lms/doctype/cohort/cohort.json
|
#: frontend/src/pages/Courses.vue:295 lms/lms/doctype/cohort/cohort.json
|
||||||
msgid "Live"
|
msgid "Live"
|
||||||
msgstr "Uživo"
|
msgstr "Uživo"
|
||||||
|
|
||||||
@@ -3039,6 +3013,7 @@ msgstr "URL LiveCode"
|
|||||||
#: frontend/src/components/Members.vue:108
|
#: frontend/src/components/Members.vue:108
|
||||||
#: frontend/src/pages/Assignments.vue:71 frontend/src/pages/Batches.vue:94
|
#: frontend/src/pages/Assignments.vue:71 frontend/src/pages/Batches.vue:94
|
||||||
#: frontend/src/pages/CertifiedParticipants.vue:79
|
#: frontend/src/pages/CertifiedParticipants.vue:79
|
||||||
|
#: frontend/src/pages/Courses.vue:94
|
||||||
#: frontend/src/pages/QuizSubmissionList.vue:39
|
#: frontend/src/pages/QuizSubmissionList.vue:39
|
||||||
#: frontend/src/pages/Quizzes.vue:51
|
#: frontend/src/pages/Quizzes.vue:51
|
||||||
msgid "Load More"
|
msgid "Load More"
|
||||||
@@ -3071,16 +3046,7 @@ msgstr "Preferenca Lokacije"
|
|||||||
msgid "Login"
|
msgid "Login"
|
||||||
msgstr "Prijava"
|
msgstr "Prijava"
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:79
|
#: frontend/src/components/UserDropdown.vue:168
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:83
|
|
||||||
msgid "Login failed"
|
|
||||||
msgstr "Prijava nije uspjela"
|
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:6
|
|
||||||
msgid "Login to Frappe Cloud"
|
|
||||||
msgstr "Prijavi se na Frappe Cloud"
|
|
||||||
|
|
||||||
#: frontend/src/components/UserDropdown.vue:208
|
|
||||||
msgid "Login to Frappe Cloud?"
|
msgid "Login to Frappe Cloud?"
|
||||||
msgstr "Prijavi se na Frappe Cloud?"
|
msgstr "Prijavi se na Frappe Cloud?"
|
||||||
|
|
||||||
@@ -3396,11 +3362,11 @@ msgstr "Moderator"
|
|||||||
msgid "Modified By"
|
msgid "Modified By"
|
||||||
msgstr "Izmijenio"
|
msgstr "Izmijenio"
|
||||||
|
|
||||||
#: lms/lms/api.py:208
|
#: lms/lms/api.py:214
|
||||||
msgid "Module Name is incorrect or does not exist."
|
msgid "Module Name is incorrect or does not exist."
|
||||||
msgstr "Naziv modula je netačan ili ne postoji."
|
msgstr "Naziv modula je netačan ili ne postoji."
|
||||||
|
|
||||||
#: lms/lms/api.py:204
|
#: lms/lms/api.py:210
|
||||||
msgid "Module is incorrect."
|
msgid "Module is incorrect."
|
||||||
msgstr "Modul je netačan."
|
msgstr "Modul je netačan."
|
||||||
|
|
||||||
@@ -3430,7 +3396,8 @@ msgstr "Moj Kalendar"
|
|||||||
|
|
||||||
#. Option for the 'Event' (Select) field in DocType 'LMS Badge'
|
#. Option for the 'Event' (Select) field in DocType 'LMS Badge'
|
||||||
#: frontend/src/pages/Assignments.vue:18 frontend/src/pages/Batches.vue:17
|
#: frontend/src/pages/Assignments.vue:18 frontend/src/pages/Batches.vue:17
|
||||||
#: frontend/src/pages/Courses.vue:48 frontend/src/pages/Programs.vue:14
|
#: frontend/src/pages/Courses.vue:17 frontend/src/pages/Courses.vue:281
|
||||||
|
#: frontend/src/pages/Courses.vue:298 frontend/src/pages/Programs.vue:14
|
||||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||||
msgid "New"
|
msgid "New"
|
||||||
msgstr "Novi"
|
msgstr "Novi"
|
||||||
@@ -3484,11 +3451,11 @@ msgstr "Novi Kviz"
|
|||||||
msgid "New Sign Up"
|
msgid "New Sign Up"
|
||||||
msgstr "Nova Registracija"
|
msgstr "Nova Registracija"
|
||||||
|
|
||||||
#: lms/lms/utils.py:604
|
#: lms/lms/utils.py:605
|
||||||
msgid "New comment in batch {0}"
|
msgid "New comment in batch {0}"
|
||||||
msgstr "Novi komentar u grupi {0}"
|
msgstr "Novi komentar u grupi {0}"
|
||||||
|
|
||||||
#: lms/lms/utils.py:597
|
#: lms/lms/utils.py:598
|
||||||
msgid "New reply on the topic {0} in course {1}"
|
msgid "New reply on the topic {0} in course {1}"
|
||||||
msgstr "Novi odgovor na temu {0} na kursu {1}"
|
msgstr "Novi odgovor na temu {0} na kursu {1}"
|
||||||
|
|
||||||
@@ -3546,7 +3513,7 @@ msgstr "Bez Certifikata"
|
|||||||
msgid "No courses created"
|
msgid "No courses created"
|
||||||
msgstr "Nema kreiranih kurseva"
|
msgstr "Nema kreiranih kurseva"
|
||||||
|
|
||||||
#: frontend/src/pages/Courses.vue:151
|
#: frontend/src/pages/Courses.vue:79
|
||||||
msgid "No courses found"
|
msgid "No courses found"
|
||||||
msgstr "Nije pronađen nijedan kurs"
|
msgstr "Nije pronađen nijedan kurs"
|
||||||
|
|
||||||
@@ -3598,15 +3565,11 @@ msgstr "Nema prijava"
|
|||||||
msgid "No {0}"
|
msgid "No {0}"
|
||||||
msgstr "Bez {0}"
|
msgstr "Bez {0}"
|
||||||
|
|
||||||
#: frontend/src/pages/Courses.vue:111
|
|
||||||
msgid "No {0} courses"
|
|
||||||
msgstr "Nema {0} kurseva"
|
|
||||||
|
|
||||||
#: lms/templates/quiz/quiz.html:147
|
#: lms/templates/quiz/quiz.html:147
|
||||||
msgid "No."
|
msgid "No."
|
||||||
msgstr "Br."
|
msgstr "Br."
|
||||||
|
|
||||||
#: lms/overrides/user.py:194
|
#: lms/lms/user.py:29
|
||||||
msgid "Not Allowed"
|
msgid "Not Allowed"
|
||||||
msgstr "Nije dozvoljeno"
|
msgstr "Nije dozvoljeno"
|
||||||
|
|
||||||
@@ -3695,7 +3658,7 @@ msgstr "Programu se mogu dodati samo kursevi za koje je samostalno učenje onemo
|
|||||||
msgid "Only files of type {0} will be accepted."
|
msgid "Only files of type {0} will be accepted."
|
||||||
msgstr "Samo datoteke tipa {0} će biti prihvaćeni."
|
msgstr "Samo datoteke tipa {0} će biti prihvaćeni."
|
||||||
|
|
||||||
#: frontend/src/pages/CourseForm.vue:506 frontend/src/utils/index.js:533
|
#: frontend/src/pages/CourseForm.vue:506 frontend/src/utils/index.js:552
|
||||||
msgid "Only image file is allowed."
|
msgid "Only image file is allowed."
|
||||||
msgstr "Dozvoljena je samo datoteka slike."
|
msgstr "Dozvoljena je samo datoteka slike."
|
||||||
|
|
||||||
@@ -3726,10 +3689,6 @@ msgstr "Otvoreni Kurs"
|
|||||||
msgid "Open Ended"
|
msgid "Open Ended"
|
||||||
msgstr "Otvoreni Završen"
|
msgstr "Otvoreni Završen"
|
||||||
|
|
||||||
#: lms/lms/widgets/MemberCard.html:16
|
|
||||||
msgid "Open Network"
|
|
||||||
msgstr "Otvorena Mreža"
|
|
||||||
|
|
||||||
#. Label of the option (Data) field in DocType 'LMS Option'
|
#. Label of the option (Data) field in DocType 'LMS Option'
|
||||||
#: frontend/src/components/Modals/Question.vue:64
|
#: frontend/src/components/Modals/Question.vue:64
|
||||||
#: lms/lms/doctype/lms_option/lms_option.json
|
#: lms/lms/doctype/lms_option/lms_option.json
|
||||||
@@ -3981,11 +3940,11 @@ msgstr "Prijavi se"
|
|||||||
msgid "Please add <a href='{0}'>{1}</a> for <a href='{2}'>{3}</a> to send calendar invites for evaluations."
|
msgid "Please add <a href='{0}'>{1}</a> for <a href='{2}'>{3}</a> to send calendar invites for evaluations."
|
||||||
msgstr "Dodaj <a href='{0}'>{1}</a> za <a href='{2}'>{3}</a> za slanje kalendarskih pozivnica za ocjenjivanje."
|
msgstr "Dodaj <a href='{0}'>{1}</a> za <a href='{2}'>{3}</a> za slanje kalendarskih pozivnica za ocjenjivanje."
|
||||||
|
|
||||||
#: lms/overrides/user.py:240
|
#: lms/lms/user.py:75
|
||||||
msgid "Please ask your administrator to verify your sign-up"
|
msgid "Please ask your administrator to verify your sign-up"
|
||||||
msgstr "Zamoli administratora da potvrdi vašu registraciju"
|
msgstr "Zamoli administratora da potvrdi vašu registraciju"
|
||||||
|
|
||||||
#: lms/overrides/user.py:238
|
#: lms/lms/user.py:73
|
||||||
msgid "Please check your email for verification"
|
msgid "Please check your email for verification"
|
||||||
msgstr "Provjeri e-poštu za potvrdu"
|
msgstr "Provjeri e-poštu za potvrdu"
|
||||||
|
|
||||||
@@ -3993,7 +3952,7 @@ msgstr "Provjeri e-poštu za potvrdu"
|
|||||||
msgid "Please click on the following button to set your new password"
|
msgid "Please click on the following button to set your new password"
|
||||||
msgstr "Klikni na sljedeće dugme da postavite novu lozinku"
|
msgstr "Klikni na sljedeće dugme da postavite novu lozinku"
|
||||||
|
|
||||||
#: lms/lms/utils.py:1901 lms/lms/utils.py:1905
|
#: lms/lms/utils.py:2030 lms/lms/utils.py:2034
|
||||||
msgid "Please complete the previous courses in the program to enroll in this course."
|
msgid "Please complete the previous courses in the program to enroll in this course."
|
||||||
msgstr "Završite prethodne kurseve u programu da biste se upisali na ovaj kurs."
|
msgstr "Završite prethodne kurseve u programu da biste se upisali na ovaj kurs."
|
||||||
|
|
||||||
@@ -4009,7 +3968,7 @@ msgstr "Prijavi se za ovaj kurs da prikažete ovu lekciju"
|
|||||||
msgid "Please ensure that you complete all the questions in {0} minutes."
|
msgid "Please ensure that you complete all the questions in {0} minutes."
|
||||||
msgstr "Popuni sva pitanja za {0} minuta."
|
msgstr "Popuni sva pitanja za {0} minuta."
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:164
|
#: frontend/src/components/Modals/LiveClassModal.vue:170
|
||||||
msgid "Please enter a title."
|
msgid "Please enter a title."
|
||||||
msgstr "Unesi Naziv"
|
msgstr "Unesi Naziv"
|
||||||
|
|
||||||
@@ -4018,7 +3977,7 @@ msgstr "Unesi Naziv"
|
|||||||
msgid "Please enter a valid URL."
|
msgid "Please enter a valid URL."
|
||||||
msgstr "Unesi važeći URL."
|
msgstr "Unesi važeći URL."
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:176
|
#: frontend/src/components/Modals/LiveClassModal.vue:182
|
||||||
msgid "Please enter a valid time in the format HH:mm."
|
msgid "Please enter a valid time in the format HH:mm."
|
||||||
msgstr "Unesi važeće vrijeme u formatu HH:mm."
|
msgstr "Unesi važeće vrijeme u formatu HH:mm."
|
||||||
|
|
||||||
@@ -4054,7 +4013,7 @@ msgstr "Prijavi se da pristupiš kvizu."
|
|||||||
msgid "Please login to access this page."
|
msgid "Please login to access this page."
|
||||||
msgstr "Prijavi se da pristupiš ovoj stranici."
|
msgstr "Prijavi se da pristupiš ovoj stranici."
|
||||||
|
|
||||||
#: lms/lms/api.py:200
|
#: lms/lms/api.py:206
|
||||||
msgid "Please login to continue with payment."
|
msgid "Please login to continue with payment."
|
||||||
msgstr "Prijavi se da nastaviš s plaćanjem."
|
msgstr "Prijavi se da nastaviš s plaćanjem."
|
||||||
|
|
||||||
@@ -4067,23 +4026,23 @@ msgstr "Dobro se pripremi i dođi na vrijeme za ocjenjivanje."
|
|||||||
msgid "Please schedule an evaluation to get certified."
|
msgid "Please schedule an evaluation to get certified."
|
||||||
msgstr "Zakaži ocjenjvanje kako biste dobili certifikat."
|
msgstr "Zakaži ocjenjvanje kako biste dobili certifikat."
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:167
|
#: frontend/src/components/Modals/LiveClassModal.vue:173
|
||||||
msgid "Please select a date."
|
msgid "Please select a date."
|
||||||
msgstr "Odaberi Datum."
|
msgstr "Odaberi Datum."
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:191
|
#: frontend/src/components/Modals/LiveClassModal.vue:197
|
||||||
msgid "Please select a duration."
|
msgid "Please select a duration."
|
||||||
msgstr "Odaberi trajanje."
|
msgstr "Odaberi trajanje."
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:188
|
#: frontend/src/components/Modals/LiveClassModal.vue:194
|
||||||
msgid "Please select a future date and time."
|
msgid "Please select a future date and time."
|
||||||
msgstr "Odaberi budući datum i vrijeme."
|
msgstr "Odaberi budući datum i vrijeme."
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:170
|
#: frontend/src/components/Modals/LiveClassModal.vue:176
|
||||||
msgid "Please select a time."
|
msgid "Please select a time."
|
||||||
msgstr "Odaberi vrijeme."
|
msgstr "Odaberi vrijeme."
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:173
|
#: frontend/src/components/Modals/LiveClassModal.vue:179
|
||||||
msgid "Please select a timezone."
|
msgid "Please select a timezone."
|
||||||
msgstr "Odaberi vremensku zonu."
|
msgstr "Odaberi vremensku zonu."
|
||||||
|
|
||||||
@@ -4091,13 +4050,6 @@ msgstr "Odaberi vremensku zonu."
|
|||||||
msgid "Please take appropriate action at {0}"
|
msgid "Please take appropriate action at {0}"
|
||||||
msgstr "Poduzmi odgovarajuće mjere na {0}"
|
msgstr "Poduzmi odgovarajuće mjere na {0}"
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:79
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:83
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:91
|
|
||||||
#: frontend/src/components/UserDropdown.vue:244
|
|
||||||
msgid "Please try again"
|
|
||||||
msgstr "Pokušaj ponovo"
|
|
||||||
|
|
||||||
#: frontend/src/components/Modals/ChapterModal.vue:177
|
#: frontend/src/components/Modals/ChapterModal.vue:177
|
||||||
msgid "Please upload a SCORM package"
|
msgid "Please upload a SCORM package"
|
||||||
msgstr "Učitaj SCORM Paket"
|
msgstr "Učitaj SCORM Paket"
|
||||||
@@ -4210,7 +4162,7 @@ msgstr "Primarne Zemlje"
|
|||||||
msgid "Primary Subgroup"
|
msgid "Primary Subgroup"
|
||||||
msgstr "Primarna Podgrupa"
|
msgstr "Primarna Podgrupa"
|
||||||
|
|
||||||
#: lms/lms/utils.py:436
|
#: lms/lms/utils.py:437
|
||||||
msgid "Privacy Policy"
|
msgid "Privacy Policy"
|
||||||
msgstr "Pravila Privatnosti"
|
msgstr "Pravila Privatnosti"
|
||||||
|
|
||||||
@@ -4478,7 +4430,7 @@ msgstr "Registrirajte se Sada"
|
|||||||
msgid "Registered"
|
msgid "Registered"
|
||||||
msgstr "Registriran(a)"
|
msgstr "Registriran(a)"
|
||||||
|
|
||||||
#: lms/overrides/user.py:201
|
#: lms/lms/user.py:36
|
||||||
msgid "Registered but disabled"
|
msgid "Registered but disabled"
|
||||||
msgstr "Registrovan, ali onemogućen"
|
msgstr "Registrovan, ali onemogućen"
|
||||||
|
|
||||||
@@ -4519,10 +4471,6 @@ msgstr "Zahtjev za Mentorstvo"
|
|||||||
msgid "Required Role"
|
msgid "Required Role"
|
||||||
msgstr "Obavezna Uloga"
|
msgstr "Obavezna Uloga"
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:31
|
|
||||||
msgid "Resend"
|
|
||||||
msgstr "Ponovo pošalji"
|
|
||||||
|
|
||||||
#. Option for the 'Membership' (Select) field in DocType 'LMS Batch Old'
|
#. Option for the 'Membership' (Select) field in DocType 'LMS Batch Old'
|
||||||
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
|
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
|
||||||
msgid "Restricted"
|
msgid "Restricted"
|
||||||
@@ -4677,7 +4625,7 @@ msgstr "Traži"
|
|||||||
msgid "Search by Name"
|
msgid "Search by Name"
|
||||||
msgstr "Traži po Imenu"
|
msgstr "Traži po Imenu"
|
||||||
|
|
||||||
#: frontend/src/pages/Batches.vue:45
|
#: frontend/src/pages/Batches.vue:45 frontend/src/pages/Courses.vue:45
|
||||||
msgid "Search by Title"
|
msgid "Search by Title"
|
||||||
msgstr "Traži po Nazivu"
|
msgstr "Traži po Nazivu"
|
||||||
|
|
||||||
@@ -4819,7 +4767,7 @@ msgstr "Bočna traka"
|
|||||||
msgid "Sidebar Items"
|
msgid "Sidebar Items"
|
||||||
msgstr "Stavke bočne trake"
|
msgstr "Stavke bočne trake"
|
||||||
|
|
||||||
#: lms/overrides/user.py:194
|
#: lms/lms/user.py:29
|
||||||
msgid "Sign Up is disabled"
|
msgid "Sign Up is disabled"
|
||||||
msgstr "Prijava je onemogućena"
|
msgstr "Prijava je onemogućena"
|
||||||
|
|
||||||
@@ -4863,10 +4811,6 @@ msgstr "Naziv Vještine"
|
|||||||
msgid "Skills"
|
msgid "Skills"
|
||||||
msgstr "Vještine"
|
msgstr "Vještine"
|
||||||
|
|
||||||
#: lms/overrides/user.py:42
|
|
||||||
msgid "Skills must be unique"
|
|
||||||
msgstr "Vještine moraju biti jedinstvene"
|
|
||||||
|
|
||||||
#: lms/templates/onboarding_header.html:6
|
#: lms/templates/onboarding_header.html:6
|
||||||
msgid "Skip"
|
msgid "Skip"
|
||||||
msgstr "Preskoči"
|
msgstr "Preskoči"
|
||||||
@@ -5143,7 +5087,7 @@ msgstr "Sažetak"
|
|||||||
msgid "Sunday"
|
msgid "Sunday"
|
||||||
msgstr "Nedjelja"
|
msgstr "Nedjelja"
|
||||||
|
|
||||||
#: lms/lms/api.py:1012
|
#: lms/lms/api.py:1018
|
||||||
msgid "Suspicious pattern found in {0}: {1}"
|
msgid "Suspicious pattern found in {0}: {1}"
|
||||||
msgstr "Sumnjiva mustra pronađena u {0}: {1}"
|
msgstr "Sumnjiva mustra pronađena u {0}: {1}"
|
||||||
|
|
||||||
@@ -5224,11 +5168,11 @@ msgstr "Timski Rad"
|
|||||||
msgid "Template"
|
msgid "Template"
|
||||||
msgstr "Šablon"
|
msgstr "Šablon"
|
||||||
|
|
||||||
#: lms/overrides/user.py:205
|
#: lms/lms/user.py:40
|
||||||
msgid "Temporarily Disabled"
|
msgid "Temporarily Disabled"
|
||||||
msgstr "Privremeno Onemogućeno"
|
msgstr "Privremeno Onemogućeno"
|
||||||
|
|
||||||
#: lms/lms/utils.py:435
|
#: lms/lms/utils.py:436
|
||||||
msgid "Terms of Use"
|
msgid "Terms of Use"
|
||||||
msgstr "Uslovi Korišćenja"
|
msgstr "Uslovi Korišćenja"
|
||||||
|
|
||||||
@@ -5264,7 +5208,7 @@ msgstr "Hvala vam na povratnim informacijama!"
|
|||||||
msgid "Thanks and Regards"
|
msgid "Thanks and Regards"
|
||||||
msgstr "Hvala i Pozdrav"
|
msgstr "Hvala i Pozdrav"
|
||||||
|
|
||||||
#: lms/lms/utils.py:1801
|
#: lms/lms/utils.py:1930
|
||||||
msgid "The batch is full. Please contact the Administrator."
|
msgid "The batch is full. Please contact the Administrator."
|
||||||
msgstr "Grupa je popunjena. Kontaktiraj Administratora."
|
msgstr "Grupa je popunjena. Kontaktiraj Administratora."
|
||||||
|
|
||||||
@@ -5300,9 +5244,9 @@ msgstr "Nema grupe koje odgovaraju kriterijumima. Pazite, nova iskustva učenja
|
|||||||
msgid "There are no chapters in this course. Create and manage chapters from here."
|
msgid "There are no chapters in this course. Create and manage chapters from here."
|
||||||
msgstr "U ovom kursu nema poglavlja. Kreiraj i upravljaj poglavljima odavde."
|
msgstr "U ovom kursu nema poglavlja. Kreiraj i upravljaj poglavljima odavde."
|
||||||
|
|
||||||
#: frontend/src/pages/Courses.vue:155
|
#: frontend/src/pages/Courses.vue:83
|
||||||
msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
|
msgid "There are no courses matching the criteria. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||||
msgstr "Trenutno nema dostupnih kurseva. Pazite, nova iskustva učenja su uskoro na putu!"
|
msgstr "Nema kurseva koji odgovaraju kriterijumima. Pazite, nova iskustva učenja su uskoro na putu!"
|
||||||
|
|
||||||
#: frontend/src/pages/CertifiedParticipants.vue:92
|
#: frontend/src/pages/CertifiedParticipants.vue:92
|
||||||
msgid "There are no participants matching this criteria."
|
msgid "There are no participants matching this criteria."
|
||||||
@@ -5359,7 +5303,7 @@ msgstr "Ovaj čas je završen"
|
|||||||
msgid "This course has:"
|
msgid "This course has:"
|
||||||
msgstr "Ovaj kurs ima:"
|
msgstr "Ovaj kurs ima:"
|
||||||
|
|
||||||
#: lms/lms/utils.py:1644
|
#: lms/lms/utils.py:1773
|
||||||
msgid "This course is free."
|
msgid "This course is free."
|
||||||
msgstr "Ovaj kurs je besplatan."
|
msgstr "Ovaj kurs je besplatan."
|
||||||
|
|
||||||
@@ -5427,7 +5371,7 @@ msgstr "Vremenski Šablon"
|
|||||||
#. Label of the timezone (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 Certificate Request'
|
#. Label of the timezone (Data) field in DocType 'LMS Certificate Request'
|
||||||
#. Label of the timezone (Data) field in DocType 'LMS Live Class'
|
#. Label of the timezone (Data) field in DocType 'LMS Live Class'
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:46
|
#: frontend/src/components/Modals/LiveClassModal.vue:45
|
||||||
#: frontend/src/pages/BatchForm.vue:120
|
#: frontend/src/pages/BatchForm.vue:120
|
||||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||||
@@ -5501,7 +5445,7 @@ msgstr "Do"
|
|||||||
msgid "To Date"
|
msgid "To Date"
|
||||||
msgstr "Do Datuma"
|
msgstr "Do Datuma"
|
||||||
|
|
||||||
#: lms/lms/utils.py:1655
|
#: lms/lms/utils.py:1784
|
||||||
msgid "To join this batch, please contact the Administrator."
|
msgid "To join this batch, please contact the Administrator."
|
||||||
msgstr "Da biste se pridružili ovoj grupi, kontaktirajte administratora."
|
msgstr "Da biste se pridružili ovoj grupi, kontaktirajte administratora."
|
||||||
|
|
||||||
@@ -5509,7 +5453,7 @@ msgstr "Da biste se pridružili ovoj grupi, kontaktirajte administratora."
|
|||||||
msgid "To upload Image, Video, Audio or PDF from your system, click on the add icon and select upload from the menu. Then choose the file you want to add to the lesson and it gets added to your lesson."
|
msgid "To upload Image, Video, Audio or PDF from your system, click on the add icon and select upload from the menu. Then choose the file you want to add to the lesson and it gets added to your lesson."
|
||||||
msgstr "Da biste učitali sliku, video, audio ili PDF sa svog sistema, klikni na ikonu za dodavanje i izaberite učitaj iz menija. Zatim odaberite datoteku koju želite dodati lekciji i ona će se dodati vašoj lekciji."
|
msgstr "Da biste učitali sliku, video, audio ili PDF sa svog sistema, klikni na ikonu za dodavanje i izaberite učitaj iz menija. Zatim odaberite datoteku koju želite dodati lekciji i ona će se dodati vašoj lekciji."
|
||||||
|
|
||||||
#: lms/overrides/user.py:206
|
#: lms/lms/user.py:41
|
||||||
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
|
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
|
||||||
msgstr "Nedavno se prijavilo previše korisnika, pa je registracija onemogućena. Pokušajte ponovo za sat vremena"
|
msgstr "Nedavno se prijavilo previše korisnika, pa je registracija onemogućena. Pokušajte ponovo za sat vremena"
|
||||||
|
|
||||||
@@ -5626,7 +5570,8 @@ msgstr "Nestrukturirana Uloga"
|
|||||||
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request'
|
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request'
|
||||||
#. Label of the upcoming (Check) field in DocType 'LMS Course'
|
#. Label of the upcoming (Check) field in DocType 'LMS Course'
|
||||||
#: frontend/src/pages/Batches.vue:276 frontend/src/pages/Batches.vue:294
|
#: frontend/src/pages/Batches.vue:276 frontend/src/pages/Batches.vue:294
|
||||||
#: frontend/src/pages/CourseForm.vue:184 lms/lms/doctype/cohort/cohort.json
|
#: frontend/src/pages/CourseForm.vue:184 frontend/src/pages/Courses.vue:282
|
||||||
|
#: frontend/src/pages/Courses.vue:301 lms/lms/doctype/cohort/cohort.json
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||||
#: lms/lms/doctype/lms_course/lms_course.json
|
#: lms/lms/doctype/lms_course/lms_course.json
|
||||||
msgid "Upcoming"
|
msgid "Upcoming"
|
||||||
@@ -5727,14 +5672,6 @@ msgstr "Vrijednost"
|
|||||||
msgid "Value Change"
|
msgid "Value Change"
|
||||||
msgstr "Promjena Vrijednosti"
|
msgstr "Promjena Vrijednosti"
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:26
|
|
||||||
msgid "Verification Code"
|
|
||||||
msgstr "Verfikacijski Kod"
|
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:9
|
|
||||||
msgid "Verify"
|
|
||||||
msgstr "Provjeri"
|
|
||||||
|
|
||||||
#. Label of the video_link (Data) field in DocType 'LMS Course'
|
#. Label of the video_link (Data) field in DocType 'LMS Course'
|
||||||
#: lms/lms/doctype/lms_course/lms_course.json
|
#: lms/lms/doctype/lms_course/lms_course.json
|
||||||
msgid "Video Embed Link"
|
msgid "Video Embed Link"
|
||||||
@@ -5776,10 +5713,6 @@ msgstr "Sa zadovoljstvom vas obavještavamo da ste upisani u našu nadolazeću g
|
|||||||
msgid "We have a limited number of seats, and they won't be available for long!"
|
msgid "We have a limited number of seats, and they won't be available for long!"
|
||||||
msgstr "Imamo ograničen broj mjesta i neće još dugo biti slobodna!"
|
msgstr "Imamo ograničen broj mjesta i neće još dugo biti slobodna!"
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:21
|
|
||||||
msgid "We have sent the verificaton code to your email id "
|
|
||||||
msgstr "Poslali smo kod za provjeru na vašu e-poštu "
|
|
||||||
|
|
||||||
#: lms/templates/emails/payment_reminder.html:4
|
#: lms/templates/emails/payment_reminder.html:4
|
||||||
msgid "We noticed that you started enrolling in the"
|
msgid "We noticed that you started enrolling in the"
|
||||||
msgstr "Primijetili smo da ste se počeli s upisom"
|
msgstr "Primijetili smo da ste se počeli s upisom"
|
||||||
@@ -5855,7 +5788,7 @@ msgstr "Napiši Recenziju"
|
|||||||
msgid "Write your answer here"
|
msgid "Write your answer here"
|
||||||
msgstr "Napišite svoj odgovor ovdje"
|
msgstr "Napišite svoj odgovor ovdje"
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:95
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:96
|
||||||
msgid "You already have an evaluation on {0} at {1} for the course {2}."
|
msgid "You already have an evaluation on {0} at {1} for the course {2}."
|
||||||
msgstr "Već imate ocjenjivanje na {0} na {1} za kurs {2}."
|
msgstr "Već imate ocjenjivanje na {0} na {1} za kurs {2}."
|
||||||
|
|
||||||
@@ -5863,11 +5796,11 @@ msgstr "Već imate ocjenjivanje na {0} na {1} za kurs {2}."
|
|||||||
msgid "You are already certified for this course. Click on the card below to open your certificate."
|
msgid "You are already certified for this course. Click on the card below to open your certificate."
|
||||||
msgstr "Već ste certificirani za ovaj kurs. Klikni na karticu ispod da otvorite svoj certifikat."
|
msgstr "Već ste certificirani za ovaj kurs. Klikni na karticu ispod da otvorite svoj certifikat."
|
||||||
|
|
||||||
#: lms/lms/api.py:224
|
#: lms/lms/api.py:230
|
||||||
msgid "You are already enrolled for this batch."
|
msgid "You are already enrolled for this batch."
|
||||||
msgstr "Već ste upisani za ovu grupu."
|
msgstr "Već ste upisani za ovu grupu."
|
||||||
|
|
||||||
#: lms/lms/api.py:216
|
#: lms/lms/api.py:222
|
||||||
msgid "You are already enrolled for this course."
|
msgid "You are already enrolled for this course."
|
||||||
msgstr "Već ste upisani za ovaj kurs."
|
msgstr "Već ste upisani za ovaj kurs."
|
||||||
|
|
||||||
@@ -5887,10 +5820,6 @@ msgstr "Niste upisani"
|
|||||||
msgid "You are not enrolled in this course. Please enroll to access this lesson."
|
msgid "You are not enrolled in this course. Please enroll to access this lesson."
|
||||||
msgstr "Niste upisani na ovaj kurs. Prijavi se za pristup ovoj lekciji."
|
msgstr "Niste upisani na ovaj kurs. Prijavi se za pristup ovoj lekciji."
|
||||||
|
|
||||||
#: frontend/src/pages/Courses.vue:139
|
|
||||||
msgid "You can add chapters and lessons to it."
|
|
||||||
msgstr "Možete kursu dodati poglavlja i lekcije."
|
|
||||||
|
|
||||||
#: lms/templates/emails/lms_course_interest.html:13
|
#: lms/templates/emails/lms_course_interest.html:13
|
||||||
#: lms/templates/emails/lms_invite_request_approved.html:11
|
#: lms/templates/emails/lms_invite_request_approved.html:11
|
||||||
msgid "You can also copy-paste following link in your browser"
|
msgid "You can also copy-paste following link in your browser"
|
||||||
@@ -5908,11 +5837,11 @@ msgstr "Možete isprobati ovaj kviz {0}."
|
|||||||
msgid "You can find their resume attached to this email."
|
msgid "You can find their resume attached to this email."
|
||||||
msgstr "Njihov životopis možete pronaći u prilogu ove e-pošte."
|
msgstr "Njihov životopis možete pronaći u prilogu ove e-pošte."
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:115
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:116
|
||||||
msgid "You cannot schedule evaluations after {0}."
|
msgid "You cannot schedule evaluations after {0}."
|
||||||
msgstr "Ne možete zakazati ocjenjivanje nakon {0}."
|
msgstr "Ne možete zakazati ocjenjivanje nakon {0}."
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:104
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:105
|
||||||
msgid "You cannot schedule evaluations for past slots."
|
msgid "You cannot schedule evaluations for past slots."
|
||||||
msgstr "Ne možete zakazati ocjenjivanje za prošle termine."
|
msgstr "Ne možete zakazati ocjenjivanje za prošle termine."
|
||||||
|
|
||||||
@@ -5945,7 +5874,7 @@ msgstr "Već ste se prijavili za ovaj posao."
|
|||||||
msgid "You have already exceeded the maximum number of attempts allowed for this quiz."
|
msgid "You have already exceeded the maximum number of attempts allowed for this quiz."
|
||||||
msgstr "Već ste premašili maksimalan broj pokušaja dozvoljen za ovaj kviz."
|
msgstr "Već ste premašili maksimalan broj pokušaja dozvoljen za ovaj kviz."
|
||||||
|
|
||||||
#: lms/lms/api.py:237
|
#: lms/lms/api.py:243
|
||||||
msgid "You have already purchased the certificate for this course."
|
msgid "You have already purchased the certificate for this course."
|
||||||
msgstr "Već ste kupili sertifikat za ovaj kurs."
|
msgstr "Već ste kupili sertifikat za ovaj kurs."
|
||||||
|
|
||||||
@@ -5985,10 +5914,6 @@ msgstr "Odlučili ste da budete obaviješteni o ovom kursu. Primit ćete e-pošt
|
|||||||
msgid "You need to login first to enroll for this course"
|
msgid "You need to login first to enroll for this course"
|
||||||
msgstr "Prvo se prijavite da biste se upisali na ovaj kurs"
|
msgstr "Prvo se prijavite da biste se upisali na ovaj kurs"
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:71
|
|
||||||
msgid "You will be redirected to Frappe Cloud soon."
|
|
||||||
msgstr "Uskoro ćete biti preusmjereni na Frappe Cloud."
|
|
||||||
|
|
||||||
#: frontend/src/components/Quiz.vue:27 lms/templates/quiz/quiz.html:11
|
#: frontend/src/components/Quiz.vue:27 lms/templates/quiz/quiz.html:11
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "You will have to get {0}% correct answers in order to pass the quiz."
|
msgid "You will have to get {0}% correct answers in order to pass the quiz."
|
||||||
@@ -6026,7 +5951,7 @@ msgstr "Vaš kalendar je postavljen."
|
|||||||
msgid "Your evaluation for the course {0} has been scheduled on {1} at {2} {3}."
|
msgid "Your evaluation for the course {0} has been scheduled on {1} at {2} {3}."
|
||||||
msgstr "Vaša ocjena za kurs {0} je zakazana za {1} u {2} {3}."
|
msgstr "Vaša ocjena za kurs {0} je zakazana za {1} u {2} {3}."
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:125
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:126
|
||||||
msgid "Your evaluation slot has been booked"
|
msgid "Your evaluation slot has been booked"
|
||||||
msgstr "Vaš termin za ocjenjivanje je rezervisan"
|
msgstr "Vaš termin za ocjenjivanje je rezervisan"
|
||||||
|
|
||||||
@@ -6127,7 +6052,7 @@ msgstr "sedmice"
|
|||||||
msgid "you can"
|
msgid "you can"
|
||||||
msgstr "možeš"
|
msgstr "možeš"
|
||||||
|
|
||||||
#: lms/lms/api.py:802 lms/lms/api.py:810
|
#: lms/lms/api.py:808 lms/lms/api.py:816
|
||||||
msgid "{0} Settings not found"
|
msgid "{0} Settings not found"
|
||||||
msgstr "{0} Postavke nisu pronađene"
|
msgstr "{0} Postavke nisu pronađene"
|
||||||
|
|
||||||
@@ -6167,7 +6092,7 @@ msgstr "{0} je već certificiran za kurs {1}"
|
|||||||
msgid "{0} is your evaluator"
|
msgid "{0} is your evaluator"
|
||||||
msgstr "{0} je vaš ocjenjivač"
|
msgstr "{0} je vaš ocjenjivač"
|
||||||
|
|
||||||
#: lms/lms/utils.py:681
|
#: lms/lms/utils.py:682
|
||||||
msgid "{0} mentioned you in a comment"
|
msgid "{0} mentioned you in a comment"
|
||||||
msgstr "{0} vas je spomenuo u komentaru"
|
msgstr "{0} vas je spomenuo u komentaru"
|
||||||
|
|
||||||
@@ -6175,11 +6100,11 @@ msgstr "{0} vas je spomenuo u komentaru"
|
|||||||
msgid "{0} mentioned you in a comment in your batch."
|
msgid "{0} mentioned you in a comment in your batch."
|
||||||
msgstr "{0} vas je spomenuo u komentaru u vašoj grupi."
|
msgstr "{0} vas je spomenuo u komentaru u vašoj grupi."
|
||||||
|
|
||||||
#: lms/lms/utils.py:634 lms/lms/utils.py:640
|
#: lms/lms/utils.py:635 lms/lms/utils.py:641
|
||||||
msgid "{0} mentioned you in a comment in {1}"
|
msgid "{0} mentioned you in a comment in {1}"
|
||||||
msgstr "{0} vas je spomenuo u komentaru u {1}"
|
msgstr "{0} vas je spomenuo u komentaru u {1}"
|
||||||
|
|
||||||
#: lms/lms/utils.py:457
|
#: lms/lms/utils.py:458
|
||||||
msgid "{0}k"
|
msgid "{0}k"
|
||||||
msgstr "{0}k"
|
msgstr "{0}k"
|
||||||
|
|
||||||
|
|||||||
245
lms/locale/de.po
245
lms/locale/de.po
@@ -2,8 +2,8 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: frappe\n"
|
"Project-Id-Version: frappe\n"
|
||||||
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
|
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
|
||||||
"POT-Creation-Date: 2025-02-28 16:04+0000\n"
|
"POT-Creation-Date: 2025-03-07 16:04+0000\n"
|
||||||
"PO-Revision-Date: 2025-03-03 21:29\n"
|
"PO-Revision-Date: 2025-03-10 22:46\n"
|
||||||
"Last-Translator: jannat@frappe.io\n"
|
"Last-Translator: jannat@frappe.io\n"
|
||||||
"Language-Team: German\n"
|
"Language-Team: German\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -228,7 +228,7 @@ msgstr ""
|
|||||||
msgid "All Certified Participants"
|
msgid "All Certified Participants"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/widgets/BreadCrumb.html:3
|
#: frontend/src/pages/Courses.vue:26 lms/lms/widgets/BreadCrumb.html:3
|
||||||
msgid "All Courses"
|
msgid "All Courses"
|
||||||
msgstr "Alle Kurse"
|
msgstr "Alle Kurse"
|
||||||
|
|
||||||
@@ -268,7 +268,7 @@ msgstr "Zugriff auf zukünftige Daten zulassen"
|
|||||||
msgid "Allow self enrollment"
|
msgid "Allow self enrollment"
|
||||||
msgstr "Selbstregistrierung zulassen"
|
msgstr "Selbstregistrierung zulassen"
|
||||||
|
|
||||||
#: lms/overrides/user.py:199
|
#: lms/lms/user.py:34
|
||||||
msgid "Already Registered"
|
msgid "Already Registered"
|
||||||
msgstr "Bereits registriert"
|
msgstr "Bereits registriert"
|
||||||
|
|
||||||
@@ -378,7 +378,7 @@ msgstr "Archiviert"
|
|||||||
msgid "Are you sure you want to cancel this evaluation? This action cannot be undone."
|
msgid "Are you sure you want to cancel this evaluation? This action cannot be undone."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/UserDropdown.vue:209
|
#: frontend/src/components/UserDropdown.vue:169
|
||||||
msgid "Are you sure you want to login to your Frappe Cloud dashboard?"
|
msgid "Are you sure you want to login to your Frappe Cloud dashboard?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -492,12 +492,12 @@ msgid "Auto Assign"
|
|||||||
msgstr "Automatische Zuweisung"
|
msgstr "Automatische Zuweisung"
|
||||||
|
|
||||||
#. Label of the auto_recording (Select) field in DocType 'LMS Live Class'
|
#. Label of the auto_recording (Select) field in DocType 'LMS Live Class'
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:71
|
#: frontend/src/components/Modals/LiveClassModal.vue:77
|
||||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||||
msgid "Auto Recording"
|
msgid "Auto Recording"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/CourseCard.vue:50
|
#: frontend/src/components/CourseCard.vue:51
|
||||||
#: frontend/src/pages/CourseDetail.vue:20
|
#: frontend/src/pages/CourseDetail.vue:20
|
||||||
msgid "Average Rating"
|
msgid "Average Rating"
|
||||||
msgstr "Durchschnittliche Bewertung"
|
msgstr "Durchschnittliche Bewertung"
|
||||||
@@ -675,7 +675,7 @@ msgstr "Lebenslauf"
|
|||||||
#. Label of the body (Markdown Editor) field in DocType 'Course Lesson'
|
#. Label of the body (Markdown Editor) field in DocType 'Course Lesson'
|
||||||
#: lms/lms/doctype/course_lesson/course_lesson.json
|
#: lms/lms/doctype/course_lesson/course_lesson.json
|
||||||
msgid "Body"
|
msgid "Body"
|
||||||
msgstr ""
|
msgstr "Körper"
|
||||||
|
|
||||||
#. Option for the 'Collaboration Preference' (Select) field in DocType 'User'
|
#. Option for the 'Collaboration Preference' (Select) field in DocType 'User'
|
||||||
#: lms/fixtures/custom_field.json
|
#: lms/fixtures/custom_field.json
|
||||||
@@ -739,7 +739,7 @@ msgstr ""
|
|||||||
#. Label of the category (Link) field in DocType 'LMS Course'
|
#. Label of the category (Link) field in DocType 'LMS Course'
|
||||||
#: frontend/src/pages/BatchForm.vue:190 frontend/src/pages/Batches.vue:55
|
#: frontend/src/pages/BatchForm.vue:190 frontend/src/pages/Batches.vue:55
|
||||||
#: frontend/src/pages/CertifiedParticipants.vue:37
|
#: frontend/src/pages/CertifiedParticipants.vue:37
|
||||||
#: frontend/src/pages/CourseForm.vue:147 frontend/src/pages/Courses.vue:17
|
#: frontend/src/pages/CourseForm.vue:147 frontend/src/pages/Courses.vue:55
|
||||||
#: frontend/src/pages/JobDetail.vue:96 lms/lms/doctype/lms_batch/lms_batch.json
|
#: frontend/src/pages/JobDetail.vue:96 lms/lms/doctype/lms_batch/lms_batch.json
|
||||||
#: lms/lms/doctype/lms_category/lms_category.json
|
#: lms/lms/doctype/lms_category/lms_category.json
|
||||||
#: lms/lms/doctype/lms_course/lms_course.json
|
#: lms/lms/doctype/lms_course/lms_course.json
|
||||||
@@ -790,12 +790,12 @@ msgstr ""
|
|||||||
#. Enrollment'
|
#. Enrollment'
|
||||||
#. Label of a Card Break in the LMS Workspace
|
#. Label of a Card Break in the LMS Workspace
|
||||||
#. Label of a Link in the LMS Workspace
|
#. Label of a Link in the LMS Workspace
|
||||||
#: frontend/src/components/CourseCard.vue:110
|
#: frontend/src/components/CourseCard.vue:111
|
||||||
#: frontend/src/components/Modals/Event.vue:371
|
#: frontend/src/components/Modals/Event.vue:371
|
||||||
#: frontend/src/pages/BatchForm.vue:37 frontend/src/pages/Batches.vue:38
|
#: frontend/src/pages/BatchForm.vue:37 frontend/src/pages/Batches.vue:38
|
||||||
#: frontend/src/pages/CourseCertification.vue:10
|
#: frontend/src/pages/CourseCertification.vue:10
|
||||||
#: frontend/src/pages/CourseCertification.vue:114
|
#: frontend/src/pages/CourseCertification.vue:114
|
||||||
#: lms/fixtures/custom_field.json
|
#: frontend/src/pages/Courses.vue:38 lms/fixtures/custom_field.json
|
||||||
#: lms/lms/doctype/certification/certification.json
|
#: lms/lms/doctype/certification/certification.json
|
||||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
||||||
@@ -912,10 +912,6 @@ msgstr "Löschen"
|
|||||||
msgid "Clearly Defined Role"
|
msgid "Clearly Defined Role"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:75
|
|
||||||
msgid "Click here to login"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: frontend/src/components/LessonHelp.vue:30
|
#: frontend/src/components/LessonHelp.vue:30
|
||||||
msgid "Click on the add icon in the editor and select Quiz from the menu. It opens up a dialog, where you can either select a quiz from the list or create a new quiz. When you select the Create New option it redirects you to the quiz creation page."
|
msgid "Click on the add icon in the editor and select Quiz from the menu. It opens up a dialog, where you can either select a quiz from the list or create a new quiz. When you select the Create New option it redirects you to the quiz creation page."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1084,7 +1080,7 @@ msgstr ""
|
|||||||
msgid "Complete Your Enrollment"
|
msgid "Complete Your Enrollment"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_payment/lms_payment.py:40
|
#: lms/lms/doctype/lms_payment/lms_payment.py:55
|
||||||
msgid "Complete Your Enrollment - Don't miss out!"
|
msgid "Complete Your Enrollment - Don't miss out!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -1125,7 +1121,11 @@ msgstr ""
|
|||||||
msgid "Condition must be valid python code."
|
msgid "Condition must be valid python code."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/UserDropdown.vue:214
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.js:7
|
||||||
|
msgid "Conduct Evaluation"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: frontend/src/components/UserDropdown.vue:174
|
||||||
msgid "Confirm"
|
msgid "Confirm"
|
||||||
msgstr "Bestätigen"
|
msgstr "Bestätigen"
|
||||||
|
|
||||||
@@ -1166,7 +1166,7 @@ msgstr ""
|
|||||||
msgid "Contract"
|
msgid "Contract"
|
||||||
msgstr "Vertrag"
|
msgstr "Vertrag"
|
||||||
|
|
||||||
#: lms/lms/utils.py:437
|
#: lms/lms/utils.py:438
|
||||||
msgid "Cookie Policy"
|
msgid "Cookie Policy"
|
||||||
msgstr "Cookie-Richtlinie"
|
msgstr "Cookie-Richtlinie"
|
||||||
|
|
||||||
@@ -1382,7 +1382,7 @@ msgstr ""
|
|||||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:79
|
#: frontend/src/components/Modals/BatchStudentProgress.vue:79
|
||||||
#: frontend/src/pages/BatchDetail.vue:21 frontend/src/pages/BatchDetail.vue:70
|
#: frontend/src/pages/BatchDetail.vue:21 frontend/src/pages/BatchDetail.vue:70
|
||||||
#: frontend/src/pages/CourseCertification.vue:106
|
#: frontend/src/pages/CourseCertification.vue:106
|
||||||
#: frontend/src/pages/Courses.vue:8 frontend/src/pages/Statistics.vue:21
|
#: frontend/src/pages/Courses.vue:314 frontend/src/pages/Statistics.vue:21
|
||||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||||
msgid "Courses"
|
msgid "Courses"
|
||||||
@@ -1393,10 +1393,6 @@ msgstr "Kurse"
|
|||||||
msgid "Courses Completed"
|
msgid "Courses Completed"
|
||||||
msgstr "Abgeschlossene Kurse"
|
msgstr "Abgeschlossene Kurse"
|
||||||
|
|
||||||
#: lms/lms/web_template/courses_mentored/courses_mentored.html:4
|
|
||||||
msgid "Courses Mentored"
|
|
||||||
msgstr "Betreute Kurse"
|
|
||||||
|
|
||||||
#: frontend/src/components/BatchCourses.vue:151
|
#: frontend/src/components/BatchCourses.vue:151
|
||||||
msgid "Courses deleted successfully"
|
msgid "Courses deleted successfully"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1412,14 +1408,10 @@ msgid "Create"
|
|||||||
msgstr "Erstellen"
|
msgstr "Erstellen"
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.js:7
|
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.js:7
|
||||||
msgid "Create LMS Certificate"
|
msgid "Create Certificate"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.js:8
|
#: lms/templates/onboarding_header.html:19
|
||||||
msgid "Create LMS Certificate Evaluation"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: frontend/src/pages/Courses.vue:136 lms/templates/onboarding_header.html:19
|
|
||||||
msgid "Create a Course"
|
msgid "Create a Course"
|
||||||
msgstr "Einen Kurs erstellen"
|
msgstr "Einen Kurs erstellen"
|
||||||
|
|
||||||
@@ -1435,7 +1427,8 @@ msgstr ""
|
|||||||
msgid "Create a new question"
|
msgid "Create a new question"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/pages/Assignments.vue:163
|
#: frontend/src/pages/Assignments.vue:163 frontend/src/pages/Courses.vue:287
|
||||||
|
#: frontend/src/pages/Courses.vue:307
|
||||||
msgid "Created"
|
msgid "Created"
|
||||||
msgstr "Erstellt"
|
msgstr "Erstellt"
|
||||||
|
|
||||||
@@ -1488,7 +1481,7 @@ msgstr "Dashboard"
|
|||||||
#. Label of the date (Date) field in DocType 'Scheduled Flow'
|
#. Label of the date (Date) field in DocType 'Scheduled Flow'
|
||||||
#: frontend/src/components/Modals/EvaluationModal.vue:26
|
#: frontend/src/components/Modals/EvaluationModal.vue:26
|
||||||
#: frontend/src/components/Modals/Event.vue:40
|
#: frontend/src/components/Modals/Event.vue:40
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:55
|
#: frontend/src/components/Modals/LiveClassModal.vue:61
|
||||||
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
|
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
|
||||||
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
|
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||||
@@ -1587,7 +1580,7 @@ msgstr ""
|
|||||||
#. Label of the description (Small Text) field in DocType 'LMS Exercise'
|
#. 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 (Text) field in DocType 'LMS Live Class'
|
||||||
#. Label of the description (Small Text) field in DocType 'Work Experience'
|
#. Label of the description (Small Text) field in DocType 'Work Experience'
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:78
|
#: frontend/src/components/Modals/LiveClassModal.vue:84
|
||||||
#: frontend/src/pages/BatchForm.vue:224 frontend/src/pages/JobCreation.vue:50
|
#: frontend/src/pages/BatchForm.vue:224 frontend/src/pages/JobCreation.vue:50
|
||||||
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
||||||
#: lms/lms/doctype/certification/certification.json
|
#: lms/lms/doctype/certification/certification.json
|
||||||
@@ -1614,10 +1607,6 @@ msgstr ""
|
|||||||
msgid "Details"
|
msgid "Details"
|
||||||
msgstr "Details"
|
msgstr "Details"
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:30
|
|
||||||
msgid "Didn't receive the code?"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: frontend/src/pages/CourseForm.vue:194
|
#: frontend/src/pages/CourseForm.vue:194
|
||||||
msgid "Disable Self Enrollment"
|
msgid "Disable Self Enrollment"
|
||||||
msgstr "Selbstregistrierung deaktivieren"
|
msgstr "Selbstregistrierung deaktivieren"
|
||||||
@@ -1668,7 +1657,7 @@ msgstr "Doppelte Optionen für diese Frage gefunden."
|
|||||||
#. Label of the duration (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 (Data) field in DocType 'LMS Batch Timetable'
|
||||||
#. Label of the duration (Int) field in DocType 'LMS Live Class'
|
#. Label of the duration (Int) field in DocType 'LMS Live Class'
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:62
|
#: frontend/src/components/Modals/LiveClassModal.vue:68
|
||||||
#: lms/lms/doctype/cohort/cohort.json
|
#: lms/lms/doctype/cohort/cohort.json
|
||||||
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
|
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
|
||||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||||
@@ -1680,7 +1669,7 @@ msgstr "Dauer"
|
|||||||
msgid "Duration (in minutes)"
|
msgid "Duration (in minutes)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:58
|
#: frontend/src/components/Modals/LiveClassModal.vue:64
|
||||||
msgid "Duration of the live class in minutes"
|
msgid "Duration of the live class in minutes"
|
||||||
msgstr "Dauer des Live-Kurses in Minuten"
|
msgstr "Dauer des Live-Kurses in Minuten"
|
||||||
|
|
||||||
@@ -1826,11 +1815,12 @@ msgstr "Endzeit"
|
|||||||
msgid "Enroll Now"
|
msgid "Enroll Now"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/pages/Batches.vue:292
|
#: frontend/src/pages/Batches.vue:292 frontend/src/pages/Courses.vue:285
|
||||||
|
#: frontend/src/pages/Courses.vue:305
|
||||||
msgid "Enrolled"
|
msgid "Enrolled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/CourseCard.vue:41
|
#: frontend/src/components/CourseCard.vue:42
|
||||||
#: frontend/src/components/CourseCardOverlay.vue:106
|
#: frontend/src/components/CourseCardOverlay.vue:106
|
||||||
#: frontend/src/pages/CourseDetail.vue:33
|
#: frontend/src/pages/CourseDetail.vue:33
|
||||||
msgid "Enrolled Students"
|
msgid "Enrolled Students"
|
||||||
@@ -1849,11 +1839,11 @@ msgstr ""
|
|||||||
msgid "Enrollment Count"
|
msgid "Enrollment Count"
|
||||||
msgstr "Anzahl der Einschreibungen"
|
msgstr "Anzahl der Einschreibungen"
|
||||||
|
|
||||||
#: lms/lms/utils.py:1769
|
#: lms/lms/utils.py:1898
|
||||||
msgid "Enrollment Failed"
|
msgid "Enrollment Failed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. Label of the enrollments (Data) field in DocType 'LMS Course'
|
#. Label of the enrollments (Int) field in DocType 'LMS Course'
|
||||||
#. Label of a chart in the LMS Workspace
|
#. Label of a chart in the LMS Workspace
|
||||||
#. Label of a shortcut in the LMS Workspace
|
#. Label of a shortcut in the LMS Workspace
|
||||||
#: frontend/src/pages/Statistics.vue:51
|
#: frontend/src/pages/Statistics.vue:51
|
||||||
@@ -2057,14 +2047,6 @@ msgstr "Mehr entdecken"
|
|||||||
msgid "Fail"
|
msgid "Fail"
|
||||||
msgstr "Fehler"
|
msgstr "Fehler"
|
||||||
|
|
||||||
#: frontend/src/components/UserDropdown.vue:243
|
|
||||||
msgid "Failed to login to Frappe Cloud"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:91
|
|
||||||
msgid "Failed to resend code"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. Label of the featured (Check) field in DocType 'LMS Course'
|
#. Label of the featured (Check) field in DocType 'LMS Course'
|
||||||
#: frontend/src/components/CourseCard.vue:16
|
#: frontend/src/components/CourseCard.vue:16
|
||||||
#: frontend/src/pages/CourseForm.vue:189
|
#: frontend/src/pages/CourseForm.vue:189
|
||||||
@@ -2125,10 +2107,6 @@ msgstr ""
|
|||||||
msgid "Formal Wear"
|
msgid "Formal Wear"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:70
|
|
||||||
msgid "Frappe Cloud Login Successful"
|
|
||||||
msgstr "Frappe Cloud-Anmeldung erfolgreich"
|
|
||||||
|
|
||||||
#: lms/lms/widgets/CourseCard.html:114
|
#: lms/lms/widgets/CourseCard.html:114
|
||||||
msgid "Free"
|
msgid "Free"
|
||||||
msgstr "Frei"
|
msgstr "Frei"
|
||||||
@@ -2212,7 +2190,7 @@ msgstr "Allgemein"
|
|||||||
msgid "Generate Certificates"
|
msgid "Generate Certificates"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.js:18
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.js:15
|
||||||
msgid "Generate Google Meet Link"
|
msgid "Generate Google Meet Link"
|
||||||
msgstr "Google Meet-Link generieren"
|
msgstr "Google Meet-Link generieren"
|
||||||
|
|
||||||
@@ -2382,10 +2360,6 @@ msgstr ""
|
|||||||
msgid "If you have any questions or require assistance, feel free to contact us."
|
msgid "If you have any questions or require assistance, feel free to contact us."
|
||||||
msgstr "Wenn Sie Fragen haben oder Hilfe benötigen, können Sie uns gerne kontaktieren."
|
msgstr "Wenn Sie Fragen haben oder Hilfe benötigen, können Sie uns gerne kontaktieren."
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:71
|
|
||||||
msgid "If you haven't been redirected,"
|
|
||||||
msgstr "Wenn Sie nicht weitergeleitet wurden,"
|
|
||||||
|
|
||||||
#. Description of the 'Amount (USD)' (Currency) field in DocType 'LMS Batch'
|
#. Description of the 'Amount (USD)' (Currency) field in DocType 'LMS Batch'
|
||||||
#. Description of the 'Amount (USD)' (Currency) field in DocType 'LMS Course'
|
#. Description of the 'Amount (USD)' (Currency) field in DocType 'LMS Course'
|
||||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||||
@@ -2969,8 +2943,8 @@ msgstr "Titel der Unterrichtseinheit"
|
|||||||
|
|
||||||
#. Label of the lessons (Table) field in DocType 'Course Chapter'
|
#. Label of the lessons (Table) field in DocType 'Course Chapter'
|
||||||
#. Group in Course Chapter's connections
|
#. Group in Course Chapter's connections
|
||||||
#. Label of the lessons (Data) field in DocType 'LMS Course'
|
#. Label of the lessons (Int) field in DocType 'LMS Course'
|
||||||
#: frontend/src/components/CourseCard.vue:32
|
#: frontend/src/components/CourseCard.vue:33
|
||||||
#: frontend/src/components/CourseCardOverlay.vue:99
|
#: frontend/src/components/CourseCardOverlay.vue:99
|
||||||
#: lms/lms/doctype/course_chapter/course_chapter.json
|
#: lms/lms/doctype/course_chapter/course_chapter.json
|
||||||
#: lms/lms/doctype/lms_course/lms_course.json
|
#: lms/lms/doctype/lms_course/lms_course.json
|
||||||
@@ -3021,7 +2995,7 @@ msgid "List of quizzes"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. Option for the 'Status' (Select) field in DocType 'Cohort'
|
#. Option for the 'Status' (Select) field in DocType 'Cohort'
|
||||||
#: lms/lms/doctype/cohort/cohort.json
|
#: frontend/src/pages/Courses.vue:295 lms/lms/doctype/cohort/cohort.json
|
||||||
msgid "Live"
|
msgid "Live"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -3039,6 +3013,7 @@ msgstr ""
|
|||||||
#: frontend/src/components/Members.vue:108
|
#: frontend/src/components/Members.vue:108
|
||||||
#: frontend/src/pages/Assignments.vue:71 frontend/src/pages/Batches.vue:94
|
#: frontend/src/pages/Assignments.vue:71 frontend/src/pages/Batches.vue:94
|
||||||
#: frontend/src/pages/CertifiedParticipants.vue:79
|
#: frontend/src/pages/CertifiedParticipants.vue:79
|
||||||
|
#: frontend/src/pages/Courses.vue:94
|
||||||
#: frontend/src/pages/QuizSubmissionList.vue:39
|
#: frontend/src/pages/QuizSubmissionList.vue:39
|
||||||
#: frontend/src/pages/Quizzes.vue:51
|
#: frontend/src/pages/Quizzes.vue:51
|
||||||
msgid "Load More"
|
msgid "Load More"
|
||||||
@@ -3071,16 +3046,7 @@ msgstr ""
|
|||||||
msgid "Login"
|
msgid "Login"
|
||||||
msgstr "Anmelden"
|
msgstr "Anmelden"
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:79
|
#: frontend/src/components/UserDropdown.vue:168
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:83
|
|
||||||
msgid "Login failed"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:6
|
|
||||||
msgid "Login to Frappe Cloud"
|
|
||||||
msgstr "Melden Sie sich bei Frappe Cloud an"
|
|
||||||
|
|
||||||
#: frontend/src/components/UserDropdown.vue:208
|
|
||||||
msgid "Login to Frappe Cloud?"
|
msgid "Login to Frappe Cloud?"
|
||||||
msgstr "Melden Sie sich bei Frappe Cloud an?"
|
msgstr "Melden Sie sich bei Frappe Cloud an?"
|
||||||
|
|
||||||
@@ -3396,11 +3362,11 @@ msgstr ""
|
|||||||
msgid "Modified By"
|
msgid "Modified By"
|
||||||
msgstr "Geändert von"
|
msgstr "Geändert von"
|
||||||
|
|
||||||
#: lms/lms/api.py:208
|
#: lms/lms/api.py:214
|
||||||
msgid "Module Name is incorrect or does not exist."
|
msgid "Module Name is incorrect or does not exist."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/api.py:204
|
#: lms/lms/api.py:210
|
||||||
msgid "Module is incorrect."
|
msgid "Module is incorrect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -3430,7 +3396,8 @@ msgstr "Mein Kalender"
|
|||||||
|
|
||||||
#. Option for the 'Event' (Select) field in DocType 'LMS Badge'
|
#. Option for the 'Event' (Select) field in DocType 'LMS Badge'
|
||||||
#: frontend/src/pages/Assignments.vue:18 frontend/src/pages/Batches.vue:17
|
#: frontend/src/pages/Assignments.vue:18 frontend/src/pages/Batches.vue:17
|
||||||
#: frontend/src/pages/Courses.vue:48 frontend/src/pages/Programs.vue:14
|
#: frontend/src/pages/Courses.vue:17 frontend/src/pages/Courses.vue:281
|
||||||
|
#: frontend/src/pages/Courses.vue:298 frontend/src/pages/Programs.vue:14
|
||||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||||
msgid "New"
|
msgid "New"
|
||||||
msgstr "Neu"
|
msgstr "Neu"
|
||||||
@@ -3484,11 +3451,11 @@ msgstr ""
|
|||||||
msgid "New Sign Up"
|
msgid "New Sign Up"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/utils.py:604
|
#: lms/lms/utils.py:605
|
||||||
msgid "New comment in batch {0}"
|
msgid "New comment in batch {0}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/utils.py:597
|
#: lms/lms/utils.py:598
|
||||||
msgid "New reply on the topic {0} in course {1}"
|
msgid "New reply on the topic {0} in course {1}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -3546,7 +3513,7 @@ msgstr "Keine Zertifikate"
|
|||||||
msgid "No courses created"
|
msgid "No courses created"
|
||||||
msgstr "Keine Kurse erstellt"
|
msgstr "Keine Kurse erstellt"
|
||||||
|
|
||||||
#: frontend/src/pages/Courses.vue:151
|
#: frontend/src/pages/Courses.vue:79
|
||||||
msgid "No courses found"
|
msgid "No courses found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -3598,15 +3565,11 @@ msgstr ""
|
|||||||
msgid "No {0}"
|
msgid "No {0}"
|
||||||
msgstr "Keine {0}"
|
msgstr "Keine {0}"
|
||||||
|
|
||||||
#: frontend/src/pages/Courses.vue:111
|
|
||||||
msgid "No {0} courses"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lms/templates/quiz/quiz.html:147
|
#: lms/templates/quiz/quiz.html:147
|
||||||
msgid "No."
|
msgid "No."
|
||||||
msgstr "Nr."
|
msgstr "Nr."
|
||||||
|
|
||||||
#: lms/overrides/user.py:194
|
#: lms/lms/user.py:29
|
||||||
msgid "Not Allowed"
|
msgid "Not Allowed"
|
||||||
msgstr "Nicht Erlaubt"
|
msgstr "Nicht Erlaubt"
|
||||||
|
|
||||||
@@ -3695,7 +3658,7 @@ msgstr ""
|
|||||||
msgid "Only files of type {0} will be accepted."
|
msgid "Only files of type {0} will be accepted."
|
||||||
msgstr "Es werden nur Dateien vom Typ {0} akzeptiert."
|
msgstr "Es werden nur Dateien vom Typ {0} akzeptiert."
|
||||||
|
|
||||||
#: frontend/src/pages/CourseForm.vue:506 frontend/src/utils/index.js:533
|
#: frontend/src/pages/CourseForm.vue:506 frontend/src/utils/index.js:552
|
||||||
msgid "Only image file is allowed."
|
msgid "Only image file is allowed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -3726,10 +3689,6 @@ msgstr "Kurs öffnen"
|
|||||||
msgid "Open Ended"
|
msgid "Open Ended"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/widgets/MemberCard.html:16
|
|
||||||
msgid "Open Network"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. Label of the option (Data) field in DocType 'LMS Option'
|
#. Label of the option (Data) field in DocType 'LMS Option'
|
||||||
#: frontend/src/components/Modals/Question.vue:64
|
#: frontend/src/components/Modals/Question.vue:64
|
||||||
#: lms/lms/doctype/lms_option/lms_option.json
|
#: lms/lms/doctype/lms_option/lms_option.json
|
||||||
@@ -3981,11 +3940,11 @@ msgstr ""
|
|||||||
msgid "Please add <a href='{0}'>{1}</a> for <a href='{2}'>{3}</a> to send calendar invites for evaluations."
|
msgid "Please add <a href='{0}'>{1}</a> for <a href='{2}'>{3}</a> to send calendar invites for evaluations."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/overrides/user.py:240
|
#: lms/lms/user.py:75
|
||||||
msgid "Please ask your administrator to verify your sign-up"
|
msgid "Please ask your administrator to verify your sign-up"
|
||||||
msgstr "Bitte fragen Sie Ihren Administrator Ihre Anmeldung bis zum überprüfen"
|
msgstr "Bitte fragen Sie Ihren Administrator Ihre Anmeldung bis zum überprüfen"
|
||||||
|
|
||||||
#: lms/overrides/user.py:238
|
#: lms/lms/user.py:73
|
||||||
msgid "Please check your email for verification"
|
msgid "Please check your email for verification"
|
||||||
msgstr "Bitte überprüfen Sie Ihren Posteingang. Wir haben Ihnen eine E-Mail mit einer Bitte um Bestätigung geschickt."
|
msgstr "Bitte überprüfen Sie Ihren Posteingang. Wir haben Ihnen eine E-Mail mit einer Bitte um Bestätigung geschickt."
|
||||||
|
|
||||||
@@ -3993,7 +3952,7 @@ msgstr "Bitte überprüfen Sie Ihren Posteingang. Wir haben Ihnen eine E-Mail mi
|
|||||||
msgid "Please click on the following button to set your new password"
|
msgid "Please click on the following button to set your new password"
|
||||||
msgstr "Bitte klicken Sie auf die folgende Schaltfläche, um Ihr neues Passwort festzulegen"
|
msgstr "Bitte klicken Sie auf die folgende Schaltfläche, um Ihr neues Passwort festzulegen"
|
||||||
|
|
||||||
#: lms/lms/utils.py:1901 lms/lms/utils.py:1905
|
#: lms/lms/utils.py:2030 lms/lms/utils.py:2034
|
||||||
msgid "Please complete the previous courses in the program to enroll in this course."
|
msgid "Please complete the previous courses in the program to enroll in this course."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -4009,7 +3968,7 @@ msgstr ""
|
|||||||
msgid "Please ensure that you complete all the questions in {0} minutes."
|
msgid "Please ensure that you complete all the questions in {0} minutes."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:164
|
#: frontend/src/components/Modals/LiveClassModal.vue:170
|
||||||
msgid "Please enter a title."
|
msgid "Please enter a title."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -4018,7 +3977,7 @@ msgstr ""
|
|||||||
msgid "Please enter a valid URL."
|
msgid "Please enter a valid URL."
|
||||||
msgstr "Bitte geben Sie eine gültige URL ein."
|
msgstr "Bitte geben Sie eine gültige URL ein."
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:176
|
#: frontend/src/components/Modals/LiveClassModal.vue:182
|
||||||
msgid "Please enter a valid time in the format HH:mm."
|
msgid "Please enter a valid time in the format HH:mm."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -4054,7 +4013,7 @@ msgstr "Bitte melden Sie sich an, um auf das Quiz zuzugreifen."
|
|||||||
msgid "Please login to access this page."
|
msgid "Please login to access this page."
|
||||||
msgstr "Bitte melden Sie sich an, um auf diese Seite zuzugreifen."
|
msgstr "Bitte melden Sie sich an, um auf diese Seite zuzugreifen."
|
||||||
|
|
||||||
#: lms/lms/api.py:200
|
#: lms/lms/api.py:206
|
||||||
msgid "Please login to continue with payment."
|
msgid "Please login to continue with payment."
|
||||||
msgstr "Bitte loggen Sie sich ein, um mit der Zahlung fortzufahren."
|
msgstr "Bitte loggen Sie sich ein, um mit der Zahlung fortzufahren."
|
||||||
|
|
||||||
@@ -4067,23 +4026,23 @@ msgstr "Bitte bereiten Sie sich gut vor und erscheinen Sie pünktlich zu den Pr
|
|||||||
msgid "Please schedule an evaluation to get certified."
|
msgid "Please schedule an evaluation to get certified."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:167
|
#: frontend/src/components/Modals/LiveClassModal.vue:173
|
||||||
msgid "Please select a date."
|
msgid "Please select a date."
|
||||||
msgstr "Bitte wählen Sie ein Datum aus."
|
msgstr "Bitte wählen Sie ein Datum aus."
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:191
|
#: frontend/src/components/Modals/LiveClassModal.vue:197
|
||||||
msgid "Please select a duration."
|
msgid "Please select a duration."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:188
|
#: frontend/src/components/Modals/LiveClassModal.vue:194
|
||||||
msgid "Please select a future date and time."
|
msgid "Please select a future date and time."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:170
|
#: frontend/src/components/Modals/LiveClassModal.vue:176
|
||||||
msgid "Please select a time."
|
msgid "Please select a time."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:173
|
#: frontend/src/components/Modals/LiveClassModal.vue:179
|
||||||
msgid "Please select a timezone."
|
msgid "Please select a timezone."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -4091,13 +4050,6 @@ msgstr ""
|
|||||||
msgid "Please take appropriate action at {0}"
|
msgid "Please take appropriate action at {0}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:79
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:83
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:91
|
|
||||||
#: frontend/src/components/UserDropdown.vue:244
|
|
||||||
msgid "Please try again"
|
|
||||||
msgstr "Bitte versuche es erneut"
|
|
||||||
|
|
||||||
#: frontend/src/components/Modals/ChapterModal.vue:177
|
#: frontend/src/components/Modals/ChapterModal.vue:177
|
||||||
msgid "Please upload a SCORM package"
|
msgid "Please upload a SCORM package"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -4210,7 +4162,7 @@ msgstr ""
|
|||||||
msgid "Primary Subgroup"
|
msgid "Primary Subgroup"
|
||||||
msgstr "Primäre Untergruppe"
|
msgstr "Primäre Untergruppe"
|
||||||
|
|
||||||
#: lms/lms/utils.py:436
|
#: lms/lms/utils.py:437
|
||||||
msgid "Privacy Policy"
|
msgid "Privacy Policy"
|
||||||
msgstr "Datenschutzerklärung"
|
msgstr "Datenschutzerklärung"
|
||||||
|
|
||||||
@@ -4478,7 +4430,7 @@ msgstr ""
|
|||||||
msgid "Registered"
|
msgid "Registered"
|
||||||
msgstr "Registriert"
|
msgstr "Registriert"
|
||||||
|
|
||||||
#: lms/overrides/user.py:201
|
#: lms/lms/user.py:36
|
||||||
msgid "Registered but disabled"
|
msgid "Registered but disabled"
|
||||||
msgstr "Registrierte aber deaktiviert"
|
msgstr "Registrierte aber deaktiviert"
|
||||||
|
|
||||||
@@ -4519,10 +4471,6 @@ msgstr "Anfrage für Mentoring"
|
|||||||
msgid "Required Role"
|
msgid "Required Role"
|
||||||
msgstr "Erforderliche Rolle"
|
msgstr "Erforderliche Rolle"
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:31
|
|
||||||
msgid "Resend"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. Option for the 'Membership' (Select) field in DocType 'LMS Batch Old'
|
#. Option for the 'Membership' (Select) field in DocType 'LMS Batch Old'
|
||||||
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
|
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
|
||||||
msgid "Restricted"
|
msgid "Restricted"
|
||||||
@@ -4677,7 +4625,7 @@ msgstr "Suchen"
|
|||||||
msgid "Search by Name"
|
msgid "Search by Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/pages/Batches.vue:45
|
#: frontend/src/pages/Batches.vue:45 frontend/src/pages/Courses.vue:45
|
||||||
msgid "Search by Title"
|
msgid "Search by Title"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -4819,7 +4767,7 @@ msgstr "Seitenleiste"
|
|||||||
msgid "Sidebar Items"
|
msgid "Sidebar Items"
|
||||||
msgstr "Elemente der Seitenleiste"
|
msgstr "Elemente der Seitenleiste"
|
||||||
|
|
||||||
#: lms/overrides/user.py:194
|
#: lms/lms/user.py:29
|
||||||
msgid "Sign Up is disabled"
|
msgid "Sign Up is disabled"
|
||||||
msgstr "Die Registrierung ist deaktiviert"
|
msgstr "Die Registrierung ist deaktiviert"
|
||||||
|
|
||||||
@@ -4863,10 +4811,6 @@ msgstr "Name der Fertigkeit"
|
|||||||
msgid "Skills"
|
msgid "Skills"
|
||||||
msgstr "Fertigkeiten"
|
msgstr "Fertigkeiten"
|
||||||
|
|
||||||
#: lms/overrides/user.py:42
|
|
||||||
msgid "Skills must be unique"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lms/templates/onboarding_header.html:6
|
#: lms/templates/onboarding_header.html:6
|
||||||
msgid "Skip"
|
msgid "Skip"
|
||||||
msgstr "Überspringen"
|
msgstr "Überspringen"
|
||||||
@@ -5143,7 +5087,7 @@ msgstr "Zusammenfassung"
|
|||||||
msgid "Sunday"
|
msgid "Sunday"
|
||||||
msgstr "Sonntag"
|
msgstr "Sonntag"
|
||||||
|
|
||||||
#: lms/lms/api.py:1012
|
#: lms/lms/api.py:1018
|
||||||
msgid "Suspicious pattern found in {0}: {1}"
|
msgid "Suspicious pattern found in {0}: {1}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -5224,11 +5168,11 @@ msgstr ""
|
|||||||
msgid "Template"
|
msgid "Template"
|
||||||
msgstr "Vorlage"
|
msgstr "Vorlage"
|
||||||
|
|
||||||
#: lms/overrides/user.py:205
|
#: lms/lms/user.py:40
|
||||||
msgid "Temporarily Disabled"
|
msgid "Temporarily Disabled"
|
||||||
msgstr "Zeitweise nicht verfügbar"
|
msgstr "Zeitweise nicht verfügbar"
|
||||||
|
|
||||||
#: lms/lms/utils.py:435
|
#: lms/lms/utils.py:436
|
||||||
msgid "Terms of Use"
|
msgid "Terms of Use"
|
||||||
msgstr "Nutzungsbedingungen"
|
msgstr "Nutzungsbedingungen"
|
||||||
|
|
||||||
@@ -5264,7 +5208,7 @@ msgstr ""
|
|||||||
msgid "Thanks and Regards"
|
msgid "Thanks and Regards"
|
||||||
msgstr "Danke und Grüße"
|
msgstr "Danke und Grüße"
|
||||||
|
|
||||||
#: lms/lms/utils.py:1801
|
#: lms/lms/utils.py:1930
|
||||||
msgid "The batch is full. Please contact the Administrator."
|
msgid "The batch is full. Please contact the Administrator."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -5300,8 +5244,8 @@ msgstr ""
|
|||||||
msgid "There are no chapters in this course. Create and manage chapters from here."
|
msgid "There are no chapters in this course. Create and manage chapters from here."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/pages/Courses.vue:155
|
#: frontend/src/pages/Courses.vue:83
|
||||||
msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
|
msgid "There are no courses matching the criteria. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/pages/CertifiedParticipants.vue:92
|
#: frontend/src/pages/CertifiedParticipants.vue:92
|
||||||
@@ -5359,7 +5303,7 @@ msgstr ""
|
|||||||
msgid "This course has:"
|
msgid "This course has:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/utils.py:1644
|
#: lms/lms/utils.py:1773
|
||||||
msgid "This course is free."
|
msgid "This course is free."
|
||||||
msgstr "Dieser Kurs ist kostenlos."
|
msgstr "Dieser Kurs ist kostenlos."
|
||||||
|
|
||||||
@@ -5427,7 +5371,7 @@ msgstr "Stundenplan-Vorlage"
|
|||||||
#. Label of the timezone (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 Certificate Request'
|
#. Label of the timezone (Data) field in DocType 'LMS Certificate Request'
|
||||||
#. Label of the timezone (Data) field in DocType 'LMS Live Class'
|
#. Label of the timezone (Data) field in DocType 'LMS Live Class'
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:46
|
#: frontend/src/components/Modals/LiveClassModal.vue:45
|
||||||
#: frontend/src/pages/BatchForm.vue:120
|
#: frontend/src/pages/BatchForm.vue:120
|
||||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||||
@@ -5501,7 +5445,7 @@ msgstr "An"
|
|||||||
msgid "To Date"
|
msgid "To Date"
|
||||||
msgstr "Bis-Datum"
|
msgstr "Bis-Datum"
|
||||||
|
|
||||||
#: lms/lms/utils.py:1655
|
#: lms/lms/utils.py:1784
|
||||||
msgid "To join this batch, please contact the Administrator."
|
msgid "To join this batch, please contact the Administrator."
|
||||||
msgstr "Um dieser Gruppe beizutreten, wenden Sie sich bitte an den Administrator."
|
msgstr "Um dieser Gruppe beizutreten, wenden Sie sich bitte an den Administrator."
|
||||||
|
|
||||||
@@ -5509,7 +5453,7 @@ msgstr "Um dieser Gruppe beizutreten, wenden Sie sich bitte an den Administrator
|
|||||||
msgid "To upload Image, Video, Audio or PDF from your system, click on the add icon and select upload from the menu. Then choose the file you want to add to the lesson and it gets added to your lesson."
|
msgid "To upload Image, Video, Audio or PDF from your system, click on the add icon and select upload from the menu. Then choose the file you want to add to the lesson and it gets added to your lesson."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/overrides/user.py:206
|
#: lms/lms/user.py:41
|
||||||
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
|
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
|
||||||
msgstr "Zu viele Benutzer unterzeichnete vor kurzem, also die Registrierung ist deaktiviert. Bitte versuchen Sie es in einer Stunde zurück"
|
msgstr "Zu viele Benutzer unterzeichnete vor kurzem, also die Registrierung ist deaktiviert. Bitte versuchen Sie es in einer Stunde zurück"
|
||||||
|
|
||||||
@@ -5626,7 +5570,8 @@ msgstr ""
|
|||||||
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request'
|
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request'
|
||||||
#. Label of the upcoming (Check) field in DocType 'LMS Course'
|
#. Label of the upcoming (Check) field in DocType 'LMS Course'
|
||||||
#: frontend/src/pages/Batches.vue:276 frontend/src/pages/Batches.vue:294
|
#: frontend/src/pages/Batches.vue:276 frontend/src/pages/Batches.vue:294
|
||||||
#: frontend/src/pages/CourseForm.vue:184 lms/lms/doctype/cohort/cohort.json
|
#: frontend/src/pages/CourseForm.vue:184 frontend/src/pages/Courses.vue:282
|
||||||
|
#: frontend/src/pages/Courses.vue:301 lms/lms/doctype/cohort/cohort.json
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||||
#: lms/lms/doctype/lms_course/lms_course.json
|
#: lms/lms/doctype/lms_course/lms_course.json
|
||||||
msgid "Upcoming"
|
msgid "Upcoming"
|
||||||
@@ -5727,14 +5672,6 @@ msgstr "Wert"
|
|||||||
msgid "Value Change"
|
msgid "Value Change"
|
||||||
msgstr "Wertänderung"
|
msgstr "Wertänderung"
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:26
|
|
||||||
msgid "Verification Code"
|
|
||||||
msgstr "Verifizierungscode"
|
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:9
|
|
||||||
msgid "Verify"
|
|
||||||
msgstr "Überprüfen"
|
|
||||||
|
|
||||||
#. Label of the video_link (Data) field in DocType 'LMS Course'
|
#. Label of the video_link (Data) field in DocType 'LMS Course'
|
||||||
#: lms/lms/doctype/lms_course/lms_course.json
|
#: lms/lms/doctype/lms_course/lms_course.json
|
||||||
msgid "Video Embed Link"
|
msgid "Video Embed Link"
|
||||||
@@ -5776,10 +5713,6 @@ msgstr ""
|
|||||||
msgid "We have a limited number of seats, and they won't be available for long!"
|
msgid "We have a limited number of seats, and they won't be available for long!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:21
|
|
||||||
msgid "We have sent the verificaton code to your email id "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lms/templates/emails/payment_reminder.html:4
|
#: lms/templates/emails/payment_reminder.html:4
|
||||||
msgid "We noticed that you started enrolling in the"
|
msgid "We noticed that you started enrolling in the"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -5855,7 +5788,7 @@ msgstr "Eine Rezension schreiben"
|
|||||||
msgid "Write your answer here"
|
msgid "Write your answer here"
|
||||||
msgstr "Schreiben Sie hier Ihre Antwort"
|
msgstr "Schreiben Sie hier Ihre Antwort"
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:95
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:96
|
||||||
msgid "You already have an evaluation on {0} at {1} for the course {2}."
|
msgid "You already have an evaluation on {0} at {1} for the course {2}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -5863,11 +5796,11 @@ msgstr ""
|
|||||||
msgid "You are already certified for this course. Click on the card below to open your certificate."
|
msgid "You are already certified for this course. Click on the card below to open your certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/api.py:224
|
#: lms/lms/api.py:230
|
||||||
msgid "You are already enrolled for this batch."
|
msgid "You are already enrolled for this batch."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/api.py:216
|
#: lms/lms/api.py:222
|
||||||
msgid "You are already enrolled for this course."
|
msgid "You are already enrolled for this course."
|
||||||
msgstr "Sie sind bereits in diesem Kurs eingeschrieben."
|
msgstr "Sie sind bereits in diesem Kurs eingeschrieben."
|
||||||
|
|
||||||
@@ -5887,10 +5820,6 @@ msgstr ""
|
|||||||
msgid "You are not enrolled in this course. Please enroll to access this lesson."
|
msgid "You are not enrolled in this course. Please enroll to access this lesson."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/pages/Courses.vue:139
|
|
||||||
msgid "You can add chapters and lessons to it."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lms/templates/emails/lms_course_interest.html:13
|
#: lms/templates/emails/lms_course_interest.html:13
|
||||||
#: lms/templates/emails/lms_invite_request_approved.html:11
|
#: lms/templates/emails/lms_invite_request_approved.html:11
|
||||||
msgid "You can also copy-paste following link in your browser"
|
msgid "You can also copy-paste following link in your browser"
|
||||||
@@ -5908,11 +5837,11 @@ msgstr ""
|
|||||||
msgid "You can find their resume attached to this email."
|
msgid "You can find their resume attached to this email."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:115
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:116
|
||||||
msgid "You cannot schedule evaluations after {0}."
|
msgid "You cannot schedule evaluations after {0}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:104
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:105
|
||||||
msgid "You cannot schedule evaluations for past slots."
|
msgid "You cannot schedule evaluations for past slots."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -5945,7 +5874,7 @@ msgstr "Sie haben sich bereits auf diese Stelle beworben."
|
|||||||
msgid "You have already exceeded the maximum number of attempts allowed for this quiz."
|
msgid "You have already exceeded the maximum number of attempts allowed for this quiz."
|
||||||
msgstr "Sie haben die maximal zulässige Anzahl von Versuchen für dieses Quiz bereits überschritten."
|
msgstr "Sie haben die maximal zulässige Anzahl von Versuchen für dieses Quiz bereits überschritten."
|
||||||
|
|
||||||
#: lms/lms/api.py:237
|
#: lms/lms/api.py:243
|
||||||
msgid "You have already purchased the certificate for this course."
|
msgid "You have already purchased the certificate for this course."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -5985,10 +5914,6 @@ msgstr "Sie haben sich für eine Benachrichtigung zu diesem Kurs entschieden. Si
|
|||||||
msgid "You need to login first to enroll for this course"
|
msgid "You need to login first to enroll for this course"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:71
|
|
||||||
msgid "You will be redirected to Frappe Cloud soon."
|
|
||||||
msgstr "Sie werden in Kürze zur Frappe Cloud weitergeleitet."
|
|
||||||
|
|
||||||
#: frontend/src/components/Quiz.vue:27 lms/templates/quiz/quiz.html:11
|
#: frontend/src/components/Quiz.vue:27 lms/templates/quiz/quiz.html:11
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "You will have to get {0}% correct answers in order to pass the quiz."
|
msgid "You will have to get {0}% correct answers in order to pass the quiz."
|
||||||
@@ -6026,7 +5951,7 @@ msgstr "Ihr Kalender ist eingestellt."
|
|||||||
msgid "Your evaluation for the course {0} has been scheduled on {1} at {2} {3}."
|
msgid "Your evaluation for the course {0} has been scheduled on {1} at {2} {3}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:125
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:126
|
||||||
msgid "Your evaluation slot has been booked"
|
msgid "Your evaluation slot has been booked"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -6127,7 +6052,7 @@ msgstr ""
|
|||||||
msgid "you can"
|
msgid "you can"
|
||||||
msgstr "Sie können"
|
msgstr "Sie können"
|
||||||
|
|
||||||
#: lms/lms/api.py:802 lms/lms/api.py:810
|
#: lms/lms/api.py:808 lms/lms/api.py:816
|
||||||
msgid "{0} Settings not found"
|
msgid "{0} Settings not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -6167,7 +6092,7 @@ msgstr ""
|
|||||||
msgid "{0} is your evaluator"
|
msgid "{0} is your evaluator"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/utils.py:681
|
#: lms/lms/utils.py:682
|
||||||
msgid "{0} mentioned you in a comment"
|
msgid "{0} mentioned you in a comment"
|
||||||
msgstr "{0} hat Sie in einem Kommentar erwähnt"
|
msgstr "{0} hat Sie in einem Kommentar erwähnt"
|
||||||
|
|
||||||
@@ -6175,11 +6100,11 @@ msgstr "{0} hat Sie in einem Kommentar erwähnt"
|
|||||||
msgid "{0} mentioned you in a comment in your batch."
|
msgid "{0} mentioned you in a comment in your batch."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/utils.py:634 lms/lms/utils.py:640
|
#: lms/lms/utils.py:635 lms/lms/utils.py:641
|
||||||
msgid "{0} mentioned you in a comment in {1}"
|
msgid "{0} mentioned you in a comment in {1}"
|
||||||
msgstr "{0} erwähnte Sie in einem Kommentar in {1}"
|
msgstr "{0} erwähnte Sie in einem Kommentar in {1}"
|
||||||
|
|
||||||
#: lms/lms/utils.py:457
|
#: lms/lms/utils.py:458
|
||||||
msgid "{0}k"
|
msgid "{0}k"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
247
lms/locale/eo.po
247
lms/locale/eo.po
@@ -2,8 +2,8 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: frappe\n"
|
"Project-Id-Version: frappe\n"
|
||||||
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
|
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
|
||||||
"POT-Creation-Date: 2025-02-28 16:04+0000\n"
|
"POT-Creation-Date: 2025-03-07 16:04+0000\n"
|
||||||
"PO-Revision-Date: 2025-03-03 21:29\n"
|
"PO-Revision-Date: 2025-03-10 22:46\n"
|
||||||
"Last-Translator: jannat@frappe.io\n"
|
"Last-Translator: jannat@frappe.io\n"
|
||||||
"Language-Team: Esperanto\n"
|
"Language-Team: Esperanto\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -228,7 +228,7 @@ msgstr "crwdns152262:0crwdne152262:0"
|
|||||||
msgid "All Certified Participants"
|
msgid "All Certified Participants"
|
||||||
msgstr "crwdns152264:0crwdne152264:0"
|
msgstr "crwdns152264:0crwdne152264:0"
|
||||||
|
|
||||||
#: lms/lms/widgets/BreadCrumb.html:3
|
#: frontend/src/pages/Courses.vue:26 lms/lms/widgets/BreadCrumb.html:3
|
||||||
msgid "All Courses"
|
msgid "All Courses"
|
||||||
msgstr "crwdns149252:0crwdne149252:0"
|
msgstr "crwdns149252:0crwdne149252:0"
|
||||||
|
|
||||||
@@ -268,7 +268,7 @@ msgstr "crwdns149262:0crwdne149262:0"
|
|||||||
msgid "Allow self enrollment"
|
msgid "Allow self enrollment"
|
||||||
msgstr "crwdns149264:0crwdne149264:0"
|
msgstr "crwdns149264:0crwdne149264:0"
|
||||||
|
|
||||||
#: lms/overrides/user.py:199
|
#: lms/lms/user.py:34
|
||||||
msgid "Already Registered"
|
msgid "Already Registered"
|
||||||
msgstr "crwdns149266:0crwdne149266:0"
|
msgstr "crwdns149266:0crwdne149266:0"
|
||||||
|
|
||||||
@@ -378,7 +378,7 @@ msgstr "crwdns152268:0crwdne152268:0"
|
|||||||
msgid "Are you sure you want to cancel this evaluation? This action cannot be undone."
|
msgid "Are you sure you want to cancel this evaluation? This action cannot be undone."
|
||||||
msgstr "crwdns152463:0crwdne152463:0"
|
msgstr "crwdns152463:0crwdne152463:0"
|
||||||
|
|
||||||
#: frontend/src/components/UserDropdown.vue:209
|
#: frontend/src/components/UserDropdown.vue:169
|
||||||
msgid "Are you sure you want to login to your Frappe Cloud dashboard?"
|
msgid "Are you sure you want to login to your Frappe Cloud dashboard?"
|
||||||
msgstr "crwdns152465:0crwdne152465:0"
|
msgstr "crwdns152465:0crwdne152465:0"
|
||||||
|
|
||||||
@@ -492,12 +492,12 @@ msgid "Auto Assign"
|
|||||||
msgstr "crwdns149332:0crwdne149332:0"
|
msgstr "crwdns149332:0crwdne149332:0"
|
||||||
|
|
||||||
#. Label of the auto_recording (Select) field in DocType 'LMS Live Class'
|
#. Label of the auto_recording (Select) field in DocType 'LMS Live Class'
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:71
|
#: frontend/src/components/Modals/LiveClassModal.vue:77
|
||||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||||
msgid "Auto Recording"
|
msgid "Auto Recording"
|
||||||
msgstr "crwdns149334:0crwdne149334:0"
|
msgstr "crwdns149334:0crwdne149334:0"
|
||||||
|
|
||||||
#: frontend/src/components/CourseCard.vue:50
|
#: frontend/src/components/CourseCard.vue:51
|
||||||
#: frontend/src/pages/CourseDetail.vue:20
|
#: frontend/src/pages/CourseDetail.vue:20
|
||||||
msgid "Average Rating"
|
msgid "Average Rating"
|
||||||
msgstr "crwdns149336:0crwdne149336:0"
|
msgstr "crwdns149336:0crwdne149336:0"
|
||||||
@@ -739,7 +739,7 @@ msgstr "crwdns149414:0crwdne149414:0"
|
|||||||
#. Label of the category (Link) field in DocType 'LMS Course'
|
#. Label of the category (Link) field in DocType 'LMS Course'
|
||||||
#: frontend/src/pages/BatchForm.vue:190 frontend/src/pages/Batches.vue:55
|
#: frontend/src/pages/BatchForm.vue:190 frontend/src/pages/Batches.vue:55
|
||||||
#: frontend/src/pages/CertifiedParticipants.vue:37
|
#: frontend/src/pages/CertifiedParticipants.vue:37
|
||||||
#: frontend/src/pages/CourseForm.vue:147 frontend/src/pages/Courses.vue:17
|
#: frontend/src/pages/CourseForm.vue:147 frontend/src/pages/Courses.vue:55
|
||||||
#: frontend/src/pages/JobDetail.vue:96 lms/lms/doctype/lms_batch/lms_batch.json
|
#: frontend/src/pages/JobDetail.vue:96 lms/lms/doctype/lms_batch/lms_batch.json
|
||||||
#: lms/lms/doctype/lms_category/lms_category.json
|
#: lms/lms/doctype/lms_category/lms_category.json
|
||||||
#: lms/lms/doctype/lms_course/lms_course.json
|
#: lms/lms/doctype/lms_course/lms_course.json
|
||||||
@@ -790,12 +790,12 @@ msgstr "crwdns151924:0crwdne151924:0"
|
|||||||
#. Enrollment'
|
#. Enrollment'
|
||||||
#. Label of a Card Break in the LMS Workspace
|
#. Label of a Card Break in the LMS Workspace
|
||||||
#. Label of a Link in the LMS Workspace
|
#. Label of a Link in the LMS Workspace
|
||||||
#: frontend/src/components/CourseCard.vue:110
|
#: frontend/src/components/CourseCard.vue:111
|
||||||
#: frontend/src/components/Modals/Event.vue:371
|
#: frontend/src/components/Modals/Event.vue:371
|
||||||
#: frontend/src/pages/BatchForm.vue:37 frontend/src/pages/Batches.vue:38
|
#: frontend/src/pages/BatchForm.vue:37 frontend/src/pages/Batches.vue:38
|
||||||
#: frontend/src/pages/CourseCertification.vue:10
|
#: frontend/src/pages/CourseCertification.vue:10
|
||||||
#: frontend/src/pages/CourseCertification.vue:114
|
#: frontend/src/pages/CourseCertification.vue:114
|
||||||
#: lms/fixtures/custom_field.json
|
#: frontend/src/pages/Courses.vue:38 lms/fixtures/custom_field.json
|
||||||
#: lms/lms/doctype/certification/certification.json
|
#: lms/lms/doctype/certification/certification.json
|
||||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
||||||
@@ -912,10 +912,6 @@ msgstr "crwdns152112:0crwdne152112:0"
|
|||||||
msgid "Clearly Defined Role"
|
msgid "Clearly Defined Role"
|
||||||
msgstr "crwdns149466:0crwdne149466:0"
|
msgstr "crwdns149466:0crwdne149466:0"
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:75
|
|
||||||
msgid "Click here to login"
|
|
||||||
msgstr "crwdns152477:0crwdne152477:0"
|
|
||||||
|
|
||||||
#: frontend/src/components/LessonHelp.vue:30
|
#: frontend/src/components/LessonHelp.vue:30
|
||||||
msgid "Click on the add icon in the editor and select Quiz from the menu. It opens up a dialog, where you can either select a quiz from the list or create a new quiz. When you select the Create New option it redirects you to the quiz creation page."
|
msgid "Click on the add icon in the editor and select Quiz from the menu. It opens up a dialog, where you can either select a quiz from the list or create a new quiz. When you select the Create New option it redirects you to the quiz creation page."
|
||||||
msgstr "crwdns149468:0crwdne149468:0"
|
msgstr "crwdns149468:0crwdne149468:0"
|
||||||
@@ -1084,7 +1080,7 @@ msgstr "crwdns149518:0crwdne149518:0"
|
|||||||
msgid "Complete Your Enrollment"
|
msgid "Complete Your Enrollment"
|
||||||
msgstr "crwdns152424:0crwdne152424:0"
|
msgstr "crwdns152424:0crwdne152424:0"
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_payment/lms_payment.py:40
|
#: lms/lms/doctype/lms_payment/lms_payment.py:55
|
||||||
msgid "Complete Your Enrollment - Don't miss out!"
|
msgid "Complete Your Enrollment - Don't miss out!"
|
||||||
msgstr "crwdns152426:0crwdne152426:0"
|
msgstr "crwdns152426:0crwdne152426:0"
|
||||||
|
|
||||||
@@ -1125,7 +1121,11 @@ msgstr "crwdns149528:0crwdne149528:0"
|
|||||||
msgid "Condition must be valid python code."
|
msgid "Condition must be valid python code."
|
||||||
msgstr "crwdns149530:0crwdne149530:0"
|
msgstr "crwdns149530:0crwdne149530:0"
|
||||||
|
|
||||||
#: frontend/src/components/UserDropdown.vue:214
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.js:7
|
||||||
|
msgid "Conduct Evaluation"
|
||||||
|
msgstr "crwdns154203:0crwdne154203:0"
|
||||||
|
|
||||||
|
#: frontend/src/components/UserDropdown.vue:174
|
||||||
msgid "Confirm"
|
msgid "Confirm"
|
||||||
msgstr "crwdns152479:0crwdne152479:0"
|
msgstr "crwdns152479:0crwdne152479:0"
|
||||||
|
|
||||||
@@ -1166,7 +1166,7 @@ msgstr "crwdns149540:0crwdne149540:0"
|
|||||||
msgid "Contract"
|
msgid "Contract"
|
||||||
msgstr "crwdns149542:0crwdne149542:0"
|
msgstr "crwdns149542:0crwdne149542:0"
|
||||||
|
|
||||||
#: lms/lms/utils.py:437
|
#: lms/lms/utils.py:438
|
||||||
msgid "Cookie Policy"
|
msgid "Cookie Policy"
|
||||||
msgstr "crwdns149544:0crwdne149544:0"
|
msgstr "crwdns149544:0crwdne149544:0"
|
||||||
|
|
||||||
@@ -1382,7 +1382,7 @@ msgstr "crwdns149596:0{0}crwdne149596:0"
|
|||||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:79
|
#: frontend/src/components/Modals/BatchStudentProgress.vue:79
|
||||||
#: frontend/src/pages/BatchDetail.vue:21 frontend/src/pages/BatchDetail.vue:70
|
#: frontend/src/pages/BatchDetail.vue:21 frontend/src/pages/BatchDetail.vue:70
|
||||||
#: frontend/src/pages/CourseCertification.vue:106
|
#: frontend/src/pages/CourseCertification.vue:106
|
||||||
#: frontend/src/pages/Courses.vue:8 frontend/src/pages/Statistics.vue:21
|
#: frontend/src/pages/Courses.vue:314 frontend/src/pages/Statistics.vue:21
|
||||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||||
msgid "Courses"
|
msgid "Courses"
|
||||||
@@ -1393,10 +1393,6 @@ msgstr "crwdns149598:0crwdne149598:0"
|
|||||||
msgid "Courses Completed"
|
msgid "Courses Completed"
|
||||||
msgstr "crwdns149600:0crwdne149600:0"
|
msgstr "crwdns149600:0crwdne149600:0"
|
||||||
|
|
||||||
#: lms/lms/web_template/courses_mentored/courses_mentored.html:4
|
|
||||||
msgid "Courses Mentored"
|
|
||||||
msgstr "crwdns149602:0crwdne149602:0"
|
|
||||||
|
|
||||||
#: frontend/src/components/BatchCourses.vue:151
|
#: frontend/src/components/BatchCourses.vue:151
|
||||||
msgid "Courses deleted successfully"
|
msgid "Courses deleted successfully"
|
||||||
msgstr "crwdns149604:0crwdne149604:0"
|
msgstr "crwdns149604:0crwdne149604:0"
|
||||||
@@ -1412,14 +1408,10 @@ msgid "Create"
|
|||||||
msgstr "crwdns151468:0crwdne151468:0"
|
msgstr "crwdns151468:0crwdne151468:0"
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.js:7
|
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.js:7
|
||||||
msgid "Create LMS Certificate"
|
msgid "Create Certificate"
|
||||||
msgstr "crwdns149608:0crwdne149608:0"
|
msgstr "crwdns154205:0crwdne154205:0"
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.js:8
|
#: lms/templates/onboarding_header.html:19
|
||||||
msgid "Create LMS Certificate Evaluation"
|
|
||||||
msgstr "crwdns149610:0crwdne149610:0"
|
|
||||||
|
|
||||||
#: frontend/src/pages/Courses.vue:136 lms/templates/onboarding_header.html:19
|
|
||||||
msgid "Create a Course"
|
msgid "Create a Course"
|
||||||
msgstr "crwdns149612:0crwdne149612:0"
|
msgstr "crwdns149612:0crwdne149612:0"
|
||||||
|
|
||||||
@@ -1435,7 +1427,8 @@ msgstr "crwdns151738:0crwdne151738:0"
|
|||||||
msgid "Create a new question"
|
msgid "Create a new question"
|
||||||
msgstr "crwdns149616:0crwdne149616:0"
|
msgstr "crwdns149616:0crwdne149616:0"
|
||||||
|
|
||||||
#: frontend/src/pages/Assignments.vue:163
|
#: frontend/src/pages/Assignments.vue:163 frontend/src/pages/Courses.vue:287
|
||||||
|
#: frontend/src/pages/Courses.vue:307
|
||||||
msgid "Created"
|
msgid "Created"
|
||||||
msgstr "crwdns152116:0crwdne152116:0"
|
msgstr "crwdns152116:0crwdne152116:0"
|
||||||
|
|
||||||
@@ -1488,7 +1481,7 @@ msgstr "crwdns149630:0crwdne149630:0"
|
|||||||
#. Label of the date (Date) field in DocType 'Scheduled Flow'
|
#. Label of the date (Date) field in DocType 'Scheduled Flow'
|
||||||
#: frontend/src/components/Modals/EvaluationModal.vue:26
|
#: frontend/src/components/Modals/EvaluationModal.vue:26
|
||||||
#: frontend/src/components/Modals/Event.vue:40
|
#: frontend/src/components/Modals/Event.vue:40
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:55
|
#: frontend/src/components/Modals/LiveClassModal.vue:61
|
||||||
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
|
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
|
||||||
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
|
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||||
@@ -1587,7 +1580,7 @@ msgstr "crwdns151634:0crwdne151634:0"
|
|||||||
#. Label of the description (Small Text) field in DocType 'LMS Exercise'
|
#. 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 (Text) field in DocType 'LMS Live Class'
|
||||||
#. Label of the description (Small Text) field in DocType 'Work Experience'
|
#. Label of the description (Small Text) field in DocType 'Work Experience'
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:78
|
#: frontend/src/components/Modals/LiveClassModal.vue:84
|
||||||
#: frontend/src/pages/BatchForm.vue:224 frontend/src/pages/JobCreation.vue:50
|
#: frontend/src/pages/BatchForm.vue:224 frontend/src/pages/JobCreation.vue:50
|
||||||
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
||||||
#: lms/lms/doctype/certification/certification.json
|
#: lms/lms/doctype/certification/certification.json
|
||||||
@@ -1614,10 +1607,6 @@ msgstr "crwdns149652:0crwdne149652:0"
|
|||||||
msgid "Details"
|
msgid "Details"
|
||||||
msgstr "crwdns149654:0crwdne149654:0"
|
msgstr "crwdns149654:0crwdne149654:0"
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:30
|
|
||||||
msgid "Didn't receive the code?"
|
|
||||||
msgstr "crwdns152485:0crwdne152485:0"
|
|
||||||
|
|
||||||
#: frontend/src/pages/CourseForm.vue:194
|
#: frontend/src/pages/CourseForm.vue:194
|
||||||
msgid "Disable Self Enrollment"
|
msgid "Disable Self Enrollment"
|
||||||
msgstr "crwdns149656:0crwdne149656:0"
|
msgstr "crwdns149656:0crwdne149656:0"
|
||||||
@@ -1668,7 +1657,7 @@ msgstr "crwdns149670:0crwdne149670:0"
|
|||||||
#. Label of the duration (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 (Data) field in DocType 'LMS Batch Timetable'
|
||||||
#. Label of the duration (Int) field in DocType 'LMS Live Class'
|
#. Label of the duration (Int) field in DocType 'LMS Live Class'
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:62
|
#: frontend/src/components/Modals/LiveClassModal.vue:68
|
||||||
#: lms/lms/doctype/cohort/cohort.json
|
#: lms/lms/doctype/cohort/cohort.json
|
||||||
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
|
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
|
||||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||||
@@ -1680,7 +1669,7 @@ msgstr "crwdns149672:0crwdne149672:0"
|
|||||||
msgid "Duration (in minutes)"
|
msgid "Duration (in minutes)"
|
||||||
msgstr "crwdns149674:0crwdne149674:0"
|
msgstr "crwdns149674:0crwdne149674:0"
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:58
|
#: frontend/src/components/Modals/LiveClassModal.vue:64
|
||||||
msgid "Duration of the live class in minutes"
|
msgid "Duration of the live class in minutes"
|
||||||
msgstr "crwdns149676:0crwdne149676:0"
|
msgstr "crwdns149676:0crwdne149676:0"
|
||||||
|
|
||||||
@@ -1826,11 +1815,12 @@ msgstr "crwdns149720:0crwdne149720:0"
|
|||||||
msgid "Enroll Now"
|
msgid "Enroll Now"
|
||||||
msgstr "crwdns149722:0crwdne149722:0"
|
msgstr "crwdns149722:0crwdne149722:0"
|
||||||
|
|
||||||
#: frontend/src/pages/Batches.vue:292
|
#: frontend/src/pages/Batches.vue:292 frontend/src/pages/Courses.vue:285
|
||||||
|
#: frontend/src/pages/Courses.vue:305
|
||||||
msgid "Enrolled"
|
msgid "Enrolled"
|
||||||
msgstr "crwdns152272:0crwdne152272:0"
|
msgstr "crwdns152272:0crwdne152272:0"
|
||||||
|
|
||||||
#: frontend/src/components/CourseCard.vue:41
|
#: frontend/src/components/CourseCard.vue:42
|
||||||
#: frontend/src/components/CourseCardOverlay.vue:106
|
#: frontend/src/components/CourseCardOverlay.vue:106
|
||||||
#: frontend/src/pages/CourseDetail.vue:33
|
#: frontend/src/pages/CourseDetail.vue:33
|
||||||
msgid "Enrolled Students"
|
msgid "Enrolled Students"
|
||||||
@@ -1849,11 +1839,11 @@ msgstr "crwdns152430:0{0}crwdne152430:0"
|
|||||||
msgid "Enrollment Count"
|
msgid "Enrollment Count"
|
||||||
msgstr "crwdns149730:0crwdne149730:0"
|
msgstr "crwdns149730:0crwdne149730:0"
|
||||||
|
|
||||||
#: lms/lms/utils.py:1769
|
#: lms/lms/utils.py:1898
|
||||||
msgid "Enrollment Failed"
|
msgid "Enrollment Failed"
|
||||||
msgstr "crwdns149732:0crwdne149732:0"
|
msgstr "crwdns149732:0crwdne149732:0"
|
||||||
|
|
||||||
#. Label of the enrollments (Data) field in DocType 'LMS Course'
|
#. Label of the enrollments (Int) field in DocType 'LMS Course'
|
||||||
#. Label of a chart in the LMS Workspace
|
#. Label of a chart in the LMS Workspace
|
||||||
#. Label of a shortcut in the LMS Workspace
|
#. Label of a shortcut in the LMS Workspace
|
||||||
#: frontend/src/pages/Statistics.vue:51
|
#: frontend/src/pages/Statistics.vue:51
|
||||||
@@ -2057,14 +2047,6 @@ msgstr "crwdns149786:0crwdne149786:0"
|
|||||||
msgid "Fail"
|
msgid "Fail"
|
||||||
msgstr "crwdns149788:0crwdne149788:0"
|
msgstr "crwdns149788:0crwdne149788:0"
|
||||||
|
|
||||||
#: frontend/src/components/UserDropdown.vue:243
|
|
||||||
msgid "Failed to login to Frappe Cloud"
|
|
||||||
msgstr "crwdns152491:0crwdne152491:0"
|
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:91
|
|
||||||
msgid "Failed to resend code"
|
|
||||||
msgstr "crwdns152493:0crwdne152493:0"
|
|
||||||
|
|
||||||
#. Label of the featured (Check) field in DocType 'LMS Course'
|
#. Label of the featured (Check) field in DocType 'LMS Course'
|
||||||
#: frontend/src/components/CourseCard.vue:16
|
#: frontend/src/components/CourseCard.vue:16
|
||||||
#: frontend/src/pages/CourseForm.vue:189
|
#: frontend/src/pages/CourseForm.vue:189
|
||||||
@@ -2125,10 +2107,6 @@ msgstr "crwdns149806:0crwdne149806:0"
|
|||||||
msgid "Formal Wear"
|
msgid "Formal Wear"
|
||||||
msgstr "crwdns149808:0crwdne149808:0"
|
msgstr "crwdns149808:0crwdne149808:0"
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:70
|
|
||||||
msgid "Frappe Cloud Login Successful"
|
|
||||||
msgstr "crwdns152495:0crwdne152495:0"
|
|
||||||
|
|
||||||
#: lms/lms/widgets/CourseCard.html:114
|
#: lms/lms/widgets/CourseCard.html:114
|
||||||
msgid "Free"
|
msgid "Free"
|
||||||
msgstr "crwdns149810:0crwdne149810:0"
|
msgstr "crwdns149810:0crwdne149810:0"
|
||||||
@@ -2212,7 +2190,7 @@ msgstr "crwdns151744:0crwdne151744:0"
|
|||||||
msgid "Generate Certificates"
|
msgid "Generate Certificates"
|
||||||
msgstr "crwdns151928:0crwdne151928:0"
|
msgstr "crwdns151928:0crwdne151928:0"
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.js:18
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.js:15
|
||||||
msgid "Generate Google Meet Link"
|
msgid "Generate Google Meet Link"
|
||||||
msgstr "crwdns149836:0crwdne149836:0"
|
msgstr "crwdns149836:0crwdne149836:0"
|
||||||
|
|
||||||
@@ -2382,10 +2360,6 @@ msgstr "crwdns152436:0crwdne152436:0"
|
|||||||
msgid "If you have any questions or require assistance, feel free to contact us."
|
msgid "If you have any questions or require assistance, feel free to contact us."
|
||||||
msgstr "crwdns149904:0crwdne149904:0"
|
msgstr "crwdns149904:0crwdne149904:0"
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:71
|
|
||||||
msgid "If you haven't been redirected,"
|
|
||||||
msgstr "crwdns152497:0crwdne152497:0"
|
|
||||||
|
|
||||||
#. Description of the 'Amount (USD)' (Currency) field in DocType 'LMS Batch'
|
#. Description of the 'Amount (USD)' (Currency) field in DocType 'LMS Batch'
|
||||||
#. Description of the 'Amount (USD)' (Currency) field in DocType 'LMS Course'
|
#. Description of the 'Amount (USD)' (Currency) field in DocType 'LMS Course'
|
||||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||||
@@ -2969,8 +2943,8 @@ msgstr "crwdns150084:0crwdne150084:0"
|
|||||||
|
|
||||||
#. Label of the lessons (Table) field in DocType 'Course Chapter'
|
#. Label of the lessons (Table) field in DocType 'Course Chapter'
|
||||||
#. Group in Course Chapter's connections
|
#. Group in Course Chapter's connections
|
||||||
#. Label of the lessons (Data) field in DocType 'LMS Course'
|
#. Label of the lessons (Int) field in DocType 'LMS Course'
|
||||||
#: frontend/src/components/CourseCard.vue:32
|
#: frontend/src/components/CourseCard.vue:33
|
||||||
#: frontend/src/components/CourseCardOverlay.vue:99
|
#: frontend/src/components/CourseCardOverlay.vue:99
|
||||||
#: lms/lms/doctype/course_chapter/course_chapter.json
|
#: lms/lms/doctype/course_chapter/course_chapter.json
|
||||||
#: lms/lms/doctype/lms_course/lms_course.json
|
#: lms/lms/doctype/lms_course/lms_course.json
|
||||||
@@ -3021,7 +2995,7 @@ msgid "List of quizzes"
|
|||||||
msgstr "crwdns150104:0crwdne150104:0"
|
msgstr "crwdns150104:0crwdne150104:0"
|
||||||
|
|
||||||
#. Option for the 'Status' (Select) field in DocType 'Cohort'
|
#. Option for the 'Status' (Select) field in DocType 'Cohort'
|
||||||
#: lms/lms/doctype/cohort/cohort.json
|
#: frontend/src/pages/Courses.vue:295 lms/lms/doctype/cohort/cohort.json
|
||||||
msgid "Live"
|
msgid "Live"
|
||||||
msgstr "crwdns150106:0crwdne150106:0"
|
msgstr "crwdns150106:0crwdne150106:0"
|
||||||
|
|
||||||
@@ -3039,6 +3013,7 @@ msgstr "crwdns150110:0crwdne150110:0"
|
|||||||
#: frontend/src/components/Members.vue:108
|
#: frontend/src/components/Members.vue:108
|
||||||
#: frontend/src/pages/Assignments.vue:71 frontend/src/pages/Batches.vue:94
|
#: frontend/src/pages/Assignments.vue:71 frontend/src/pages/Batches.vue:94
|
||||||
#: frontend/src/pages/CertifiedParticipants.vue:79
|
#: frontend/src/pages/CertifiedParticipants.vue:79
|
||||||
|
#: frontend/src/pages/Courses.vue:94
|
||||||
#: frontend/src/pages/QuizSubmissionList.vue:39
|
#: frontend/src/pages/QuizSubmissionList.vue:39
|
||||||
#: frontend/src/pages/Quizzes.vue:51
|
#: frontend/src/pages/Quizzes.vue:51
|
||||||
msgid "Load More"
|
msgid "Load More"
|
||||||
@@ -3071,16 +3046,7 @@ msgstr "crwdns150120:0crwdne150120:0"
|
|||||||
msgid "Login"
|
msgid "Login"
|
||||||
msgstr "crwdns150122:0crwdne150122:0"
|
msgstr "crwdns150122:0crwdne150122:0"
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:79
|
#: frontend/src/components/UserDropdown.vue:168
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:83
|
|
||||||
msgid "Login failed"
|
|
||||||
msgstr "crwdns152501:0crwdne152501:0"
|
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:6
|
|
||||||
msgid "Login to Frappe Cloud"
|
|
||||||
msgstr "crwdns152503:0crwdne152503:0"
|
|
||||||
|
|
||||||
#: frontend/src/components/UserDropdown.vue:208
|
|
||||||
msgid "Login to Frappe Cloud?"
|
msgid "Login to Frappe Cloud?"
|
||||||
msgstr "crwdns152505:0crwdne152505:0"
|
msgstr "crwdns152505:0crwdne152505:0"
|
||||||
|
|
||||||
@@ -3396,11 +3362,11 @@ msgstr "crwdns150196:0crwdne150196:0"
|
|||||||
msgid "Modified By"
|
msgid "Modified By"
|
||||||
msgstr "crwdns150198:0crwdne150198:0"
|
msgstr "crwdns150198:0crwdne150198:0"
|
||||||
|
|
||||||
#: lms/lms/api.py:208
|
#: lms/lms/api.py:214
|
||||||
msgid "Module Name is incorrect or does not exist."
|
msgid "Module Name is incorrect or does not exist."
|
||||||
msgstr "crwdns150200:0crwdne150200:0"
|
msgstr "crwdns150200:0crwdne150200:0"
|
||||||
|
|
||||||
#: lms/lms/api.py:204
|
#: lms/lms/api.py:210
|
||||||
msgid "Module is incorrect."
|
msgid "Module is incorrect."
|
||||||
msgstr "crwdns150202:0crwdne150202:0"
|
msgstr "crwdns150202:0crwdne150202:0"
|
||||||
|
|
||||||
@@ -3430,7 +3396,8 @@ msgstr "crwdns150212:0crwdne150212:0"
|
|||||||
|
|
||||||
#. Option for the 'Event' (Select) field in DocType 'LMS Badge'
|
#. Option for the 'Event' (Select) field in DocType 'LMS Badge'
|
||||||
#: frontend/src/pages/Assignments.vue:18 frontend/src/pages/Batches.vue:17
|
#: frontend/src/pages/Assignments.vue:18 frontend/src/pages/Batches.vue:17
|
||||||
#: frontend/src/pages/Courses.vue:48 frontend/src/pages/Programs.vue:14
|
#: frontend/src/pages/Courses.vue:17 frontend/src/pages/Courses.vue:281
|
||||||
|
#: frontend/src/pages/Courses.vue:298 frontend/src/pages/Programs.vue:14
|
||||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||||
msgid "New"
|
msgid "New"
|
||||||
msgstr "crwdns150214:0crwdne150214:0"
|
msgstr "crwdns150214:0crwdne150214:0"
|
||||||
@@ -3484,11 +3451,11 @@ msgstr "crwdns150228:0crwdne150228:0"
|
|||||||
msgid "New Sign Up"
|
msgid "New Sign Up"
|
||||||
msgstr "crwdns150230:0crwdne150230:0"
|
msgstr "crwdns150230:0crwdne150230:0"
|
||||||
|
|
||||||
#: lms/lms/utils.py:604
|
#: lms/lms/utils.py:605
|
||||||
msgid "New comment in batch {0}"
|
msgid "New comment in batch {0}"
|
||||||
msgstr "crwdns150232:0{0}crwdne150232:0"
|
msgstr "crwdns150232:0{0}crwdne150232:0"
|
||||||
|
|
||||||
#: lms/lms/utils.py:597
|
#: lms/lms/utils.py:598
|
||||||
msgid "New reply on the topic {0} in course {1}"
|
msgid "New reply on the topic {0} in course {1}"
|
||||||
msgstr "crwdns150234:0{0}crwdnd150234:0{1}crwdne150234:0"
|
msgstr "crwdns150234:0{0}crwdnd150234:0{1}crwdne150234:0"
|
||||||
|
|
||||||
@@ -3546,7 +3513,7 @@ msgstr "crwdns150252:0crwdne150252:0"
|
|||||||
msgid "No courses created"
|
msgid "No courses created"
|
||||||
msgstr "crwdns150254:0crwdne150254:0"
|
msgstr "crwdns150254:0crwdne150254:0"
|
||||||
|
|
||||||
#: frontend/src/pages/Courses.vue:151
|
#: frontend/src/pages/Courses.vue:79
|
||||||
msgid "No courses found"
|
msgid "No courses found"
|
||||||
msgstr "crwdns151480:0crwdne151480:0"
|
msgstr "crwdns151480:0crwdne151480:0"
|
||||||
|
|
||||||
@@ -3598,15 +3565,11 @@ msgstr "crwdns152128:0crwdne152128:0"
|
|||||||
msgid "No {0}"
|
msgid "No {0}"
|
||||||
msgstr "crwdns150268:0{0}crwdne150268:0"
|
msgstr "crwdns150268:0{0}crwdne150268:0"
|
||||||
|
|
||||||
#: frontend/src/pages/Courses.vue:111
|
|
||||||
msgid "No {0} courses"
|
|
||||||
msgstr "crwdns151484:0{0}crwdne151484:0"
|
|
||||||
|
|
||||||
#: lms/templates/quiz/quiz.html:147
|
#: lms/templates/quiz/quiz.html:147
|
||||||
msgid "No."
|
msgid "No."
|
||||||
msgstr "crwdns150274:0crwdne150274:0"
|
msgstr "crwdns150274:0crwdne150274:0"
|
||||||
|
|
||||||
#: lms/overrides/user.py:194
|
#: lms/lms/user.py:29
|
||||||
msgid "Not Allowed"
|
msgid "Not Allowed"
|
||||||
msgstr "crwdns150276:0crwdne150276:0"
|
msgstr "crwdns150276:0crwdne150276:0"
|
||||||
|
|
||||||
@@ -3695,7 +3658,7 @@ msgstr "crwdns151770:0crwdne151770:0"
|
|||||||
msgid "Only files of type {0} will be accepted."
|
msgid "Only files of type {0} will be accepted."
|
||||||
msgstr "crwdns150308:0{0}crwdne150308:0"
|
msgstr "crwdns150308:0{0}crwdne150308:0"
|
||||||
|
|
||||||
#: frontend/src/pages/CourseForm.vue:506 frontend/src/utils/index.js:533
|
#: frontend/src/pages/CourseForm.vue:506 frontend/src/utils/index.js:552
|
||||||
msgid "Only image file is allowed."
|
msgid "Only image file is allowed."
|
||||||
msgstr "crwdns150310:0crwdne150310:0"
|
msgstr "crwdns150310:0crwdne150310:0"
|
||||||
|
|
||||||
@@ -3726,10 +3689,6 @@ msgstr "crwdns150316:0crwdne150316:0"
|
|||||||
msgid "Open Ended"
|
msgid "Open Ended"
|
||||||
msgstr "crwdns150318:0crwdne150318:0"
|
msgstr "crwdns150318:0crwdne150318:0"
|
||||||
|
|
||||||
#: lms/lms/widgets/MemberCard.html:16
|
|
||||||
msgid "Open Network"
|
|
||||||
msgstr "crwdns150320:0crwdne150320:0"
|
|
||||||
|
|
||||||
#. Label of the option (Data) field in DocType 'LMS Option'
|
#. Label of the option (Data) field in DocType 'LMS Option'
|
||||||
#: frontend/src/components/Modals/Question.vue:64
|
#: frontend/src/components/Modals/Question.vue:64
|
||||||
#: lms/lms/doctype/lms_option/lms_option.json
|
#: lms/lms/doctype/lms_option/lms_option.json
|
||||||
@@ -3981,11 +3940,11 @@ msgstr "crwdns150398:0crwdne150398:0"
|
|||||||
msgid "Please add <a href='{0}'>{1}</a> for <a href='{2}'>{3}</a> to send calendar invites for evaluations."
|
msgid "Please add <a href='{0}'>{1}</a> for <a href='{2}'>{3}</a> to send calendar invites for evaluations."
|
||||||
msgstr "crwdns150400:0{0}crwdnd150400:0{1}crwdnd150400:0{2}crwdnd150400:0{3}crwdne150400:0"
|
msgstr "crwdns150400:0{0}crwdnd150400:0{1}crwdnd150400:0{2}crwdnd150400:0{3}crwdne150400:0"
|
||||||
|
|
||||||
#: lms/overrides/user.py:240
|
#: lms/lms/user.py:75
|
||||||
msgid "Please ask your administrator to verify your sign-up"
|
msgid "Please ask your administrator to verify your sign-up"
|
||||||
msgstr "crwdns150402:0crwdne150402:0"
|
msgstr "crwdns150402:0crwdne150402:0"
|
||||||
|
|
||||||
#: lms/overrides/user.py:238
|
#: lms/lms/user.py:73
|
||||||
msgid "Please check your email for verification"
|
msgid "Please check your email for verification"
|
||||||
msgstr "crwdns150404:0crwdne150404:0"
|
msgstr "crwdns150404:0crwdne150404:0"
|
||||||
|
|
||||||
@@ -3993,7 +3952,7 @@ msgstr "crwdns150404:0crwdne150404:0"
|
|||||||
msgid "Please click on the following button to set your new password"
|
msgid "Please click on the following button to set your new password"
|
||||||
msgstr "crwdns150406:0crwdne150406:0"
|
msgstr "crwdns150406:0crwdne150406:0"
|
||||||
|
|
||||||
#: lms/lms/utils.py:1901 lms/lms/utils.py:1905
|
#: lms/lms/utils.py:2030 lms/lms/utils.py:2034
|
||||||
msgid "Please complete the previous courses in the program to enroll in this course."
|
msgid "Please complete the previous courses in the program to enroll in this course."
|
||||||
msgstr "crwdns151772:0crwdne151772:0"
|
msgstr "crwdns151772:0crwdne151772:0"
|
||||||
|
|
||||||
@@ -4009,7 +3968,7 @@ msgstr "crwdns151644:0crwdne151644:0"
|
|||||||
msgid "Please ensure that you complete all the questions in {0} minutes."
|
msgid "Please ensure that you complete all the questions in {0} minutes."
|
||||||
msgstr "crwdns150410:0{0}crwdne150410:0"
|
msgstr "crwdns150410:0{0}crwdne150410:0"
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:164
|
#: frontend/src/components/Modals/LiveClassModal.vue:170
|
||||||
msgid "Please enter a title."
|
msgid "Please enter a title."
|
||||||
msgstr "crwdns151774:0crwdne151774:0"
|
msgstr "crwdns151774:0crwdne151774:0"
|
||||||
|
|
||||||
@@ -4018,7 +3977,7 @@ msgstr "crwdns151774:0crwdne151774:0"
|
|||||||
msgid "Please enter a valid URL."
|
msgid "Please enter a valid URL."
|
||||||
msgstr "crwdns150412:0crwdne150412:0"
|
msgstr "crwdns150412:0crwdne150412:0"
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:176
|
#: frontend/src/components/Modals/LiveClassModal.vue:182
|
||||||
msgid "Please enter a valid time in the format HH:mm."
|
msgid "Please enter a valid time in the format HH:mm."
|
||||||
msgstr "crwdns151776:0crwdne151776:0"
|
msgstr "crwdns151776:0crwdne151776:0"
|
||||||
|
|
||||||
@@ -4054,7 +4013,7 @@ msgstr "crwdns150424:0crwdne150424:0"
|
|||||||
msgid "Please login to access this page."
|
msgid "Please login to access this page."
|
||||||
msgstr "crwdns150426:0crwdne150426:0"
|
msgstr "crwdns150426:0crwdne150426:0"
|
||||||
|
|
||||||
#: lms/lms/api.py:200
|
#: lms/lms/api.py:206
|
||||||
msgid "Please login to continue with payment."
|
msgid "Please login to continue with payment."
|
||||||
msgstr "crwdns150428:0crwdne150428:0"
|
msgstr "crwdns150428:0crwdne150428:0"
|
||||||
|
|
||||||
@@ -4067,23 +4026,23 @@ msgstr "crwdns150430:0crwdne150430:0"
|
|||||||
msgid "Please schedule an evaluation to get certified."
|
msgid "Please schedule an evaluation to get certified."
|
||||||
msgstr "crwdns152615:0crwdne152615:0"
|
msgstr "crwdns152615:0crwdne152615:0"
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:167
|
#: frontend/src/components/Modals/LiveClassModal.vue:173
|
||||||
msgid "Please select a date."
|
msgid "Please select a date."
|
||||||
msgstr "crwdns151778:0crwdne151778:0"
|
msgstr "crwdns151778:0crwdne151778:0"
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:191
|
#: frontend/src/components/Modals/LiveClassModal.vue:197
|
||||||
msgid "Please select a duration."
|
msgid "Please select a duration."
|
||||||
msgstr "crwdns151780:0crwdne151780:0"
|
msgstr "crwdns151780:0crwdne151780:0"
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:188
|
#: frontend/src/components/Modals/LiveClassModal.vue:194
|
||||||
msgid "Please select a future date and time."
|
msgid "Please select a future date and time."
|
||||||
msgstr "crwdns151782:0crwdne151782:0"
|
msgstr "crwdns151782:0crwdne151782:0"
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:170
|
#: frontend/src/components/Modals/LiveClassModal.vue:176
|
||||||
msgid "Please select a time."
|
msgid "Please select a time."
|
||||||
msgstr "crwdns151784:0crwdne151784:0"
|
msgstr "crwdns151784:0crwdne151784:0"
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:173
|
#: frontend/src/components/Modals/LiveClassModal.vue:179
|
||||||
msgid "Please select a timezone."
|
msgid "Please select a timezone."
|
||||||
msgstr "crwdns151786:0crwdne151786:0"
|
msgstr "crwdns151786:0crwdne151786:0"
|
||||||
|
|
||||||
@@ -4091,13 +4050,6 @@ msgstr "crwdns151786:0crwdne151786:0"
|
|||||||
msgid "Please take appropriate action at {0}"
|
msgid "Please take appropriate action at {0}"
|
||||||
msgstr "crwdns150432:0{0}crwdne150432:0"
|
msgstr "crwdns150432:0{0}crwdne150432:0"
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:79
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:83
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:91
|
|
||||||
#: frontend/src/components/UserDropdown.vue:244
|
|
||||||
msgid "Please try again"
|
|
||||||
msgstr "crwdns152509:0crwdne152509:0"
|
|
||||||
|
|
||||||
#: frontend/src/components/Modals/ChapterModal.vue:177
|
#: frontend/src/components/Modals/ChapterModal.vue:177
|
||||||
msgid "Please upload a SCORM package"
|
msgid "Please upload a SCORM package"
|
||||||
msgstr "crwdns151646:0crwdne151646:0"
|
msgstr "crwdns151646:0crwdne151646:0"
|
||||||
@@ -4210,7 +4162,7 @@ msgstr "crwdns150472:0crwdne150472:0"
|
|||||||
msgid "Primary Subgroup"
|
msgid "Primary Subgroup"
|
||||||
msgstr "crwdns150474:0crwdne150474:0"
|
msgstr "crwdns150474:0crwdne150474:0"
|
||||||
|
|
||||||
#: lms/lms/utils.py:436
|
#: lms/lms/utils.py:437
|
||||||
msgid "Privacy Policy"
|
msgid "Privacy Policy"
|
||||||
msgstr "crwdns150476:0crwdne150476:0"
|
msgstr "crwdns150476:0crwdne150476:0"
|
||||||
|
|
||||||
@@ -4478,7 +4430,7 @@ msgstr "crwdns150560:0crwdne150560:0"
|
|||||||
msgid "Registered"
|
msgid "Registered"
|
||||||
msgstr "crwdns150562:0crwdne150562:0"
|
msgstr "crwdns150562:0crwdne150562:0"
|
||||||
|
|
||||||
#: lms/overrides/user.py:201
|
#: lms/lms/user.py:36
|
||||||
msgid "Registered but disabled"
|
msgid "Registered but disabled"
|
||||||
msgstr "crwdns150564:0crwdne150564:0"
|
msgstr "crwdns150564:0crwdne150564:0"
|
||||||
|
|
||||||
@@ -4519,10 +4471,6 @@ msgstr "crwdns150574:0crwdne150574:0"
|
|||||||
msgid "Required Role"
|
msgid "Required Role"
|
||||||
msgstr "crwdns150576:0crwdne150576:0"
|
msgstr "crwdns150576:0crwdne150576:0"
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:31
|
|
||||||
msgid "Resend"
|
|
||||||
msgstr "crwdns152511:0crwdne152511:0"
|
|
||||||
|
|
||||||
#. Option for the 'Membership' (Select) field in DocType 'LMS Batch Old'
|
#. Option for the 'Membership' (Select) field in DocType 'LMS Batch Old'
|
||||||
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
|
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
|
||||||
msgid "Restricted"
|
msgid "Restricted"
|
||||||
@@ -4677,7 +4625,7 @@ msgstr "crwdns150626:0crwdne150626:0"
|
|||||||
msgid "Search by Name"
|
msgid "Search by Name"
|
||||||
msgstr "crwdns152286:0crwdne152286:0"
|
msgstr "crwdns152286:0crwdne152286:0"
|
||||||
|
|
||||||
#: frontend/src/pages/Batches.vue:45
|
#: frontend/src/pages/Batches.vue:45 frontend/src/pages/Courses.vue:45
|
||||||
msgid "Search by Title"
|
msgid "Search by Title"
|
||||||
msgstr "crwdns152288:0crwdne152288:0"
|
msgstr "crwdns152288:0crwdne152288:0"
|
||||||
|
|
||||||
@@ -4819,7 +4767,7 @@ msgstr "crwdns150672:0crwdne150672:0"
|
|||||||
msgid "Sidebar Items"
|
msgid "Sidebar Items"
|
||||||
msgstr "crwdns150674:0crwdne150674:0"
|
msgstr "crwdns150674:0crwdne150674:0"
|
||||||
|
|
||||||
#: lms/overrides/user.py:194
|
#: lms/lms/user.py:29
|
||||||
msgid "Sign Up is disabled"
|
msgid "Sign Up is disabled"
|
||||||
msgstr "crwdns150676:0crwdne150676:0"
|
msgstr "crwdns150676:0crwdne150676:0"
|
||||||
|
|
||||||
@@ -4863,10 +4811,6 @@ msgstr "crwdns150690:0crwdne150690:0"
|
|||||||
msgid "Skills"
|
msgid "Skills"
|
||||||
msgstr "crwdns150692:0crwdne150692:0"
|
msgstr "crwdns150692:0crwdne150692:0"
|
||||||
|
|
||||||
#: lms/overrides/user.py:42
|
|
||||||
msgid "Skills must be unique"
|
|
||||||
msgstr "crwdns150694:0crwdne150694:0"
|
|
||||||
|
|
||||||
#: lms/templates/onboarding_header.html:6
|
#: lms/templates/onboarding_header.html:6
|
||||||
msgid "Skip"
|
msgid "Skip"
|
||||||
msgstr "crwdns150696:0crwdne150696:0"
|
msgstr "crwdns150696:0crwdne150696:0"
|
||||||
@@ -5143,7 +5087,7 @@ msgstr "crwdns150770:0crwdne150770:0"
|
|||||||
msgid "Sunday"
|
msgid "Sunday"
|
||||||
msgstr "crwdns150772:0crwdne150772:0"
|
msgstr "crwdns150772:0crwdne150772:0"
|
||||||
|
|
||||||
#: lms/lms/api.py:1012
|
#: lms/lms/api.py:1018
|
||||||
msgid "Suspicious pattern found in {0}: {1}"
|
msgid "Suspicious pattern found in {0}: {1}"
|
||||||
msgstr "crwdns151930:0{0}crwdnd151930:0{1}crwdne151930:0"
|
msgstr "crwdns151930:0{0}crwdnd151930:0{1}crwdne151930:0"
|
||||||
|
|
||||||
@@ -5224,11 +5168,11 @@ msgstr "crwdns150780:0crwdne150780:0"
|
|||||||
msgid "Template"
|
msgid "Template"
|
||||||
msgstr "crwdns150782:0crwdne150782:0"
|
msgstr "crwdns150782:0crwdne150782:0"
|
||||||
|
|
||||||
#: lms/overrides/user.py:205
|
#: lms/lms/user.py:40
|
||||||
msgid "Temporarily Disabled"
|
msgid "Temporarily Disabled"
|
||||||
msgstr "crwdns150784:0crwdne150784:0"
|
msgstr "crwdns150784:0crwdne150784:0"
|
||||||
|
|
||||||
#: lms/lms/utils.py:435
|
#: lms/lms/utils.py:436
|
||||||
msgid "Terms of Use"
|
msgid "Terms of Use"
|
||||||
msgstr "crwdns150786:0crwdne150786:0"
|
msgstr "crwdns150786:0crwdne150786:0"
|
||||||
|
|
||||||
@@ -5264,7 +5208,7 @@ msgstr "crwdns152290:0crwdne152290:0"
|
|||||||
msgid "Thanks and Regards"
|
msgid "Thanks and Regards"
|
||||||
msgstr "crwdns150794:0crwdne150794:0"
|
msgstr "crwdns150794:0crwdne150794:0"
|
||||||
|
|
||||||
#: lms/lms/utils.py:1801
|
#: lms/lms/utils.py:1930
|
||||||
msgid "The batch is full. Please contact the Administrator."
|
msgid "The batch is full. Please contact the Administrator."
|
||||||
msgstr "crwdns152138:0crwdne152138:0"
|
msgstr "crwdns152138:0crwdne152138:0"
|
||||||
|
|
||||||
@@ -5300,9 +5244,9 @@ msgstr "crwdns152292:0crwdne152292:0"
|
|||||||
msgid "There are no chapters in this course. Create and manage chapters from here."
|
msgid "There are no chapters in this course. Create and manage chapters from here."
|
||||||
msgstr "crwdns150806:0crwdne150806:0"
|
msgstr "crwdns150806:0crwdne150806:0"
|
||||||
|
|
||||||
#: frontend/src/pages/Courses.vue:155
|
#: frontend/src/pages/Courses.vue:83
|
||||||
msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
|
msgid "There are no courses matching the criteria. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||||
msgstr "crwdns151496:0crwdne151496:0"
|
msgstr "crwdns154207:0crwdne154207:0"
|
||||||
|
|
||||||
#: frontend/src/pages/CertifiedParticipants.vue:92
|
#: frontend/src/pages/CertifiedParticipants.vue:92
|
||||||
msgid "There are no participants matching this criteria."
|
msgid "There are no participants matching this criteria."
|
||||||
@@ -5359,7 +5303,7 @@ msgstr "crwdns152144:0crwdne152144:0"
|
|||||||
msgid "This course has:"
|
msgid "This course has:"
|
||||||
msgstr "crwdns150820:0crwdne150820:0"
|
msgstr "crwdns150820:0crwdne150820:0"
|
||||||
|
|
||||||
#: lms/lms/utils.py:1644
|
#: lms/lms/utils.py:1773
|
||||||
msgid "This course is free."
|
msgid "This course is free."
|
||||||
msgstr "crwdns150822:0crwdne150822:0"
|
msgstr "crwdns150822:0crwdne150822:0"
|
||||||
|
|
||||||
@@ -5427,7 +5371,7 @@ msgstr "crwdns150844:0crwdne150844:0"
|
|||||||
#. Label of the timezone (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 Certificate Request'
|
#. Label of the timezone (Data) field in DocType 'LMS Certificate Request'
|
||||||
#. Label of the timezone (Data) field in DocType 'LMS Live Class'
|
#. Label of the timezone (Data) field in DocType 'LMS Live Class'
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:46
|
#: frontend/src/components/Modals/LiveClassModal.vue:45
|
||||||
#: frontend/src/pages/BatchForm.vue:120
|
#: frontend/src/pages/BatchForm.vue:120
|
||||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||||
@@ -5501,7 +5445,7 @@ msgstr "crwdns150852:0crwdne150852:0"
|
|||||||
msgid "To Date"
|
msgid "To Date"
|
||||||
msgstr "crwdns150854:0crwdne150854:0"
|
msgstr "crwdns150854:0crwdne150854:0"
|
||||||
|
|
||||||
#: lms/lms/utils.py:1655
|
#: lms/lms/utils.py:1784
|
||||||
msgid "To join this batch, please contact the Administrator."
|
msgid "To join this batch, please contact the Administrator."
|
||||||
msgstr "crwdns150858:0crwdne150858:0"
|
msgstr "crwdns150858:0crwdne150858:0"
|
||||||
|
|
||||||
@@ -5509,7 +5453,7 @@ msgstr "crwdns150858:0crwdne150858:0"
|
|||||||
msgid "To upload Image, Video, Audio or PDF from your system, click on the add icon and select upload from the menu. Then choose the file you want to add to the lesson and it gets added to your lesson."
|
msgid "To upload Image, Video, Audio or PDF from your system, click on the add icon and select upload from the menu. Then choose the file you want to add to the lesson and it gets added to your lesson."
|
||||||
msgstr "crwdns150860:0crwdne150860:0"
|
msgstr "crwdns150860:0crwdne150860:0"
|
||||||
|
|
||||||
#: lms/overrides/user.py:206
|
#: lms/lms/user.py:41
|
||||||
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
|
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
|
||||||
msgstr "crwdns150862:0crwdne150862:0"
|
msgstr "crwdns150862:0crwdne150862:0"
|
||||||
|
|
||||||
@@ -5626,7 +5570,8 @@ msgstr "crwdns150898:0crwdne150898:0"
|
|||||||
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request'
|
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request'
|
||||||
#. Label of the upcoming (Check) field in DocType 'LMS Course'
|
#. Label of the upcoming (Check) field in DocType 'LMS Course'
|
||||||
#: frontend/src/pages/Batches.vue:276 frontend/src/pages/Batches.vue:294
|
#: frontend/src/pages/Batches.vue:276 frontend/src/pages/Batches.vue:294
|
||||||
#: frontend/src/pages/CourseForm.vue:184 lms/lms/doctype/cohort/cohort.json
|
#: frontend/src/pages/CourseForm.vue:184 frontend/src/pages/Courses.vue:282
|
||||||
|
#: frontend/src/pages/Courses.vue:301 lms/lms/doctype/cohort/cohort.json
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||||
#: lms/lms/doctype/lms_course/lms_course.json
|
#: lms/lms/doctype/lms_course/lms_course.json
|
||||||
msgid "Upcoming"
|
msgid "Upcoming"
|
||||||
@@ -5727,14 +5672,6 @@ msgstr "crwdns152298:0crwdne152298:0"
|
|||||||
msgid "Value Change"
|
msgid "Value Change"
|
||||||
msgstr "crwdns150934:0crwdne150934:0"
|
msgstr "crwdns150934:0crwdne150934:0"
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:26
|
|
||||||
msgid "Verification Code"
|
|
||||||
msgstr "crwdns152519:0crwdne152519:0"
|
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:9
|
|
||||||
msgid "Verify"
|
|
||||||
msgstr "crwdns152521:0crwdne152521:0"
|
|
||||||
|
|
||||||
#. Label of the video_link (Data) field in DocType 'LMS Course'
|
#. Label of the video_link (Data) field in DocType 'LMS Course'
|
||||||
#: lms/lms/doctype/lms_course/lms_course.json
|
#: lms/lms/doctype/lms_course/lms_course.json
|
||||||
msgid "Video Embed Link"
|
msgid "Video Embed Link"
|
||||||
@@ -5776,10 +5713,6 @@ msgstr "crwdns150950:0crwdne150950:0"
|
|||||||
msgid "We have a limited number of seats, and they won't be available for long!"
|
msgid "We have a limited number of seats, and they won't be available for long!"
|
||||||
msgstr "crwdns152452:0crwdne152452:0"
|
msgstr "crwdns152452:0crwdne152452:0"
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:21
|
|
||||||
msgid "We have sent the verificaton code to your email id "
|
|
||||||
msgstr "crwdns152523:0crwdne152523:0"
|
|
||||||
|
|
||||||
#: lms/templates/emails/payment_reminder.html:4
|
#: lms/templates/emails/payment_reminder.html:4
|
||||||
msgid "We noticed that you started enrolling in the"
|
msgid "We noticed that you started enrolling in the"
|
||||||
msgstr "crwdns152454:0crwdne152454:0"
|
msgstr "crwdns152454:0crwdne152454:0"
|
||||||
@@ -5855,7 +5788,7 @@ msgstr "crwdns150974:0crwdne150974:0"
|
|||||||
msgid "Write your answer here"
|
msgid "Write your answer here"
|
||||||
msgstr "crwdns150976:0crwdne150976:0"
|
msgstr "crwdns150976:0crwdne150976:0"
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:95
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:96
|
||||||
msgid "You already have an evaluation on {0} at {1} for the course {2}."
|
msgid "You already have an evaluation on {0} at {1} for the course {2}."
|
||||||
msgstr "crwdns150978:0{0}crwdnd150978:0{1}crwdnd150978:0{2}crwdne150978:0"
|
msgstr "crwdns150978:0{0}crwdnd150978:0{1}crwdnd150978:0{2}crwdne150978:0"
|
||||||
|
|
||||||
@@ -5863,11 +5796,11 @@ msgstr "crwdns150978:0{0}crwdnd150978:0{1}crwdnd150978:0{2}crwdne150978:0"
|
|||||||
msgid "You are already certified for this course. Click on the card below to open your certificate."
|
msgid "You are already certified for this course. Click on the card below to open your certificate."
|
||||||
msgstr "crwdns152621:0crwdne152621:0"
|
msgstr "crwdns152621:0crwdne152621:0"
|
||||||
|
|
||||||
#: lms/lms/api.py:224
|
#: lms/lms/api.py:230
|
||||||
msgid "You are already enrolled for this batch."
|
msgid "You are already enrolled for this batch."
|
||||||
msgstr "crwdns150980:0crwdne150980:0"
|
msgstr "crwdns150980:0crwdne150980:0"
|
||||||
|
|
||||||
#: lms/lms/api.py:216
|
#: lms/lms/api.py:222
|
||||||
msgid "You are already enrolled for this course."
|
msgid "You are already enrolled for this course."
|
||||||
msgstr "crwdns150982:0crwdne150982:0"
|
msgstr "crwdns150982:0crwdne150982:0"
|
||||||
|
|
||||||
@@ -5887,10 +5820,6 @@ msgstr "crwdns151658:0crwdne151658:0"
|
|||||||
msgid "You are not enrolled in this course. Please enroll to access this lesson."
|
msgid "You are not enrolled in this course. Please enroll to access this lesson."
|
||||||
msgstr "crwdns151660:0crwdne151660:0"
|
msgstr "crwdns151660:0crwdne151660:0"
|
||||||
|
|
||||||
#: frontend/src/pages/Courses.vue:139
|
|
||||||
msgid "You can add chapters and lessons to it."
|
|
||||||
msgstr "crwdns151502:0crwdne151502:0"
|
|
||||||
|
|
||||||
#: lms/templates/emails/lms_course_interest.html:13
|
#: lms/templates/emails/lms_course_interest.html:13
|
||||||
#: lms/templates/emails/lms_invite_request_approved.html:11
|
#: lms/templates/emails/lms_invite_request_approved.html:11
|
||||||
msgid "You can also copy-paste following link in your browser"
|
msgid "You can also copy-paste following link in your browser"
|
||||||
@@ -5908,11 +5837,11 @@ msgstr "crwdns150992:0{0}crwdne150992:0"
|
|||||||
msgid "You can find their resume attached to this email."
|
msgid "You can find their resume attached to this email."
|
||||||
msgstr "crwdns150994:0crwdne150994:0"
|
msgstr "crwdns150994:0crwdne150994:0"
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:115
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:116
|
||||||
msgid "You cannot schedule evaluations after {0}."
|
msgid "You cannot schedule evaluations after {0}."
|
||||||
msgstr "crwdns150996:0{0}crwdne150996:0"
|
msgstr "crwdns150996:0{0}crwdne150996:0"
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:104
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:105
|
||||||
msgid "You cannot schedule evaluations for past slots."
|
msgid "You cannot schedule evaluations for past slots."
|
||||||
msgstr "crwdns150998:0crwdne150998:0"
|
msgstr "crwdns150998:0crwdne150998:0"
|
||||||
|
|
||||||
@@ -5945,7 +5874,7 @@ msgstr "crwdns151008:0crwdne151008:0"
|
|||||||
msgid "You have already exceeded the maximum number of attempts allowed for this quiz."
|
msgid "You have already exceeded the maximum number of attempts allowed for this quiz."
|
||||||
msgstr "crwdns151010:0crwdne151010:0"
|
msgstr "crwdns151010:0crwdne151010:0"
|
||||||
|
|
||||||
#: lms/lms/api.py:237
|
#: lms/lms/api.py:243
|
||||||
msgid "You have already purchased the certificate for this course."
|
msgid "You have already purchased the certificate for this course."
|
||||||
msgstr "crwdns152623:0crwdne152623:0"
|
msgstr "crwdns152623:0crwdne152623:0"
|
||||||
|
|
||||||
@@ -5985,10 +5914,6 @@ msgstr "crwdns151018:0crwdne151018:0"
|
|||||||
msgid "You need to login first to enroll for this course"
|
msgid "You need to login first to enroll for this course"
|
||||||
msgstr "crwdns151022:0crwdne151022:0"
|
msgstr "crwdns151022:0crwdne151022:0"
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:71
|
|
||||||
msgid "You will be redirected to Frappe Cloud soon."
|
|
||||||
msgstr "crwdns152529:0crwdne152529:0"
|
|
||||||
|
|
||||||
#: frontend/src/components/Quiz.vue:27 lms/templates/quiz/quiz.html:11
|
#: frontend/src/components/Quiz.vue:27 lms/templates/quiz/quiz.html:11
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "You will have to get {0}% correct answers in order to pass the quiz."
|
msgid "You will have to get {0}% correct answers in order to pass the quiz."
|
||||||
@@ -6026,7 +5951,7 @@ msgstr "crwdns151036:0crwdne151036:0"
|
|||||||
msgid "Your evaluation for the course {0} has been scheduled on {1} at {2} {3}."
|
msgid "Your evaluation for the course {0} has been scheduled on {1} at {2} {3}."
|
||||||
msgstr "crwdns151038:0{0}crwdnd151038:0{1}crwdnd151038:0{2}crwdnd151038:0{3}crwdne151038:0"
|
msgstr "crwdns151038:0{0}crwdnd151038:0{1}crwdnd151038:0{2}crwdnd151038:0{3}crwdne151038:0"
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:125
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:126
|
||||||
msgid "Your evaluation slot has been booked"
|
msgid "Your evaluation slot has been booked"
|
||||||
msgstr "crwdns151040:0crwdne151040:0"
|
msgstr "crwdns151040:0crwdne151040:0"
|
||||||
|
|
||||||
@@ -6127,7 +6052,7 @@ msgstr "crwdns152184:0crwdne152184:0"
|
|||||||
msgid "you can"
|
msgid "you can"
|
||||||
msgstr "crwdns151076:0crwdne151076:0"
|
msgstr "crwdns151076:0crwdne151076:0"
|
||||||
|
|
||||||
#: lms/lms/api.py:802 lms/lms/api.py:810
|
#: lms/lms/api.py:808 lms/lms/api.py:816
|
||||||
msgid "{0} Settings not found"
|
msgid "{0} Settings not found"
|
||||||
msgstr "crwdns151078:0{0}crwdne151078:0"
|
msgstr "crwdns151078:0{0}crwdne151078:0"
|
||||||
|
|
||||||
@@ -6167,7 +6092,7 @@ msgstr "crwdns151092:0{0}crwdnd151092:0{1}crwdne151092:0"
|
|||||||
msgid "{0} is your evaluator"
|
msgid "{0} is your evaluator"
|
||||||
msgstr "crwdns151094:0{0}crwdne151094:0"
|
msgstr "crwdns151094:0{0}crwdne151094:0"
|
||||||
|
|
||||||
#: lms/lms/utils.py:681
|
#: lms/lms/utils.py:682
|
||||||
msgid "{0} mentioned you in a comment"
|
msgid "{0} mentioned you in a comment"
|
||||||
msgstr "crwdns151096:0{0}crwdne151096:0"
|
msgstr "crwdns151096:0{0}crwdne151096:0"
|
||||||
|
|
||||||
@@ -6175,11 +6100,11 @@ msgstr "crwdns151096:0{0}crwdne151096:0"
|
|||||||
msgid "{0} mentioned you in a comment in your batch."
|
msgid "{0} mentioned you in a comment in your batch."
|
||||||
msgstr "crwdns151098:0{0}crwdne151098:0"
|
msgstr "crwdns151098:0{0}crwdne151098:0"
|
||||||
|
|
||||||
#: lms/lms/utils.py:634 lms/lms/utils.py:640
|
#: lms/lms/utils.py:635 lms/lms/utils.py:641
|
||||||
msgid "{0} mentioned you in a comment in {1}"
|
msgid "{0} mentioned you in a comment in {1}"
|
||||||
msgstr "crwdns151100:0{0}crwdnd151100:0{1}crwdne151100:0"
|
msgstr "crwdns151100:0{0}crwdnd151100:0{1}crwdne151100:0"
|
||||||
|
|
||||||
#: lms/lms/utils.py:457
|
#: lms/lms/utils.py:458
|
||||||
msgid "{0}k"
|
msgid "{0}k"
|
||||||
msgstr "crwdns151102:0{0}crwdne151102:0"
|
msgstr "crwdns151102:0{0}crwdne151102:0"
|
||||||
|
|
||||||
|
|||||||
247
lms/locale/es.po
247
lms/locale/es.po
@@ -2,8 +2,8 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: frappe\n"
|
"Project-Id-Version: frappe\n"
|
||||||
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
|
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
|
||||||
"POT-Creation-Date: 2025-02-28 16:04+0000\n"
|
"POT-Creation-Date: 2025-03-07 16:04+0000\n"
|
||||||
"PO-Revision-Date: 2025-03-03 21:29\n"
|
"PO-Revision-Date: 2025-03-10 22:46\n"
|
||||||
"Last-Translator: jannat@frappe.io\n"
|
"Last-Translator: jannat@frappe.io\n"
|
||||||
"Language-Team: Spanish\n"
|
"Language-Team: Spanish\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -228,7 +228,7 @@ msgstr ""
|
|||||||
msgid "All Certified Participants"
|
msgid "All Certified Participants"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/widgets/BreadCrumb.html:3
|
#: frontend/src/pages/Courses.vue:26 lms/lms/widgets/BreadCrumb.html:3
|
||||||
msgid "All Courses"
|
msgid "All Courses"
|
||||||
msgstr "Todos los Cursos"
|
msgstr "Todos los Cursos"
|
||||||
|
|
||||||
@@ -268,7 +268,7 @@ msgstr "Permitir acceder a fechas futuras"
|
|||||||
msgid "Allow self enrollment"
|
msgid "Allow self enrollment"
|
||||||
msgstr "Permitir autoinscripción"
|
msgstr "Permitir autoinscripción"
|
||||||
|
|
||||||
#: lms/overrides/user.py:199
|
#: lms/lms/user.py:34
|
||||||
msgid "Already Registered"
|
msgid "Already Registered"
|
||||||
msgstr "Ya está Registrado"
|
msgstr "Ya está Registrado"
|
||||||
|
|
||||||
@@ -378,7 +378,7 @@ msgstr "Archivado"
|
|||||||
msgid "Are you sure you want to cancel this evaluation? This action cannot be undone."
|
msgid "Are you sure you want to cancel this evaluation? This action cannot be undone."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/UserDropdown.vue:209
|
#: frontend/src/components/UserDropdown.vue:169
|
||||||
msgid "Are you sure you want to login to your Frappe Cloud dashboard?"
|
msgid "Are you sure you want to login to your Frappe Cloud dashboard?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -492,12 +492,12 @@ msgid "Auto Assign"
|
|||||||
msgstr "Autoasignar"
|
msgstr "Autoasignar"
|
||||||
|
|
||||||
#. Label of the auto_recording (Select) field in DocType 'LMS Live Class'
|
#. Label of the auto_recording (Select) field in DocType 'LMS Live Class'
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:71
|
#: frontend/src/components/Modals/LiveClassModal.vue:77
|
||||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||||
msgid "Auto Recording"
|
msgid "Auto Recording"
|
||||||
msgstr "Grabación Automática"
|
msgstr "Grabación Automática"
|
||||||
|
|
||||||
#: frontend/src/components/CourseCard.vue:50
|
#: frontend/src/components/CourseCard.vue:51
|
||||||
#: frontend/src/pages/CourseDetail.vue:20
|
#: frontend/src/pages/CourseDetail.vue:20
|
||||||
msgid "Average Rating"
|
msgid "Average Rating"
|
||||||
msgstr "Puntuación media"
|
msgstr "Puntuación media"
|
||||||
@@ -739,7 +739,7 @@ msgstr "Ropa casual"
|
|||||||
#. Label of the category (Link) field in DocType 'LMS Course'
|
#. Label of the category (Link) field in DocType 'LMS Course'
|
||||||
#: frontend/src/pages/BatchForm.vue:190 frontend/src/pages/Batches.vue:55
|
#: frontend/src/pages/BatchForm.vue:190 frontend/src/pages/Batches.vue:55
|
||||||
#: frontend/src/pages/CertifiedParticipants.vue:37
|
#: frontend/src/pages/CertifiedParticipants.vue:37
|
||||||
#: frontend/src/pages/CourseForm.vue:147 frontend/src/pages/Courses.vue:17
|
#: frontend/src/pages/CourseForm.vue:147 frontend/src/pages/Courses.vue:55
|
||||||
#: frontend/src/pages/JobDetail.vue:96 lms/lms/doctype/lms_batch/lms_batch.json
|
#: frontend/src/pages/JobDetail.vue:96 lms/lms/doctype/lms_batch/lms_batch.json
|
||||||
#: lms/lms/doctype/lms_category/lms_category.json
|
#: lms/lms/doctype/lms_category/lms_category.json
|
||||||
#: lms/lms/doctype/lms_course/lms_course.json
|
#: lms/lms/doctype/lms_course/lms_course.json
|
||||||
@@ -790,12 +790,12 @@ msgstr ""
|
|||||||
#. Enrollment'
|
#. Enrollment'
|
||||||
#. Label of a Card Break in the LMS Workspace
|
#. Label of a Card Break in the LMS Workspace
|
||||||
#. Label of a Link in the LMS Workspace
|
#. Label of a Link in the LMS Workspace
|
||||||
#: frontend/src/components/CourseCard.vue:110
|
#: frontend/src/components/CourseCard.vue:111
|
||||||
#: frontend/src/components/Modals/Event.vue:371
|
#: frontend/src/components/Modals/Event.vue:371
|
||||||
#: frontend/src/pages/BatchForm.vue:37 frontend/src/pages/Batches.vue:38
|
#: frontend/src/pages/BatchForm.vue:37 frontend/src/pages/Batches.vue:38
|
||||||
#: frontend/src/pages/CourseCertification.vue:10
|
#: frontend/src/pages/CourseCertification.vue:10
|
||||||
#: frontend/src/pages/CourseCertification.vue:114
|
#: frontend/src/pages/CourseCertification.vue:114
|
||||||
#: lms/fixtures/custom_field.json
|
#: frontend/src/pages/Courses.vue:38 lms/fixtures/custom_field.json
|
||||||
#: lms/lms/doctype/certification/certification.json
|
#: lms/lms/doctype/certification/certification.json
|
||||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
||||||
@@ -912,10 +912,6 @@ msgstr "Quitar"
|
|||||||
msgid "Clearly Defined Role"
|
msgid "Clearly Defined Role"
|
||||||
msgstr "Rol claramente definido"
|
msgstr "Rol claramente definido"
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:75
|
|
||||||
msgid "Click here to login"
|
|
||||||
msgstr "Haga clic aquí para iniciar sesión"
|
|
||||||
|
|
||||||
#: frontend/src/components/LessonHelp.vue:30
|
#: frontend/src/components/LessonHelp.vue:30
|
||||||
msgid "Click on the add icon in the editor and select Quiz from the menu. It opens up a dialog, where you can either select a quiz from the list or create a new quiz. When you select the Create New option it redirects you to the quiz creation page."
|
msgid "Click on the add icon in the editor and select Quiz from the menu. It opens up a dialog, where you can either select a quiz from the list or create a new quiz. When you select the Create New option it redirects you to the quiz creation page."
|
||||||
msgstr "Haga clic en el icono añadir en el editor y del menú seleccione Encuesta. Se abrirá un diálogo donde puede seleccionar un cuestionario de la lista o crear un nuevo cuestionario. Cuando selecciona la opción Crear Nuevo, le llevará a la página de creación de cuestionarios."
|
msgstr "Haga clic en el icono añadir en el editor y del menú seleccione Encuesta. Se abrirá un diálogo donde puede seleccionar un cuestionario de la lista o crear un nuevo cuestionario. Cuando selecciona la opción Crear Nuevo, le llevará a la página de creación de cuestionarios."
|
||||||
@@ -1084,7 +1080,7 @@ msgstr "Completar registro"
|
|||||||
msgid "Complete Your Enrollment"
|
msgid "Complete Your Enrollment"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_payment/lms_payment.py:40
|
#: lms/lms/doctype/lms_payment/lms_payment.py:55
|
||||||
msgid "Complete Your Enrollment - Don't miss out!"
|
msgid "Complete Your Enrollment - Don't miss out!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -1125,7 +1121,11 @@ msgstr "La condición debe estar en formato JSON válido."
|
|||||||
msgid "Condition must be valid python code."
|
msgid "Condition must be valid python code."
|
||||||
msgstr "La condición debe ser un código Python válido."
|
msgstr "La condición debe ser un código Python válido."
|
||||||
|
|
||||||
#: frontend/src/components/UserDropdown.vue:214
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.js:7
|
||||||
|
msgid "Conduct Evaluation"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: frontend/src/components/UserDropdown.vue:174
|
||||||
msgid "Confirm"
|
msgid "Confirm"
|
||||||
msgstr "Confirmar"
|
msgstr "Confirmar"
|
||||||
|
|
||||||
@@ -1166,7 +1166,7 @@ msgstr "Continuar aprendiendo"
|
|||||||
msgid "Contract"
|
msgid "Contract"
|
||||||
msgstr "Contrato"
|
msgstr "Contrato"
|
||||||
|
|
||||||
#: lms/lms/utils.py:437
|
#: lms/lms/utils.py:438
|
||||||
msgid "Cookie Policy"
|
msgid "Cookie Policy"
|
||||||
msgstr "Política de cookies"
|
msgstr "Política de cookies"
|
||||||
|
|
||||||
@@ -1382,7 +1382,7 @@ msgstr "El curso {0} ya se ha agregado a este lote."
|
|||||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:79
|
#: frontend/src/components/Modals/BatchStudentProgress.vue:79
|
||||||
#: frontend/src/pages/BatchDetail.vue:21 frontend/src/pages/BatchDetail.vue:70
|
#: frontend/src/pages/BatchDetail.vue:21 frontend/src/pages/BatchDetail.vue:70
|
||||||
#: frontend/src/pages/CourseCertification.vue:106
|
#: frontend/src/pages/CourseCertification.vue:106
|
||||||
#: frontend/src/pages/Courses.vue:8 frontend/src/pages/Statistics.vue:21
|
#: frontend/src/pages/Courses.vue:314 frontend/src/pages/Statistics.vue:21
|
||||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||||
msgid "Courses"
|
msgid "Courses"
|
||||||
@@ -1393,10 +1393,6 @@ msgstr "Cursos"
|
|||||||
msgid "Courses Completed"
|
msgid "Courses Completed"
|
||||||
msgstr "Cursos completados"
|
msgstr "Cursos completados"
|
||||||
|
|
||||||
#: lms/lms/web_template/courses_mentored/courses_mentored.html:4
|
|
||||||
msgid "Courses Mentored"
|
|
||||||
msgstr "Cursos Mentorados"
|
|
||||||
|
|
||||||
#: frontend/src/components/BatchCourses.vue:151
|
#: frontend/src/components/BatchCourses.vue:151
|
||||||
msgid "Courses deleted successfully"
|
msgid "Courses deleted successfully"
|
||||||
msgstr "Cursos eliminados correctamente"
|
msgstr "Cursos eliminados correctamente"
|
||||||
@@ -1412,14 +1408,10 @@ msgid "Create"
|
|||||||
msgstr "Crear"
|
msgstr "Crear"
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.js:7
|
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.js:7
|
||||||
msgid "Create LMS Certificate"
|
msgid "Create Certificate"
|
||||||
msgstr "Crear certificado LMS"
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.js:8
|
#: lms/templates/onboarding_header.html:19
|
||||||
msgid "Create LMS Certificate Evaluation"
|
|
||||||
msgstr "Crear evaluación de certificados LMS"
|
|
||||||
|
|
||||||
#: frontend/src/pages/Courses.vue:136 lms/templates/onboarding_header.html:19
|
|
||||||
msgid "Create a Course"
|
msgid "Create a Course"
|
||||||
msgstr "Crear un curso"
|
msgstr "Crear un curso"
|
||||||
|
|
||||||
@@ -1435,7 +1427,8 @@ msgstr ""
|
|||||||
msgid "Create a new question"
|
msgid "Create a new question"
|
||||||
msgstr "Crear una nueva pregunta"
|
msgstr "Crear una nueva pregunta"
|
||||||
|
|
||||||
#: frontend/src/pages/Assignments.vue:163
|
#: frontend/src/pages/Assignments.vue:163 frontend/src/pages/Courses.vue:287
|
||||||
|
#: frontend/src/pages/Courses.vue:307
|
||||||
msgid "Created"
|
msgid "Created"
|
||||||
msgstr "Creado"
|
msgstr "Creado"
|
||||||
|
|
||||||
@@ -1488,7 +1481,7 @@ msgstr "Tablero"
|
|||||||
#. Label of the date (Date) field in DocType 'Scheduled Flow'
|
#. Label of the date (Date) field in DocType 'Scheduled Flow'
|
||||||
#: frontend/src/components/Modals/EvaluationModal.vue:26
|
#: frontend/src/components/Modals/EvaluationModal.vue:26
|
||||||
#: frontend/src/components/Modals/Event.vue:40
|
#: frontend/src/components/Modals/Event.vue:40
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:55
|
#: frontend/src/components/Modals/LiveClassModal.vue:61
|
||||||
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
|
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
|
||||||
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
|
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||||
@@ -1587,7 +1580,7 @@ msgstr ""
|
|||||||
#. Label of the description (Small Text) field in DocType 'LMS Exercise'
|
#. 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 (Text) field in DocType 'LMS Live Class'
|
||||||
#. Label of the description (Small Text) field in DocType 'Work Experience'
|
#. Label of the description (Small Text) field in DocType 'Work Experience'
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:78
|
#: frontend/src/components/Modals/LiveClassModal.vue:84
|
||||||
#: frontend/src/pages/BatchForm.vue:224 frontend/src/pages/JobCreation.vue:50
|
#: frontend/src/pages/BatchForm.vue:224 frontend/src/pages/JobCreation.vue:50
|
||||||
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
||||||
#: lms/lms/doctype/certification/certification.json
|
#: lms/lms/doctype/certification/certification.json
|
||||||
@@ -1614,10 +1607,6 @@ msgstr "Escritorio"
|
|||||||
msgid "Details"
|
msgid "Details"
|
||||||
msgstr "Detalles"
|
msgstr "Detalles"
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:30
|
|
||||||
msgid "Didn't receive the code?"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: frontend/src/pages/CourseForm.vue:194
|
#: frontend/src/pages/CourseForm.vue:194
|
||||||
msgid "Disable Self Enrollment"
|
msgid "Disable Self Enrollment"
|
||||||
msgstr "Deshabilitar la autoinscripción"
|
msgstr "Deshabilitar la autoinscripción"
|
||||||
@@ -1668,7 +1657,7 @@ msgstr "Se encontraron opciones duplicadas para esta pregunta."
|
|||||||
#. Label of the duration (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 (Data) field in DocType 'LMS Batch Timetable'
|
||||||
#. Label of the duration (Int) field in DocType 'LMS Live Class'
|
#. Label of the duration (Int) field in DocType 'LMS Live Class'
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:62
|
#: frontend/src/components/Modals/LiveClassModal.vue:68
|
||||||
#: lms/lms/doctype/cohort/cohort.json
|
#: lms/lms/doctype/cohort/cohort.json
|
||||||
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
|
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
|
||||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||||
@@ -1680,7 +1669,7 @@ msgstr "Duración"
|
|||||||
msgid "Duration (in minutes)"
|
msgid "Duration (in minutes)"
|
||||||
msgstr "Duración (en minutos)"
|
msgstr "Duración (en minutos)"
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:58
|
#: frontend/src/components/Modals/LiveClassModal.vue:64
|
||||||
msgid "Duration of the live class in minutes"
|
msgid "Duration of the live class in minutes"
|
||||||
msgstr "Duración de la clase en vivo en minutos"
|
msgstr "Duración de la clase en vivo en minutos"
|
||||||
|
|
||||||
@@ -1826,11 +1815,12 @@ msgstr "Hora de finalización"
|
|||||||
msgid "Enroll Now"
|
msgid "Enroll Now"
|
||||||
msgstr "Inscribirse ahora"
|
msgstr "Inscribirse ahora"
|
||||||
|
|
||||||
#: frontend/src/pages/Batches.vue:292
|
#: frontend/src/pages/Batches.vue:292 frontend/src/pages/Courses.vue:285
|
||||||
|
#: frontend/src/pages/Courses.vue:305
|
||||||
msgid "Enrolled"
|
msgid "Enrolled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/CourseCard.vue:41
|
#: frontend/src/components/CourseCard.vue:42
|
||||||
#: frontend/src/components/CourseCardOverlay.vue:106
|
#: frontend/src/components/CourseCardOverlay.vue:106
|
||||||
#: frontend/src/pages/CourseDetail.vue:33
|
#: frontend/src/pages/CourseDetail.vue:33
|
||||||
msgid "Enrolled Students"
|
msgid "Enrolled Students"
|
||||||
@@ -1849,11 +1839,11 @@ msgstr ""
|
|||||||
msgid "Enrollment Count"
|
msgid "Enrollment Count"
|
||||||
msgstr "Recuento de inscripciones"
|
msgstr "Recuento de inscripciones"
|
||||||
|
|
||||||
#: lms/lms/utils.py:1769
|
#: lms/lms/utils.py:1898
|
||||||
msgid "Enrollment Failed"
|
msgid "Enrollment Failed"
|
||||||
msgstr "Error al inscribirse"
|
msgstr "Error al inscribirse"
|
||||||
|
|
||||||
#. Label of the enrollments (Data) field in DocType 'LMS Course'
|
#. Label of the enrollments (Int) field in DocType 'LMS Course'
|
||||||
#. Label of a chart in the LMS Workspace
|
#. Label of a chart in the LMS Workspace
|
||||||
#. Label of a shortcut in the LMS Workspace
|
#. Label of a shortcut in the LMS Workspace
|
||||||
#: frontend/src/pages/Statistics.vue:51
|
#: frontend/src/pages/Statistics.vue:51
|
||||||
@@ -2057,14 +2047,6 @@ msgstr "Explorar más"
|
|||||||
msgid "Fail"
|
msgid "Fail"
|
||||||
msgstr "Falla"
|
msgstr "Falla"
|
||||||
|
|
||||||
#: frontend/src/components/UserDropdown.vue:243
|
|
||||||
msgid "Failed to login to Frappe Cloud"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:91
|
|
||||||
msgid "Failed to resend code"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. Label of the featured (Check) field in DocType 'LMS Course'
|
#. Label of the featured (Check) field in DocType 'LMS Course'
|
||||||
#: frontend/src/components/CourseCard.vue:16
|
#: frontend/src/components/CourseCard.vue:16
|
||||||
#: frontend/src/pages/CourseForm.vue:189
|
#: frontend/src/pages/CourseForm.vue:189
|
||||||
@@ -2125,10 +2107,6 @@ msgstr "Formulario para crear y editar cuestionarios"
|
|||||||
msgid "Formal Wear"
|
msgid "Formal Wear"
|
||||||
msgstr "Ropa formal"
|
msgstr "Ropa formal"
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:70
|
|
||||||
msgid "Frappe Cloud Login Successful"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lms/lms/widgets/CourseCard.html:114
|
#: lms/lms/widgets/CourseCard.html:114
|
||||||
msgid "Free"
|
msgid "Free"
|
||||||
msgstr "Gratis"
|
msgstr "Gratis"
|
||||||
@@ -2212,7 +2190,7 @@ msgstr "General"
|
|||||||
msgid "Generate Certificates"
|
msgid "Generate Certificates"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.js:18
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.js:15
|
||||||
msgid "Generate Google Meet Link"
|
msgid "Generate Google Meet Link"
|
||||||
msgstr "Generar enlace de Google Meet"
|
msgstr "Generar enlace de Google Meet"
|
||||||
|
|
||||||
@@ -2382,10 +2360,6 @@ msgstr ""
|
|||||||
msgid "If you have any questions or require assistance, feel free to contact us."
|
msgid "If you have any questions or require assistance, feel free to contact us."
|
||||||
msgstr "Si tiene alguna pregunta o necesita ayuda, no dude en ponerse en contacto con nosotros."
|
msgstr "Si tiene alguna pregunta o necesita ayuda, no dude en ponerse en contacto con nosotros."
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:71
|
|
||||||
msgid "If you haven't been redirected,"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. Description of the 'Amount (USD)' (Currency) field in DocType 'LMS Batch'
|
#. Description of the 'Amount (USD)' (Currency) field in DocType 'LMS Batch'
|
||||||
#. Description of the 'Amount (USD)' (Currency) field in DocType 'LMS Course'
|
#. Description of the 'Amount (USD)' (Currency) field in DocType 'LMS Course'
|
||||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||||
@@ -2969,8 +2943,8 @@ msgstr "Título de la lección"
|
|||||||
|
|
||||||
#. Label of the lessons (Table) field in DocType 'Course Chapter'
|
#. Label of the lessons (Table) field in DocType 'Course Chapter'
|
||||||
#. Group in Course Chapter's connections
|
#. Group in Course Chapter's connections
|
||||||
#. Label of the lessons (Data) field in DocType 'LMS Course'
|
#. Label of the lessons (Int) field in DocType 'LMS Course'
|
||||||
#: frontend/src/components/CourseCard.vue:32
|
#: frontend/src/components/CourseCard.vue:33
|
||||||
#: frontend/src/components/CourseCardOverlay.vue:99
|
#: frontend/src/components/CourseCardOverlay.vue:99
|
||||||
#: lms/lms/doctype/course_chapter/course_chapter.json
|
#: lms/lms/doctype/course_chapter/course_chapter.json
|
||||||
#: lms/lms/doctype/lms_course/lms_course.json
|
#: lms/lms/doctype/lms_course/lms_course.json
|
||||||
@@ -3021,7 +2995,7 @@ msgid "List of quizzes"
|
|||||||
msgstr "Lista de cuestionarios"
|
msgstr "Lista de cuestionarios"
|
||||||
|
|
||||||
#. Option for the 'Status' (Select) field in DocType 'Cohort'
|
#. Option for the 'Status' (Select) field in DocType 'Cohort'
|
||||||
#: lms/lms/doctype/cohort/cohort.json
|
#: frontend/src/pages/Courses.vue:295 lms/lms/doctype/cohort/cohort.json
|
||||||
msgid "Live"
|
msgid "Live"
|
||||||
msgstr "En vivo"
|
msgstr "En vivo"
|
||||||
|
|
||||||
@@ -3039,6 +3013,7 @@ msgstr "URL LiveCode"
|
|||||||
#: frontend/src/components/Members.vue:108
|
#: frontend/src/components/Members.vue:108
|
||||||
#: frontend/src/pages/Assignments.vue:71 frontend/src/pages/Batches.vue:94
|
#: frontend/src/pages/Assignments.vue:71 frontend/src/pages/Batches.vue:94
|
||||||
#: frontend/src/pages/CertifiedParticipants.vue:79
|
#: frontend/src/pages/CertifiedParticipants.vue:79
|
||||||
|
#: frontend/src/pages/Courses.vue:94
|
||||||
#: frontend/src/pages/QuizSubmissionList.vue:39
|
#: frontend/src/pages/QuizSubmissionList.vue:39
|
||||||
#: frontend/src/pages/Quizzes.vue:51
|
#: frontend/src/pages/Quizzes.vue:51
|
||||||
msgid "Load More"
|
msgid "Load More"
|
||||||
@@ -3071,16 +3046,7 @@ msgstr "Preferencia de ubicación"
|
|||||||
msgid "Login"
|
msgid "Login"
|
||||||
msgstr "Iniciar sesión"
|
msgstr "Iniciar sesión"
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:79
|
#: frontend/src/components/UserDropdown.vue:168
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:83
|
|
||||||
msgid "Login failed"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:6
|
|
||||||
msgid "Login to Frappe Cloud"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: frontend/src/components/UserDropdown.vue:208
|
|
||||||
msgid "Login to Frappe Cloud?"
|
msgid "Login to Frappe Cloud?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -3396,11 +3362,11 @@ msgstr "Moderador"
|
|||||||
msgid "Modified By"
|
msgid "Modified By"
|
||||||
msgstr "Modificado por"
|
msgstr "Modificado por"
|
||||||
|
|
||||||
#: lms/lms/api.py:208
|
#: lms/lms/api.py:214
|
||||||
msgid "Module Name is incorrect or does not exist."
|
msgid "Module Name is incorrect or does not exist."
|
||||||
msgstr "El nombre del módulo es incorrecto o no existe."
|
msgstr "El nombre del módulo es incorrecto o no existe."
|
||||||
|
|
||||||
#: lms/lms/api.py:204
|
#: lms/lms/api.py:210
|
||||||
msgid "Module is incorrect."
|
msgid "Module is incorrect."
|
||||||
msgstr "Módulo incorrecto."
|
msgstr "Módulo incorrecto."
|
||||||
|
|
||||||
@@ -3430,7 +3396,8 @@ msgstr "Mi calendario"
|
|||||||
|
|
||||||
#. Option for the 'Event' (Select) field in DocType 'LMS Badge'
|
#. Option for the 'Event' (Select) field in DocType 'LMS Badge'
|
||||||
#: frontend/src/pages/Assignments.vue:18 frontend/src/pages/Batches.vue:17
|
#: frontend/src/pages/Assignments.vue:18 frontend/src/pages/Batches.vue:17
|
||||||
#: frontend/src/pages/Courses.vue:48 frontend/src/pages/Programs.vue:14
|
#: frontend/src/pages/Courses.vue:17 frontend/src/pages/Courses.vue:281
|
||||||
|
#: frontend/src/pages/Courses.vue:298 frontend/src/pages/Programs.vue:14
|
||||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||||
msgid "New"
|
msgid "New"
|
||||||
msgstr "Nuevo"
|
msgstr "Nuevo"
|
||||||
@@ -3484,11 +3451,11 @@ msgstr "Nuevo cuestionario"
|
|||||||
msgid "New Sign Up"
|
msgid "New Sign Up"
|
||||||
msgstr "Nueva inscripción"
|
msgstr "Nueva inscripción"
|
||||||
|
|
||||||
#: lms/lms/utils.py:604
|
#: lms/lms/utils.py:605
|
||||||
msgid "New comment in batch {0}"
|
msgid "New comment in batch {0}"
|
||||||
msgstr "Nuevo comentario en lote {0}"
|
msgstr "Nuevo comentario en lote {0}"
|
||||||
|
|
||||||
#: lms/lms/utils.py:597
|
#: lms/lms/utils.py:598
|
||||||
msgid "New reply on the topic {0} in course {1}"
|
msgid "New reply on the topic {0} in course {1}"
|
||||||
msgstr "Nueva respuesta sobre el tema {0} en curso {1}"
|
msgstr "Nueva respuesta sobre el tema {0} en curso {1}"
|
||||||
|
|
||||||
@@ -3546,7 +3513,7 @@ msgstr "No hay certificados"
|
|||||||
msgid "No courses created"
|
msgid "No courses created"
|
||||||
msgstr "No hay cursos creados"
|
msgstr "No hay cursos creados"
|
||||||
|
|
||||||
#: frontend/src/pages/Courses.vue:151
|
#: frontend/src/pages/Courses.vue:79
|
||||||
msgid "No courses found"
|
msgid "No courses found"
|
||||||
msgstr "No se encontraron cursos"
|
msgstr "No se encontraron cursos"
|
||||||
|
|
||||||
@@ -3598,15 +3565,11 @@ msgstr ""
|
|||||||
msgid "No {0}"
|
msgid "No {0}"
|
||||||
msgstr "No {0}"
|
msgstr "No {0}"
|
||||||
|
|
||||||
#: frontend/src/pages/Courses.vue:111
|
|
||||||
msgid "No {0} courses"
|
|
||||||
msgstr "Cursos {0} inexistentes"
|
|
||||||
|
|
||||||
#: lms/templates/quiz/quiz.html:147
|
#: lms/templates/quiz/quiz.html:147
|
||||||
msgid "No."
|
msgid "No."
|
||||||
msgstr "Nº"
|
msgstr "Nº"
|
||||||
|
|
||||||
#: lms/overrides/user.py:194
|
#: lms/lms/user.py:29
|
||||||
msgid "Not Allowed"
|
msgid "Not Allowed"
|
||||||
msgstr "No permitido"
|
msgstr "No permitido"
|
||||||
|
|
||||||
@@ -3695,7 +3658,7 @@ msgstr ""
|
|||||||
msgid "Only files of type {0} will be accepted."
|
msgid "Only files of type {0} will be accepted."
|
||||||
msgstr "Sólo se aceptarán archivos del tipo {0}."
|
msgstr "Sólo se aceptarán archivos del tipo {0}."
|
||||||
|
|
||||||
#: frontend/src/pages/CourseForm.vue:506 frontend/src/utils/index.js:533
|
#: frontend/src/pages/CourseForm.vue:506 frontend/src/utils/index.js:552
|
||||||
msgid "Only image file is allowed."
|
msgid "Only image file is allowed."
|
||||||
msgstr "Sólo se permiten archivos de imagen."
|
msgstr "Sólo se permiten archivos de imagen."
|
||||||
|
|
||||||
@@ -3726,10 +3689,6 @@ msgstr "Curso abierto"
|
|||||||
msgid "Open Ended"
|
msgid "Open Ended"
|
||||||
msgstr "Apertura finalizada"
|
msgstr "Apertura finalizada"
|
||||||
|
|
||||||
#: lms/lms/widgets/MemberCard.html:16
|
|
||||||
msgid "Open Network"
|
|
||||||
msgstr "Red abierta"
|
|
||||||
|
|
||||||
#. Label of the option (Data) field in DocType 'LMS Option'
|
#. Label of the option (Data) field in DocType 'LMS Option'
|
||||||
#: frontend/src/components/Modals/Question.vue:64
|
#: frontend/src/components/Modals/Question.vue:64
|
||||||
#: lms/lms/doctype/lms_option/lms_option.json
|
#: lms/lms/doctype/lms_option/lms_option.json
|
||||||
@@ -3981,11 +3940,11 @@ msgstr "Por favor, inicie sesión"
|
|||||||
msgid "Please add <a href='{0}'>{1}</a> for <a href='{2}'>{3}</a> to send calendar invites for evaluations."
|
msgid "Please add <a href='{0}'>{1}</a> for <a href='{2}'>{3}</a> to send calendar invites for evaluations."
|
||||||
msgstr "Agregue <a href='{0}'>{1}</a> para <a href='{2}'>{3}</a> para enviar invitaciones de calendario para evaluaciones."
|
msgstr "Agregue <a href='{0}'>{1}</a> para <a href='{2}'>{3}</a> para enviar invitaciones de calendario para evaluaciones."
|
||||||
|
|
||||||
#: lms/overrides/user.py:240
|
#: lms/lms/user.py:75
|
||||||
msgid "Please ask your administrator to verify your sign-up"
|
msgid "Please ask your administrator to verify your sign-up"
|
||||||
msgstr "Por favor, consulte a su administrador para verificar su registro"
|
msgstr "Por favor, consulte a su administrador para verificar su registro"
|
||||||
|
|
||||||
#: lms/overrides/user.py:238
|
#: lms/lms/user.py:73
|
||||||
msgid "Please check your email for verification"
|
msgid "Please check your email for verification"
|
||||||
msgstr "Por favor, consultar su correo electrónico para la verificación"
|
msgstr "Por favor, consultar su correo electrónico para la verificación"
|
||||||
|
|
||||||
@@ -3993,7 +3952,7 @@ msgstr "Por favor, consultar su correo electrónico para la verificación"
|
|||||||
msgid "Please click on the following button to set your new password"
|
msgid "Please click on the following button to set your new password"
|
||||||
msgstr "Haga clic en el siguiente botón para establecer su nueva contraseña"
|
msgstr "Haga clic en el siguiente botón para establecer su nueva contraseña"
|
||||||
|
|
||||||
#: lms/lms/utils.py:1901 lms/lms/utils.py:1905
|
#: lms/lms/utils.py:2030 lms/lms/utils.py:2034
|
||||||
msgid "Please complete the previous courses in the program to enroll in this course."
|
msgid "Please complete the previous courses in the program to enroll in this course."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -4009,7 +3968,7 @@ msgstr ""
|
|||||||
msgid "Please ensure that you complete all the questions in {0} minutes."
|
msgid "Please ensure that you complete all the questions in {0} minutes."
|
||||||
msgstr "Asegúrese de completar todas las preguntas en {0} minutos."
|
msgstr "Asegúrese de completar todas las preguntas en {0} minutos."
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:164
|
#: frontend/src/components/Modals/LiveClassModal.vue:170
|
||||||
msgid "Please enter a title."
|
msgid "Please enter a title."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -4018,7 +3977,7 @@ msgstr ""
|
|||||||
msgid "Please enter a valid URL."
|
msgid "Please enter a valid URL."
|
||||||
msgstr "Introduce una URL válida."
|
msgstr "Introduce una URL válida."
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:176
|
#: frontend/src/components/Modals/LiveClassModal.vue:182
|
||||||
msgid "Please enter a valid time in the format HH:mm."
|
msgid "Please enter a valid time in the format HH:mm."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -4054,7 +4013,7 @@ msgstr "Inicie sesión para acceder al cuestionario."
|
|||||||
msgid "Please login to access this page."
|
msgid "Please login to access this page."
|
||||||
msgstr "Por favor inicie sesión para acceder a esta página."
|
msgstr "Por favor inicie sesión para acceder a esta página."
|
||||||
|
|
||||||
#: lms/lms/api.py:200
|
#: lms/lms/api.py:206
|
||||||
msgid "Please login to continue with payment."
|
msgid "Please login to continue with payment."
|
||||||
msgstr "Por favor inicie sesión para continuar con el pago."
|
msgstr "Por favor inicie sesión para continuar con el pago."
|
||||||
|
|
||||||
@@ -4067,23 +4026,23 @@ msgstr "Por favor, prepárese bien y llegue a tiempo a las evaluaciones."
|
|||||||
msgid "Please schedule an evaluation to get certified."
|
msgid "Please schedule an evaluation to get certified."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:167
|
#: frontend/src/components/Modals/LiveClassModal.vue:173
|
||||||
msgid "Please select a date."
|
msgid "Please select a date."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:191
|
#: frontend/src/components/Modals/LiveClassModal.vue:197
|
||||||
msgid "Please select a duration."
|
msgid "Please select a duration."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:188
|
#: frontend/src/components/Modals/LiveClassModal.vue:194
|
||||||
msgid "Please select a future date and time."
|
msgid "Please select a future date and time."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:170
|
#: frontend/src/components/Modals/LiveClassModal.vue:176
|
||||||
msgid "Please select a time."
|
msgid "Please select a time."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:173
|
#: frontend/src/components/Modals/LiveClassModal.vue:179
|
||||||
msgid "Please select a timezone."
|
msgid "Please select a timezone."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -4091,13 +4050,6 @@ msgstr ""
|
|||||||
msgid "Please take appropriate action at {0}"
|
msgid "Please take appropriate action at {0}"
|
||||||
msgstr "Tome las medidas adecuadas en {0}"
|
msgstr "Tome las medidas adecuadas en {0}"
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:79
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:83
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:91
|
|
||||||
#: frontend/src/components/UserDropdown.vue:244
|
|
||||||
msgid "Please try again"
|
|
||||||
msgstr "Por favor, inténtelo de nuevo"
|
|
||||||
|
|
||||||
#: frontend/src/components/Modals/ChapterModal.vue:177
|
#: frontend/src/components/Modals/ChapterModal.vue:177
|
||||||
msgid "Please upload a SCORM package"
|
msgid "Please upload a SCORM package"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -4210,7 +4162,7 @@ msgstr "Países principales"
|
|||||||
msgid "Primary Subgroup"
|
msgid "Primary Subgroup"
|
||||||
msgstr "Subgrupo primario"
|
msgstr "Subgrupo primario"
|
||||||
|
|
||||||
#: lms/lms/utils.py:436
|
#: lms/lms/utils.py:437
|
||||||
msgid "Privacy Policy"
|
msgid "Privacy Policy"
|
||||||
msgstr "Política de privacidad"
|
msgstr "Política de privacidad"
|
||||||
|
|
||||||
@@ -4478,7 +4430,7 @@ msgstr "Regístrate ahora"
|
|||||||
msgid "Registered"
|
msgid "Registered"
|
||||||
msgstr "Registrado"
|
msgstr "Registrado"
|
||||||
|
|
||||||
#: lms/overrides/user.py:201
|
#: lms/lms/user.py:36
|
||||||
msgid "Registered but disabled"
|
msgid "Registered but disabled"
|
||||||
msgstr "Registrado pero discapacitados"
|
msgstr "Registrado pero discapacitados"
|
||||||
|
|
||||||
@@ -4519,10 +4471,6 @@ msgstr "Solicitud de mentoría"
|
|||||||
msgid "Required Role"
|
msgid "Required Role"
|
||||||
msgstr "Rol Requerido"
|
msgstr "Rol Requerido"
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:31
|
|
||||||
msgid "Resend"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. Option for the 'Membership' (Select) field in DocType 'LMS Batch Old'
|
#. Option for the 'Membership' (Select) field in DocType 'LMS Batch Old'
|
||||||
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
|
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
|
||||||
msgid "Restricted"
|
msgid "Restricted"
|
||||||
@@ -4677,7 +4625,7 @@ msgstr "Buscar"
|
|||||||
msgid "Search by Name"
|
msgid "Search by Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/pages/Batches.vue:45
|
#: frontend/src/pages/Batches.vue:45 frontend/src/pages/Courses.vue:45
|
||||||
msgid "Search by Title"
|
msgid "Search by Title"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -4819,7 +4767,7 @@ msgstr "Barra Lateral"
|
|||||||
msgid "Sidebar Items"
|
msgid "Sidebar Items"
|
||||||
msgstr "Elementos de barra lateral"
|
msgstr "Elementos de barra lateral"
|
||||||
|
|
||||||
#: lms/overrides/user.py:194
|
#: lms/lms/user.py:29
|
||||||
msgid "Sign Up is disabled"
|
msgid "Sign Up is disabled"
|
||||||
msgstr "El registro está desactivado"
|
msgstr "El registro está desactivado"
|
||||||
|
|
||||||
@@ -4863,10 +4811,6 @@ msgstr "nombre de la habilidad"
|
|||||||
msgid "Skills"
|
msgid "Skills"
|
||||||
msgstr "Habilidades"
|
msgstr "Habilidades"
|
||||||
|
|
||||||
#: lms/overrides/user.py:42
|
|
||||||
msgid "Skills must be unique"
|
|
||||||
msgstr "Las aptitudes deben ser únicas"
|
|
||||||
|
|
||||||
#: lms/templates/onboarding_header.html:6
|
#: lms/templates/onboarding_header.html:6
|
||||||
msgid "Skip"
|
msgid "Skip"
|
||||||
msgstr "Omitir"
|
msgstr "Omitir"
|
||||||
@@ -5143,7 +5087,7 @@ msgstr "Resumen"
|
|||||||
msgid "Sunday"
|
msgid "Sunday"
|
||||||
msgstr "Domingo"
|
msgstr "Domingo"
|
||||||
|
|
||||||
#: lms/lms/api.py:1012
|
#: lms/lms/api.py:1018
|
||||||
msgid "Suspicious pattern found in {0}: {1}"
|
msgid "Suspicious pattern found in {0}: {1}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -5224,11 +5168,11 @@ msgstr "Trabajo en equipo"
|
|||||||
msgid "Template"
|
msgid "Template"
|
||||||
msgstr "Plantilla"
|
msgstr "Plantilla"
|
||||||
|
|
||||||
#: lms/overrides/user.py:205
|
#: lms/lms/user.py:40
|
||||||
msgid "Temporarily Disabled"
|
msgid "Temporarily Disabled"
|
||||||
msgstr "Desactivado temporalmente"
|
msgstr "Desactivado temporalmente"
|
||||||
|
|
||||||
#: lms/lms/utils.py:435
|
#: lms/lms/utils.py:436
|
||||||
msgid "Terms of Use"
|
msgid "Terms of Use"
|
||||||
msgstr "Términos de Uso"
|
msgstr "Términos de Uso"
|
||||||
|
|
||||||
@@ -5264,7 +5208,7 @@ msgstr ""
|
|||||||
msgid "Thanks and Regards"
|
msgid "Thanks and Regards"
|
||||||
msgstr "Gracias y saludos"
|
msgstr "Gracias y saludos"
|
||||||
|
|
||||||
#: lms/lms/utils.py:1801
|
#: lms/lms/utils.py:1930
|
||||||
msgid "The batch is full. Please contact the Administrator."
|
msgid "The batch is full. Please contact the Administrator."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -5300,9 +5244,9 @@ msgstr ""
|
|||||||
msgid "There are no chapters in this course. Create and manage chapters from here."
|
msgid "There are no chapters in this course. Create and manage chapters from here."
|
||||||
msgstr "No hay capítulos en este curso. Crea y administra capítulos desde aquí."
|
msgstr "No hay capítulos en este curso. Crea y administra capítulos desde aquí."
|
||||||
|
|
||||||
#: frontend/src/pages/Courses.vue:155
|
#: frontend/src/pages/Courses.vue:83
|
||||||
msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
|
msgid "There are no courses matching the criteria. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||||
msgstr "No hay cursos disponibles en este momento. ¡Esté atento, pronto habrá nuevas experiencias de aprendizaje!"
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/pages/CertifiedParticipants.vue:92
|
#: frontend/src/pages/CertifiedParticipants.vue:92
|
||||||
msgid "There are no participants matching this criteria."
|
msgid "There are no participants matching this criteria."
|
||||||
@@ -5359,7 +5303,7 @@ msgstr ""
|
|||||||
msgid "This course has:"
|
msgid "This course has:"
|
||||||
msgstr "Este curso tiene:"
|
msgstr "Este curso tiene:"
|
||||||
|
|
||||||
#: lms/lms/utils.py:1644
|
#: lms/lms/utils.py:1773
|
||||||
msgid "This course is free."
|
msgid "This course is free."
|
||||||
msgstr "Este curso es gratuito."
|
msgstr "Este curso es gratuito."
|
||||||
|
|
||||||
@@ -5427,7 +5371,7 @@ msgstr "Plantilla de horario"
|
|||||||
#. Label of the timezone (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 Certificate Request'
|
#. Label of the timezone (Data) field in DocType 'LMS Certificate Request'
|
||||||
#. Label of the timezone (Data) field in DocType 'LMS Live Class'
|
#. Label of the timezone (Data) field in DocType 'LMS Live Class'
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:46
|
#: frontend/src/components/Modals/LiveClassModal.vue:45
|
||||||
#: frontend/src/pages/BatchForm.vue:120
|
#: frontend/src/pages/BatchForm.vue:120
|
||||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||||
@@ -5501,7 +5445,7 @@ msgstr "A"
|
|||||||
msgid "To Date"
|
msgid "To Date"
|
||||||
msgstr "Hasta la fecha"
|
msgstr "Hasta la fecha"
|
||||||
|
|
||||||
#: lms/lms/utils.py:1655
|
#: lms/lms/utils.py:1784
|
||||||
msgid "To join this batch, please contact the Administrator."
|
msgid "To join this batch, please contact the Administrator."
|
||||||
msgstr "Para unirse a este lote, comuníquese con el Administrador."
|
msgstr "Para unirse a este lote, comuníquese con el Administrador."
|
||||||
|
|
||||||
@@ -5509,7 +5453,7 @@ msgstr "Para unirse a este lote, comuníquese con el Administrador."
|
|||||||
msgid "To upload Image, Video, Audio or PDF from your system, click on the add icon and select upload from the menu. Then choose the file you want to add to the lesson and it gets added to your lesson."
|
msgid "To upload Image, Video, Audio or PDF from your system, click on the add icon and select upload from the menu. Then choose the file you want to add to the lesson and it gets added to your lesson."
|
||||||
msgstr "Para cargar una imagen, un vídeo, un audio o un PDF desde su sistema, haga clic en el icono de añadir y en el menú seleccione cargar. A continuación, elija el archivo que desea añadir a la lección y se añadirá a la misma."
|
msgstr "Para cargar una imagen, un vídeo, un audio o un PDF desde su sistema, haga clic en el icono de añadir y en el menú seleccione cargar. A continuación, elija el archivo que desea añadir a la lección y se añadirá a la misma."
|
||||||
|
|
||||||
#: lms/overrides/user.py:206
|
#: lms/lms/user.py:41
|
||||||
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
|
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
|
||||||
msgstr "Hay demasiados usuarios se inscribieron recientemente, por lo que el registro está desactivado. Por favor, intente volver en una hora"
|
msgstr "Hay demasiados usuarios se inscribieron recientemente, por lo que el registro está desactivado. Por favor, intente volver en una hora"
|
||||||
|
|
||||||
@@ -5626,7 +5570,8 @@ msgstr "Rol no estructurado"
|
|||||||
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request'
|
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request'
|
||||||
#. Label of the upcoming (Check) field in DocType 'LMS Course'
|
#. Label of the upcoming (Check) field in DocType 'LMS Course'
|
||||||
#: frontend/src/pages/Batches.vue:276 frontend/src/pages/Batches.vue:294
|
#: frontend/src/pages/Batches.vue:276 frontend/src/pages/Batches.vue:294
|
||||||
#: frontend/src/pages/CourseForm.vue:184 lms/lms/doctype/cohort/cohort.json
|
#: frontend/src/pages/CourseForm.vue:184 frontend/src/pages/Courses.vue:282
|
||||||
|
#: frontend/src/pages/Courses.vue:301 lms/lms/doctype/cohort/cohort.json
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||||
#: lms/lms/doctype/lms_course/lms_course.json
|
#: lms/lms/doctype/lms_course/lms_course.json
|
||||||
msgid "Upcoming"
|
msgid "Upcoming"
|
||||||
@@ -5727,14 +5672,6 @@ msgstr "Valor"
|
|||||||
msgid "Value Change"
|
msgid "Value Change"
|
||||||
msgstr "Cambio de Valor"
|
msgstr "Cambio de Valor"
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:26
|
|
||||||
msgid "Verification Code"
|
|
||||||
msgstr "Código de Verificación"
|
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:9
|
|
||||||
msgid "Verify"
|
|
||||||
msgstr "Verificar"
|
|
||||||
|
|
||||||
#. Label of the video_link (Data) field in DocType 'LMS Course'
|
#. Label of the video_link (Data) field in DocType 'LMS Course'
|
||||||
#: lms/lms/doctype/lms_course/lms_course.json
|
#: lms/lms/doctype/lms_course/lms_course.json
|
||||||
msgid "Video Embed Link"
|
msgid "Video Embed Link"
|
||||||
@@ -5776,10 +5713,6 @@ msgstr "Nos complace informarle que ha sido inscrito en nuestro próximo lote.
|
|||||||
msgid "We have a limited number of seats, and they won't be available for long!"
|
msgid "We have a limited number of seats, and they won't be available for long!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:21
|
|
||||||
msgid "We have sent the verificaton code to your email id "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lms/templates/emails/payment_reminder.html:4
|
#: lms/templates/emails/payment_reminder.html:4
|
||||||
msgid "We noticed that you started enrolling in the"
|
msgid "We noticed that you started enrolling in the"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -5855,7 +5788,7 @@ msgstr "Escribir una reseña"
|
|||||||
msgid "Write your answer here"
|
msgid "Write your answer here"
|
||||||
msgstr "Escriba su respuesta aquí"
|
msgstr "Escriba su respuesta aquí"
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:95
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:96
|
||||||
msgid "You already have an evaluation on {0} at {1} for the course {2}."
|
msgid "You already have an evaluation on {0} at {1} for the course {2}."
|
||||||
msgstr "Ya tiene una evaluación en {0} en {1} para el curso {2}."
|
msgstr "Ya tiene una evaluación en {0} en {1} para el curso {2}."
|
||||||
|
|
||||||
@@ -5863,11 +5796,11 @@ msgstr "Ya tiene una evaluación en {0} en {1} para el curso {2}."
|
|||||||
msgid "You are already certified for this course. Click on the card below to open your certificate."
|
msgid "You are already certified for this course. Click on the card below to open your certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/api.py:224
|
#: lms/lms/api.py:230
|
||||||
msgid "You are already enrolled for this batch."
|
msgid "You are already enrolled for this batch."
|
||||||
msgstr "Ya estás inscrito en este lote."
|
msgstr "Ya estás inscrito en este lote."
|
||||||
|
|
||||||
#: lms/lms/api.py:216
|
#: lms/lms/api.py:222
|
||||||
msgid "You are already enrolled for this course."
|
msgid "You are already enrolled for this course."
|
||||||
msgstr "Ya estás inscrito en este curso."
|
msgstr "Ya estás inscrito en este curso."
|
||||||
|
|
||||||
@@ -5887,10 +5820,6 @@ msgstr ""
|
|||||||
msgid "You are not enrolled in this course. Please enroll to access this lesson."
|
msgid "You are not enrolled in this course. Please enroll to access this lesson."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/pages/Courses.vue:139
|
|
||||||
msgid "You can add chapters and lessons to it."
|
|
||||||
msgstr "Puedes añadir capítulos y lecciones a él."
|
|
||||||
|
|
||||||
#: lms/templates/emails/lms_course_interest.html:13
|
#: lms/templates/emails/lms_course_interest.html:13
|
||||||
#: lms/templates/emails/lms_invite_request_approved.html:11
|
#: lms/templates/emails/lms_invite_request_approved.html:11
|
||||||
msgid "You can also copy-paste following link in your browser"
|
msgid "You can also copy-paste following link in your browser"
|
||||||
@@ -5908,11 +5837,11 @@ msgstr "Puedes intentar este cuestionario {0}."
|
|||||||
msgid "You can find their resume attached to this email."
|
msgid "You can find their resume attached to this email."
|
||||||
msgstr "Puede encontrar su currículum vitae adjunto a este correo electrónico."
|
msgstr "Puede encontrar su currículum vitae adjunto a este correo electrónico."
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:115
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:116
|
||||||
msgid "You cannot schedule evaluations after {0}."
|
msgid "You cannot schedule evaluations after {0}."
|
||||||
msgstr "No puede programar evaluaciones después de {0}."
|
msgstr "No puede programar evaluaciones después de {0}."
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:104
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:105
|
||||||
msgid "You cannot schedule evaluations for past slots."
|
msgid "You cannot schedule evaluations for past slots."
|
||||||
msgstr "No puede programar evaluaciones para espacios anteriores."
|
msgstr "No puede programar evaluaciones para espacios anteriores."
|
||||||
|
|
||||||
@@ -5945,7 +5874,7 @@ msgstr "Ya has solicitado este trabajo."
|
|||||||
msgid "You have already exceeded the maximum number of attempts allowed for this quiz."
|
msgid "You have already exceeded the maximum number of attempts allowed for this quiz."
|
||||||
msgstr "Ya superaste el número máximo de intentos permitidos para esta prueba."
|
msgstr "Ya superaste el número máximo de intentos permitidos para esta prueba."
|
||||||
|
|
||||||
#: lms/lms/api.py:237
|
#: lms/lms/api.py:243
|
||||||
msgid "You have already purchased the certificate for this course."
|
msgid "You have already purchased the certificate for this course."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -5985,10 +5914,6 @@ msgstr "Has optado por recibir notificaciones sobre este curso. Recibirás un co
|
|||||||
msgid "You need to login first to enroll for this course"
|
msgid "You need to login first to enroll for this course"
|
||||||
msgstr "Debes iniciar sesión primero para inscribirte en este curso."
|
msgstr "Debes iniciar sesión primero para inscribirte en este curso."
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:71
|
|
||||||
msgid "You will be redirected to Frappe Cloud soon."
|
|
||||||
msgstr "Pronto será redirigido a Frappe Cloud."
|
|
||||||
|
|
||||||
#: frontend/src/components/Quiz.vue:27 lms/templates/quiz/quiz.html:11
|
#: frontend/src/components/Quiz.vue:27 lms/templates/quiz/quiz.html:11
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "You will have to get {0}% correct answers in order to pass the quiz."
|
msgid "You will have to get {0}% correct answers in order to pass the quiz."
|
||||||
@@ -6026,7 +5951,7 @@ msgstr "Su calendario está configurado."
|
|||||||
msgid "Your evaluation for the course {0} has been scheduled on {1} at {2} {3}."
|
msgid "Your evaluation for the course {0} has been scheduled on {1} at {2} {3}."
|
||||||
msgstr "Su evaluación para el curso {0} ha sido programada para el {1} a las {2} {3}."
|
msgstr "Su evaluación para el curso {0} ha sido programada para el {1} a las {2} {3}."
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:125
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:126
|
||||||
msgid "Your evaluation slot has been booked"
|
msgid "Your evaluation slot has been booked"
|
||||||
msgstr "Su franja horaria de evaluación ha sido reservada"
|
msgstr "Su franja horaria de evaluación ha sido reservada"
|
||||||
|
|
||||||
@@ -6127,7 +6052,7 @@ msgstr ""
|
|||||||
msgid "you can"
|
msgid "you can"
|
||||||
msgstr "puedes"
|
msgstr "puedes"
|
||||||
|
|
||||||
#: lms/lms/api.py:802 lms/lms/api.py:810
|
#: lms/lms/api.py:808 lms/lms/api.py:816
|
||||||
msgid "{0} Settings not found"
|
msgid "{0} Settings not found"
|
||||||
msgstr "Configuraciones {0} no encontradas"
|
msgstr "Configuraciones {0} no encontradas"
|
||||||
|
|
||||||
@@ -6167,7 +6092,7 @@ msgstr "{0} ya está certificado para el curso {1}"
|
|||||||
msgid "{0} is your evaluator"
|
msgid "{0} is your evaluator"
|
||||||
msgstr "{0} es tu evaluador"
|
msgstr "{0} es tu evaluador"
|
||||||
|
|
||||||
#: lms/lms/utils.py:681
|
#: lms/lms/utils.py:682
|
||||||
msgid "{0} mentioned you in a comment"
|
msgid "{0} mentioned you in a comment"
|
||||||
msgstr "{0} te mencionó en un comentario"
|
msgstr "{0} te mencionó en un comentario"
|
||||||
|
|
||||||
@@ -6175,11 +6100,11 @@ msgstr "{0} te mencionó en un comentario"
|
|||||||
msgid "{0} mentioned you in a comment in your batch."
|
msgid "{0} mentioned you in a comment in your batch."
|
||||||
msgstr "{0} te mencionó en un comentario en tu lote."
|
msgstr "{0} te mencionó en un comentario en tu lote."
|
||||||
|
|
||||||
#: lms/lms/utils.py:634 lms/lms/utils.py:640
|
#: lms/lms/utils.py:635 lms/lms/utils.py:641
|
||||||
msgid "{0} mentioned you in a comment in {1}"
|
msgid "{0} mentioned you in a comment in {1}"
|
||||||
msgstr "{0} te mencionó en un comentario en {1}"
|
msgstr "{0} te mencionó en un comentario en {1}"
|
||||||
|
|
||||||
#: lms/lms/utils.py:457
|
#: lms/lms/utils.py:458
|
||||||
msgid "{0}k"
|
msgid "{0}k"
|
||||||
msgstr "{0}k"
|
msgstr "{0}k"
|
||||||
|
|
||||||
|
|||||||
245
lms/locale/fa.po
245
lms/locale/fa.po
@@ -2,8 +2,8 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: frappe\n"
|
"Project-Id-Version: frappe\n"
|
||||||
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
|
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
|
||||||
"POT-Creation-Date: 2025-02-28 16:04+0000\n"
|
"POT-Creation-Date: 2025-03-07 16:04+0000\n"
|
||||||
"PO-Revision-Date: 2025-03-03 21:29\n"
|
"PO-Revision-Date: 2025-03-10 22:46\n"
|
||||||
"Last-Translator: jannat@frappe.io\n"
|
"Last-Translator: jannat@frappe.io\n"
|
||||||
"Language-Team: Persian\n"
|
"Language-Team: Persian\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -228,7 +228,7 @@ msgstr ""
|
|||||||
msgid "All Certified Participants"
|
msgid "All Certified Participants"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/widgets/BreadCrumb.html:3
|
#: frontend/src/pages/Courses.vue:26 lms/lms/widgets/BreadCrumb.html:3
|
||||||
msgid "All Courses"
|
msgid "All Courses"
|
||||||
msgstr "همه دوره ها"
|
msgstr "همه دوره ها"
|
||||||
|
|
||||||
@@ -268,7 +268,7 @@ msgstr "اجازه دسترسی به تاریخ های آینده"
|
|||||||
msgid "Allow self enrollment"
|
msgid "Allow self enrollment"
|
||||||
msgstr "اجازه ثبت نام خود"
|
msgstr "اجازه ثبت نام خود"
|
||||||
|
|
||||||
#: lms/overrides/user.py:199
|
#: lms/lms/user.py:34
|
||||||
msgid "Already Registered"
|
msgid "Already Registered"
|
||||||
msgstr "قبلا ثبت شده است"
|
msgstr "قبلا ثبت شده است"
|
||||||
|
|
||||||
@@ -378,7 +378,7 @@ msgstr "بایگانی شد"
|
|||||||
msgid "Are you sure you want to cancel this evaluation? This action cannot be undone."
|
msgid "Are you sure you want to cancel this evaluation? This action cannot be undone."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/UserDropdown.vue:209
|
#: frontend/src/components/UserDropdown.vue:169
|
||||||
msgid "Are you sure you want to login to your Frappe Cloud dashboard?"
|
msgid "Are you sure you want to login to your Frappe Cloud dashboard?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -492,12 +492,12 @@ msgid "Auto Assign"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. Label of the auto_recording (Select) field in DocType 'LMS Live Class'
|
#. Label of the auto_recording (Select) field in DocType 'LMS Live Class'
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:71
|
#: frontend/src/components/Modals/LiveClassModal.vue:77
|
||||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||||
msgid "Auto Recording"
|
msgid "Auto Recording"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/CourseCard.vue:50
|
#: frontend/src/components/CourseCard.vue:51
|
||||||
#: frontend/src/pages/CourseDetail.vue:20
|
#: frontend/src/pages/CourseDetail.vue:20
|
||||||
msgid "Average Rating"
|
msgid "Average Rating"
|
||||||
msgstr "میانگین امتیاز"
|
msgstr "میانگین امتیاز"
|
||||||
@@ -739,7 +739,7 @@ msgstr ""
|
|||||||
#. Label of the category (Link) field in DocType 'LMS Course'
|
#. Label of the category (Link) field in DocType 'LMS Course'
|
||||||
#: frontend/src/pages/BatchForm.vue:190 frontend/src/pages/Batches.vue:55
|
#: frontend/src/pages/BatchForm.vue:190 frontend/src/pages/Batches.vue:55
|
||||||
#: frontend/src/pages/CertifiedParticipants.vue:37
|
#: frontend/src/pages/CertifiedParticipants.vue:37
|
||||||
#: frontend/src/pages/CourseForm.vue:147 frontend/src/pages/Courses.vue:17
|
#: frontend/src/pages/CourseForm.vue:147 frontend/src/pages/Courses.vue:55
|
||||||
#: frontend/src/pages/JobDetail.vue:96 lms/lms/doctype/lms_batch/lms_batch.json
|
#: frontend/src/pages/JobDetail.vue:96 lms/lms/doctype/lms_batch/lms_batch.json
|
||||||
#: lms/lms/doctype/lms_category/lms_category.json
|
#: lms/lms/doctype/lms_category/lms_category.json
|
||||||
#: lms/lms/doctype/lms_course/lms_course.json
|
#: lms/lms/doctype/lms_course/lms_course.json
|
||||||
@@ -790,12 +790,12 @@ msgstr ""
|
|||||||
#. Enrollment'
|
#. Enrollment'
|
||||||
#. Label of a Card Break in the LMS Workspace
|
#. Label of a Card Break in the LMS Workspace
|
||||||
#. Label of a Link in the LMS Workspace
|
#. Label of a Link in the LMS Workspace
|
||||||
#: frontend/src/components/CourseCard.vue:110
|
#: frontend/src/components/CourseCard.vue:111
|
||||||
#: frontend/src/components/Modals/Event.vue:371
|
#: frontend/src/components/Modals/Event.vue:371
|
||||||
#: frontend/src/pages/BatchForm.vue:37 frontend/src/pages/Batches.vue:38
|
#: frontend/src/pages/BatchForm.vue:37 frontend/src/pages/Batches.vue:38
|
||||||
#: frontend/src/pages/CourseCertification.vue:10
|
#: frontend/src/pages/CourseCertification.vue:10
|
||||||
#: frontend/src/pages/CourseCertification.vue:114
|
#: frontend/src/pages/CourseCertification.vue:114
|
||||||
#: lms/fixtures/custom_field.json
|
#: frontend/src/pages/Courses.vue:38 lms/fixtures/custom_field.json
|
||||||
#: lms/lms/doctype/certification/certification.json
|
#: lms/lms/doctype/certification/certification.json
|
||||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
||||||
@@ -912,10 +912,6 @@ msgstr "پاک کردن"
|
|||||||
msgid "Clearly Defined Role"
|
msgid "Clearly Defined Role"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:75
|
|
||||||
msgid "Click here to login"
|
|
||||||
msgstr "برای ورود اینجا کلیک کنید"
|
|
||||||
|
|
||||||
#: frontend/src/components/LessonHelp.vue:30
|
#: frontend/src/components/LessonHelp.vue:30
|
||||||
msgid "Click on the add icon in the editor and select Quiz from the menu. It opens up a dialog, where you can either select a quiz from the list or create a new quiz. When you select the Create New option it redirects you to the quiz creation page."
|
msgid "Click on the add icon in the editor and select Quiz from the menu. It opens up a dialog, where you can either select a quiz from the list or create a new quiz. When you select the Create New option it redirects you to the quiz creation page."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1084,7 +1080,7 @@ msgstr ""
|
|||||||
msgid "Complete Your Enrollment"
|
msgid "Complete Your Enrollment"
|
||||||
msgstr "ثبت نام خود را تکمیل کنید"
|
msgstr "ثبت نام خود را تکمیل کنید"
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_payment/lms_payment.py:40
|
#: lms/lms/doctype/lms_payment/lms_payment.py:55
|
||||||
msgid "Complete Your Enrollment - Don't miss out!"
|
msgid "Complete Your Enrollment - Don't miss out!"
|
||||||
msgstr "ثبت نام خود را تکمیل کنید - فرصت را از دست ندهید!"
|
msgstr "ثبت نام خود را تکمیل کنید - فرصت را از دست ندهید!"
|
||||||
|
|
||||||
@@ -1115,7 +1111,7 @@ msgstr ""
|
|||||||
#. Label of the condition (Code) field in DocType 'LMS Badge'
|
#. Label of the condition (Code) field in DocType 'LMS Badge'
|
||||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||||
msgid "Condition"
|
msgid "Condition"
|
||||||
msgstr ""
|
msgstr "شرط"
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_badge/lms_badge.py:16
|
#: lms/lms/doctype/lms_badge/lms_badge.py:16
|
||||||
msgid "Condition must be in valid JSON format."
|
msgid "Condition must be in valid JSON format."
|
||||||
@@ -1125,7 +1121,11 @@ msgstr ""
|
|||||||
msgid "Condition must be valid python code."
|
msgid "Condition must be valid python code."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/UserDropdown.vue:214
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.js:7
|
||||||
|
msgid "Conduct Evaluation"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: frontend/src/components/UserDropdown.vue:174
|
||||||
msgid "Confirm"
|
msgid "Confirm"
|
||||||
msgstr "تایید"
|
msgstr "تایید"
|
||||||
|
|
||||||
@@ -1166,7 +1166,7 @@ msgstr ""
|
|||||||
msgid "Contract"
|
msgid "Contract"
|
||||||
msgstr "قرارداد"
|
msgstr "قرارداد"
|
||||||
|
|
||||||
#: lms/lms/utils.py:437
|
#: lms/lms/utils.py:438
|
||||||
msgid "Cookie Policy"
|
msgid "Cookie Policy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -1382,7 +1382,7 @@ msgstr "دوره {0} قبلاً به این دسته اضافه شده است."
|
|||||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:79
|
#: frontend/src/components/Modals/BatchStudentProgress.vue:79
|
||||||
#: frontend/src/pages/BatchDetail.vue:21 frontend/src/pages/BatchDetail.vue:70
|
#: frontend/src/pages/BatchDetail.vue:21 frontend/src/pages/BatchDetail.vue:70
|
||||||
#: frontend/src/pages/CourseCertification.vue:106
|
#: frontend/src/pages/CourseCertification.vue:106
|
||||||
#: frontend/src/pages/Courses.vue:8 frontend/src/pages/Statistics.vue:21
|
#: frontend/src/pages/Courses.vue:314 frontend/src/pages/Statistics.vue:21
|
||||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||||
msgid "Courses"
|
msgid "Courses"
|
||||||
@@ -1393,10 +1393,6 @@ msgstr "دوره ها"
|
|||||||
msgid "Courses Completed"
|
msgid "Courses Completed"
|
||||||
msgstr "دورههای گذرانده شده"
|
msgstr "دورههای گذرانده شده"
|
||||||
|
|
||||||
#: lms/lms/web_template/courses_mentored/courses_mentored.html:4
|
|
||||||
msgid "Courses Mentored"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: frontend/src/components/BatchCourses.vue:151
|
#: frontend/src/components/BatchCourses.vue:151
|
||||||
msgid "Courses deleted successfully"
|
msgid "Courses deleted successfully"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1412,14 +1408,10 @@ msgid "Create"
|
|||||||
msgstr "ایجاد کردن"
|
msgstr "ایجاد کردن"
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.js:7
|
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.js:7
|
||||||
msgid "Create LMS Certificate"
|
msgid "Create Certificate"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.js:8
|
#: lms/templates/onboarding_header.html:19
|
||||||
msgid "Create LMS Certificate Evaluation"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: frontend/src/pages/Courses.vue:136 lms/templates/onboarding_header.html:19
|
|
||||||
msgid "Create a Course"
|
msgid "Create a Course"
|
||||||
msgstr "ایجاد دوره"
|
msgstr "ایجاد دوره"
|
||||||
|
|
||||||
@@ -1435,7 +1427,8 @@ msgstr ""
|
|||||||
msgid "Create a new question"
|
msgid "Create a new question"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/pages/Assignments.vue:163
|
#: frontend/src/pages/Assignments.vue:163 frontend/src/pages/Courses.vue:287
|
||||||
|
#: frontend/src/pages/Courses.vue:307
|
||||||
msgid "Created"
|
msgid "Created"
|
||||||
msgstr "ایجاد شده"
|
msgstr "ایجاد شده"
|
||||||
|
|
||||||
@@ -1488,7 +1481,7 @@ msgstr "داشبورد"
|
|||||||
#. Label of the date (Date) field in DocType 'Scheduled Flow'
|
#. Label of the date (Date) field in DocType 'Scheduled Flow'
|
||||||
#: frontend/src/components/Modals/EvaluationModal.vue:26
|
#: frontend/src/components/Modals/EvaluationModal.vue:26
|
||||||
#: frontend/src/components/Modals/Event.vue:40
|
#: frontend/src/components/Modals/Event.vue:40
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:55
|
#: frontend/src/components/Modals/LiveClassModal.vue:61
|
||||||
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
|
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
|
||||||
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
|
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||||
@@ -1587,7 +1580,7 @@ msgstr "حذف این درس آن را برای همیشه از دوره حذف
|
|||||||
#. Label of the description (Small Text) field in DocType 'LMS Exercise'
|
#. 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 (Text) field in DocType 'LMS Live Class'
|
||||||
#. Label of the description (Small Text) field in DocType 'Work Experience'
|
#. Label of the description (Small Text) field in DocType 'Work Experience'
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:78
|
#: frontend/src/components/Modals/LiveClassModal.vue:84
|
||||||
#: frontend/src/pages/BatchForm.vue:224 frontend/src/pages/JobCreation.vue:50
|
#: frontend/src/pages/BatchForm.vue:224 frontend/src/pages/JobCreation.vue:50
|
||||||
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
||||||
#: lms/lms/doctype/certification/certification.json
|
#: lms/lms/doctype/certification/certification.json
|
||||||
@@ -1614,10 +1607,6 @@ msgstr ""
|
|||||||
msgid "Details"
|
msgid "Details"
|
||||||
msgstr "جزئیات"
|
msgstr "جزئیات"
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:30
|
|
||||||
msgid "Didn't receive the code?"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: frontend/src/pages/CourseForm.vue:194
|
#: frontend/src/pages/CourseForm.vue:194
|
||||||
msgid "Disable Self Enrollment"
|
msgid "Disable Self Enrollment"
|
||||||
msgstr "غیرفعال کردن ثبت نام خود"
|
msgstr "غیرفعال کردن ثبت نام خود"
|
||||||
@@ -1668,7 +1657,7 @@ msgstr "گزینههای تکراری برای این سوال پیدا شد.
|
|||||||
#. Label of the duration (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 (Data) field in DocType 'LMS Batch Timetable'
|
||||||
#. Label of the duration (Int) field in DocType 'LMS Live Class'
|
#. Label of the duration (Int) field in DocType 'LMS Live Class'
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:62
|
#: frontend/src/components/Modals/LiveClassModal.vue:68
|
||||||
#: lms/lms/doctype/cohort/cohort.json
|
#: lms/lms/doctype/cohort/cohort.json
|
||||||
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
|
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
|
||||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||||
@@ -1680,7 +1669,7 @@ msgstr "مدت زمان"
|
|||||||
msgid "Duration (in minutes)"
|
msgid "Duration (in minutes)"
|
||||||
msgstr "مدت زمان (بر حسب دقیقه)"
|
msgstr "مدت زمان (بر حسب دقیقه)"
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:58
|
#: frontend/src/components/Modals/LiveClassModal.vue:64
|
||||||
msgid "Duration of the live class in minutes"
|
msgid "Duration of the live class in minutes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -1826,11 +1815,12 @@ msgstr "زمان پایان"
|
|||||||
msgid "Enroll Now"
|
msgid "Enroll Now"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/pages/Batches.vue:292
|
#: frontend/src/pages/Batches.vue:292 frontend/src/pages/Courses.vue:285
|
||||||
|
#: frontend/src/pages/Courses.vue:305
|
||||||
msgid "Enrolled"
|
msgid "Enrolled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/CourseCard.vue:41
|
#: frontend/src/components/CourseCard.vue:42
|
||||||
#: frontend/src/components/CourseCardOverlay.vue:106
|
#: frontend/src/components/CourseCardOverlay.vue:106
|
||||||
#: frontend/src/pages/CourseDetail.vue:33
|
#: frontend/src/pages/CourseDetail.vue:33
|
||||||
msgid "Enrolled Students"
|
msgid "Enrolled Students"
|
||||||
@@ -1849,11 +1839,11 @@ msgstr "تایید ثبت نام برای {0}"
|
|||||||
msgid "Enrollment Count"
|
msgid "Enrollment Count"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/utils.py:1769
|
#: lms/lms/utils.py:1898
|
||||||
msgid "Enrollment Failed"
|
msgid "Enrollment Failed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. Label of the enrollments (Data) field in DocType 'LMS Course'
|
#. Label of the enrollments (Int) field in DocType 'LMS Course'
|
||||||
#. Label of a chart in the LMS Workspace
|
#. Label of a chart in the LMS Workspace
|
||||||
#. Label of a shortcut in the LMS Workspace
|
#. Label of a shortcut in the LMS Workspace
|
||||||
#: frontend/src/pages/Statistics.vue:51
|
#: frontend/src/pages/Statistics.vue:51
|
||||||
@@ -2057,14 +2047,6 @@ msgstr ""
|
|||||||
msgid "Fail"
|
msgid "Fail"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/UserDropdown.vue:243
|
|
||||||
msgid "Failed to login to Frappe Cloud"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:91
|
|
||||||
msgid "Failed to resend code"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. Label of the featured (Check) field in DocType 'LMS Course'
|
#. Label of the featured (Check) field in DocType 'LMS Course'
|
||||||
#: frontend/src/components/CourseCard.vue:16
|
#: frontend/src/components/CourseCard.vue:16
|
||||||
#: frontend/src/pages/CourseForm.vue:189
|
#: frontend/src/pages/CourseForm.vue:189
|
||||||
@@ -2125,10 +2107,6 @@ msgstr ""
|
|||||||
msgid "Formal Wear"
|
msgid "Formal Wear"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:70
|
|
||||||
msgid "Frappe Cloud Login Successful"
|
|
||||||
msgstr "ورود به Frappe Cloud با موفقیت انجام شد"
|
|
||||||
|
|
||||||
#: lms/lms/widgets/CourseCard.html:114
|
#: lms/lms/widgets/CourseCard.html:114
|
||||||
msgid "Free"
|
msgid "Free"
|
||||||
msgstr "رایگان"
|
msgstr "رایگان"
|
||||||
@@ -2212,7 +2190,7 @@ msgstr "عمومی"
|
|||||||
msgid "Generate Certificates"
|
msgid "Generate Certificates"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.js:18
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.js:15
|
||||||
msgid "Generate Google Meet Link"
|
msgid "Generate Google Meet Link"
|
||||||
msgstr "لینک Google Meet را ایجاد کنید"
|
msgstr "لینک Google Meet را ایجاد کنید"
|
||||||
|
|
||||||
@@ -2382,10 +2360,6 @@ msgstr "اگر سوالی دارید یا نیاز به کمک دارید، با
|
|||||||
msgid "If you have any questions or require assistance, feel free to contact us."
|
msgid "If you have any questions or require assistance, feel free to contact us."
|
||||||
msgstr "اگر سوالی دارید یا نیاز به کمک دارید، با ما تماس بگیرید."
|
msgstr "اگر سوالی دارید یا نیاز به کمک دارید، با ما تماس بگیرید."
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:71
|
|
||||||
msgid "If you haven't been redirected,"
|
|
||||||
msgstr "اگر هدایت نشده اید،"
|
|
||||||
|
|
||||||
#. Description of the 'Amount (USD)' (Currency) field in DocType 'LMS Batch'
|
#. Description of the 'Amount (USD)' (Currency) field in DocType 'LMS Batch'
|
||||||
#. Description of the 'Amount (USD)' (Currency) field in DocType 'LMS Course'
|
#. Description of the 'Amount (USD)' (Currency) field in DocType 'LMS Course'
|
||||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||||
@@ -2969,8 +2943,8 @@ msgstr "عنوان درس"
|
|||||||
|
|
||||||
#. Label of the lessons (Table) field in DocType 'Course Chapter'
|
#. Label of the lessons (Table) field in DocType 'Course Chapter'
|
||||||
#. Group in Course Chapter's connections
|
#. Group in Course Chapter's connections
|
||||||
#. Label of the lessons (Data) field in DocType 'LMS Course'
|
#. Label of the lessons (Int) field in DocType 'LMS Course'
|
||||||
#: frontend/src/components/CourseCard.vue:32
|
#: frontend/src/components/CourseCard.vue:33
|
||||||
#: frontend/src/components/CourseCardOverlay.vue:99
|
#: frontend/src/components/CourseCardOverlay.vue:99
|
||||||
#: lms/lms/doctype/course_chapter/course_chapter.json
|
#: lms/lms/doctype/course_chapter/course_chapter.json
|
||||||
#: lms/lms/doctype/lms_course/lms_course.json
|
#: lms/lms/doctype/lms_course/lms_course.json
|
||||||
@@ -3021,7 +2995,7 @@ msgid "List of quizzes"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. Option for the 'Status' (Select) field in DocType 'Cohort'
|
#. Option for the 'Status' (Select) field in DocType 'Cohort'
|
||||||
#: lms/lms/doctype/cohort/cohort.json
|
#: frontend/src/pages/Courses.vue:295 lms/lms/doctype/cohort/cohort.json
|
||||||
msgid "Live"
|
msgid "Live"
|
||||||
msgstr "فعال"
|
msgstr "فعال"
|
||||||
|
|
||||||
@@ -3039,6 +3013,7 @@ msgstr ""
|
|||||||
#: frontend/src/components/Members.vue:108
|
#: frontend/src/components/Members.vue:108
|
||||||
#: frontend/src/pages/Assignments.vue:71 frontend/src/pages/Batches.vue:94
|
#: frontend/src/pages/Assignments.vue:71 frontend/src/pages/Batches.vue:94
|
||||||
#: frontend/src/pages/CertifiedParticipants.vue:79
|
#: frontend/src/pages/CertifiedParticipants.vue:79
|
||||||
|
#: frontend/src/pages/Courses.vue:94
|
||||||
#: frontend/src/pages/QuizSubmissionList.vue:39
|
#: frontend/src/pages/QuizSubmissionList.vue:39
|
||||||
#: frontend/src/pages/Quizzes.vue:51
|
#: frontend/src/pages/Quizzes.vue:51
|
||||||
msgid "Load More"
|
msgid "Load More"
|
||||||
@@ -3071,16 +3046,7 @@ msgstr ""
|
|||||||
msgid "Login"
|
msgid "Login"
|
||||||
msgstr "وارد شدن"
|
msgstr "وارد شدن"
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:79
|
#: frontend/src/components/UserDropdown.vue:168
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:83
|
|
||||||
msgid "Login failed"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:6
|
|
||||||
msgid "Login to Frappe Cloud"
|
|
||||||
msgstr "ورود به Frappe Cloud"
|
|
||||||
|
|
||||||
#: frontend/src/components/UserDropdown.vue:208
|
|
||||||
msgid "Login to Frappe Cloud?"
|
msgid "Login to Frappe Cloud?"
|
||||||
msgstr "ورود به Frappe Cloud?"
|
msgstr "ورود به Frappe Cloud?"
|
||||||
|
|
||||||
@@ -3396,11 +3362,11 @@ msgstr ""
|
|||||||
msgid "Modified By"
|
msgid "Modified By"
|
||||||
msgstr "تغییر داده شده توسط"
|
msgstr "تغییر داده شده توسط"
|
||||||
|
|
||||||
#: lms/lms/api.py:208
|
#: lms/lms/api.py:214
|
||||||
msgid "Module Name is incorrect or does not exist."
|
msgid "Module Name is incorrect or does not exist."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/api.py:204
|
#: lms/lms/api.py:210
|
||||||
msgid "Module is incorrect."
|
msgid "Module is incorrect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -3430,7 +3396,8 @@ msgstr "تقویم من"
|
|||||||
|
|
||||||
#. Option for the 'Event' (Select) field in DocType 'LMS Badge'
|
#. Option for the 'Event' (Select) field in DocType 'LMS Badge'
|
||||||
#: frontend/src/pages/Assignments.vue:18 frontend/src/pages/Batches.vue:17
|
#: frontend/src/pages/Assignments.vue:18 frontend/src/pages/Batches.vue:17
|
||||||
#: frontend/src/pages/Courses.vue:48 frontend/src/pages/Programs.vue:14
|
#: frontend/src/pages/Courses.vue:17 frontend/src/pages/Courses.vue:281
|
||||||
|
#: frontend/src/pages/Courses.vue:298 frontend/src/pages/Programs.vue:14
|
||||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||||
msgid "New"
|
msgid "New"
|
||||||
msgstr "جدید"
|
msgstr "جدید"
|
||||||
@@ -3484,11 +3451,11 @@ msgstr ""
|
|||||||
msgid "New Sign Up"
|
msgid "New Sign Up"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/utils.py:604
|
#: lms/lms/utils.py:605
|
||||||
msgid "New comment in batch {0}"
|
msgid "New comment in batch {0}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/utils.py:597
|
#: lms/lms/utils.py:598
|
||||||
msgid "New reply on the topic {0} in course {1}"
|
msgid "New reply on the topic {0} in course {1}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -3546,7 +3513,7 @@ msgstr ""
|
|||||||
msgid "No courses created"
|
msgid "No courses created"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/pages/Courses.vue:151
|
#: frontend/src/pages/Courses.vue:79
|
||||||
msgid "No courses found"
|
msgid "No courses found"
|
||||||
msgstr "هیچ دوره ای پیدا نشد"
|
msgstr "هیچ دوره ای پیدا نشد"
|
||||||
|
|
||||||
@@ -3598,15 +3565,11 @@ msgstr "ارسالی وجود ندارد"
|
|||||||
msgid "No {0}"
|
msgid "No {0}"
|
||||||
msgstr "نه {0}"
|
msgstr "نه {0}"
|
||||||
|
|
||||||
#: frontend/src/pages/Courses.vue:111
|
|
||||||
msgid "No {0} courses"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lms/templates/quiz/quiz.html:147
|
#: lms/templates/quiz/quiz.html:147
|
||||||
msgid "No."
|
msgid "No."
|
||||||
msgstr "شماره"
|
msgstr "شماره"
|
||||||
|
|
||||||
#: lms/overrides/user.py:194
|
#: lms/lms/user.py:29
|
||||||
msgid "Not Allowed"
|
msgid "Not Allowed"
|
||||||
msgstr "مجاز نیست"
|
msgstr "مجاز نیست"
|
||||||
|
|
||||||
@@ -3695,7 +3658,7 @@ msgstr ""
|
|||||||
msgid "Only files of type {0} will be accepted."
|
msgid "Only files of type {0} will be accepted."
|
||||||
msgstr "فقط فایل هایی از نوع {0} پذیرفته می شوند."
|
msgstr "فقط فایل هایی از نوع {0} پذیرفته می شوند."
|
||||||
|
|
||||||
#: frontend/src/pages/CourseForm.vue:506 frontend/src/utils/index.js:533
|
#: frontend/src/pages/CourseForm.vue:506 frontend/src/utils/index.js:552
|
||||||
msgid "Only image file is allowed."
|
msgid "Only image file is allowed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -3726,10 +3689,6 @@ msgstr ""
|
|||||||
msgid "Open Ended"
|
msgid "Open Ended"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/widgets/MemberCard.html:16
|
|
||||||
msgid "Open Network"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. Label of the option (Data) field in DocType 'LMS Option'
|
#. Label of the option (Data) field in DocType 'LMS Option'
|
||||||
#: frontend/src/components/Modals/Question.vue:64
|
#: frontend/src/components/Modals/Question.vue:64
|
||||||
#: lms/lms/doctype/lms_option/lms_option.json
|
#: lms/lms/doctype/lms_option/lms_option.json
|
||||||
@@ -3981,11 +3940,11 @@ msgstr ""
|
|||||||
msgid "Please add <a href='{0}'>{1}</a> for <a href='{2}'>{3}</a> to send calendar invites for evaluations."
|
msgid "Please add <a href='{0}'>{1}</a> for <a href='{2}'>{3}</a> to send calendar invites for evaluations."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/overrides/user.py:240
|
#: lms/lms/user.py:75
|
||||||
msgid "Please ask your administrator to verify your sign-up"
|
msgid "Please ask your administrator to verify your sign-up"
|
||||||
msgstr "لطفاً از ادمین خود بخواهید ثبت نام شما را تأیید کند"
|
msgstr "لطفاً از ادمین خود بخواهید ثبت نام شما را تأیید کند"
|
||||||
|
|
||||||
#: lms/overrides/user.py:238
|
#: lms/lms/user.py:73
|
||||||
msgid "Please check your email for verification"
|
msgid "Please check your email for verification"
|
||||||
msgstr "لطفا ایمیل خود را برای تایید بررسی کنید"
|
msgstr "لطفا ایمیل خود را برای تایید بررسی کنید"
|
||||||
|
|
||||||
@@ -3993,7 +3952,7 @@ msgstr "لطفا ایمیل خود را برای تایید بررسی کنید"
|
|||||||
msgid "Please click on the following button to set your new password"
|
msgid "Please click on the following button to set your new password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/utils.py:1901 lms/lms/utils.py:1905
|
#: lms/lms/utils.py:2030 lms/lms/utils.py:2034
|
||||||
msgid "Please complete the previous courses in the program to enroll in this course."
|
msgid "Please complete the previous courses in the program to enroll in this course."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -4009,7 +3968,7 @@ msgstr "لطفا برای مشاهده این درس در این دوره ثبت
|
|||||||
msgid "Please ensure that you complete all the questions in {0} minutes."
|
msgid "Please ensure that you complete all the questions in {0} minutes."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:164
|
#: frontend/src/components/Modals/LiveClassModal.vue:170
|
||||||
msgid "Please enter a title."
|
msgid "Please enter a title."
|
||||||
msgstr "لطفا یک عنوان وارد کنید."
|
msgstr "لطفا یک عنوان وارد کنید."
|
||||||
|
|
||||||
@@ -4018,7 +3977,7 @@ msgstr "لطفا یک عنوان وارد کنید."
|
|||||||
msgid "Please enter a valid URL."
|
msgid "Please enter a valid URL."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:176
|
#: frontend/src/components/Modals/LiveClassModal.vue:182
|
||||||
msgid "Please enter a valid time in the format HH:mm."
|
msgid "Please enter a valid time in the format HH:mm."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -4054,7 +4013,7 @@ msgstr ""
|
|||||||
msgid "Please login to access this page."
|
msgid "Please login to access this page."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/api.py:200
|
#: lms/lms/api.py:206
|
||||||
msgid "Please login to continue with payment."
|
msgid "Please login to continue with payment."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -4067,23 +4026,23 @@ msgstr ""
|
|||||||
msgid "Please schedule an evaluation to get certified."
|
msgid "Please schedule an evaluation to get certified."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:167
|
#: frontend/src/components/Modals/LiveClassModal.vue:173
|
||||||
msgid "Please select a date."
|
msgid "Please select a date."
|
||||||
msgstr "لطفا تاریخ را انتخاب کنید"
|
msgstr "لطفا تاریخ را انتخاب کنید"
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:191
|
#: frontend/src/components/Modals/LiveClassModal.vue:197
|
||||||
msgid "Please select a duration."
|
msgid "Please select a duration."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:188
|
#: frontend/src/components/Modals/LiveClassModal.vue:194
|
||||||
msgid "Please select a future date and time."
|
msgid "Please select a future date and time."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:170
|
#: frontend/src/components/Modals/LiveClassModal.vue:176
|
||||||
msgid "Please select a time."
|
msgid "Please select a time."
|
||||||
msgstr "لطفا زمانی را انتخاب کنید."
|
msgstr "لطفا زمانی را انتخاب کنید."
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:173
|
#: frontend/src/components/Modals/LiveClassModal.vue:179
|
||||||
msgid "Please select a timezone."
|
msgid "Please select a timezone."
|
||||||
msgstr "لطفاً یک منطقه زمانی انتخاب کنید."
|
msgstr "لطفاً یک منطقه زمانی انتخاب کنید."
|
||||||
|
|
||||||
@@ -4091,13 +4050,6 @@ msgstr "لطفاً یک منطقه زمانی انتخاب کنید."
|
|||||||
msgid "Please take appropriate action at {0}"
|
msgid "Please take appropriate action at {0}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:79
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:83
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:91
|
|
||||||
#: frontend/src/components/UserDropdown.vue:244
|
|
||||||
msgid "Please try again"
|
|
||||||
msgstr "لطفا دوباره تلاش کنید"
|
|
||||||
|
|
||||||
#: frontend/src/components/Modals/ChapterModal.vue:177
|
#: frontend/src/components/Modals/ChapterModal.vue:177
|
||||||
msgid "Please upload a SCORM package"
|
msgid "Please upload a SCORM package"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -4210,7 +4162,7 @@ msgstr ""
|
|||||||
msgid "Primary Subgroup"
|
msgid "Primary Subgroup"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/utils.py:436
|
#: lms/lms/utils.py:437
|
||||||
msgid "Privacy Policy"
|
msgid "Privacy Policy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -4478,7 +4430,7 @@ msgstr ""
|
|||||||
msgid "Registered"
|
msgid "Registered"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/overrides/user.py:201
|
#: lms/lms/user.py:36
|
||||||
msgid "Registered but disabled"
|
msgid "Registered but disabled"
|
||||||
msgstr "ثبت شده اما غیرفعال است"
|
msgstr "ثبت شده اما غیرفعال است"
|
||||||
|
|
||||||
@@ -4519,10 +4471,6 @@ msgstr ""
|
|||||||
msgid "Required Role"
|
msgid "Required Role"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:31
|
|
||||||
msgid "Resend"
|
|
||||||
msgstr "ارسال دوباره"
|
|
||||||
|
|
||||||
#. Option for the 'Membership' (Select) field in DocType 'LMS Batch Old'
|
#. Option for the 'Membership' (Select) field in DocType 'LMS Batch Old'
|
||||||
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
|
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
|
||||||
msgid "Restricted"
|
msgid "Restricted"
|
||||||
@@ -4677,7 +4625,7 @@ msgstr "جستجو کردن"
|
|||||||
msgid "Search by Name"
|
msgid "Search by Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/pages/Batches.vue:45
|
#: frontend/src/pages/Batches.vue:45 frontend/src/pages/Courses.vue:45
|
||||||
msgid "Search by Title"
|
msgid "Search by Title"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -4819,7 +4767,7 @@ msgstr "نوار کناری"
|
|||||||
msgid "Sidebar Items"
|
msgid "Sidebar Items"
|
||||||
msgstr "موارد نوار کناری"
|
msgstr "موارد نوار کناری"
|
||||||
|
|
||||||
#: lms/overrides/user.py:194
|
#: lms/lms/user.py:29
|
||||||
msgid "Sign Up is disabled"
|
msgid "Sign Up is disabled"
|
||||||
msgstr "ثبت نام غیرفعال است"
|
msgstr "ثبت نام غیرفعال است"
|
||||||
|
|
||||||
@@ -4863,10 +4811,6 @@ msgstr "نام مهارت"
|
|||||||
msgid "Skills"
|
msgid "Skills"
|
||||||
msgstr "مهارت ها"
|
msgstr "مهارت ها"
|
||||||
|
|
||||||
#: lms/overrides/user.py:42
|
|
||||||
msgid "Skills must be unique"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lms/templates/onboarding_header.html:6
|
#: lms/templates/onboarding_header.html:6
|
||||||
msgid "Skip"
|
msgid "Skip"
|
||||||
msgstr "پرش کنید"
|
msgstr "پرش کنید"
|
||||||
@@ -5143,7 +5087,7 @@ msgstr "خلاصه"
|
|||||||
msgid "Sunday"
|
msgid "Sunday"
|
||||||
msgstr "یکشنبه"
|
msgstr "یکشنبه"
|
||||||
|
|
||||||
#: lms/lms/api.py:1012
|
#: lms/lms/api.py:1018
|
||||||
msgid "Suspicious pattern found in {0}: {1}"
|
msgid "Suspicious pattern found in {0}: {1}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -5224,11 +5168,11 @@ msgstr ""
|
|||||||
msgid "Template"
|
msgid "Template"
|
||||||
msgstr "قالب"
|
msgstr "قالب"
|
||||||
|
|
||||||
#: lms/overrides/user.py:205
|
#: lms/lms/user.py:40
|
||||||
msgid "Temporarily Disabled"
|
msgid "Temporarily Disabled"
|
||||||
msgstr "موقتا غیر فعال می باشد"
|
msgstr "موقتا غیر فعال می باشد"
|
||||||
|
|
||||||
#: lms/lms/utils.py:435
|
#: lms/lms/utils.py:436
|
||||||
msgid "Terms of Use"
|
msgid "Terms of Use"
|
||||||
msgstr "شرایط استفاده"
|
msgstr "شرایط استفاده"
|
||||||
|
|
||||||
@@ -5264,7 +5208,7 @@ msgstr ""
|
|||||||
msgid "Thanks and Regards"
|
msgid "Thanks and Regards"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/utils.py:1801
|
#: lms/lms/utils.py:1930
|
||||||
msgid "The batch is full. Please contact the Administrator."
|
msgid "The batch is full. Please contact the Administrator."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -5300,8 +5244,8 @@ msgstr ""
|
|||||||
msgid "There are no chapters in this course. Create and manage chapters from here."
|
msgid "There are no chapters in this course. Create and manage chapters from here."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/pages/Courses.vue:155
|
#: frontend/src/pages/Courses.vue:83
|
||||||
msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
|
msgid "There are no courses matching the criteria. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/pages/CertifiedParticipants.vue:92
|
#: frontend/src/pages/CertifiedParticipants.vue:92
|
||||||
@@ -5359,7 +5303,7 @@ msgstr "این کلاس به پایان رسید"
|
|||||||
msgid "This course has:"
|
msgid "This course has:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/utils.py:1644
|
#: lms/lms/utils.py:1773
|
||||||
msgid "This course is free."
|
msgid "This course is free."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -5427,7 +5371,7 @@ msgstr "الگوی جدول زمانی"
|
|||||||
#. Label of the timezone (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 Certificate Request'
|
#. Label of the timezone (Data) field in DocType 'LMS Certificate Request'
|
||||||
#. Label of the timezone (Data) field in DocType 'LMS Live Class'
|
#. Label of the timezone (Data) field in DocType 'LMS Live Class'
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:46
|
#: frontend/src/components/Modals/LiveClassModal.vue:45
|
||||||
#: frontend/src/pages/BatchForm.vue:120
|
#: frontend/src/pages/BatchForm.vue:120
|
||||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||||
@@ -5501,7 +5445,7 @@ msgstr "به"
|
|||||||
msgid "To Date"
|
msgid "To Date"
|
||||||
msgstr "تا تاریخ"
|
msgstr "تا تاریخ"
|
||||||
|
|
||||||
#: lms/lms/utils.py:1655
|
#: lms/lms/utils.py:1784
|
||||||
msgid "To join this batch, please contact the Administrator."
|
msgid "To join this batch, please contact the Administrator."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -5509,7 +5453,7 @@ msgstr ""
|
|||||||
msgid "To upload Image, Video, Audio or PDF from your system, click on the add icon and select upload from the menu. Then choose the file you want to add to the lesson and it gets added to your lesson."
|
msgid "To upload Image, Video, Audio or PDF from your system, click on the add icon and select upload from the menu. Then choose the file you want to add to the lesson and it gets added to your lesson."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/overrides/user.py:206
|
#: lms/lms/user.py:41
|
||||||
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
|
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
|
||||||
msgstr "کاربران زیادی اخیرا ثبت نام کرده اند، بنابراین ثبت نام غیرفعال است. لطفا یک ساعت دیگر دوباره امتحان کنید"
|
msgstr "کاربران زیادی اخیرا ثبت نام کرده اند، بنابراین ثبت نام غیرفعال است. لطفا یک ساعت دیگر دوباره امتحان کنید"
|
||||||
|
|
||||||
@@ -5626,7 +5570,8 @@ msgstr ""
|
|||||||
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request'
|
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request'
|
||||||
#. Label of the upcoming (Check) field in DocType 'LMS Course'
|
#. Label of the upcoming (Check) field in DocType 'LMS Course'
|
||||||
#: frontend/src/pages/Batches.vue:276 frontend/src/pages/Batches.vue:294
|
#: frontend/src/pages/Batches.vue:276 frontend/src/pages/Batches.vue:294
|
||||||
#: frontend/src/pages/CourseForm.vue:184 lms/lms/doctype/cohort/cohort.json
|
#: frontend/src/pages/CourseForm.vue:184 frontend/src/pages/Courses.vue:282
|
||||||
|
#: frontend/src/pages/Courses.vue:301 lms/lms/doctype/cohort/cohort.json
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||||
#: lms/lms/doctype/lms_course/lms_course.json
|
#: lms/lms/doctype/lms_course/lms_course.json
|
||||||
msgid "Upcoming"
|
msgid "Upcoming"
|
||||||
@@ -5727,14 +5672,6 @@ msgstr "مقدار"
|
|||||||
msgid "Value Change"
|
msgid "Value Change"
|
||||||
msgstr "تغییر ارزش"
|
msgstr "تغییر ارزش"
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:26
|
|
||||||
msgid "Verification Code"
|
|
||||||
msgstr "کد تایید"
|
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:9
|
|
||||||
msgid "Verify"
|
|
||||||
msgstr "تأیید کنید"
|
|
||||||
|
|
||||||
#. Label of the video_link (Data) field in DocType 'LMS Course'
|
#. Label of the video_link (Data) field in DocType 'LMS Course'
|
||||||
#: lms/lms/doctype/lms_course/lms_course.json
|
#: lms/lms/doctype/lms_course/lms_course.json
|
||||||
msgid "Video Embed Link"
|
msgid "Video Embed Link"
|
||||||
@@ -5776,10 +5713,6 @@ msgstr ""
|
|||||||
msgid "We have a limited number of seats, and they won't be available for long!"
|
msgid "We have a limited number of seats, and they won't be available for long!"
|
||||||
msgstr "ما تعداد محدودی صندلی داریم و برای مدت طولانی در دسترس نخواهند بود!"
|
msgstr "ما تعداد محدودی صندلی داریم و برای مدت طولانی در دسترس نخواهند بود!"
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:21
|
|
||||||
msgid "We have sent the verificaton code to your email id "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lms/templates/emails/payment_reminder.html:4
|
#: lms/templates/emails/payment_reminder.html:4
|
||||||
msgid "We noticed that you started enrolling in the"
|
msgid "We noticed that you started enrolling in the"
|
||||||
msgstr "ما متوجه شدیم که شما شروع به ثبت نام کردید در"
|
msgstr "ما متوجه شدیم که شما شروع به ثبت نام کردید در"
|
||||||
@@ -5855,7 +5788,7 @@ msgstr ""
|
|||||||
msgid "Write your answer here"
|
msgid "Write your answer here"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:95
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:96
|
||||||
msgid "You already have an evaluation on {0} at {1} for the course {2}."
|
msgid "You already have an evaluation on {0} at {1} for the course {2}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -5863,11 +5796,11 @@ msgstr ""
|
|||||||
msgid "You are already certified for this course. Click on the card below to open your certificate."
|
msgid "You are already certified for this course. Click on the card below to open your certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/api.py:224
|
#: lms/lms/api.py:230
|
||||||
msgid "You are already enrolled for this batch."
|
msgid "You are already enrolled for this batch."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/api.py:216
|
#: lms/lms/api.py:222
|
||||||
msgid "You are already enrolled for this course."
|
msgid "You are already enrolled for this course."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -5887,10 +5820,6 @@ msgstr "شما ثبت نام نکردهاید"
|
|||||||
msgid "You are not enrolled in this course. Please enroll to access this lesson."
|
msgid "You are not enrolled in this course. Please enroll to access this lesson."
|
||||||
msgstr "شما در این دوره ثبت نام نکردهاید. لطفا برای دسترسی به این دوره ثبت نام کنید."
|
msgstr "شما در این دوره ثبت نام نکردهاید. لطفا برای دسترسی به این دوره ثبت نام کنید."
|
||||||
|
|
||||||
#: frontend/src/pages/Courses.vue:139
|
|
||||||
msgid "You can add chapters and lessons to it."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lms/templates/emails/lms_course_interest.html:13
|
#: lms/templates/emails/lms_course_interest.html:13
|
||||||
#: lms/templates/emails/lms_invite_request_approved.html:11
|
#: lms/templates/emails/lms_invite_request_approved.html:11
|
||||||
msgid "You can also copy-paste following link in your browser"
|
msgid "You can also copy-paste following link in your browser"
|
||||||
@@ -5908,11 +5837,11 @@ msgstr ""
|
|||||||
msgid "You can find their resume attached to this email."
|
msgid "You can find their resume attached to this email."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:115
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:116
|
||||||
msgid "You cannot schedule evaluations after {0}."
|
msgid "You cannot schedule evaluations after {0}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:104
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:105
|
||||||
msgid "You cannot schedule evaluations for past slots."
|
msgid "You cannot schedule evaluations for past slots."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -5945,7 +5874,7 @@ msgstr ""
|
|||||||
msgid "You have already exceeded the maximum number of attempts allowed for this quiz."
|
msgid "You have already exceeded the maximum number of attempts allowed for this quiz."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/api.py:237
|
#: lms/lms/api.py:243
|
||||||
msgid "You have already purchased the certificate for this course."
|
msgid "You have already purchased the certificate for this course."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -5985,10 +5914,6 @@ msgstr ""
|
|||||||
msgid "You need to login first to enroll for this course"
|
msgid "You need to login first to enroll for this course"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:71
|
|
||||||
msgid "You will be redirected to Frappe Cloud soon."
|
|
||||||
msgstr "به زودی به Frappe Cloud هدایت خواهید شد."
|
|
||||||
|
|
||||||
#: frontend/src/components/Quiz.vue:27 lms/templates/quiz/quiz.html:11
|
#: frontend/src/components/Quiz.vue:27 lms/templates/quiz/quiz.html:11
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "You will have to get {0}% correct answers in order to pass the quiz."
|
msgid "You will have to get {0}% correct answers in order to pass the quiz."
|
||||||
@@ -6026,7 +5951,7 @@ msgstr ""
|
|||||||
msgid "Your evaluation for the course {0} has been scheduled on {1} at {2} {3}."
|
msgid "Your evaluation for the course {0} has been scheduled on {1} at {2} {3}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:125
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:126
|
||||||
msgid "Your evaluation slot has been booked"
|
msgid "Your evaluation slot has been booked"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -6127,7 +6052,7 @@ msgstr "هفته ها"
|
|||||||
msgid "you can"
|
msgid "you can"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/api.py:802 lms/lms/api.py:810
|
#: lms/lms/api.py:808 lms/lms/api.py:816
|
||||||
msgid "{0} Settings not found"
|
msgid "{0} Settings not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -6167,7 +6092,7 @@ msgstr "{0} قبلاً برای دوره {1} تایید شده است"
|
|||||||
msgid "{0} is your evaluator"
|
msgid "{0} is your evaluator"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/utils.py:681
|
#: lms/lms/utils.py:682
|
||||||
msgid "{0} mentioned you in a comment"
|
msgid "{0} mentioned you in a comment"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -6175,11 +6100,11 @@ msgstr ""
|
|||||||
msgid "{0} mentioned you in a comment in your batch."
|
msgid "{0} mentioned you in a comment in your batch."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/utils.py:634 lms/lms/utils.py:640
|
#: lms/lms/utils.py:635 lms/lms/utils.py:641
|
||||||
msgid "{0} mentioned you in a comment in {1}"
|
msgid "{0} mentioned you in a comment in {1}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/utils.py:457
|
#: lms/lms/utils.py:458
|
||||||
msgid "{0}k"
|
msgid "{0}k"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
245
lms/locale/fr.po
245
lms/locale/fr.po
@@ -2,8 +2,8 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: frappe\n"
|
"Project-Id-Version: frappe\n"
|
||||||
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
|
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
|
||||||
"POT-Creation-Date: 2025-02-28 16:04+0000\n"
|
"POT-Creation-Date: 2025-03-07 16:04+0000\n"
|
||||||
"PO-Revision-Date: 2025-03-03 21:29\n"
|
"PO-Revision-Date: 2025-03-10 22:46\n"
|
||||||
"Last-Translator: jannat@frappe.io\n"
|
"Last-Translator: jannat@frappe.io\n"
|
||||||
"Language-Team: French\n"
|
"Language-Team: French\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -228,7 +228,7 @@ msgstr ""
|
|||||||
msgid "All Certified Participants"
|
msgid "All Certified Participants"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/widgets/BreadCrumb.html:3
|
#: frontend/src/pages/Courses.vue:26 lms/lms/widgets/BreadCrumb.html:3
|
||||||
msgid "All Courses"
|
msgid "All Courses"
|
||||||
msgstr "Tous les cours"
|
msgstr "Tous les cours"
|
||||||
|
|
||||||
@@ -268,7 +268,7 @@ msgstr "Autoriser l'accès aux dates futures"
|
|||||||
msgid "Allow self enrollment"
|
msgid "Allow self enrollment"
|
||||||
msgstr "Autoriser l'auto-inscription"
|
msgstr "Autoriser l'auto-inscription"
|
||||||
|
|
||||||
#: lms/overrides/user.py:199
|
#: lms/lms/user.py:34
|
||||||
msgid "Already Registered"
|
msgid "Already Registered"
|
||||||
msgstr "Déjà Inscrit"
|
msgstr "Déjà Inscrit"
|
||||||
|
|
||||||
@@ -378,7 +378,7 @@ msgstr "Archivé"
|
|||||||
msgid "Are you sure you want to cancel this evaluation? This action cannot be undone."
|
msgid "Are you sure you want to cancel this evaluation? This action cannot be undone."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/UserDropdown.vue:209
|
#: frontend/src/components/UserDropdown.vue:169
|
||||||
msgid "Are you sure you want to login to your Frappe Cloud dashboard?"
|
msgid "Are you sure you want to login to your Frappe Cloud dashboard?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -492,12 +492,12 @@ msgid "Auto Assign"
|
|||||||
msgstr "Affectation automatique"
|
msgstr "Affectation automatique"
|
||||||
|
|
||||||
#. Label of the auto_recording (Select) field in DocType 'LMS Live Class'
|
#. Label of the auto_recording (Select) field in DocType 'LMS Live Class'
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:71
|
#: frontend/src/components/Modals/LiveClassModal.vue:77
|
||||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||||
msgid "Auto Recording"
|
msgid "Auto Recording"
|
||||||
msgstr "Enregistrement automatique"
|
msgstr "Enregistrement automatique"
|
||||||
|
|
||||||
#: frontend/src/components/CourseCard.vue:50
|
#: frontend/src/components/CourseCard.vue:51
|
||||||
#: frontend/src/pages/CourseDetail.vue:20
|
#: frontend/src/pages/CourseDetail.vue:20
|
||||||
msgid "Average Rating"
|
msgid "Average Rating"
|
||||||
msgstr "Notation moyenne"
|
msgstr "Notation moyenne"
|
||||||
@@ -739,7 +739,7 @@ msgstr ""
|
|||||||
#. Label of the category (Link) field in DocType 'LMS Course'
|
#. Label of the category (Link) field in DocType 'LMS Course'
|
||||||
#: frontend/src/pages/BatchForm.vue:190 frontend/src/pages/Batches.vue:55
|
#: frontend/src/pages/BatchForm.vue:190 frontend/src/pages/Batches.vue:55
|
||||||
#: frontend/src/pages/CertifiedParticipants.vue:37
|
#: frontend/src/pages/CertifiedParticipants.vue:37
|
||||||
#: frontend/src/pages/CourseForm.vue:147 frontend/src/pages/Courses.vue:17
|
#: frontend/src/pages/CourseForm.vue:147 frontend/src/pages/Courses.vue:55
|
||||||
#: frontend/src/pages/JobDetail.vue:96 lms/lms/doctype/lms_batch/lms_batch.json
|
#: frontend/src/pages/JobDetail.vue:96 lms/lms/doctype/lms_batch/lms_batch.json
|
||||||
#: lms/lms/doctype/lms_category/lms_category.json
|
#: lms/lms/doctype/lms_category/lms_category.json
|
||||||
#: lms/lms/doctype/lms_course/lms_course.json
|
#: lms/lms/doctype/lms_course/lms_course.json
|
||||||
@@ -790,12 +790,12 @@ msgstr ""
|
|||||||
#. Enrollment'
|
#. Enrollment'
|
||||||
#. Label of a Card Break in the LMS Workspace
|
#. Label of a Card Break in the LMS Workspace
|
||||||
#. Label of a Link in the LMS Workspace
|
#. Label of a Link in the LMS Workspace
|
||||||
#: frontend/src/components/CourseCard.vue:110
|
#: frontend/src/components/CourseCard.vue:111
|
||||||
#: frontend/src/components/Modals/Event.vue:371
|
#: frontend/src/components/Modals/Event.vue:371
|
||||||
#: frontend/src/pages/BatchForm.vue:37 frontend/src/pages/Batches.vue:38
|
#: frontend/src/pages/BatchForm.vue:37 frontend/src/pages/Batches.vue:38
|
||||||
#: frontend/src/pages/CourseCertification.vue:10
|
#: frontend/src/pages/CourseCertification.vue:10
|
||||||
#: frontend/src/pages/CourseCertification.vue:114
|
#: frontend/src/pages/CourseCertification.vue:114
|
||||||
#: lms/fixtures/custom_field.json
|
#: frontend/src/pages/Courses.vue:38 lms/fixtures/custom_field.json
|
||||||
#: lms/lms/doctype/certification/certification.json
|
#: lms/lms/doctype/certification/certification.json
|
||||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
||||||
@@ -912,10 +912,6 @@ msgstr "Nettoyer"
|
|||||||
msgid "Clearly Defined Role"
|
msgid "Clearly Defined Role"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:75
|
|
||||||
msgid "Click here to login"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: frontend/src/components/LessonHelp.vue:30
|
#: frontend/src/components/LessonHelp.vue:30
|
||||||
msgid "Click on the add icon in the editor and select Quiz from the menu. It opens up a dialog, where you can either select a quiz from the list or create a new quiz. When you select the Create New option it redirects you to the quiz creation page."
|
msgid "Click on the add icon in the editor and select Quiz from the menu. It opens up a dialog, where you can either select a quiz from the list or create a new quiz. When you select the Create New option it redirects you to the quiz creation page."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1084,7 +1080,7 @@ msgstr "Terminer l'inscription"
|
|||||||
msgid "Complete Your Enrollment"
|
msgid "Complete Your Enrollment"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_payment/lms_payment.py:40
|
#: lms/lms/doctype/lms_payment/lms_payment.py:55
|
||||||
msgid "Complete Your Enrollment - Don't miss out!"
|
msgid "Complete Your Enrollment - Don't miss out!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -1125,7 +1121,11 @@ msgstr ""
|
|||||||
msgid "Condition must be valid python code."
|
msgid "Condition must be valid python code."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/UserDropdown.vue:214
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.js:7
|
||||||
|
msgid "Conduct Evaluation"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: frontend/src/components/UserDropdown.vue:174
|
||||||
msgid "Confirm"
|
msgid "Confirm"
|
||||||
msgstr "Confirmer"
|
msgstr "Confirmer"
|
||||||
|
|
||||||
@@ -1166,7 +1166,7 @@ msgstr ""
|
|||||||
msgid "Contract"
|
msgid "Contract"
|
||||||
msgstr "Contrat"
|
msgstr "Contrat"
|
||||||
|
|
||||||
#: lms/lms/utils.py:437
|
#: lms/lms/utils.py:438
|
||||||
msgid "Cookie Policy"
|
msgid "Cookie Policy"
|
||||||
msgstr "Politique des cookies"
|
msgstr "Politique des cookies"
|
||||||
|
|
||||||
@@ -1382,7 +1382,7 @@ msgstr "Le cours {0} a déjà été ajouté à ce lot."
|
|||||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:79
|
#: frontend/src/components/Modals/BatchStudentProgress.vue:79
|
||||||
#: frontend/src/pages/BatchDetail.vue:21 frontend/src/pages/BatchDetail.vue:70
|
#: frontend/src/pages/BatchDetail.vue:21 frontend/src/pages/BatchDetail.vue:70
|
||||||
#: frontend/src/pages/CourseCertification.vue:106
|
#: frontend/src/pages/CourseCertification.vue:106
|
||||||
#: frontend/src/pages/Courses.vue:8 frontend/src/pages/Statistics.vue:21
|
#: frontend/src/pages/Courses.vue:314 frontend/src/pages/Statistics.vue:21
|
||||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||||
msgid "Courses"
|
msgid "Courses"
|
||||||
@@ -1393,10 +1393,6 @@ msgstr "Cours"
|
|||||||
msgid "Courses Completed"
|
msgid "Courses Completed"
|
||||||
msgstr "Cours terminés"
|
msgstr "Cours terminés"
|
||||||
|
|
||||||
#: lms/lms/web_template/courses_mentored/courses_mentored.html:4
|
|
||||||
msgid "Courses Mentored"
|
|
||||||
msgstr "Cours encadrés"
|
|
||||||
|
|
||||||
#: frontend/src/components/BatchCourses.vue:151
|
#: frontend/src/components/BatchCourses.vue:151
|
||||||
msgid "Courses deleted successfully"
|
msgid "Courses deleted successfully"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1412,14 +1408,10 @@ msgid "Create"
|
|||||||
msgstr "Créer"
|
msgstr "Créer"
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.js:7
|
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.js:7
|
||||||
msgid "Create LMS Certificate"
|
msgid "Create Certificate"
|
||||||
msgstr "Créer un certificat LMS"
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.js:8
|
#: lms/templates/onboarding_header.html:19
|
||||||
msgid "Create LMS Certificate Evaluation"
|
|
||||||
msgstr "Créer une évaluation de certificat LMS"
|
|
||||||
|
|
||||||
#: frontend/src/pages/Courses.vue:136 lms/templates/onboarding_header.html:19
|
|
||||||
msgid "Create a Course"
|
msgid "Create a Course"
|
||||||
msgstr "Créer un cours"
|
msgstr "Créer un cours"
|
||||||
|
|
||||||
@@ -1435,7 +1427,8 @@ msgstr ""
|
|||||||
msgid "Create a new question"
|
msgid "Create a new question"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/pages/Assignments.vue:163
|
#: frontend/src/pages/Assignments.vue:163 frontend/src/pages/Courses.vue:287
|
||||||
|
#: frontend/src/pages/Courses.vue:307
|
||||||
msgid "Created"
|
msgid "Created"
|
||||||
msgstr "Créé"
|
msgstr "Créé"
|
||||||
|
|
||||||
@@ -1488,7 +1481,7 @@ msgstr "Tableau de bord"
|
|||||||
#. Label of the date (Date) field in DocType 'Scheduled Flow'
|
#. Label of the date (Date) field in DocType 'Scheduled Flow'
|
||||||
#: frontend/src/components/Modals/EvaluationModal.vue:26
|
#: frontend/src/components/Modals/EvaluationModal.vue:26
|
||||||
#: frontend/src/components/Modals/Event.vue:40
|
#: frontend/src/components/Modals/Event.vue:40
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:55
|
#: frontend/src/components/Modals/LiveClassModal.vue:61
|
||||||
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
|
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
|
||||||
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
|
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||||
@@ -1587,7 +1580,7 @@ msgstr ""
|
|||||||
#. Label of the description (Small Text) field in DocType 'LMS Exercise'
|
#. 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 (Text) field in DocType 'LMS Live Class'
|
||||||
#. Label of the description (Small Text) field in DocType 'Work Experience'
|
#. Label of the description (Small Text) field in DocType 'Work Experience'
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:78
|
#: frontend/src/components/Modals/LiveClassModal.vue:84
|
||||||
#: frontend/src/pages/BatchForm.vue:224 frontend/src/pages/JobCreation.vue:50
|
#: frontend/src/pages/BatchForm.vue:224 frontend/src/pages/JobCreation.vue:50
|
||||||
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
||||||
#: lms/lms/doctype/certification/certification.json
|
#: lms/lms/doctype/certification/certification.json
|
||||||
@@ -1614,10 +1607,6 @@ msgstr ""
|
|||||||
msgid "Details"
|
msgid "Details"
|
||||||
msgstr "Détails"
|
msgstr "Détails"
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:30
|
|
||||||
msgid "Didn't receive the code?"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: frontend/src/pages/CourseForm.vue:194
|
#: frontend/src/pages/CourseForm.vue:194
|
||||||
msgid "Disable Self Enrollment"
|
msgid "Disable Self Enrollment"
|
||||||
msgstr "Désactiver l'auto-inscription"
|
msgstr "Désactiver l'auto-inscription"
|
||||||
@@ -1668,7 +1657,7 @@ msgstr ""
|
|||||||
#. Label of the duration (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 (Data) field in DocType 'LMS Batch Timetable'
|
||||||
#. Label of the duration (Int) field in DocType 'LMS Live Class'
|
#. Label of the duration (Int) field in DocType 'LMS Live Class'
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:62
|
#: frontend/src/components/Modals/LiveClassModal.vue:68
|
||||||
#: lms/lms/doctype/cohort/cohort.json
|
#: lms/lms/doctype/cohort/cohort.json
|
||||||
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
|
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
|
||||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||||
@@ -1680,7 +1669,7 @@ msgstr "Durée"
|
|||||||
msgid "Duration (in minutes)"
|
msgid "Duration (in minutes)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:58
|
#: frontend/src/components/Modals/LiveClassModal.vue:64
|
||||||
msgid "Duration of the live class in minutes"
|
msgid "Duration of the live class in minutes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -1826,11 +1815,12 @@ msgstr "Heure de Fin"
|
|||||||
msgid "Enroll Now"
|
msgid "Enroll Now"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/pages/Batches.vue:292
|
#: frontend/src/pages/Batches.vue:292 frontend/src/pages/Courses.vue:285
|
||||||
|
#: frontend/src/pages/Courses.vue:305
|
||||||
msgid "Enrolled"
|
msgid "Enrolled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/CourseCard.vue:41
|
#: frontend/src/components/CourseCard.vue:42
|
||||||
#: frontend/src/components/CourseCardOverlay.vue:106
|
#: frontend/src/components/CourseCardOverlay.vue:106
|
||||||
#: frontend/src/pages/CourseDetail.vue:33
|
#: frontend/src/pages/CourseDetail.vue:33
|
||||||
msgid "Enrolled Students"
|
msgid "Enrolled Students"
|
||||||
@@ -1849,11 +1839,11 @@ msgstr ""
|
|||||||
msgid "Enrollment Count"
|
msgid "Enrollment Count"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/utils.py:1769
|
#: lms/lms/utils.py:1898
|
||||||
msgid "Enrollment Failed"
|
msgid "Enrollment Failed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. Label of the enrollments (Data) field in DocType 'LMS Course'
|
#. Label of the enrollments (Int) field in DocType 'LMS Course'
|
||||||
#. Label of a chart in the LMS Workspace
|
#. Label of a chart in the LMS Workspace
|
||||||
#. Label of a shortcut in the LMS Workspace
|
#. Label of a shortcut in the LMS Workspace
|
||||||
#: frontend/src/pages/Statistics.vue:51
|
#: frontend/src/pages/Statistics.vue:51
|
||||||
@@ -2057,14 +2047,6 @@ msgstr ""
|
|||||||
msgid "Fail"
|
msgid "Fail"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/UserDropdown.vue:243
|
|
||||||
msgid "Failed to login to Frappe Cloud"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:91
|
|
||||||
msgid "Failed to resend code"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. Label of the featured (Check) field in DocType 'LMS Course'
|
#. Label of the featured (Check) field in DocType 'LMS Course'
|
||||||
#: frontend/src/components/CourseCard.vue:16
|
#: frontend/src/components/CourseCard.vue:16
|
||||||
#: frontend/src/pages/CourseForm.vue:189
|
#: frontend/src/pages/CourseForm.vue:189
|
||||||
@@ -2125,10 +2107,6 @@ msgstr ""
|
|||||||
msgid "Formal Wear"
|
msgid "Formal Wear"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:70
|
|
||||||
msgid "Frappe Cloud Login Successful"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lms/lms/widgets/CourseCard.html:114
|
#: lms/lms/widgets/CourseCard.html:114
|
||||||
msgid "Free"
|
msgid "Free"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -2212,7 +2190,7 @@ msgstr "Général"
|
|||||||
msgid "Generate Certificates"
|
msgid "Generate Certificates"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.js:18
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.js:15
|
||||||
msgid "Generate Google Meet Link"
|
msgid "Generate Google Meet Link"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -2382,10 +2360,6 @@ msgstr ""
|
|||||||
msgid "If you have any questions or require assistance, feel free to contact us."
|
msgid "If you have any questions or require assistance, feel free to contact us."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:71
|
|
||||||
msgid "If you haven't been redirected,"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. Description of the 'Amount (USD)' (Currency) field in DocType 'LMS Batch'
|
#. Description of the 'Amount (USD)' (Currency) field in DocType 'LMS Batch'
|
||||||
#. Description of the 'Amount (USD)' (Currency) field in DocType 'LMS Course'
|
#. Description of the 'Amount (USD)' (Currency) field in DocType 'LMS Course'
|
||||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||||
@@ -2969,8 +2943,8 @@ msgstr ""
|
|||||||
|
|
||||||
#. Label of the lessons (Table) field in DocType 'Course Chapter'
|
#. Label of the lessons (Table) field in DocType 'Course Chapter'
|
||||||
#. Group in Course Chapter's connections
|
#. Group in Course Chapter's connections
|
||||||
#. Label of the lessons (Data) field in DocType 'LMS Course'
|
#. Label of the lessons (Int) field in DocType 'LMS Course'
|
||||||
#: frontend/src/components/CourseCard.vue:32
|
#: frontend/src/components/CourseCard.vue:33
|
||||||
#: frontend/src/components/CourseCardOverlay.vue:99
|
#: frontend/src/components/CourseCardOverlay.vue:99
|
||||||
#: lms/lms/doctype/course_chapter/course_chapter.json
|
#: lms/lms/doctype/course_chapter/course_chapter.json
|
||||||
#: lms/lms/doctype/lms_course/lms_course.json
|
#: lms/lms/doctype/lms_course/lms_course.json
|
||||||
@@ -3021,7 +2995,7 @@ msgid "List of quizzes"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. Option for the 'Status' (Select) field in DocType 'Cohort'
|
#. Option for the 'Status' (Select) field in DocType 'Cohort'
|
||||||
#: lms/lms/doctype/cohort/cohort.json
|
#: frontend/src/pages/Courses.vue:295 lms/lms/doctype/cohort/cohort.json
|
||||||
msgid "Live"
|
msgid "Live"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -3039,6 +3013,7 @@ msgstr ""
|
|||||||
#: frontend/src/components/Members.vue:108
|
#: frontend/src/components/Members.vue:108
|
||||||
#: frontend/src/pages/Assignments.vue:71 frontend/src/pages/Batches.vue:94
|
#: frontend/src/pages/Assignments.vue:71 frontend/src/pages/Batches.vue:94
|
||||||
#: frontend/src/pages/CertifiedParticipants.vue:79
|
#: frontend/src/pages/CertifiedParticipants.vue:79
|
||||||
|
#: frontend/src/pages/Courses.vue:94
|
||||||
#: frontend/src/pages/QuizSubmissionList.vue:39
|
#: frontend/src/pages/QuizSubmissionList.vue:39
|
||||||
#: frontend/src/pages/Quizzes.vue:51
|
#: frontend/src/pages/Quizzes.vue:51
|
||||||
msgid "Load More"
|
msgid "Load More"
|
||||||
@@ -3071,16 +3046,7 @@ msgstr ""
|
|||||||
msgid "Login"
|
msgid "Login"
|
||||||
msgstr "Connexion"
|
msgstr "Connexion"
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:79
|
#: frontend/src/components/UserDropdown.vue:168
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:83
|
|
||||||
msgid "Login failed"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:6
|
|
||||||
msgid "Login to Frappe Cloud"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: frontend/src/components/UserDropdown.vue:208
|
|
||||||
msgid "Login to Frappe Cloud?"
|
msgid "Login to Frappe Cloud?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -3396,11 +3362,11 @@ msgstr ""
|
|||||||
msgid "Modified By"
|
msgid "Modified By"
|
||||||
msgstr "Modifié Par"
|
msgstr "Modifié Par"
|
||||||
|
|
||||||
#: lms/lms/api.py:208
|
#: lms/lms/api.py:214
|
||||||
msgid "Module Name is incorrect or does not exist."
|
msgid "Module Name is incorrect or does not exist."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/api.py:204
|
#: lms/lms/api.py:210
|
||||||
msgid "Module is incorrect."
|
msgid "Module is incorrect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -3430,7 +3396,8 @@ msgstr ""
|
|||||||
|
|
||||||
#. Option for the 'Event' (Select) field in DocType 'LMS Badge'
|
#. Option for the 'Event' (Select) field in DocType 'LMS Badge'
|
||||||
#: frontend/src/pages/Assignments.vue:18 frontend/src/pages/Batches.vue:17
|
#: frontend/src/pages/Assignments.vue:18 frontend/src/pages/Batches.vue:17
|
||||||
#: frontend/src/pages/Courses.vue:48 frontend/src/pages/Programs.vue:14
|
#: frontend/src/pages/Courses.vue:17 frontend/src/pages/Courses.vue:281
|
||||||
|
#: frontend/src/pages/Courses.vue:298 frontend/src/pages/Programs.vue:14
|
||||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||||
msgid "New"
|
msgid "New"
|
||||||
msgstr "Nouveau"
|
msgstr "Nouveau"
|
||||||
@@ -3484,11 +3451,11 @@ msgstr ""
|
|||||||
msgid "New Sign Up"
|
msgid "New Sign Up"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/utils.py:604
|
#: lms/lms/utils.py:605
|
||||||
msgid "New comment in batch {0}"
|
msgid "New comment in batch {0}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/utils.py:597
|
#: lms/lms/utils.py:598
|
||||||
msgid "New reply on the topic {0} in course {1}"
|
msgid "New reply on the topic {0} in course {1}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -3546,7 +3513,7 @@ msgstr ""
|
|||||||
msgid "No courses created"
|
msgid "No courses created"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/pages/Courses.vue:151
|
#: frontend/src/pages/Courses.vue:79
|
||||||
msgid "No courses found"
|
msgid "No courses found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -3598,15 +3565,11 @@ msgstr ""
|
|||||||
msgid "No {0}"
|
msgid "No {0}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/pages/Courses.vue:111
|
|
||||||
msgid "No {0} courses"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lms/templates/quiz/quiz.html:147
|
#: lms/templates/quiz/quiz.html:147
|
||||||
msgid "No."
|
msgid "No."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/overrides/user.py:194
|
#: lms/lms/user.py:29
|
||||||
msgid "Not Allowed"
|
msgid "Not Allowed"
|
||||||
msgstr "Non Autorisé"
|
msgstr "Non Autorisé"
|
||||||
|
|
||||||
@@ -3695,7 +3658,7 @@ msgstr ""
|
|||||||
msgid "Only files of type {0} will be accepted."
|
msgid "Only files of type {0} will be accepted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/pages/CourseForm.vue:506 frontend/src/utils/index.js:533
|
#: frontend/src/pages/CourseForm.vue:506 frontend/src/utils/index.js:552
|
||||||
msgid "Only image file is allowed."
|
msgid "Only image file is allowed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -3726,10 +3689,6 @@ msgstr ""
|
|||||||
msgid "Open Ended"
|
msgid "Open Ended"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/widgets/MemberCard.html:16
|
|
||||||
msgid "Open Network"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. Label of the option (Data) field in DocType 'LMS Option'
|
#. Label of the option (Data) field in DocType 'LMS Option'
|
||||||
#: frontend/src/components/Modals/Question.vue:64
|
#: frontend/src/components/Modals/Question.vue:64
|
||||||
#: lms/lms/doctype/lms_option/lms_option.json
|
#: lms/lms/doctype/lms_option/lms_option.json
|
||||||
@@ -3981,11 +3940,11 @@ msgstr ""
|
|||||||
msgid "Please add <a href='{0}'>{1}</a> for <a href='{2}'>{3}</a> to send calendar invites for evaluations."
|
msgid "Please add <a href='{0}'>{1}</a> for <a href='{2}'>{3}</a> to send calendar invites for evaluations."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/overrides/user.py:240
|
#: lms/lms/user.py:75
|
||||||
msgid "Please ask your administrator to verify your sign-up"
|
msgid "Please ask your administrator to verify your sign-up"
|
||||||
msgstr "Veuillez demander à votre administrateur de vérifier votre inscription"
|
msgstr "Veuillez demander à votre administrateur de vérifier votre inscription"
|
||||||
|
|
||||||
#: lms/overrides/user.py:238
|
#: lms/lms/user.py:73
|
||||||
msgid "Please check your email for verification"
|
msgid "Please check your email for verification"
|
||||||
msgstr "Veuillez vérifier votre email pour validation"
|
msgstr "Veuillez vérifier votre email pour validation"
|
||||||
|
|
||||||
@@ -3993,7 +3952,7 @@ msgstr "Veuillez vérifier votre email pour validation"
|
|||||||
msgid "Please click on the following button to set your new password"
|
msgid "Please click on the following button to set your new password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/utils.py:1901 lms/lms/utils.py:1905
|
#: lms/lms/utils.py:2030 lms/lms/utils.py:2034
|
||||||
msgid "Please complete the previous courses in the program to enroll in this course."
|
msgid "Please complete the previous courses in the program to enroll in this course."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -4009,7 +3968,7 @@ msgstr ""
|
|||||||
msgid "Please ensure that you complete all the questions in {0} minutes."
|
msgid "Please ensure that you complete all the questions in {0} minutes."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:164
|
#: frontend/src/components/Modals/LiveClassModal.vue:170
|
||||||
msgid "Please enter a title."
|
msgid "Please enter a title."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -4018,7 +3977,7 @@ msgstr ""
|
|||||||
msgid "Please enter a valid URL."
|
msgid "Please enter a valid URL."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:176
|
#: frontend/src/components/Modals/LiveClassModal.vue:182
|
||||||
msgid "Please enter a valid time in the format HH:mm."
|
msgid "Please enter a valid time in the format HH:mm."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -4054,7 +4013,7 @@ msgstr ""
|
|||||||
msgid "Please login to access this page."
|
msgid "Please login to access this page."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/api.py:200
|
#: lms/lms/api.py:206
|
||||||
msgid "Please login to continue with payment."
|
msgid "Please login to continue with payment."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -4067,23 +4026,23 @@ msgstr "Veuillez bien vous préparer et être à temps pour les évaluations."
|
|||||||
msgid "Please schedule an evaluation to get certified."
|
msgid "Please schedule an evaluation to get certified."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:167
|
#: frontend/src/components/Modals/LiveClassModal.vue:173
|
||||||
msgid "Please select a date."
|
msgid "Please select a date."
|
||||||
msgstr "Veuillez sélectionner une date."
|
msgstr "Veuillez sélectionner une date."
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:191
|
#: frontend/src/components/Modals/LiveClassModal.vue:197
|
||||||
msgid "Please select a duration."
|
msgid "Please select a duration."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:188
|
#: frontend/src/components/Modals/LiveClassModal.vue:194
|
||||||
msgid "Please select a future date and time."
|
msgid "Please select a future date and time."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:170
|
#: frontend/src/components/Modals/LiveClassModal.vue:176
|
||||||
msgid "Please select a time."
|
msgid "Please select a time."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:173
|
#: frontend/src/components/Modals/LiveClassModal.vue:179
|
||||||
msgid "Please select a timezone."
|
msgid "Please select a timezone."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -4091,13 +4050,6 @@ msgstr ""
|
|||||||
msgid "Please take appropriate action at {0}"
|
msgid "Please take appropriate action at {0}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:79
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:83
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:91
|
|
||||||
#: frontend/src/components/UserDropdown.vue:244
|
|
||||||
msgid "Please try again"
|
|
||||||
msgstr "Veuillez réessayer"
|
|
||||||
|
|
||||||
#: frontend/src/components/Modals/ChapterModal.vue:177
|
#: frontend/src/components/Modals/ChapterModal.vue:177
|
||||||
msgid "Please upload a SCORM package"
|
msgid "Please upload a SCORM package"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -4210,7 +4162,7 @@ msgstr ""
|
|||||||
msgid "Primary Subgroup"
|
msgid "Primary Subgroup"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/utils.py:436
|
#: lms/lms/utils.py:437
|
||||||
msgid "Privacy Policy"
|
msgid "Privacy Policy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -4478,7 +4430,7 @@ msgstr ""
|
|||||||
msgid "Registered"
|
msgid "Registered"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/overrides/user.py:201
|
#: lms/lms/user.py:36
|
||||||
msgid "Registered but disabled"
|
msgid "Registered but disabled"
|
||||||
msgstr "Enregistré mais Désactivé"
|
msgstr "Enregistré mais Désactivé"
|
||||||
|
|
||||||
@@ -4519,10 +4471,6 @@ msgstr ""
|
|||||||
msgid "Required Role"
|
msgid "Required Role"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:31
|
|
||||||
msgid "Resend"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. Option for the 'Membership' (Select) field in DocType 'LMS Batch Old'
|
#. Option for the 'Membership' (Select) field in DocType 'LMS Batch Old'
|
||||||
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
|
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
|
||||||
msgid "Restricted"
|
msgid "Restricted"
|
||||||
@@ -4677,7 +4625,7 @@ msgstr "Rechercher"
|
|||||||
msgid "Search by Name"
|
msgid "Search by Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/pages/Batches.vue:45
|
#: frontend/src/pages/Batches.vue:45 frontend/src/pages/Courses.vue:45
|
||||||
msgid "Search by Title"
|
msgid "Search by Title"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -4819,7 +4767,7 @@ msgstr ""
|
|||||||
msgid "Sidebar Items"
|
msgid "Sidebar Items"
|
||||||
msgstr "Articles de la Barre Latérale"
|
msgstr "Articles de la Barre Latérale"
|
||||||
|
|
||||||
#: lms/overrides/user.py:194
|
#: lms/lms/user.py:29
|
||||||
msgid "Sign Up is disabled"
|
msgid "Sign Up is disabled"
|
||||||
msgstr "L'inscription est désactivée"
|
msgstr "L'inscription est désactivée"
|
||||||
|
|
||||||
@@ -4863,10 +4811,6 @@ msgstr "Nom de la compétence"
|
|||||||
msgid "Skills"
|
msgid "Skills"
|
||||||
msgstr "Compétences"
|
msgstr "Compétences"
|
||||||
|
|
||||||
#: lms/overrides/user.py:42
|
|
||||||
msgid "Skills must be unique"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lms/templates/onboarding_header.html:6
|
#: lms/templates/onboarding_header.html:6
|
||||||
msgid "Skip"
|
msgid "Skip"
|
||||||
msgstr "Sauter"
|
msgstr "Sauter"
|
||||||
@@ -5143,7 +5087,7 @@ msgstr "Résumé"
|
|||||||
msgid "Sunday"
|
msgid "Sunday"
|
||||||
msgstr "Dimanche"
|
msgstr "Dimanche"
|
||||||
|
|
||||||
#: lms/lms/api.py:1012
|
#: lms/lms/api.py:1018
|
||||||
msgid "Suspicious pattern found in {0}: {1}"
|
msgid "Suspicious pattern found in {0}: {1}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -5224,11 +5168,11 @@ msgstr ""
|
|||||||
msgid "Template"
|
msgid "Template"
|
||||||
msgstr "Modèle"
|
msgstr "Modèle"
|
||||||
|
|
||||||
#: lms/overrides/user.py:205
|
#: lms/lms/user.py:40
|
||||||
msgid "Temporarily Disabled"
|
msgid "Temporarily Disabled"
|
||||||
msgstr "Temporairement désactivé"
|
msgstr "Temporairement désactivé"
|
||||||
|
|
||||||
#: lms/lms/utils.py:435
|
#: lms/lms/utils.py:436
|
||||||
msgid "Terms of Use"
|
msgid "Terms of Use"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -5264,7 +5208,7 @@ msgstr ""
|
|||||||
msgid "Thanks and Regards"
|
msgid "Thanks and Regards"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/utils.py:1801
|
#: lms/lms/utils.py:1930
|
||||||
msgid "The batch is full. Please contact the Administrator."
|
msgid "The batch is full. Please contact the Administrator."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -5300,8 +5244,8 @@ msgstr ""
|
|||||||
msgid "There are no chapters in this course. Create and manage chapters from here."
|
msgid "There are no chapters in this course. Create and manage chapters from here."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/pages/Courses.vue:155
|
#: frontend/src/pages/Courses.vue:83
|
||||||
msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
|
msgid "There are no courses matching the criteria. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/pages/CertifiedParticipants.vue:92
|
#: frontend/src/pages/CertifiedParticipants.vue:92
|
||||||
@@ -5359,7 +5303,7 @@ msgstr ""
|
|||||||
msgid "This course has:"
|
msgid "This course has:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/utils.py:1644
|
#: lms/lms/utils.py:1773
|
||||||
msgid "This course is free."
|
msgid "This course is free."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -5427,7 +5371,7 @@ msgstr ""
|
|||||||
#. Label of the timezone (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 Certificate Request'
|
#. Label of the timezone (Data) field in DocType 'LMS Certificate Request'
|
||||||
#. Label of the timezone (Data) field in DocType 'LMS Live Class'
|
#. Label of the timezone (Data) field in DocType 'LMS Live Class'
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:46
|
#: frontend/src/components/Modals/LiveClassModal.vue:45
|
||||||
#: frontend/src/pages/BatchForm.vue:120
|
#: frontend/src/pages/BatchForm.vue:120
|
||||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||||
@@ -5501,7 +5445,7 @@ msgstr "À"
|
|||||||
msgid "To Date"
|
msgid "To Date"
|
||||||
msgstr "Jusqu'au"
|
msgstr "Jusqu'au"
|
||||||
|
|
||||||
#: lms/lms/utils.py:1655
|
#: lms/lms/utils.py:1784
|
||||||
msgid "To join this batch, please contact the Administrator."
|
msgid "To join this batch, please contact the Administrator."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -5509,7 +5453,7 @@ msgstr ""
|
|||||||
msgid "To upload Image, Video, Audio or PDF from your system, click on the add icon and select upload from the menu. Then choose the file you want to add to the lesson and it gets added to your lesson."
|
msgid "To upload Image, Video, Audio or PDF from your system, click on the add icon and select upload from the menu. Then choose the file you want to add to the lesson and it gets added to your lesson."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/overrides/user.py:206
|
#: lms/lms/user.py:41
|
||||||
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
|
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
|
||||||
msgstr "Trop d'utilisateurs se sont inscrits récemment, du coup l’inscription est désactivée. Veuillez essayer à nouveau dans une heure"
|
msgstr "Trop d'utilisateurs se sont inscrits récemment, du coup l’inscription est désactivée. Veuillez essayer à nouveau dans une heure"
|
||||||
|
|
||||||
@@ -5626,7 +5570,8 @@ msgstr ""
|
|||||||
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request'
|
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request'
|
||||||
#. Label of the upcoming (Check) field in DocType 'LMS Course'
|
#. Label of the upcoming (Check) field in DocType 'LMS Course'
|
||||||
#: frontend/src/pages/Batches.vue:276 frontend/src/pages/Batches.vue:294
|
#: frontend/src/pages/Batches.vue:276 frontend/src/pages/Batches.vue:294
|
||||||
#: frontend/src/pages/CourseForm.vue:184 lms/lms/doctype/cohort/cohort.json
|
#: frontend/src/pages/CourseForm.vue:184 frontend/src/pages/Courses.vue:282
|
||||||
|
#: frontend/src/pages/Courses.vue:301 lms/lms/doctype/cohort/cohort.json
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||||
#: lms/lms/doctype/lms_course/lms_course.json
|
#: lms/lms/doctype/lms_course/lms_course.json
|
||||||
msgid "Upcoming"
|
msgid "Upcoming"
|
||||||
@@ -5727,14 +5672,6 @@ msgstr "Valeur"
|
|||||||
msgid "Value Change"
|
msgid "Value Change"
|
||||||
msgstr "Modification de Valeur"
|
msgstr "Modification de Valeur"
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:26
|
|
||||||
msgid "Verification Code"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:9
|
|
||||||
msgid "Verify"
|
|
||||||
msgstr "Vérifier"
|
|
||||||
|
|
||||||
#. Label of the video_link (Data) field in DocType 'LMS Course'
|
#. Label of the video_link (Data) field in DocType 'LMS Course'
|
||||||
#: lms/lms/doctype/lms_course/lms_course.json
|
#: lms/lms/doctype/lms_course/lms_course.json
|
||||||
msgid "Video Embed Link"
|
msgid "Video Embed Link"
|
||||||
@@ -5776,10 +5713,6 @@ msgstr ""
|
|||||||
msgid "We have a limited number of seats, and they won't be available for long!"
|
msgid "We have a limited number of seats, and they won't be available for long!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:21
|
|
||||||
msgid "We have sent the verificaton code to your email id "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lms/templates/emails/payment_reminder.html:4
|
#: lms/templates/emails/payment_reminder.html:4
|
||||||
msgid "We noticed that you started enrolling in the"
|
msgid "We noticed that you started enrolling in the"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -5855,7 +5788,7 @@ msgstr ""
|
|||||||
msgid "Write your answer here"
|
msgid "Write your answer here"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:95
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:96
|
||||||
msgid "You already have an evaluation on {0} at {1} for the course {2}."
|
msgid "You already have an evaluation on {0} at {1} for the course {2}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -5863,11 +5796,11 @@ msgstr ""
|
|||||||
msgid "You are already certified for this course. Click on the card below to open your certificate."
|
msgid "You are already certified for this course. Click on the card below to open your certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/api.py:224
|
#: lms/lms/api.py:230
|
||||||
msgid "You are already enrolled for this batch."
|
msgid "You are already enrolled for this batch."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/api.py:216
|
#: lms/lms/api.py:222
|
||||||
msgid "You are already enrolled for this course."
|
msgid "You are already enrolled for this course."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -5887,10 +5820,6 @@ msgstr ""
|
|||||||
msgid "You are not enrolled in this course. Please enroll to access this lesson."
|
msgid "You are not enrolled in this course. Please enroll to access this lesson."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/pages/Courses.vue:139
|
|
||||||
msgid "You can add chapters and lessons to it."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lms/templates/emails/lms_course_interest.html:13
|
#: lms/templates/emails/lms_course_interest.html:13
|
||||||
#: lms/templates/emails/lms_invite_request_approved.html:11
|
#: lms/templates/emails/lms_invite_request_approved.html:11
|
||||||
msgid "You can also copy-paste following link in your browser"
|
msgid "You can also copy-paste following link in your browser"
|
||||||
@@ -5908,11 +5837,11 @@ msgstr ""
|
|||||||
msgid "You can find their resume attached to this email."
|
msgid "You can find their resume attached to this email."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:115
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:116
|
||||||
msgid "You cannot schedule evaluations after {0}."
|
msgid "You cannot schedule evaluations after {0}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:104
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:105
|
||||||
msgid "You cannot schedule evaluations for past slots."
|
msgid "You cannot schedule evaluations for past slots."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -5945,7 +5874,7 @@ msgstr ""
|
|||||||
msgid "You have already exceeded the maximum number of attempts allowed for this quiz."
|
msgid "You have already exceeded the maximum number of attempts allowed for this quiz."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/api.py:237
|
#: lms/lms/api.py:243
|
||||||
msgid "You have already purchased the certificate for this course."
|
msgid "You have already purchased the certificate for this course."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -5985,10 +5914,6 @@ msgstr "Vous avez choisi d'être notifié pour ce cours. Vous recevrez un courri
|
|||||||
msgid "You need to login first to enroll for this course"
|
msgid "You need to login first to enroll for this course"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:71
|
|
||||||
msgid "You will be redirected to Frappe Cloud soon."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: frontend/src/components/Quiz.vue:27 lms/templates/quiz/quiz.html:11
|
#: frontend/src/components/Quiz.vue:27 lms/templates/quiz/quiz.html:11
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "You will have to get {0}% correct answers in order to pass the quiz."
|
msgid "You will have to get {0}% correct answers in order to pass the quiz."
|
||||||
@@ -6026,7 +5951,7 @@ msgstr ""
|
|||||||
msgid "Your evaluation for the course {0} has been scheduled on {1} at {2} {3}."
|
msgid "Your evaluation for the course {0} has been scheduled on {1} at {2} {3}."
|
||||||
msgstr "Votre évaluation pour le cours {0} a été programmée le {1} à {2} {3}."
|
msgstr "Votre évaluation pour le cours {0} a été programmée le {1} à {2} {3}."
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:125
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:126
|
||||||
msgid "Your evaluation slot has been booked"
|
msgid "Your evaluation slot has been booked"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -6127,7 +6052,7 @@ msgstr ""
|
|||||||
msgid "you can"
|
msgid "you can"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/api.py:802 lms/lms/api.py:810
|
#: lms/lms/api.py:808 lms/lms/api.py:816
|
||||||
msgid "{0} Settings not found"
|
msgid "{0} Settings not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -6167,7 +6092,7 @@ msgstr ""
|
|||||||
msgid "{0} is your evaluator"
|
msgid "{0} is your evaluator"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/utils.py:681
|
#: lms/lms/utils.py:682
|
||||||
msgid "{0} mentioned you in a comment"
|
msgid "{0} mentioned you in a comment"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -6175,11 +6100,11 @@ msgstr ""
|
|||||||
msgid "{0} mentioned you in a comment in your batch."
|
msgid "{0} mentioned you in a comment in your batch."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/utils.py:634 lms/lms/utils.py:640
|
#: lms/lms/utils.py:635 lms/lms/utils.py:641
|
||||||
msgid "{0} mentioned you in a comment in {1}"
|
msgid "{0} mentioned you in a comment in {1}"
|
||||||
msgstr "{0} vous a mentionné dans un commentaire dans {1}"
|
msgstr "{0} vous a mentionné dans un commentaire dans {1}"
|
||||||
|
|
||||||
#: lms/lms/utils.py:457
|
#: lms/lms/utils.py:458
|
||||||
msgid "{0}k"
|
msgid "{0}k"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
6140
lms/locale/hr.po
Normal file
6140
lms/locale/hr.po
Normal file
File diff suppressed because it is too large
Load Diff
243
lms/locale/hu.po
243
lms/locale/hu.po
@@ -2,8 +2,8 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: frappe\n"
|
"Project-Id-Version: frappe\n"
|
||||||
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
|
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
|
||||||
"POT-Creation-Date: 2025-02-28 16:04+0000\n"
|
"POT-Creation-Date: 2025-03-07 16:04+0000\n"
|
||||||
"PO-Revision-Date: 2025-03-03 21:29\n"
|
"PO-Revision-Date: 2025-03-10 22:46\n"
|
||||||
"Last-Translator: jannat@frappe.io\n"
|
"Last-Translator: jannat@frappe.io\n"
|
||||||
"Language-Team: Hungarian\n"
|
"Language-Team: Hungarian\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -228,7 +228,7 @@ msgstr ""
|
|||||||
msgid "All Certified Participants"
|
msgid "All Certified Participants"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/widgets/BreadCrumb.html:3
|
#: frontend/src/pages/Courses.vue:26 lms/lms/widgets/BreadCrumb.html:3
|
||||||
msgid "All Courses"
|
msgid "All Courses"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -268,7 +268,7 @@ msgstr ""
|
|||||||
msgid "Allow self enrollment"
|
msgid "Allow self enrollment"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/overrides/user.py:199
|
#: lms/lms/user.py:34
|
||||||
msgid "Already Registered"
|
msgid "Already Registered"
|
||||||
msgstr "Már regisztrált"
|
msgstr "Már regisztrált"
|
||||||
|
|
||||||
@@ -378,7 +378,7 @@ msgstr "Archivált"
|
|||||||
msgid "Are you sure you want to cancel this evaluation? This action cannot be undone."
|
msgid "Are you sure you want to cancel this evaluation? This action cannot be undone."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/UserDropdown.vue:209
|
#: frontend/src/components/UserDropdown.vue:169
|
||||||
msgid "Are you sure you want to login to your Frappe Cloud dashboard?"
|
msgid "Are you sure you want to login to your Frappe Cloud dashboard?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -492,12 +492,12 @@ msgid "Auto Assign"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. Label of the auto_recording (Select) field in DocType 'LMS Live Class'
|
#. Label of the auto_recording (Select) field in DocType 'LMS Live Class'
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:71
|
#: frontend/src/components/Modals/LiveClassModal.vue:77
|
||||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||||
msgid "Auto Recording"
|
msgid "Auto Recording"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/CourseCard.vue:50
|
#: frontend/src/components/CourseCard.vue:51
|
||||||
#: frontend/src/pages/CourseDetail.vue:20
|
#: frontend/src/pages/CourseDetail.vue:20
|
||||||
msgid "Average Rating"
|
msgid "Average Rating"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -739,7 +739,7 @@ msgstr ""
|
|||||||
#. Label of the category (Link) field in DocType 'LMS Course'
|
#. Label of the category (Link) field in DocType 'LMS Course'
|
||||||
#: frontend/src/pages/BatchForm.vue:190 frontend/src/pages/Batches.vue:55
|
#: frontend/src/pages/BatchForm.vue:190 frontend/src/pages/Batches.vue:55
|
||||||
#: frontend/src/pages/CertifiedParticipants.vue:37
|
#: frontend/src/pages/CertifiedParticipants.vue:37
|
||||||
#: frontend/src/pages/CourseForm.vue:147 frontend/src/pages/Courses.vue:17
|
#: frontend/src/pages/CourseForm.vue:147 frontend/src/pages/Courses.vue:55
|
||||||
#: frontend/src/pages/JobDetail.vue:96 lms/lms/doctype/lms_batch/lms_batch.json
|
#: frontend/src/pages/JobDetail.vue:96 lms/lms/doctype/lms_batch/lms_batch.json
|
||||||
#: lms/lms/doctype/lms_category/lms_category.json
|
#: lms/lms/doctype/lms_category/lms_category.json
|
||||||
#: lms/lms/doctype/lms_course/lms_course.json
|
#: lms/lms/doctype/lms_course/lms_course.json
|
||||||
@@ -790,12 +790,12 @@ msgstr ""
|
|||||||
#. Enrollment'
|
#. Enrollment'
|
||||||
#. Label of a Card Break in the LMS Workspace
|
#. Label of a Card Break in the LMS Workspace
|
||||||
#. Label of a Link in the LMS Workspace
|
#. Label of a Link in the LMS Workspace
|
||||||
#: frontend/src/components/CourseCard.vue:110
|
#: frontend/src/components/CourseCard.vue:111
|
||||||
#: frontend/src/components/Modals/Event.vue:371
|
#: frontend/src/components/Modals/Event.vue:371
|
||||||
#: frontend/src/pages/BatchForm.vue:37 frontend/src/pages/Batches.vue:38
|
#: frontend/src/pages/BatchForm.vue:37 frontend/src/pages/Batches.vue:38
|
||||||
#: frontend/src/pages/CourseCertification.vue:10
|
#: frontend/src/pages/CourseCertification.vue:10
|
||||||
#: frontend/src/pages/CourseCertification.vue:114
|
#: frontend/src/pages/CourseCertification.vue:114
|
||||||
#: lms/fixtures/custom_field.json
|
#: frontend/src/pages/Courses.vue:38 lms/fixtures/custom_field.json
|
||||||
#: lms/lms/doctype/certification/certification.json
|
#: lms/lms/doctype/certification/certification.json
|
||||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
||||||
@@ -912,10 +912,6 @@ msgstr "Egyértelmű"
|
|||||||
msgid "Clearly Defined Role"
|
msgid "Clearly Defined Role"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:75
|
|
||||||
msgid "Click here to login"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: frontend/src/components/LessonHelp.vue:30
|
#: frontend/src/components/LessonHelp.vue:30
|
||||||
msgid "Click on the add icon in the editor and select Quiz from the menu. It opens up a dialog, where you can either select a quiz from the list or create a new quiz. When you select the Create New option it redirects you to the quiz creation page."
|
msgid "Click on the add icon in the editor and select Quiz from the menu. It opens up a dialog, where you can either select a quiz from the list or create a new quiz. When you select the Create New option it redirects you to the quiz creation page."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1084,7 +1080,7 @@ msgstr ""
|
|||||||
msgid "Complete Your Enrollment"
|
msgid "Complete Your Enrollment"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_payment/lms_payment.py:40
|
#: lms/lms/doctype/lms_payment/lms_payment.py:55
|
||||||
msgid "Complete Your Enrollment - Don't miss out!"
|
msgid "Complete Your Enrollment - Don't miss out!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -1125,7 +1121,11 @@ msgstr ""
|
|||||||
msgid "Condition must be valid python code."
|
msgid "Condition must be valid python code."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/UserDropdown.vue:214
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.js:7
|
||||||
|
msgid "Conduct Evaluation"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: frontend/src/components/UserDropdown.vue:174
|
||||||
msgid "Confirm"
|
msgid "Confirm"
|
||||||
msgstr "Megerősítés"
|
msgstr "Megerősítés"
|
||||||
|
|
||||||
@@ -1166,7 +1166,7 @@ msgstr ""
|
|||||||
msgid "Contract"
|
msgid "Contract"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/utils.py:437
|
#: lms/lms/utils.py:438
|
||||||
msgid "Cookie Policy"
|
msgid "Cookie Policy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -1382,7 +1382,7 @@ msgstr ""
|
|||||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:79
|
#: frontend/src/components/Modals/BatchStudentProgress.vue:79
|
||||||
#: frontend/src/pages/BatchDetail.vue:21 frontend/src/pages/BatchDetail.vue:70
|
#: frontend/src/pages/BatchDetail.vue:21 frontend/src/pages/BatchDetail.vue:70
|
||||||
#: frontend/src/pages/CourseCertification.vue:106
|
#: frontend/src/pages/CourseCertification.vue:106
|
||||||
#: frontend/src/pages/Courses.vue:8 frontend/src/pages/Statistics.vue:21
|
#: frontend/src/pages/Courses.vue:314 frontend/src/pages/Statistics.vue:21
|
||||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||||
msgid "Courses"
|
msgid "Courses"
|
||||||
@@ -1393,10 +1393,6 @@ msgstr ""
|
|||||||
msgid "Courses Completed"
|
msgid "Courses Completed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/web_template/courses_mentored/courses_mentored.html:4
|
|
||||||
msgid "Courses Mentored"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: frontend/src/components/BatchCourses.vue:151
|
#: frontend/src/components/BatchCourses.vue:151
|
||||||
msgid "Courses deleted successfully"
|
msgid "Courses deleted successfully"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1412,14 +1408,10 @@ msgid "Create"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.js:7
|
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.js:7
|
||||||
msgid "Create LMS Certificate"
|
msgid "Create Certificate"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.js:8
|
#: lms/templates/onboarding_header.html:19
|
||||||
msgid "Create LMS Certificate Evaluation"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: frontend/src/pages/Courses.vue:136 lms/templates/onboarding_header.html:19
|
|
||||||
msgid "Create a Course"
|
msgid "Create a Course"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -1435,7 +1427,8 @@ msgstr ""
|
|||||||
msgid "Create a new question"
|
msgid "Create a new question"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/pages/Assignments.vue:163
|
#: frontend/src/pages/Assignments.vue:163 frontend/src/pages/Courses.vue:287
|
||||||
|
#: frontend/src/pages/Courses.vue:307
|
||||||
msgid "Created"
|
msgid "Created"
|
||||||
msgstr "Alkotó"
|
msgstr "Alkotó"
|
||||||
|
|
||||||
@@ -1488,7 +1481,7 @@ msgstr "Irányítópult"
|
|||||||
#. Label of the date (Date) field in DocType 'Scheduled Flow'
|
#. Label of the date (Date) field in DocType 'Scheduled Flow'
|
||||||
#: frontend/src/components/Modals/EvaluationModal.vue:26
|
#: frontend/src/components/Modals/EvaluationModal.vue:26
|
||||||
#: frontend/src/components/Modals/Event.vue:40
|
#: frontend/src/components/Modals/Event.vue:40
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:55
|
#: frontend/src/components/Modals/LiveClassModal.vue:61
|
||||||
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
|
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
|
||||||
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
|
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||||
@@ -1587,7 +1580,7 @@ msgstr ""
|
|||||||
#. Label of the description (Small Text) field in DocType 'LMS Exercise'
|
#. 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 (Text) field in DocType 'LMS Live Class'
|
||||||
#. Label of the description (Small Text) field in DocType 'Work Experience'
|
#. Label of the description (Small Text) field in DocType 'Work Experience'
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:78
|
#: frontend/src/components/Modals/LiveClassModal.vue:84
|
||||||
#: frontend/src/pages/BatchForm.vue:224 frontend/src/pages/JobCreation.vue:50
|
#: frontend/src/pages/BatchForm.vue:224 frontend/src/pages/JobCreation.vue:50
|
||||||
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
||||||
#: lms/lms/doctype/certification/certification.json
|
#: lms/lms/doctype/certification/certification.json
|
||||||
@@ -1614,10 +1607,6 @@ msgstr ""
|
|||||||
msgid "Details"
|
msgid "Details"
|
||||||
msgstr "Részletek"
|
msgstr "Részletek"
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:30
|
|
||||||
msgid "Didn't receive the code?"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: frontend/src/pages/CourseForm.vue:194
|
#: frontend/src/pages/CourseForm.vue:194
|
||||||
msgid "Disable Self Enrollment"
|
msgid "Disable Self Enrollment"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1668,7 +1657,7 @@ msgstr ""
|
|||||||
#. Label of the duration (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 (Data) field in DocType 'LMS Batch Timetable'
|
||||||
#. Label of the duration (Int) field in DocType 'LMS Live Class'
|
#. Label of the duration (Int) field in DocType 'LMS Live Class'
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:62
|
#: frontend/src/components/Modals/LiveClassModal.vue:68
|
||||||
#: lms/lms/doctype/cohort/cohort.json
|
#: lms/lms/doctype/cohort/cohort.json
|
||||||
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
|
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
|
||||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||||
@@ -1680,7 +1669,7 @@ msgstr ""
|
|||||||
msgid "Duration (in minutes)"
|
msgid "Duration (in minutes)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:58
|
#: frontend/src/components/Modals/LiveClassModal.vue:64
|
||||||
msgid "Duration of the live class in minutes"
|
msgid "Duration of the live class in minutes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -1826,11 +1815,12 @@ msgstr "Befejezés dátuma"
|
|||||||
msgid "Enroll Now"
|
msgid "Enroll Now"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/pages/Batches.vue:292
|
#: frontend/src/pages/Batches.vue:292 frontend/src/pages/Courses.vue:285
|
||||||
|
#: frontend/src/pages/Courses.vue:305
|
||||||
msgid "Enrolled"
|
msgid "Enrolled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/CourseCard.vue:41
|
#: frontend/src/components/CourseCard.vue:42
|
||||||
#: frontend/src/components/CourseCardOverlay.vue:106
|
#: frontend/src/components/CourseCardOverlay.vue:106
|
||||||
#: frontend/src/pages/CourseDetail.vue:33
|
#: frontend/src/pages/CourseDetail.vue:33
|
||||||
msgid "Enrolled Students"
|
msgid "Enrolled Students"
|
||||||
@@ -1849,11 +1839,11 @@ msgstr ""
|
|||||||
msgid "Enrollment Count"
|
msgid "Enrollment Count"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/utils.py:1769
|
#: lms/lms/utils.py:1898
|
||||||
msgid "Enrollment Failed"
|
msgid "Enrollment Failed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. Label of the enrollments (Data) field in DocType 'LMS Course'
|
#. Label of the enrollments (Int) field in DocType 'LMS Course'
|
||||||
#. Label of a chart in the LMS Workspace
|
#. Label of a chart in the LMS Workspace
|
||||||
#. Label of a shortcut in the LMS Workspace
|
#. Label of a shortcut in the LMS Workspace
|
||||||
#: frontend/src/pages/Statistics.vue:51
|
#: frontend/src/pages/Statistics.vue:51
|
||||||
@@ -2057,14 +2047,6 @@ msgstr ""
|
|||||||
msgid "Fail"
|
msgid "Fail"
|
||||||
msgstr "Nem sikerül"
|
msgstr "Nem sikerül"
|
||||||
|
|
||||||
#: frontend/src/components/UserDropdown.vue:243
|
|
||||||
msgid "Failed to login to Frappe Cloud"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:91
|
|
||||||
msgid "Failed to resend code"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. Label of the featured (Check) field in DocType 'LMS Course'
|
#. Label of the featured (Check) field in DocType 'LMS Course'
|
||||||
#: frontend/src/components/CourseCard.vue:16
|
#: frontend/src/components/CourseCard.vue:16
|
||||||
#: frontend/src/pages/CourseForm.vue:189
|
#: frontend/src/pages/CourseForm.vue:189
|
||||||
@@ -2125,10 +2107,6 @@ msgstr ""
|
|||||||
msgid "Formal Wear"
|
msgid "Formal Wear"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:70
|
|
||||||
msgid "Frappe Cloud Login Successful"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lms/lms/widgets/CourseCard.html:114
|
#: lms/lms/widgets/CourseCard.html:114
|
||||||
msgid "Free"
|
msgid "Free"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -2212,7 +2190,7 @@ msgstr "Általános"
|
|||||||
msgid "Generate Certificates"
|
msgid "Generate Certificates"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.js:18
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.js:15
|
||||||
msgid "Generate Google Meet Link"
|
msgid "Generate Google Meet Link"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -2382,10 +2360,6 @@ msgstr ""
|
|||||||
msgid "If you have any questions or require assistance, feel free to contact us."
|
msgid "If you have any questions or require assistance, feel free to contact us."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:71
|
|
||||||
msgid "If you haven't been redirected,"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. Description of the 'Amount (USD)' (Currency) field in DocType 'LMS Batch'
|
#. Description of the 'Amount (USD)' (Currency) field in DocType 'LMS Batch'
|
||||||
#. Description of the 'Amount (USD)' (Currency) field in DocType 'LMS Course'
|
#. Description of the 'Amount (USD)' (Currency) field in DocType 'LMS Course'
|
||||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||||
@@ -2969,8 +2943,8 @@ msgstr ""
|
|||||||
|
|
||||||
#. Label of the lessons (Table) field in DocType 'Course Chapter'
|
#. Label of the lessons (Table) field in DocType 'Course Chapter'
|
||||||
#. Group in Course Chapter's connections
|
#. Group in Course Chapter's connections
|
||||||
#. Label of the lessons (Data) field in DocType 'LMS Course'
|
#. Label of the lessons (Int) field in DocType 'LMS Course'
|
||||||
#: frontend/src/components/CourseCard.vue:32
|
#: frontend/src/components/CourseCard.vue:33
|
||||||
#: frontend/src/components/CourseCardOverlay.vue:99
|
#: frontend/src/components/CourseCardOverlay.vue:99
|
||||||
#: lms/lms/doctype/course_chapter/course_chapter.json
|
#: lms/lms/doctype/course_chapter/course_chapter.json
|
||||||
#: lms/lms/doctype/lms_course/lms_course.json
|
#: lms/lms/doctype/lms_course/lms_course.json
|
||||||
@@ -3021,7 +2995,7 @@ msgid "List of quizzes"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. Option for the 'Status' (Select) field in DocType 'Cohort'
|
#. Option for the 'Status' (Select) field in DocType 'Cohort'
|
||||||
#: lms/lms/doctype/cohort/cohort.json
|
#: frontend/src/pages/Courses.vue:295 lms/lms/doctype/cohort/cohort.json
|
||||||
msgid "Live"
|
msgid "Live"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -3039,6 +3013,7 @@ msgstr ""
|
|||||||
#: frontend/src/components/Members.vue:108
|
#: frontend/src/components/Members.vue:108
|
||||||
#: frontend/src/pages/Assignments.vue:71 frontend/src/pages/Batches.vue:94
|
#: frontend/src/pages/Assignments.vue:71 frontend/src/pages/Batches.vue:94
|
||||||
#: frontend/src/pages/CertifiedParticipants.vue:79
|
#: frontend/src/pages/CertifiedParticipants.vue:79
|
||||||
|
#: frontend/src/pages/Courses.vue:94
|
||||||
#: frontend/src/pages/QuizSubmissionList.vue:39
|
#: frontend/src/pages/QuizSubmissionList.vue:39
|
||||||
#: frontend/src/pages/Quizzes.vue:51
|
#: frontend/src/pages/Quizzes.vue:51
|
||||||
msgid "Load More"
|
msgid "Load More"
|
||||||
@@ -3071,16 +3046,7 @@ msgstr ""
|
|||||||
msgid "Login"
|
msgid "Login"
|
||||||
msgstr "Bejelentkezés"
|
msgstr "Bejelentkezés"
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:79
|
#: frontend/src/components/UserDropdown.vue:168
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:83
|
|
||||||
msgid "Login failed"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:6
|
|
||||||
msgid "Login to Frappe Cloud"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: frontend/src/components/UserDropdown.vue:208
|
|
||||||
msgid "Login to Frappe Cloud?"
|
msgid "Login to Frappe Cloud?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -3396,11 +3362,11 @@ msgstr ""
|
|||||||
msgid "Modified By"
|
msgid "Modified By"
|
||||||
msgstr "Módosította"
|
msgstr "Módosította"
|
||||||
|
|
||||||
#: lms/lms/api.py:208
|
#: lms/lms/api.py:214
|
||||||
msgid "Module Name is incorrect or does not exist."
|
msgid "Module Name is incorrect or does not exist."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/api.py:204
|
#: lms/lms/api.py:210
|
||||||
msgid "Module is incorrect."
|
msgid "Module is incorrect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -3430,7 +3396,8 @@ msgstr ""
|
|||||||
|
|
||||||
#. Option for the 'Event' (Select) field in DocType 'LMS Badge'
|
#. Option for the 'Event' (Select) field in DocType 'LMS Badge'
|
||||||
#: frontend/src/pages/Assignments.vue:18 frontend/src/pages/Batches.vue:17
|
#: frontend/src/pages/Assignments.vue:18 frontend/src/pages/Batches.vue:17
|
||||||
#: frontend/src/pages/Courses.vue:48 frontend/src/pages/Programs.vue:14
|
#: frontend/src/pages/Courses.vue:17 frontend/src/pages/Courses.vue:281
|
||||||
|
#: frontend/src/pages/Courses.vue:298 frontend/src/pages/Programs.vue:14
|
||||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||||
msgid "New"
|
msgid "New"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -3484,11 +3451,11 @@ msgstr ""
|
|||||||
msgid "New Sign Up"
|
msgid "New Sign Up"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/utils.py:604
|
#: lms/lms/utils.py:605
|
||||||
msgid "New comment in batch {0}"
|
msgid "New comment in batch {0}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/utils.py:597
|
#: lms/lms/utils.py:598
|
||||||
msgid "New reply on the topic {0} in course {1}"
|
msgid "New reply on the topic {0} in course {1}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -3546,7 +3513,7 @@ msgstr ""
|
|||||||
msgid "No courses created"
|
msgid "No courses created"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/pages/Courses.vue:151
|
#: frontend/src/pages/Courses.vue:79
|
||||||
msgid "No courses found"
|
msgid "No courses found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -3598,15 +3565,11 @@ msgstr ""
|
|||||||
msgid "No {0}"
|
msgid "No {0}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/pages/Courses.vue:111
|
|
||||||
msgid "No {0} courses"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lms/templates/quiz/quiz.html:147
|
#: lms/templates/quiz/quiz.html:147
|
||||||
msgid "No."
|
msgid "No."
|
||||||
msgstr "Nem."
|
msgstr "Nem."
|
||||||
|
|
||||||
#: lms/overrides/user.py:194
|
#: lms/lms/user.py:29
|
||||||
msgid "Not Allowed"
|
msgid "Not Allowed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -3695,7 +3658,7 @@ msgstr ""
|
|||||||
msgid "Only files of type {0} will be accepted."
|
msgid "Only files of type {0} will be accepted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/pages/CourseForm.vue:506 frontend/src/utils/index.js:533
|
#: frontend/src/pages/CourseForm.vue:506 frontend/src/utils/index.js:552
|
||||||
msgid "Only image file is allowed."
|
msgid "Only image file is allowed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -3726,10 +3689,6 @@ msgstr ""
|
|||||||
msgid "Open Ended"
|
msgid "Open Ended"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/widgets/MemberCard.html:16
|
|
||||||
msgid "Open Network"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. Label of the option (Data) field in DocType 'LMS Option'
|
#. Label of the option (Data) field in DocType 'LMS Option'
|
||||||
#: frontend/src/components/Modals/Question.vue:64
|
#: frontend/src/components/Modals/Question.vue:64
|
||||||
#: lms/lms/doctype/lms_option/lms_option.json
|
#: lms/lms/doctype/lms_option/lms_option.json
|
||||||
@@ -3981,11 +3940,11 @@ msgstr ""
|
|||||||
msgid "Please add <a href='{0}'>{1}</a> for <a href='{2}'>{3}</a> to send calendar invites for evaluations."
|
msgid "Please add <a href='{0}'>{1}</a> for <a href='{2}'>{3}</a> to send calendar invites for evaluations."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/overrides/user.py:240
|
#: lms/lms/user.py:75
|
||||||
msgid "Please ask your administrator to verify your sign-up"
|
msgid "Please ask your administrator to verify your sign-up"
|
||||||
msgstr "Kérje meg a rendszergazdát, hogy ellenőrizze a regisztrációját"
|
msgstr "Kérje meg a rendszergazdát, hogy ellenőrizze a regisztrációját"
|
||||||
|
|
||||||
#: lms/overrides/user.py:238
|
#: lms/lms/user.py:73
|
||||||
msgid "Please check your email for verification"
|
msgid "Please check your email for verification"
|
||||||
msgstr "Kérjük, ellenőrizze e-mail a vizsgálathoz"
|
msgstr "Kérjük, ellenőrizze e-mail a vizsgálathoz"
|
||||||
|
|
||||||
@@ -3993,7 +3952,7 @@ msgstr "Kérjük, ellenőrizze e-mail a vizsgálathoz"
|
|||||||
msgid "Please click on the following button to set your new password"
|
msgid "Please click on the following button to set your new password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/utils.py:1901 lms/lms/utils.py:1905
|
#: lms/lms/utils.py:2030 lms/lms/utils.py:2034
|
||||||
msgid "Please complete the previous courses in the program to enroll in this course."
|
msgid "Please complete the previous courses in the program to enroll in this course."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -4009,7 +3968,7 @@ msgstr ""
|
|||||||
msgid "Please ensure that you complete all the questions in {0} minutes."
|
msgid "Please ensure that you complete all the questions in {0} minutes."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:164
|
#: frontend/src/components/Modals/LiveClassModal.vue:170
|
||||||
msgid "Please enter a title."
|
msgid "Please enter a title."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -4018,7 +3977,7 @@ msgstr ""
|
|||||||
msgid "Please enter a valid URL."
|
msgid "Please enter a valid URL."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:176
|
#: frontend/src/components/Modals/LiveClassModal.vue:182
|
||||||
msgid "Please enter a valid time in the format HH:mm."
|
msgid "Please enter a valid time in the format HH:mm."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -4054,7 +4013,7 @@ msgstr ""
|
|||||||
msgid "Please login to access this page."
|
msgid "Please login to access this page."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/api.py:200
|
#: lms/lms/api.py:206
|
||||||
msgid "Please login to continue with payment."
|
msgid "Please login to continue with payment."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -4067,23 +4026,23 @@ msgstr ""
|
|||||||
msgid "Please schedule an evaluation to get certified."
|
msgid "Please schedule an evaluation to get certified."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:167
|
#: frontend/src/components/Modals/LiveClassModal.vue:173
|
||||||
msgid "Please select a date."
|
msgid "Please select a date."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:191
|
#: frontend/src/components/Modals/LiveClassModal.vue:197
|
||||||
msgid "Please select a duration."
|
msgid "Please select a duration."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:188
|
#: frontend/src/components/Modals/LiveClassModal.vue:194
|
||||||
msgid "Please select a future date and time."
|
msgid "Please select a future date and time."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:170
|
#: frontend/src/components/Modals/LiveClassModal.vue:176
|
||||||
msgid "Please select a time."
|
msgid "Please select a time."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:173
|
#: frontend/src/components/Modals/LiveClassModal.vue:179
|
||||||
msgid "Please select a timezone."
|
msgid "Please select a timezone."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -4091,13 +4050,6 @@ msgstr ""
|
|||||||
msgid "Please take appropriate action at {0}"
|
msgid "Please take appropriate action at {0}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:79
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:83
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:91
|
|
||||||
#: frontend/src/components/UserDropdown.vue:244
|
|
||||||
msgid "Please try again"
|
|
||||||
msgstr "Kérlek próbáld újra"
|
|
||||||
|
|
||||||
#: frontend/src/components/Modals/ChapterModal.vue:177
|
#: frontend/src/components/Modals/ChapterModal.vue:177
|
||||||
msgid "Please upload a SCORM package"
|
msgid "Please upload a SCORM package"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -4210,7 +4162,7 @@ msgstr ""
|
|||||||
msgid "Primary Subgroup"
|
msgid "Primary Subgroup"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/utils.py:436
|
#: lms/lms/utils.py:437
|
||||||
msgid "Privacy Policy"
|
msgid "Privacy Policy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -4478,7 +4430,7 @@ msgstr ""
|
|||||||
msgid "Registered"
|
msgid "Registered"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/overrides/user.py:201
|
#: lms/lms/user.py:36
|
||||||
msgid "Registered but disabled"
|
msgid "Registered but disabled"
|
||||||
msgstr "Regisztráltam, de kiiktatva"
|
msgstr "Regisztráltam, de kiiktatva"
|
||||||
|
|
||||||
@@ -4519,10 +4471,6 @@ msgstr ""
|
|||||||
msgid "Required Role"
|
msgid "Required Role"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:31
|
|
||||||
msgid "Resend"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. Option for the 'Membership' (Select) field in DocType 'LMS Batch Old'
|
#. Option for the 'Membership' (Select) field in DocType 'LMS Batch Old'
|
||||||
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
|
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
|
||||||
msgid "Restricted"
|
msgid "Restricted"
|
||||||
@@ -4677,7 +4625,7 @@ msgstr ""
|
|||||||
msgid "Search by Name"
|
msgid "Search by Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/pages/Batches.vue:45
|
#: frontend/src/pages/Batches.vue:45 frontend/src/pages/Courses.vue:45
|
||||||
msgid "Search by Title"
|
msgid "Search by Title"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -4819,7 +4767,7 @@ msgstr ""
|
|||||||
msgid "Sidebar Items"
|
msgid "Sidebar Items"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/overrides/user.py:194
|
#: lms/lms/user.py:29
|
||||||
msgid "Sign Up is disabled"
|
msgid "Sign Up is disabled"
|
||||||
msgstr "Regisztráció letiltott"
|
msgstr "Regisztráció letiltott"
|
||||||
|
|
||||||
@@ -4863,10 +4811,6 @@ msgstr ""
|
|||||||
msgid "Skills"
|
msgid "Skills"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/overrides/user.py:42
|
|
||||||
msgid "Skills must be unique"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lms/templates/onboarding_header.html:6
|
#: lms/templates/onboarding_header.html:6
|
||||||
msgid "Skip"
|
msgid "Skip"
|
||||||
msgstr "Ugrás"
|
msgstr "Ugrás"
|
||||||
@@ -5143,7 +5087,7 @@ msgstr "Összefoglalás"
|
|||||||
msgid "Sunday"
|
msgid "Sunday"
|
||||||
msgstr "Vasárnap"
|
msgstr "Vasárnap"
|
||||||
|
|
||||||
#: lms/lms/api.py:1012
|
#: lms/lms/api.py:1018
|
||||||
msgid "Suspicious pattern found in {0}: {1}"
|
msgid "Suspicious pattern found in {0}: {1}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -5224,11 +5168,11 @@ msgstr ""
|
|||||||
msgid "Template"
|
msgid "Template"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/overrides/user.py:205
|
#: lms/lms/user.py:40
|
||||||
msgid "Temporarily Disabled"
|
msgid "Temporarily Disabled"
|
||||||
msgstr "Átmenetileg letiltva"
|
msgstr "Átmenetileg letiltva"
|
||||||
|
|
||||||
#: lms/lms/utils.py:435
|
#: lms/lms/utils.py:436
|
||||||
msgid "Terms of Use"
|
msgid "Terms of Use"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -5264,7 +5208,7 @@ msgstr ""
|
|||||||
msgid "Thanks and Regards"
|
msgid "Thanks and Regards"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/utils.py:1801
|
#: lms/lms/utils.py:1930
|
||||||
msgid "The batch is full. Please contact the Administrator."
|
msgid "The batch is full. Please contact the Administrator."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -5300,8 +5244,8 @@ msgstr ""
|
|||||||
msgid "There are no chapters in this course. Create and manage chapters from here."
|
msgid "There are no chapters in this course. Create and manage chapters from here."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/pages/Courses.vue:155
|
#: frontend/src/pages/Courses.vue:83
|
||||||
msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
|
msgid "There are no courses matching the criteria. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/pages/CertifiedParticipants.vue:92
|
#: frontend/src/pages/CertifiedParticipants.vue:92
|
||||||
@@ -5359,7 +5303,7 @@ msgstr ""
|
|||||||
msgid "This course has:"
|
msgid "This course has:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/utils.py:1644
|
#: lms/lms/utils.py:1773
|
||||||
msgid "This course is free."
|
msgid "This course is free."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -5427,7 +5371,7 @@ msgstr ""
|
|||||||
#. Label of the timezone (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 Certificate Request'
|
#. Label of the timezone (Data) field in DocType 'LMS Certificate Request'
|
||||||
#. Label of the timezone (Data) field in DocType 'LMS Live Class'
|
#. Label of the timezone (Data) field in DocType 'LMS Live Class'
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:46
|
#: frontend/src/components/Modals/LiveClassModal.vue:45
|
||||||
#: frontend/src/pages/BatchForm.vue:120
|
#: frontend/src/pages/BatchForm.vue:120
|
||||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||||
@@ -5501,7 +5445,7 @@ msgstr ""
|
|||||||
msgid "To Date"
|
msgid "To Date"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/utils.py:1655
|
#: lms/lms/utils.py:1784
|
||||||
msgid "To join this batch, please contact the Administrator."
|
msgid "To join this batch, please contact the Administrator."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -5509,7 +5453,7 @@ msgstr ""
|
|||||||
msgid "To upload Image, Video, Audio or PDF from your system, click on the add icon and select upload from the menu. Then choose the file you want to add to the lesson and it gets added to your lesson."
|
msgid "To upload Image, Video, Audio or PDF from your system, click on the add icon and select upload from the menu. Then choose the file you want to add to the lesson and it gets added to your lesson."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/overrides/user.py:206
|
#: lms/lms/user.py:41
|
||||||
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
|
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
|
||||||
msgstr "Túl sok felhasználó regisztrált a közelmúltban, így a regisztrációt letiltotta. Kérjük, próbálja meg újra egy óra múlva"
|
msgstr "Túl sok felhasználó regisztrált a közelmúltban, így a regisztrációt letiltotta. Kérjük, próbálja meg újra egy óra múlva"
|
||||||
|
|
||||||
@@ -5626,7 +5570,8 @@ msgstr ""
|
|||||||
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request'
|
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request'
|
||||||
#. Label of the upcoming (Check) field in DocType 'LMS Course'
|
#. Label of the upcoming (Check) field in DocType 'LMS Course'
|
||||||
#: frontend/src/pages/Batches.vue:276 frontend/src/pages/Batches.vue:294
|
#: frontend/src/pages/Batches.vue:276 frontend/src/pages/Batches.vue:294
|
||||||
#: frontend/src/pages/CourseForm.vue:184 lms/lms/doctype/cohort/cohort.json
|
#: frontend/src/pages/CourseForm.vue:184 frontend/src/pages/Courses.vue:282
|
||||||
|
#: frontend/src/pages/Courses.vue:301 lms/lms/doctype/cohort/cohort.json
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||||
#: lms/lms/doctype/lms_course/lms_course.json
|
#: lms/lms/doctype/lms_course/lms_course.json
|
||||||
msgid "Upcoming"
|
msgid "Upcoming"
|
||||||
@@ -5727,14 +5672,6 @@ msgstr ""
|
|||||||
msgid "Value Change"
|
msgid "Value Change"
|
||||||
msgstr "Érték Változás"
|
msgstr "Érték Változás"
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:26
|
|
||||||
msgid "Verification Code"
|
|
||||||
msgstr "Ellenőrző kód"
|
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:9
|
|
||||||
msgid "Verify"
|
|
||||||
msgstr "Ellenőrzi"
|
|
||||||
|
|
||||||
#. Label of the video_link (Data) field in DocType 'LMS Course'
|
#. Label of the video_link (Data) field in DocType 'LMS Course'
|
||||||
#: lms/lms/doctype/lms_course/lms_course.json
|
#: lms/lms/doctype/lms_course/lms_course.json
|
||||||
msgid "Video Embed Link"
|
msgid "Video Embed Link"
|
||||||
@@ -5776,10 +5713,6 @@ msgstr ""
|
|||||||
msgid "We have a limited number of seats, and they won't be available for long!"
|
msgid "We have a limited number of seats, and they won't be available for long!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:21
|
|
||||||
msgid "We have sent the verificaton code to your email id "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lms/templates/emails/payment_reminder.html:4
|
#: lms/templates/emails/payment_reminder.html:4
|
||||||
msgid "We noticed that you started enrolling in the"
|
msgid "We noticed that you started enrolling in the"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -5855,7 +5788,7 @@ msgstr ""
|
|||||||
msgid "Write your answer here"
|
msgid "Write your answer here"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:95
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:96
|
||||||
msgid "You already have an evaluation on {0} at {1} for the course {2}."
|
msgid "You already have an evaluation on {0} at {1} for the course {2}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -5863,11 +5796,11 @@ msgstr ""
|
|||||||
msgid "You are already certified for this course. Click on the card below to open your certificate."
|
msgid "You are already certified for this course. Click on the card below to open your certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/api.py:224
|
#: lms/lms/api.py:230
|
||||||
msgid "You are already enrolled for this batch."
|
msgid "You are already enrolled for this batch."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/api.py:216
|
#: lms/lms/api.py:222
|
||||||
msgid "You are already enrolled for this course."
|
msgid "You are already enrolled for this course."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -5887,10 +5820,6 @@ msgstr ""
|
|||||||
msgid "You are not enrolled in this course. Please enroll to access this lesson."
|
msgid "You are not enrolled in this course. Please enroll to access this lesson."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/pages/Courses.vue:139
|
|
||||||
msgid "You can add chapters and lessons to it."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lms/templates/emails/lms_course_interest.html:13
|
#: lms/templates/emails/lms_course_interest.html:13
|
||||||
#: lms/templates/emails/lms_invite_request_approved.html:11
|
#: lms/templates/emails/lms_invite_request_approved.html:11
|
||||||
msgid "You can also copy-paste following link in your browser"
|
msgid "You can also copy-paste following link in your browser"
|
||||||
@@ -5908,11 +5837,11 @@ msgstr ""
|
|||||||
msgid "You can find their resume attached to this email."
|
msgid "You can find their resume attached to this email."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:115
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:116
|
||||||
msgid "You cannot schedule evaluations after {0}."
|
msgid "You cannot schedule evaluations after {0}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:104
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:105
|
||||||
msgid "You cannot schedule evaluations for past slots."
|
msgid "You cannot schedule evaluations for past slots."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -5945,7 +5874,7 @@ msgstr ""
|
|||||||
msgid "You have already exceeded the maximum number of attempts allowed for this quiz."
|
msgid "You have already exceeded the maximum number of attempts allowed for this quiz."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/api.py:237
|
#: lms/lms/api.py:243
|
||||||
msgid "You have already purchased the certificate for this course."
|
msgid "You have already purchased the certificate for this course."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -5985,10 +5914,6 @@ msgstr ""
|
|||||||
msgid "You need to login first to enroll for this course"
|
msgid "You need to login first to enroll for this course"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:71
|
|
||||||
msgid "You will be redirected to Frappe Cloud soon."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: frontend/src/components/Quiz.vue:27 lms/templates/quiz/quiz.html:11
|
#: frontend/src/components/Quiz.vue:27 lms/templates/quiz/quiz.html:11
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "You will have to get {0}% correct answers in order to pass the quiz."
|
msgid "You will have to get {0}% correct answers in order to pass the quiz."
|
||||||
@@ -6026,7 +5951,7 @@ msgstr ""
|
|||||||
msgid "Your evaluation for the course {0} has been scheduled on {1} at {2} {3}."
|
msgid "Your evaluation for the course {0} has been scheduled on {1} at {2} {3}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:125
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:126
|
||||||
msgid "Your evaluation slot has been booked"
|
msgid "Your evaluation slot has been booked"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -6127,7 +6052,7 @@ msgstr ""
|
|||||||
msgid "you can"
|
msgid "you can"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/api.py:802 lms/lms/api.py:810
|
#: lms/lms/api.py:808 lms/lms/api.py:816
|
||||||
msgid "{0} Settings not found"
|
msgid "{0} Settings not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -6167,7 +6092,7 @@ msgstr ""
|
|||||||
msgid "{0} is your evaluator"
|
msgid "{0} is your evaluator"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/utils.py:681
|
#: lms/lms/utils.py:682
|
||||||
msgid "{0} mentioned you in a comment"
|
msgid "{0} mentioned you in a comment"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -6175,11 +6100,11 @@ msgstr ""
|
|||||||
msgid "{0} mentioned you in a comment in your batch."
|
msgid "{0} mentioned you in a comment in your batch."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/utils.py:634 lms/lms/utils.py:640
|
#: lms/lms/utils.py:635 lms/lms/utils.py:641
|
||||||
msgid "{0} mentioned you in a comment in {1}"
|
msgid "{0} mentioned you in a comment in {1}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/utils.py:457
|
#: lms/lms/utils.py:458
|
||||||
msgid "{0}k"
|
msgid "{0}k"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@@ -7,8 +7,8 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Frappe LMS VERSION\n"
|
"Project-Id-Version: Frappe LMS VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
|
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
|
||||||
"POT-Creation-Date: 2025-02-28 16:04+0000\n"
|
"POT-Creation-Date: 2025-03-07 16:04+0000\n"
|
||||||
"PO-Revision-Date: 2025-02-28 16:04+0000\n"
|
"PO-Revision-Date: 2025-03-07 16:04+0000\n"
|
||||||
"Last-Translator: jannat@frappe.io\n"
|
"Last-Translator: jannat@frappe.io\n"
|
||||||
"Language-Team: jannat@frappe.io\n"
|
"Language-Team: jannat@frappe.io\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -226,7 +226,7 @@ msgstr ""
|
|||||||
msgid "All Certified Participants"
|
msgid "All Certified Participants"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/widgets/BreadCrumb.html:3
|
#: frontend/src/pages/Courses.vue:26 lms/lms/widgets/BreadCrumb.html:3
|
||||||
msgid "All Courses"
|
msgid "All Courses"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -266,7 +266,7 @@ msgstr ""
|
|||||||
msgid "Allow self enrollment"
|
msgid "Allow self enrollment"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/overrides/user.py:199
|
#: lms/lms/user.py:34
|
||||||
msgid "Already Registered"
|
msgid "Already Registered"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -376,7 +376,7 @@ msgstr ""
|
|||||||
msgid "Are you sure you want to cancel this evaluation? This action cannot be undone."
|
msgid "Are you sure you want to cancel this evaluation? This action cannot be undone."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/UserDropdown.vue:209
|
#: frontend/src/components/UserDropdown.vue:169
|
||||||
msgid "Are you sure you want to login to your Frappe Cloud dashboard?"
|
msgid "Are you sure you want to login to your Frappe Cloud dashboard?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -490,12 +490,12 @@ msgid "Auto Assign"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. Label of the auto_recording (Select) field in DocType 'LMS Live Class'
|
#. Label of the auto_recording (Select) field in DocType 'LMS Live Class'
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:71
|
#: frontend/src/components/Modals/LiveClassModal.vue:77
|
||||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||||
msgid "Auto Recording"
|
msgid "Auto Recording"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/CourseCard.vue:50
|
#: frontend/src/components/CourseCard.vue:51
|
||||||
#: frontend/src/pages/CourseDetail.vue:20
|
#: frontend/src/pages/CourseDetail.vue:20
|
||||||
msgid "Average Rating"
|
msgid "Average Rating"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -737,7 +737,7 @@ msgstr ""
|
|||||||
#. Label of the category (Link) field in DocType 'LMS Course'
|
#. Label of the category (Link) field in DocType 'LMS Course'
|
||||||
#: frontend/src/pages/BatchForm.vue:190 frontend/src/pages/Batches.vue:55
|
#: frontend/src/pages/BatchForm.vue:190 frontend/src/pages/Batches.vue:55
|
||||||
#: frontend/src/pages/CertifiedParticipants.vue:37
|
#: frontend/src/pages/CertifiedParticipants.vue:37
|
||||||
#: frontend/src/pages/CourseForm.vue:147 frontend/src/pages/Courses.vue:17
|
#: frontend/src/pages/CourseForm.vue:147 frontend/src/pages/Courses.vue:55
|
||||||
#: frontend/src/pages/JobDetail.vue:96 lms/lms/doctype/lms_batch/lms_batch.json
|
#: frontend/src/pages/JobDetail.vue:96 lms/lms/doctype/lms_batch/lms_batch.json
|
||||||
#: lms/lms/doctype/lms_category/lms_category.json
|
#: lms/lms/doctype/lms_category/lms_category.json
|
||||||
#: lms/lms/doctype/lms_course/lms_course.json
|
#: lms/lms/doctype/lms_course/lms_course.json
|
||||||
@@ -788,12 +788,12 @@ msgstr ""
|
|||||||
#. Enrollment'
|
#. Enrollment'
|
||||||
#. Label of a Card Break in the LMS Workspace
|
#. Label of a Card Break in the LMS Workspace
|
||||||
#. Label of a Link in the LMS Workspace
|
#. Label of a Link in the LMS Workspace
|
||||||
#: frontend/src/components/CourseCard.vue:110
|
#: frontend/src/components/CourseCard.vue:111
|
||||||
#: frontend/src/components/Modals/Event.vue:371
|
#: frontend/src/components/Modals/Event.vue:371
|
||||||
#: frontend/src/pages/BatchForm.vue:37 frontend/src/pages/Batches.vue:38
|
#: frontend/src/pages/BatchForm.vue:37 frontend/src/pages/Batches.vue:38
|
||||||
#: frontend/src/pages/CourseCertification.vue:10
|
#: frontend/src/pages/CourseCertification.vue:10
|
||||||
#: frontend/src/pages/CourseCertification.vue:114
|
#: frontend/src/pages/CourseCertification.vue:114
|
||||||
#: lms/fixtures/custom_field.json
|
#: frontend/src/pages/Courses.vue:38 lms/fixtures/custom_field.json
|
||||||
#: lms/lms/doctype/certification/certification.json
|
#: lms/lms/doctype/certification/certification.json
|
||||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
||||||
@@ -910,10 +910,6 @@ msgstr ""
|
|||||||
msgid "Clearly Defined Role"
|
msgid "Clearly Defined Role"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:75
|
|
||||||
msgid "Click here to login"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: frontend/src/components/LessonHelp.vue:30
|
#: frontend/src/components/LessonHelp.vue:30
|
||||||
msgid "Click on the add icon in the editor and select Quiz from the menu. It opens up a dialog, where you can either select a quiz from the list or create a new quiz. When you select the Create New option it redirects you to the quiz creation page."
|
msgid "Click on the add icon in the editor and select Quiz from the menu. It opens up a dialog, where you can either select a quiz from the list or create a new quiz. When you select the Create New option it redirects you to the quiz creation page."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1082,7 +1078,7 @@ msgstr ""
|
|||||||
msgid "Complete Your Enrollment"
|
msgid "Complete Your Enrollment"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_payment/lms_payment.py:40
|
#: lms/lms/doctype/lms_payment/lms_payment.py:55
|
||||||
msgid "Complete Your Enrollment - Don't miss out!"
|
msgid "Complete Your Enrollment - Don't miss out!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -1123,7 +1119,11 @@ msgstr ""
|
|||||||
msgid "Condition must be valid python code."
|
msgid "Condition must be valid python code."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/UserDropdown.vue:214
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.js:7
|
||||||
|
msgid "Conduct Evaluation"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: frontend/src/components/UserDropdown.vue:174
|
||||||
msgid "Confirm"
|
msgid "Confirm"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -1164,7 +1164,7 @@ msgstr ""
|
|||||||
msgid "Contract"
|
msgid "Contract"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/utils.py:437
|
#: lms/lms/utils.py:438
|
||||||
msgid "Cookie Policy"
|
msgid "Cookie Policy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -1380,7 +1380,7 @@ msgstr ""
|
|||||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:79
|
#: frontend/src/components/Modals/BatchStudentProgress.vue:79
|
||||||
#: frontend/src/pages/BatchDetail.vue:21 frontend/src/pages/BatchDetail.vue:70
|
#: frontend/src/pages/BatchDetail.vue:21 frontend/src/pages/BatchDetail.vue:70
|
||||||
#: frontend/src/pages/CourseCertification.vue:106
|
#: frontend/src/pages/CourseCertification.vue:106
|
||||||
#: frontend/src/pages/Courses.vue:8 frontend/src/pages/Statistics.vue:21
|
#: frontend/src/pages/Courses.vue:314 frontend/src/pages/Statistics.vue:21
|
||||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||||
msgid "Courses"
|
msgid "Courses"
|
||||||
@@ -1391,10 +1391,6 @@ msgstr ""
|
|||||||
msgid "Courses Completed"
|
msgid "Courses Completed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/web_template/courses_mentored/courses_mentored.html:4
|
|
||||||
msgid "Courses Mentored"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: frontend/src/components/BatchCourses.vue:151
|
#: frontend/src/components/BatchCourses.vue:151
|
||||||
msgid "Courses deleted successfully"
|
msgid "Courses deleted successfully"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1410,14 +1406,10 @@ msgid "Create"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.js:7
|
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.js:7
|
||||||
msgid "Create LMS Certificate"
|
msgid "Create Certificate"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.js:8
|
#: lms/templates/onboarding_header.html:19
|
||||||
msgid "Create LMS Certificate Evaluation"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: frontend/src/pages/Courses.vue:136 lms/templates/onboarding_header.html:19
|
|
||||||
msgid "Create a Course"
|
msgid "Create a Course"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -1433,7 +1425,8 @@ msgstr ""
|
|||||||
msgid "Create a new question"
|
msgid "Create a new question"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/pages/Assignments.vue:163
|
#: frontend/src/pages/Assignments.vue:163 frontend/src/pages/Courses.vue:287
|
||||||
|
#: frontend/src/pages/Courses.vue:307
|
||||||
msgid "Created"
|
msgid "Created"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -1486,7 +1479,7 @@ msgstr ""
|
|||||||
#. Label of the date (Date) field in DocType 'Scheduled Flow'
|
#. Label of the date (Date) field in DocType 'Scheduled Flow'
|
||||||
#: frontend/src/components/Modals/EvaluationModal.vue:26
|
#: frontend/src/components/Modals/EvaluationModal.vue:26
|
||||||
#: frontend/src/components/Modals/Event.vue:40
|
#: frontend/src/components/Modals/Event.vue:40
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:55
|
#: frontend/src/components/Modals/LiveClassModal.vue:61
|
||||||
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
|
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
|
||||||
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
|
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||||
@@ -1585,7 +1578,7 @@ msgstr ""
|
|||||||
#. Label of the description (Small Text) field in DocType 'LMS Exercise'
|
#. 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 (Text) field in DocType 'LMS Live Class'
|
||||||
#. Label of the description (Small Text) field in DocType 'Work Experience'
|
#. Label of the description (Small Text) field in DocType 'Work Experience'
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:78
|
#: frontend/src/components/Modals/LiveClassModal.vue:84
|
||||||
#: frontend/src/pages/BatchForm.vue:224 frontend/src/pages/JobCreation.vue:50
|
#: frontend/src/pages/BatchForm.vue:224 frontend/src/pages/JobCreation.vue:50
|
||||||
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
||||||
#: lms/lms/doctype/certification/certification.json
|
#: lms/lms/doctype/certification/certification.json
|
||||||
@@ -1612,10 +1605,6 @@ msgstr ""
|
|||||||
msgid "Details"
|
msgid "Details"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:30
|
|
||||||
msgid "Didn't receive the code?"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: frontend/src/pages/CourseForm.vue:194
|
#: frontend/src/pages/CourseForm.vue:194
|
||||||
msgid "Disable Self Enrollment"
|
msgid "Disable Self Enrollment"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1666,7 +1655,7 @@ msgstr ""
|
|||||||
#. Label of the duration (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 (Data) field in DocType 'LMS Batch Timetable'
|
||||||
#. Label of the duration (Int) field in DocType 'LMS Live Class'
|
#. Label of the duration (Int) field in DocType 'LMS Live Class'
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:62
|
#: frontend/src/components/Modals/LiveClassModal.vue:68
|
||||||
#: lms/lms/doctype/cohort/cohort.json
|
#: lms/lms/doctype/cohort/cohort.json
|
||||||
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
|
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
|
||||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||||
@@ -1678,7 +1667,7 @@ msgstr ""
|
|||||||
msgid "Duration (in minutes)"
|
msgid "Duration (in minutes)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:58
|
#: frontend/src/components/Modals/LiveClassModal.vue:64
|
||||||
msgid "Duration of the live class in minutes"
|
msgid "Duration of the live class in minutes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -1824,11 +1813,12 @@ msgstr ""
|
|||||||
msgid "Enroll Now"
|
msgid "Enroll Now"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/pages/Batches.vue:292
|
#: frontend/src/pages/Batches.vue:292 frontend/src/pages/Courses.vue:285
|
||||||
|
#: frontend/src/pages/Courses.vue:305
|
||||||
msgid "Enrolled"
|
msgid "Enrolled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/CourseCard.vue:41
|
#: frontend/src/components/CourseCard.vue:42
|
||||||
#: frontend/src/components/CourseCardOverlay.vue:106
|
#: frontend/src/components/CourseCardOverlay.vue:106
|
||||||
#: frontend/src/pages/CourseDetail.vue:33
|
#: frontend/src/pages/CourseDetail.vue:33
|
||||||
msgid "Enrolled Students"
|
msgid "Enrolled Students"
|
||||||
@@ -1847,11 +1837,11 @@ msgstr ""
|
|||||||
msgid "Enrollment Count"
|
msgid "Enrollment Count"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/utils.py:1769
|
#: lms/lms/utils.py:1898
|
||||||
msgid "Enrollment Failed"
|
msgid "Enrollment Failed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. Label of the enrollments (Data) field in DocType 'LMS Course'
|
#. Label of the enrollments (Int) field in DocType 'LMS Course'
|
||||||
#. Label of a chart in the LMS Workspace
|
#. Label of a chart in the LMS Workspace
|
||||||
#. Label of a shortcut in the LMS Workspace
|
#. Label of a shortcut in the LMS Workspace
|
||||||
#: frontend/src/pages/Statistics.vue:51
|
#: frontend/src/pages/Statistics.vue:51
|
||||||
@@ -2055,14 +2045,6 @@ msgstr ""
|
|||||||
msgid "Fail"
|
msgid "Fail"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/UserDropdown.vue:243
|
|
||||||
msgid "Failed to login to Frappe Cloud"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:91
|
|
||||||
msgid "Failed to resend code"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. Label of the featured (Check) field in DocType 'LMS Course'
|
#. Label of the featured (Check) field in DocType 'LMS Course'
|
||||||
#: frontend/src/components/CourseCard.vue:16
|
#: frontend/src/components/CourseCard.vue:16
|
||||||
#: frontend/src/pages/CourseForm.vue:189
|
#: frontend/src/pages/CourseForm.vue:189
|
||||||
@@ -2123,10 +2105,6 @@ msgstr ""
|
|||||||
msgid "Formal Wear"
|
msgid "Formal Wear"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:70
|
|
||||||
msgid "Frappe Cloud Login Successful"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lms/lms/widgets/CourseCard.html:114
|
#: lms/lms/widgets/CourseCard.html:114
|
||||||
msgid "Free"
|
msgid "Free"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -2210,7 +2188,7 @@ msgstr ""
|
|||||||
msgid "Generate Certificates"
|
msgid "Generate Certificates"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.js:18
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.js:15
|
||||||
msgid "Generate Google Meet Link"
|
msgid "Generate Google Meet Link"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -2380,10 +2358,6 @@ msgstr ""
|
|||||||
msgid "If you have any questions or require assistance, feel free to contact us."
|
msgid "If you have any questions or require assistance, feel free to contact us."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:71
|
|
||||||
msgid "If you haven't been redirected,"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. Description of the 'Amount (USD)' (Currency) field in DocType 'LMS Batch'
|
#. Description of the 'Amount (USD)' (Currency) field in DocType 'LMS Batch'
|
||||||
#. Description of the 'Amount (USD)' (Currency) field in DocType 'LMS Course'
|
#. Description of the 'Amount (USD)' (Currency) field in DocType 'LMS Course'
|
||||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||||
@@ -2967,8 +2941,8 @@ msgstr ""
|
|||||||
|
|
||||||
#. Label of the lessons (Table) field in DocType 'Course Chapter'
|
#. Label of the lessons (Table) field in DocType 'Course Chapter'
|
||||||
#. Group in Course Chapter's connections
|
#. Group in Course Chapter's connections
|
||||||
#. Label of the lessons (Data) field in DocType 'LMS Course'
|
#. Label of the lessons (Int) field in DocType 'LMS Course'
|
||||||
#: frontend/src/components/CourseCard.vue:32
|
#: frontend/src/components/CourseCard.vue:33
|
||||||
#: frontend/src/components/CourseCardOverlay.vue:99
|
#: frontend/src/components/CourseCardOverlay.vue:99
|
||||||
#: lms/lms/doctype/course_chapter/course_chapter.json
|
#: lms/lms/doctype/course_chapter/course_chapter.json
|
||||||
#: lms/lms/doctype/lms_course/lms_course.json
|
#: lms/lms/doctype/lms_course/lms_course.json
|
||||||
@@ -3019,7 +2993,7 @@ msgid "List of quizzes"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. Option for the 'Status' (Select) field in DocType 'Cohort'
|
#. Option for the 'Status' (Select) field in DocType 'Cohort'
|
||||||
#: lms/lms/doctype/cohort/cohort.json
|
#: frontend/src/pages/Courses.vue:295 lms/lms/doctype/cohort/cohort.json
|
||||||
msgid "Live"
|
msgid "Live"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -3037,6 +3011,7 @@ msgstr ""
|
|||||||
#: frontend/src/components/Members.vue:108
|
#: frontend/src/components/Members.vue:108
|
||||||
#: frontend/src/pages/Assignments.vue:71 frontend/src/pages/Batches.vue:94
|
#: frontend/src/pages/Assignments.vue:71 frontend/src/pages/Batches.vue:94
|
||||||
#: frontend/src/pages/CertifiedParticipants.vue:79
|
#: frontend/src/pages/CertifiedParticipants.vue:79
|
||||||
|
#: frontend/src/pages/Courses.vue:94
|
||||||
#: frontend/src/pages/QuizSubmissionList.vue:39
|
#: frontend/src/pages/QuizSubmissionList.vue:39
|
||||||
#: frontend/src/pages/Quizzes.vue:51
|
#: frontend/src/pages/Quizzes.vue:51
|
||||||
msgid "Load More"
|
msgid "Load More"
|
||||||
@@ -3069,16 +3044,7 @@ msgstr ""
|
|||||||
msgid "Login"
|
msgid "Login"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:79
|
#: frontend/src/components/UserDropdown.vue:168
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:83
|
|
||||||
msgid "Login failed"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:6
|
|
||||||
msgid "Login to Frappe Cloud"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: frontend/src/components/UserDropdown.vue:208
|
|
||||||
msgid "Login to Frappe Cloud?"
|
msgid "Login to Frappe Cloud?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -3394,11 +3360,11 @@ msgstr ""
|
|||||||
msgid "Modified By"
|
msgid "Modified By"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/api.py:208
|
#: lms/lms/api.py:214
|
||||||
msgid "Module Name is incorrect or does not exist."
|
msgid "Module Name is incorrect or does not exist."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/api.py:204
|
#: lms/lms/api.py:210
|
||||||
msgid "Module is incorrect."
|
msgid "Module is incorrect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -3428,7 +3394,8 @@ msgstr ""
|
|||||||
|
|
||||||
#. Option for the 'Event' (Select) field in DocType 'LMS Badge'
|
#. Option for the 'Event' (Select) field in DocType 'LMS Badge'
|
||||||
#: frontend/src/pages/Assignments.vue:18 frontend/src/pages/Batches.vue:17
|
#: frontend/src/pages/Assignments.vue:18 frontend/src/pages/Batches.vue:17
|
||||||
#: frontend/src/pages/Courses.vue:48 frontend/src/pages/Programs.vue:14
|
#: frontend/src/pages/Courses.vue:17 frontend/src/pages/Courses.vue:281
|
||||||
|
#: frontend/src/pages/Courses.vue:298 frontend/src/pages/Programs.vue:14
|
||||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||||
msgid "New"
|
msgid "New"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -3482,11 +3449,11 @@ msgstr ""
|
|||||||
msgid "New Sign Up"
|
msgid "New Sign Up"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/utils.py:604
|
#: lms/lms/utils.py:605
|
||||||
msgid "New comment in batch {0}"
|
msgid "New comment in batch {0}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/utils.py:597
|
#: lms/lms/utils.py:598
|
||||||
msgid "New reply on the topic {0} in course {1}"
|
msgid "New reply on the topic {0} in course {1}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -3544,7 +3511,7 @@ msgstr ""
|
|||||||
msgid "No courses created"
|
msgid "No courses created"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/pages/Courses.vue:151
|
#: frontend/src/pages/Courses.vue:79
|
||||||
msgid "No courses found"
|
msgid "No courses found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -3596,15 +3563,11 @@ msgstr ""
|
|||||||
msgid "No {0}"
|
msgid "No {0}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/pages/Courses.vue:111
|
|
||||||
msgid "No {0} courses"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lms/templates/quiz/quiz.html:147
|
#: lms/templates/quiz/quiz.html:147
|
||||||
msgid "No."
|
msgid "No."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/overrides/user.py:194
|
#: lms/lms/user.py:29
|
||||||
msgid "Not Allowed"
|
msgid "Not Allowed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -3693,7 +3656,7 @@ msgstr ""
|
|||||||
msgid "Only files of type {0} will be accepted."
|
msgid "Only files of type {0} will be accepted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/pages/CourseForm.vue:506 frontend/src/utils/index.js:533
|
#: frontend/src/pages/CourseForm.vue:506 frontend/src/utils/index.js:552
|
||||||
msgid "Only image file is allowed."
|
msgid "Only image file is allowed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -3724,10 +3687,6 @@ msgstr ""
|
|||||||
msgid "Open Ended"
|
msgid "Open Ended"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/widgets/MemberCard.html:16
|
|
||||||
msgid "Open Network"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. Label of the option (Data) field in DocType 'LMS Option'
|
#. Label of the option (Data) field in DocType 'LMS Option'
|
||||||
#: frontend/src/components/Modals/Question.vue:64
|
#: frontend/src/components/Modals/Question.vue:64
|
||||||
#: lms/lms/doctype/lms_option/lms_option.json
|
#: lms/lms/doctype/lms_option/lms_option.json
|
||||||
@@ -3979,11 +3938,11 @@ msgstr ""
|
|||||||
msgid "Please add <a href='{0}'>{1}</a> for <a href='{2}'>{3}</a> to send calendar invites for evaluations."
|
msgid "Please add <a href='{0}'>{1}</a> for <a href='{2}'>{3}</a> to send calendar invites for evaluations."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/overrides/user.py:240
|
#: lms/lms/user.py:75
|
||||||
msgid "Please ask your administrator to verify your sign-up"
|
msgid "Please ask your administrator to verify your sign-up"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/overrides/user.py:238
|
#: lms/lms/user.py:73
|
||||||
msgid "Please check your email for verification"
|
msgid "Please check your email for verification"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -3991,7 +3950,7 @@ msgstr ""
|
|||||||
msgid "Please click on the following button to set your new password"
|
msgid "Please click on the following button to set your new password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/utils.py:1901 lms/lms/utils.py:1905
|
#: lms/lms/utils.py:2030 lms/lms/utils.py:2034
|
||||||
msgid "Please complete the previous courses in the program to enroll in this course."
|
msgid "Please complete the previous courses in the program to enroll in this course."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -4007,7 +3966,7 @@ msgstr ""
|
|||||||
msgid "Please ensure that you complete all the questions in {0} minutes."
|
msgid "Please ensure that you complete all the questions in {0} minutes."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:164
|
#: frontend/src/components/Modals/LiveClassModal.vue:170
|
||||||
msgid "Please enter a title."
|
msgid "Please enter a title."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -4016,7 +3975,7 @@ msgstr ""
|
|||||||
msgid "Please enter a valid URL."
|
msgid "Please enter a valid URL."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:176
|
#: frontend/src/components/Modals/LiveClassModal.vue:182
|
||||||
msgid "Please enter a valid time in the format HH:mm."
|
msgid "Please enter a valid time in the format HH:mm."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -4052,7 +4011,7 @@ msgstr ""
|
|||||||
msgid "Please login to access this page."
|
msgid "Please login to access this page."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/api.py:200
|
#: lms/lms/api.py:206
|
||||||
msgid "Please login to continue with payment."
|
msgid "Please login to continue with payment."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -4065,23 +4024,23 @@ msgstr ""
|
|||||||
msgid "Please schedule an evaluation to get certified."
|
msgid "Please schedule an evaluation to get certified."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:167
|
#: frontend/src/components/Modals/LiveClassModal.vue:173
|
||||||
msgid "Please select a date."
|
msgid "Please select a date."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:191
|
#: frontend/src/components/Modals/LiveClassModal.vue:197
|
||||||
msgid "Please select a duration."
|
msgid "Please select a duration."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:188
|
#: frontend/src/components/Modals/LiveClassModal.vue:194
|
||||||
msgid "Please select a future date and time."
|
msgid "Please select a future date and time."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:170
|
#: frontend/src/components/Modals/LiveClassModal.vue:176
|
||||||
msgid "Please select a time."
|
msgid "Please select a time."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:173
|
#: frontend/src/components/Modals/LiveClassModal.vue:179
|
||||||
msgid "Please select a timezone."
|
msgid "Please select a timezone."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -4089,13 +4048,6 @@ msgstr ""
|
|||||||
msgid "Please take appropriate action at {0}"
|
msgid "Please take appropriate action at {0}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:79
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:83
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:91
|
|
||||||
#: frontend/src/components/UserDropdown.vue:244
|
|
||||||
msgid "Please try again"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: frontend/src/components/Modals/ChapterModal.vue:177
|
#: frontend/src/components/Modals/ChapterModal.vue:177
|
||||||
msgid "Please upload a SCORM package"
|
msgid "Please upload a SCORM package"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -4208,7 +4160,7 @@ msgstr ""
|
|||||||
msgid "Primary Subgroup"
|
msgid "Primary Subgroup"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/utils.py:436
|
#: lms/lms/utils.py:437
|
||||||
msgid "Privacy Policy"
|
msgid "Privacy Policy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -4476,7 +4428,7 @@ msgstr ""
|
|||||||
msgid "Registered"
|
msgid "Registered"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/overrides/user.py:201
|
#: lms/lms/user.py:36
|
||||||
msgid "Registered but disabled"
|
msgid "Registered but disabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -4517,10 +4469,6 @@ msgstr ""
|
|||||||
msgid "Required Role"
|
msgid "Required Role"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:31
|
|
||||||
msgid "Resend"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. Option for the 'Membership' (Select) field in DocType 'LMS Batch Old'
|
#. Option for the 'Membership' (Select) field in DocType 'LMS Batch Old'
|
||||||
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
|
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
|
||||||
msgid "Restricted"
|
msgid "Restricted"
|
||||||
@@ -4675,7 +4623,7 @@ msgstr ""
|
|||||||
msgid "Search by Name"
|
msgid "Search by Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/pages/Batches.vue:45
|
#: frontend/src/pages/Batches.vue:45 frontend/src/pages/Courses.vue:45
|
||||||
msgid "Search by Title"
|
msgid "Search by Title"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -4817,7 +4765,7 @@ msgstr ""
|
|||||||
msgid "Sidebar Items"
|
msgid "Sidebar Items"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/overrides/user.py:194
|
#: lms/lms/user.py:29
|
||||||
msgid "Sign Up is disabled"
|
msgid "Sign Up is disabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -4861,10 +4809,6 @@ msgstr ""
|
|||||||
msgid "Skills"
|
msgid "Skills"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/overrides/user.py:42
|
|
||||||
msgid "Skills must be unique"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lms/templates/onboarding_header.html:6
|
#: lms/templates/onboarding_header.html:6
|
||||||
msgid "Skip"
|
msgid "Skip"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -5141,7 +5085,7 @@ msgstr ""
|
|||||||
msgid "Sunday"
|
msgid "Sunday"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/api.py:1012
|
#: lms/lms/api.py:1018
|
||||||
msgid "Suspicious pattern found in {0}: {1}"
|
msgid "Suspicious pattern found in {0}: {1}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -5222,11 +5166,11 @@ msgstr ""
|
|||||||
msgid "Template"
|
msgid "Template"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/overrides/user.py:205
|
#: lms/lms/user.py:40
|
||||||
msgid "Temporarily Disabled"
|
msgid "Temporarily Disabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/utils.py:435
|
#: lms/lms/utils.py:436
|
||||||
msgid "Terms of Use"
|
msgid "Terms of Use"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -5262,7 +5206,7 @@ msgstr ""
|
|||||||
msgid "Thanks and Regards"
|
msgid "Thanks and Regards"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/utils.py:1801
|
#: lms/lms/utils.py:1930
|
||||||
msgid "The batch is full. Please contact the Administrator."
|
msgid "The batch is full. Please contact the Administrator."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -5298,8 +5242,8 @@ msgstr ""
|
|||||||
msgid "There are no chapters in this course. Create and manage chapters from here."
|
msgid "There are no chapters in this course. Create and manage chapters from here."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/pages/Courses.vue:155
|
#: frontend/src/pages/Courses.vue:83
|
||||||
msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
|
msgid "There are no courses matching the criteria. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/pages/CertifiedParticipants.vue:92
|
#: frontend/src/pages/CertifiedParticipants.vue:92
|
||||||
@@ -5357,7 +5301,7 @@ msgstr ""
|
|||||||
msgid "This course has:"
|
msgid "This course has:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/utils.py:1644
|
#: lms/lms/utils.py:1773
|
||||||
msgid "This course is free."
|
msgid "This course is free."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -5425,7 +5369,7 @@ msgstr ""
|
|||||||
#. Label of the timezone (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 Certificate Request'
|
#. Label of the timezone (Data) field in DocType 'LMS Certificate Request'
|
||||||
#. Label of the timezone (Data) field in DocType 'LMS Live Class'
|
#. Label of the timezone (Data) field in DocType 'LMS Live Class'
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:46
|
#: frontend/src/components/Modals/LiveClassModal.vue:45
|
||||||
#: frontend/src/pages/BatchForm.vue:120
|
#: frontend/src/pages/BatchForm.vue:120
|
||||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||||
@@ -5499,7 +5443,7 @@ msgstr ""
|
|||||||
msgid "To Date"
|
msgid "To Date"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/utils.py:1655
|
#: lms/lms/utils.py:1784
|
||||||
msgid "To join this batch, please contact the Administrator."
|
msgid "To join this batch, please contact the Administrator."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -5507,7 +5451,7 @@ msgstr ""
|
|||||||
msgid "To upload Image, Video, Audio or PDF from your system, click on the add icon and select upload from the menu. Then choose the file you want to add to the lesson and it gets added to your lesson."
|
msgid "To upload Image, Video, Audio or PDF from your system, click on the add icon and select upload from the menu. Then choose the file you want to add to the lesson and it gets added to your lesson."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/overrides/user.py:206
|
#: lms/lms/user.py:41
|
||||||
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
|
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -5624,7 +5568,8 @@ msgstr ""
|
|||||||
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request'
|
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request'
|
||||||
#. Label of the upcoming (Check) field in DocType 'LMS Course'
|
#. Label of the upcoming (Check) field in DocType 'LMS Course'
|
||||||
#: frontend/src/pages/Batches.vue:276 frontend/src/pages/Batches.vue:294
|
#: frontend/src/pages/Batches.vue:276 frontend/src/pages/Batches.vue:294
|
||||||
#: frontend/src/pages/CourseForm.vue:184 lms/lms/doctype/cohort/cohort.json
|
#: frontend/src/pages/CourseForm.vue:184 frontend/src/pages/Courses.vue:282
|
||||||
|
#: frontend/src/pages/Courses.vue:301 lms/lms/doctype/cohort/cohort.json
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||||
#: lms/lms/doctype/lms_course/lms_course.json
|
#: lms/lms/doctype/lms_course/lms_course.json
|
||||||
msgid "Upcoming"
|
msgid "Upcoming"
|
||||||
@@ -5725,14 +5670,6 @@ msgstr ""
|
|||||||
msgid "Value Change"
|
msgid "Value Change"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:26
|
|
||||||
msgid "Verification Code"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:9
|
|
||||||
msgid "Verify"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. Label of the video_link (Data) field in DocType 'LMS Course'
|
#. Label of the video_link (Data) field in DocType 'LMS Course'
|
||||||
#: lms/lms/doctype/lms_course/lms_course.json
|
#: lms/lms/doctype/lms_course/lms_course.json
|
||||||
msgid "Video Embed Link"
|
msgid "Video Embed Link"
|
||||||
@@ -5774,10 +5711,6 @@ msgstr ""
|
|||||||
msgid "We have a limited number of seats, and they won't be available for long!"
|
msgid "We have a limited number of seats, and they won't be available for long!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:21
|
|
||||||
msgid "We have sent the verificaton code to your email id "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lms/templates/emails/payment_reminder.html:4
|
#: lms/templates/emails/payment_reminder.html:4
|
||||||
msgid "We noticed that you started enrolling in the"
|
msgid "We noticed that you started enrolling in the"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -5853,7 +5786,7 @@ msgstr ""
|
|||||||
msgid "Write your answer here"
|
msgid "Write your answer here"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:95
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:96
|
||||||
msgid "You already have an evaluation on {0} at {1} for the course {2}."
|
msgid "You already have an evaluation on {0} at {1} for the course {2}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -5861,11 +5794,11 @@ msgstr ""
|
|||||||
msgid "You are already certified for this course. Click on the card below to open your certificate."
|
msgid "You are already certified for this course. Click on the card below to open your certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/api.py:224
|
#: lms/lms/api.py:230
|
||||||
msgid "You are already enrolled for this batch."
|
msgid "You are already enrolled for this batch."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/api.py:216
|
#: lms/lms/api.py:222
|
||||||
msgid "You are already enrolled for this course."
|
msgid "You are already enrolled for this course."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -5885,10 +5818,6 @@ msgstr ""
|
|||||||
msgid "You are not enrolled in this course. Please enroll to access this lesson."
|
msgid "You are not enrolled in this course. Please enroll to access this lesson."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/pages/Courses.vue:139
|
|
||||||
msgid "You can add chapters and lessons to it."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lms/templates/emails/lms_course_interest.html:13
|
#: lms/templates/emails/lms_course_interest.html:13
|
||||||
#: lms/templates/emails/lms_invite_request_approved.html:11
|
#: lms/templates/emails/lms_invite_request_approved.html:11
|
||||||
msgid "You can also copy-paste following link in your browser"
|
msgid "You can also copy-paste following link in your browser"
|
||||||
@@ -5906,11 +5835,11 @@ msgstr ""
|
|||||||
msgid "You can find their resume attached to this email."
|
msgid "You can find their resume attached to this email."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:115
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:116
|
||||||
msgid "You cannot schedule evaluations after {0}."
|
msgid "You cannot schedule evaluations after {0}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:104
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:105
|
||||||
msgid "You cannot schedule evaluations for past slots."
|
msgid "You cannot schedule evaluations for past slots."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -5943,7 +5872,7 @@ msgstr ""
|
|||||||
msgid "You have already exceeded the maximum number of attempts allowed for this quiz."
|
msgid "You have already exceeded the maximum number of attempts allowed for this quiz."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/api.py:237
|
#: lms/lms/api.py:243
|
||||||
msgid "You have already purchased the certificate for this course."
|
msgid "You have already purchased the certificate for this course."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -5983,10 +5912,6 @@ msgstr ""
|
|||||||
msgid "You need to login first to enroll for this course"
|
msgid "You need to login first to enroll for this course"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:71
|
|
||||||
msgid "You will be redirected to Frappe Cloud soon."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: frontend/src/components/Quiz.vue:27 lms/templates/quiz/quiz.html:11
|
#: frontend/src/components/Quiz.vue:27 lms/templates/quiz/quiz.html:11
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "You will have to get {0}% correct answers in order to pass the quiz."
|
msgid "You will have to get {0}% correct answers in order to pass the quiz."
|
||||||
@@ -6024,7 +5949,7 @@ msgstr ""
|
|||||||
msgid "Your evaluation for the course {0} has been scheduled on {1} at {2} {3}."
|
msgid "Your evaluation for the course {0} has been scheduled on {1} at {2} {3}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:125
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:126
|
||||||
msgid "Your evaluation slot has been booked"
|
msgid "Your evaluation slot has been booked"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -6125,7 +6050,7 @@ msgstr ""
|
|||||||
msgid "you can"
|
msgid "you can"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/api.py:802 lms/lms/api.py:810
|
#: lms/lms/api.py:808 lms/lms/api.py:816
|
||||||
msgid "{0} Settings not found"
|
msgid "{0} Settings not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -6165,7 +6090,7 @@ msgstr ""
|
|||||||
msgid "{0} is your evaluator"
|
msgid "{0} is your evaluator"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/utils.py:681
|
#: lms/lms/utils.py:682
|
||||||
msgid "{0} mentioned you in a comment"
|
msgid "{0} mentioned you in a comment"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -6173,11 +6098,11 @@ msgstr ""
|
|||||||
msgid "{0} mentioned you in a comment in your batch."
|
msgid "{0} mentioned you in a comment in your batch."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/utils.py:634 lms/lms/utils.py:640
|
#: lms/lms/utils.py:635 lms/lms/utils.py:641
|
||||||
msgid "{0} mentioned you in a comment in {1}"
|
msgid "{0} mentioned you in a comment in {1}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/utils.py:457
|
#: lms/lms/utils.py:458
|
||||||
msgid "{0}k"
|
msgid "{0}k"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
371
lms/locale/pl.po
371
lms/locale/pl.po
File diff suppressed because it is too large
Load Diff
6140
lms/locale/pt.po
Normal file
6140
lms/locale/pt.po
Normal file
File diff suppressed because it is too large
Load Diff
245
lms/locale/ru.po
245
lms/locale/ru.po
@@ -2,8 +2,8 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: frappe\n"
|
"Project-Id-Version: frappe\n"
|
||||||
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
|
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
|
||||||
"POT-Creation-Date: 2025-02-28 16:04+0000\n"
|
"POT-Creation-Date: 2025-03-07 16:04+0000\n"
|
||||||
"PO-Revision-Date: 2025-03-03 21:29\n"
|
"PO-Revision-Date: 2025-03-10 22:46\n"
|
||||||
"Last-Translator: jannat@frappe.io\n"
|
"Last-Translator: jannat@frappe.io\n"
|
||||||
"Language-Team: Russian\n"
|
"Language-Team: Russian\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -228,7 +228,7 @@ msgstr ""
|
|||||||
msgid "All Certified Participants"
|
msgid "All Certified Participants"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/widgets/BreadCrumb.html:3
|
#: frontend/src/pages/Courses.vue:26 lms/lms/widgets/BreadCrumb.html:3
|
||||||
msgid "All Courses"
|
msgid "All Courses"
|
||||||
msgstr "Все курсы"
|
msgstr "Все курсы"
|
||||||
|
|
||||||
@@ -268,7 +268,7 @@ msgstr "Разрешить доступ к будущим датам"
|
|||||||
msgid "Allow self enrollment"
|
msgid "Allow self enrollment"
|
||||||
msgstr "Разрешить самостоятельную регистрацию"
|
msgstr "Разрешить самостоятельную регистрацию"
|
||||||
|
|
||||||
#: lms/overrides/user.py:199
|
#: lms/lms/user.py:34
|
||||||
msgid "Already Registered"
|
msgid "Already Registered"
|
||||||
msgstr "Уже зарегистрирован"
|
msgstr "Уже зарегистрирован"
|
||||||
|
|
||||||
@@ -378,7 +378,7 @@ msgstr ""
|
|||||||
msgid "Are you sure you want to cancel this evaluation? This action cannot be undone."
|
msgid "Are you sure you want to cancel this evaluation? This action cannot be undone."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/UserDropdown.vue:209
|
#: frontend/src/components/UserDropdown.vue:169
|
||||||
msgid "Are you sure you want to login to your Frappe Cloud dashboard?"
|
msgid "Are you sure you want to login to your Frappe Cloud dashboard?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -492,12 +492,12 @@ msgid "Auto Assign"
|
|||||||
msgstr "Автоназначение"
|
msgstr "Автоназначение"
|
||||||
|
|
||||||
#. Label of the auto_recording (Select) field in DocType 'LMS Live Class'
|
#. Label of the auto_recording (Select) field in DocType 'LMS Live Class'
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:71
|
#: frontend/src/components/Modals/LiveClassModal.vue:77
|
||||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||||
msgid "Auto Recording"
|
msgid "Auto Recording"
|
||||||
msgstr "Авто. запись"
|
msgstr "Авто. запись"
|
||||||
|
|
||||||
#: frontend/src/components/CourseCard.vue:50
|
#: frontend/src/components/CourseCard.vue:51
|
||||||
#: frontend/src/pages/CourseDetail.vue:20
|
#: frontend/src/pages/CourseDetail.vue:20
|
||||||
msgid "Average Rating"
|
msgid "Average Rating"
|
||||||
msgstr "Средняя оценка"
|
msgstr "Средняя оценка"
|
||||||
@@ -739,7 +739,7 @@ msgstr ""
|
|||||||
#. Label of the category (Link) field in DocType 'LMS Course'
|
#. Label of the category (Link) field in DocType 'LMS Course'
|
||||||
#: frontend/src/pages/BatchForm.vue:190 frontend/src/pages/Batches.vue:55
|
#: frontend/src/pages/BatchForm.vue:190 frontend/src/pages/Batches.vue:55
|
||||||
#: frontend/src/pages/CertifiedParticipants.vue:37
|
#: frontend/src/pages/CertifiedParticipants.vue:37
|
||||||
#: frontend/src/pages/CourseForm.vue:147 frontend/src/pages/Courses.vue:17
|
#: frontend/src/pages/CourseForm.vue:147 frontend/src/pages/Courses.vue:55
|
||||||
#: frontend/src/pages/JobDetail.vue:96 lms/lms/doctype/lms_batch/lms_batch.json
|
#: frontend/src/pages/JobDetail.vue:96 lms/lms/doctype/lms_batch/lms_batch.json
|
||||||
#: lms/lms/doctype/lms_category/lms_category.json
|
#: lms/lms/doctype/lms_category/lms_category.json
|
||||||
#: lms/lms/doctype/lms_course/lms_course.json
|
#: lms/lms/doctype/lms_course/lms_course.json
|
||||||
@@ -790,12 +790,12 @@ msgstr ""
|
|||||||
#. Enrollment'
|
#. Enrollment'
|
||||||
#. Label of a Card Break in the LMS Workspace
|
#. Label of a Card Break in the LMS Workspace
|
||||||
#. Label of a Link in the LMS Workspace
|
#. Label of a Link in the LMS Workspace
|
||||||
#: frontend/src/components/CourseCard.vue:110
|
#: frontend/src/components/CourseCard.vue:111
|
||||||
#: frontend/src/components/Modals/Event.vue:371
|
#: frontend/src/components/Modals/Event.vue:371
|
||||||
#: frontend/src/pages/BatchForm.vue:37 frontend/src/pages/Batches.vue:38
|
#: frontend/src/pages/BatchForm.vue:37 frontend/src/pages/Batches.vue:38
|
||||||
#: frontend/src/pages/CourseCertification.vue:10
|
#: frontend/src/pages/CourseCertification.vue:10
|
||||||
#: frontend/src/pages/CourseCertification.vue:114
|
#: frontend/src/pages/CourseCertification.vue:114
|
||||||
#: lms/fixtures/custom_field.json
|
#: frontend/src/pages/Courses.vue:38 lms/fixtures/custom_field.json
|
||||||
#: lms/lms/doctype/certification/certification.json
|
#: lms/lms/doctype/certification/certification.json
|
||||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
||||||
@@ -912,10 +912,6 @@ msgstr ""
|
|||||||
msgid "Clearly Defined Role"
|
msgid "Clearly Defined Role"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:75
|
|
||||||
msgid "Click here to login"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: frontend/src/components/LessonHelp.vue:30
|
#: frontend/src/components/LessonHelp.vue:30
|
||||||
msgid "Click on the add icon in the editor and select Quiz from the menu. It opens up a dialog, where you can either select a quiz from the list or create a new quiz. When you select the Create New option it redirects you to the quiz creation page."
|
msgid "Click on the add icon in the editor and select Quiz from the menu. It opens up a dialog, where you can either select a quiz from the list or create a new quiz. When you select the Create New option it redirects you to the quiz creation page."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1084,7 +1080,7 @@ msgstr "Завершить регистрацию"
|
|||||||
msgid "Complete Your Enrollment"
|
msgid "Complete Your Enrollment"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_payment/lms_payment.py:40
|
#: lms/lms/doctype/lms_payment/lms_payment.py:55
|
||||||
msgid "Complete Your Enrollment - Don't miss out!"
|
msgid "Complete Your Enrollment - Don't miss out!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -1125,7 +1121,11 @@ msgstr ""
|
|||||||
msgid "Condition must be valid python code."
|
msgid "Condition must be valid python code."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/UserDropdown.vue:214
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.js:7
|
||||||
|
msgid "Conduct Evaluation"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: frontend/src/components/UserDropdown.vue:174
|
||||||
msgid "Confirm"
|
msgid "Confirm"
|
||||||
msgstr "Подтвердить"
|
msgstr "Подтвердить"
|
||||||
|
|
||||||
@@ -1166,7 +1166,7 @@ msgstr ""
|
|||||||
msgid "Contract"
|
msgid "Contract"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/utils.py:437
|
#: lms/lms/utils.py:438
|
||||||
msgid "Cookie Policy"
|
msgid "Cookie Policy"
|
||||||
msgstr "Политика cookies"
|
msgstr "Политика cookies"
|
||||||
|
|
||||||
@@ -1382,7 +1382,7 @@ msgstr "Курс {0} уже добавлен в группу."
|
|||||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:79
|
#: frontend/src/components/Modals/BatchStudentProgress.vue:79
|
||||||
#: frontend/src/pages/BatchDetail.vue:21 frontend/src/pages/BatchDetail.vue:70
|
#: frontend/src/pages/BatchDetail.vue:21 frontend/src/pages/BatchDetail.vue:70
|
||||||
#: frontend/src/pages/CourseCertification.vue:106
|
#: frontend/src/pages/CourseCertification.vue:106
|
||||||
#: frontend/src/pages/Courses.vue:8 frontend/src/pages/Statistics.vue:21
|
#: frontend/src/pages/Courses.vue:314 frontend/src/pages/Statistics.vue:21
|
||||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||||
msgid "Courses"
|
msgid "Courses"
|
||||||
@@ -1393,10 +1393,6 @@ msgstr "Курсы"
|
|||||||
msgid "Courses Completed"
|
msgid "Courses Completed"
|
||||||
msgstr "Курсов завершено"
|
msgstr "Курсов завершено"
|
||||||
|
|
||||||
#: lms/lms/web_template/courses_mentored/courses_mentored.html:4
|
|
||||||
msgid "Courses Mentored"
|
|
||||||
msgstr "Курсы с наставником"
|
|
||||||
|
|
||||||
#: frontend/src/components/BatchCourses.vue:151
|
#: frontend/src/components/BatchCourses.vue:151
|
||||||
msgid "Courses deleted successfully"
|
msgid "Courses deleted successfully"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1412,14 +1408,10 @@ msgid "Create"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.js:7
|
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.js:7
|
||||||
msgid "Create LMS Certificate"
|
msgid "Create Certificate"
|
||||||
msgstr "Создать сертификат LMS"
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.js:8
|
#: lms/templates/onboarding_header.html:19
|
||||||
msgid "Create LMS Certificate Evaluation"
|
|
||||||
msgstr "Создать оценку сертификата LMS"
|
|
||||||
|
|
||||||
#: frontend/src/pages/Courses.vue:136 lms/templates/onboarding_header.html:19
|
|
||||||
msgid "Create a Course"
|
msgid "Create a Course"
|
||||||
msgstr "Создать курс"
|
msgstr "Создать курс"
|
||||||
|
|
||||||
@@ -1435,7 +1427,8 @@ msgstr ""
|
|||||||
msgid "Create a new question"
|
msgid "Create a new question"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/pages/Assignments.vue:163
|
#: frontend/src/pages/Assignments.vue:163 frontend/src/pages/Courses.vue:287
|
||||||
|
#: frontend/src/pages/Courses.vue:307
|
||||||
msgid "Created"
|
msgid "Created"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -1488,7 +1481,7 @@ msgstr "Панель"
|
|||||||
#. Label of the date (Date) field in DocType 'Scheduled Flow'
|
#. Label of the date (Date) field in DocType 'Scheduled Flow'
|
||||||
#: frontend/src/components/Modals/EvaluationModal.vue:26
|
#: frontend/src/components/Modals/EvaluationModal.vue:26
|
||||||
#: frontend/src/components/Modals/Event.vue:40
|
#: frontend/src/components/Modals/Event.vue:40
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:55
|
#: frontend/src/components/Modals/LiveClassModal.vue:61
|
||||||
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
|
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
|
||||||
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
|
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||||
@@ -1587,7 +1580,7 @@ msgstr ""
|
|||||||
#. Label of the description (Small Text) field in DocType 'LMS Exercise'
|
#. 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 (Text) field in DocType 'LMS Live Class'
|
||||||
#. Label of the description (Small Text) field in DocType 'Work Experience'
|
#. Label of the description (Small Text) field in DocType 'Work Experience'
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:78
|
#: frontend/src/components/Modals/LiveClassModal.vue:84
|
||||||
#: frontend/src/pages/BatchForm.vue:224 frontend/src/pages/JobCreation.vue:50
|
#: frontend/src/pages/BatchForm.vue:224 frontend/src/pages/JobCreation.vue:50
|
||||||
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
||||||
#: lms/lms/doctype/certification/certification.json
|
#: lms/lms/doctype/certification/certification.json
|
||||||
@@ -1614,10 +1607,6 @@ msgstr ""
|
|||||||
msgid "Details"
|
msgid "Details"
|
||||||
msgstr "Детали"
|
msgstr "Детали"
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:30
|
|
||||||
msgid "Didn't receive the code?"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: frontend/src/pages/CourseForm.vue:194
|
#: frontend/src/pages/CourseForm.vue:194
|
||||||
msgid "Disable Self Enrollment"
|
msgid "Disable Self Enrollment"
|
||||||
msgstr "Отключить самостоятельную регистрацию"
|
msgstr "Отключить самостоятельную регистрацию"
|
||||||
@@ -1668,7 +1657,7 @@ msgstr "Для этого вопроса найдены дубликаты ва
|
|||||||
#. Label of the duration (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 (Data) field in DocType 'LMS Batch Timetable'
|
||||||
#. Label of the duration (Int) field in DocType 'LMS Live Class'
|
#. Label of the duration (Int) field in DocType 'LMS Live Class'
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:62
|
#: frontend/src/components/Modals/LiveClassModal.vue:68
|
||||||
#: lms/lms/doctype/cohort/cohort.json
|
#: lms/lms/doctype/cohort/cohort.json
|
||||||
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
|
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
|
||||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||||
@@ -1680,7 +1669,7 @@ msgstr ""
|
|||||||
msgid "Duration (in minutes)"
|
msgid "Duration (in minutes)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:58
|
#: frontend/src/components/Modals/LiveClassModal.vue:64
|
||||||
msgid "Duration of the live class in minutes"
|
msgid "Duration of the live class in minutes"
|
||||||
msgstr "Продолжительность живого занятия в минутах"
|
msgstr "Продолжительность живого занятия в минутах"
|
||||||
|
|
||||||
@@ -1826,11 +1815,12 @@ msgstr "Время окончания"
|
|||||||
msgid "Enroll Now"
|
msgid "Enroll Now"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/pages/Batches.vue:292
|
#: frontend/src/pages/Batches.vue:292 frontend/src/pages/Courses.vue:285
|
||||||
|
#: frontend/src/pages/Courses.vue:305
|
||||||
msgid "Enrolled"
|
msgid "Enrolled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/CourseCard.vue:41
|
#: frontend/src/components/CourseCard.vue:42
|
||||||
#: frontend/src/components/CourseCardOverlay.vue:106
|
#: frontend/src/components/CourseCardOverlay.vue:106
|
||||||
#: frontend/src/pages/CourseDetail.vue:33
|
#: frontend/src/pages/CourseDetail.vue:33
|
||||||
msgid "Enrolled Students"
|
msgid "Enrolled Students"
|
||||||
@@ -1849,11 +1839,11 @@ msgstr ""
|
|||||||
msgid "Enrollment Count"
|
msgid "Enrollment Count"
|
||||||
msgstr "Количество регистраций"
|
msgstr "Количество регистраций"
|
||||||
|
|
||||||
#: lms/lms/utils.py:1769
|
#: lms/lms/utils.py:1898
|
||||||
msgid "Enrollment Failed"
|
msgid "Enrollment Failed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. Label of the enrollments (Data) field in DocType 'LMS Course'
|
#. Label of the enrollments (Int) field in DocType 'LMS Course'
|
||||||
#. Label of a chart in the LMS Workspace
|
#. Label of a chart in the LMS Workspace
|
||||||
#. Label of a shortcut in the LMS Workspace
|
#. Label of a shortcut in the LMS Workspace
|
||||||
#: frontend/src/pages/Statistics.vue:51
|
#: frontend/src/pages/Statistics.vue:51
|
||||||
@@ -2057,14 +2047,6 @@ msgstr "Узнать больше"
|
|||||||
msgid "Fail"
|
msgid "Fail"
|
||||||
msgstr "Ошибка"
|
msgstr "Ошибка"
|
||||||
|
|
||||||
#: frontend/src/components/UserDropdown.vue:243
|
|
||||||
msgid "Failed to login to Frappe Cloud"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:91
|
|
||||||
msgid "Failed to resend code"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. Label of the featured (Check) field in DocType 'LMS Course'
|
#. Label of the featured (Check) field in DocType 'LMS Course'
|
||||||
#: frontend/src/components/CourseCard.vue:16
|
#: frontend/src/components/CourseCard.vue:16
|
||||||
#: frontend/src/pages/CourseForm.vue:189
|
#: frontend/src/pages/CourseForm.vue:189
|
||||||
@@ -2125,10 +2107,6 @@ msgstr ""
|
|||||||
msgid "Formal Wear"
|
msgid "Formal Wear"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:70
|
|
||||||
msgid "Frappe Cloud Login Successful"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lms/lms/widgets/CourseCard.html:114
|
#: lms/lms/widgets/CourseCard.html:114
|
||||||
msgid "Free"
|
msgid "Free"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -2212,7 +2190,7 @@ msgstr "Основные"
|
|||||||
msgid "Generate Certificates"
|
msgid "Generate Certificates"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.js:18
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.js:15
|
||||||
msgid "Generate Google Meet Link"
|
msgid "Generate Google Meet Link"
|
||||||
msgstr "Сгенерировать ссылку Google Meet"
|
msgstr "Сгенерировать ссылку Google Meet"
|
||||||
|
|
||||||
@@ -2382,10 +2360,6 @@ msgstr ""
|
|||||||
msgid "If you have any questions or require assistance, feel free to contact us."
|
msgid "If you have any questions or require assistance, feel free to contact us."
|
||||||
msgstr "Если у вас возникнут какие-либо вопросы или вам понадобится помощь, свяжитесь с нами."
|
msgstr "Если у вас возникнут какие-либо вопросы или вам понадобится помощь, свяжитесь с нами."
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:71
|
|
||||||
msgid "If you haven't been redirected,"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. Description of the 'Amount (USD)' (Currency) field in DocType 'LMS Batch'
|
#. Description of the 'Amount (USD)' (Currency) field in DocType 'LMS Batch'
|
||||||
#. Description of the 'Amount (USD)' (Currency) field in DocType 'LMS Course'
|
#. Description of the 'Amount (USD)' (Currency) field in DocType 'LMS Course'
|
||||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||||
@@ -2969,8 +2943,8 @@ msgstr "Название урока"
|
|||||||
|
|
||||||
#. Label of the lessons (Table) field in DocType 'Course Chapter'
|
#. Label of the lessons (Table) field in DocType 'Course Chapter'
|
||||||
#. Group in Course Chapter's connections
|
#. Group in Course Chapter's connections
|
||||||
#. Label of the lessons (Data) field in DocType 'LMS Course'
|
#. Label of the lessons (Int) field in DocType 'LMS Course'
|
||||||
#: frontend/src/components/CourseCard.vue:32
|
#: frontend/src/components/CourseCard.vue:33
|
||||||
#: frontend/src/components/CourseCardOverlay.vue:99
|
#: frontend/src/components/CourseCardOverlay.vue:99
|
||||||
#: lms/lms/doctype/course_chapter/course_chapter.json
|
#: lms/lms/doctype/course_chapter/course_chapter.json
|
||||||
#: lms/lms/doctype/lms_course/lms_course.json
|
#: lms/lms/doctype/lms_course/lms_course.json
|
||||||
@@ -3021,7 +2995,7 @@ msgid "List of quizzes"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. Option for the 'Status' (Select) field in DocType 'Cohort'
|
#. Option for the 'Status' (Select) field in DocType 'Cohort'
|
||||||
#: lms/lms/doctype/cohort/cohort.json
|
#: frontend/src/pages/Courses.vue:295 lms/lms/doctype/cohort/cohort.json
|
||||||
msgid "Live"
|
msgid "Live"
|
||||||
msgstr "Live"
|
msgstr "Live"
|
||||||
|
|
||||||
@@ -3039,6 +3013,7 @@ msgstr ""
|
|||||||
#: frontend/src/components/Members.vue:108
|
#: frontend/src/components/Members.vue:108
|
||||||
#: frontend/src/pages/Assignments.vue:71 frontend/src/pages/Batches.vue:94
|
#: frontend/src/pages/Assignments.vue:71 frontend/src/pages/Batches.vue:94
|
||||||
#: frontend/src/pages/CertifiedParticipants.vue:79
|
#: frontend/src/pages/CertifiedParticipants.vue:79
|
||||||
|
#: frontend/src/pages/Courses.vue:94
|
||||||
#: frontend/src/pages/QuizSubmissionList.vue:39
|
#: frontend/src/pages/QuizSubmissionList.vue:39
|
||||||
#: frontend/src/pages/Quizzes.vue:51
|
#: frontend/src/pages/Quizzes.vue:51
|
||||||
msgid "Load More"
|
msgid "Load More"
|
||||||
@@ -3071,16 +3046,7 @@ msgstr ""
|
|||||||
msgid "Login"
|
msgid "Login"
|
||||||
msgstr "Логин"
|
msgstr "Логин"
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:79
|
#: frontend/src/components/UserDropdown.vue:168
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:83
|
|
||||||
msgid "Login failed"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:6
|
|
||||||
msgid "Login to Frappe Cloud"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: frontend/src/components/UserDropdown.vue:208
|
|
||||||
msgid "Login to Frappe Cloud?"
|
msgid "Login to Frappe Cloud?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -3396,11 +3362,11 @@ msgstr "Модератор"
|
|||||||
msgid "Modified By"
|
msgid "Modified By"
|
||||||
msgstr "Изменено"
|
msgstr "Изменено"
|
||||||
|
|
||||||
#: lms/lms/api.py:208
|
#: lms/lms/api.py:214
|
||||||
msgid "Module Name is incorrect or does not exist."
|
msgid "Module Name is incorrect or does not exist."
|
||||||
msgstr "Имя модуля неверно или не существует."
|
msgstr "Имя модуля неверно или не существует."
|
||||||
|
|
||||||
#: lms/lms/api.py:204
|
#: lms/lms/api.py:210
|
||||||
msgid "Module is incorrect."
|
msgid "Module is incorrect."
|
||||||
msgstr "Модуль неверный."
|
msgstr "Модуль неверный."
|
||||||
|
|
||||||
@@ -3430,7 +3396,8 @@ msgstr "Мой календарь"
|
|||||||
|
|
||||||
#. Option for the 'Event' (Select) field in DocType 'LMS Badge'
|
#. Option for the 'Event' (Select) field in DocType 'LMS Badge'
|
||||||
#: frontend/src/pages/Assignments.vue:18 frontend/src/pages/Batches.vue:17
|
#: frontend/src/pages/Assignments.vue:18 frontend/src/pages/Batches.vue:17
|
||||||
#: frontend/src/pages/Courses.vue:48 frontend/src/pages/Programs.vue:14
|
#: frontend/src/pages/Courses.vue:17 frontend/src/pages/Courses.vue:281
|
||||||
|
#: frontend/src/pages/Courses.vue:298 frontend/src/pages/Programs.vue:14
|
||||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||||
msgid "New"
|
msgid "New"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -3484,11 +3451,11 @@ msgstr ""
|
|||||||
msgid "New Sign Up"
|
msgid "New Sign Up"
|
||||||
msgstr "Новая регистрация"
|
msgstr "Новая регистрация"
|
||||||
|
|
||||||
#: lms/lms/utils.py:604
|
#: lms/lms/utils.py:605
|
||||||
msgid "New comment in batch {0}"
|
msgid "New comment in batch {0}"
|
||||||
msgstr "Новый комментарий в группе {0}"
|
msgstr "Новый комментарий в группе {0}"
|
||||||
|
|
||||||
#: lms/lms/utils.py:597
|
#: lms/lms/utils.py:598
|
||||||
msgid "New reply on the topic {0} in course {1}"
|
msgid "New reply on the topic {0} in course {1}"
|
||||||
msgstr "Новый ответ по теме {0} в курсе {1}"
|
msgstr "Новый ответ по теме {0} в курсе {1}"
|
||||||
|
|
||||||
@@ -3546,7 +3513,7 @@ msgstr "Нет сертификатов"
|
|||||||
msgid "No courses created"
|
msgid "No courses created"
|
||||||
msgstr "Курсы не созданы"
|
msgstr "Курсы не созданы"
|
||||||
|
|
||||||
#: frontend/src/pages/Courses.vue:151
|
#: frontend/src/pages/Courses.vue:79
|
||||||
msgid "No courses found"
|
msgid "No courses found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -3598,15 +3565,11 @@ msgstr ""
|
|||||||
msgid "No {0}"
|
msgid "No {0}"
|
||||||
msgstr "Нет {0}"
|
msgstr "Нет {0}"
|
||||||
|
|
||||||
#: frontend/src/pages/Courses.vue:111
|
|
||||||
msgid "No {0} courses"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lms/templates/quiz/quiz.html:147
|
#: lms/templates/quiz/quiz.html:147
|
||||||
msgid "No."
|
msgid "No."
|
||||||
msgstr "Нет."
|
msgstr "Нет."
|
||||||
|
|
||||||
#: lms/overrides/user.py:194
|
#: lms/lms/user.py:29
|
||||||
msgid "Not Allowed"
|
msgid "Not Allowed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -3695,7 +3658,7 @@ msgstr ""
|
|||||||
msgid "Only files of type {0} will be accepted."
|
msgid "Only files of type {0} will be accepted."
|
||||||
msgstr "Принимаются только файлы типа {0} ."
|
msgstr "Принимаются только файлы типа {0} ."
|
||||||
|
|
||||||
#: frontend/src/pages/CourseForm.vue:506 frontend/src/utils/index.js:533
|
#: frontend/src/pages/CourseForm.vue:506 frontend/src/utils/index.js:552
|
||||||
msgid "Only image file is allowed."
|
msgid "Only image file is allowed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -3726,10 +3689,6 @@ msgstr "Открытый курс"
|
|||||||
msgid "Open Ended"
|
msgid "Open Ended"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/widgets/MemberCard.html:16
|
|
||||||
msgid "Open Network"
|
|
||||||
msgstr "Открытая сеть"
|
|
||||||
|
|
||||||
#. Label of the option (Data) field in DocType 'LMS Option'
|
#. Label of the option (Data) field in DocType 'LMS Option'
|
||||||
#: frontend/src/components/Modals/Question.vue:64
|
#: frontend/src/components/Modals/Question.vue:64
|
||||||
#: lms/lms/doctype/lms_option/lms_option.json
|
#: lms/lms/doctype/lms_option/lms_option.json
|
||||||
@@ -3981,11 +3940,11 @@ msgstr ""
|
|||||||
msgid "Please add <a href='{0}'>{1}</a> for <a href='{2}'>{3}</a> to send calendar invites for evaluations."
|
msgid "Please add <a href='{0}'>{1}</a> for <a href='{2}'>{3}</a> to send calendar invites for evaluations."
|
||||||
msgstr "Пожалуйста, добавьте <a href='{0}'>{1}</a> для <a href='{2}'>{3}</a> , чтобы отправить приглашения в календарь для оценки."
|
msgstr "Пожалуйста, добавьте <a href='{0}'>{1}</a> для <a href='{2}'>{3}</a> , чтобы отправить приглашения в календарь для оценки."
|
||||||
|
|
||||||
#: lms/overrides/user.py:240
|
#: lms/lms/user.py:75
|
||||||
msgid "Please ask your administrator to verify your sign-up"
|
msgid "Please ask your administrator to verify your sign-up"
|
||||||
msgstr "Попросите администратора подтвердить вашу регистрацию."
|
msgstr "Попросите администратора подтвердить вашу регистрацию."
|
||||||
|
|
||||||
#: lms/overrides/user.py:238
|
#: lms/lms/user.py:73
|
||||||
msgid "Please check your email for verification"
|
msgid "Please check your email for verification"
|
||||||
msgstr "Пожалуйста, проверьте свой email для подтверждения"
|
msgstr "Пожалуйста, проверьте свой email для подтверждения"
|
||||||
|
|
||||||
@@ -3993,7 +3952,7 @@ msgstr "Пожалуйста, проверьте свой email для подт
|
|||||||
msgid "Please click on the following button to set your new password"
|
msgid "Please click on the following button to set your new password"
|
||||||
msgstr "Нажмите на следующую кнопку, чтобы установить новый пароль."
|
msgstr "Нажмите на следующую кнопку, чтобы установить новый пароль."
|
||||||
|
|
||||||
#: lms/lms/utils.py:1901 lms/lms/utils.py:1905
|
#: lms/lms/utils.py:2030 lms/lms/utils.py:2034
|
||||||
msgid "Please complete the previous courses in the program to enroll in this course."
|
msgid "Please complete the previous courses in the program to enroll in this course."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -4009,7 +3968,7 @@ msgstr ""
|
|||||||
msgid "Please ensure that you complete all the questions in {0} minutes."
|
msgid "Please ensure that you complete all the questions in {0} minutes."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:164
|
#: frontend/src/components/Modals/LiveClassModal.vue:170
|
||||||
msgid "Please enter a title."
|
msgid "Please enter a title."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -4018,7 +3977,7 @@ msgstr ""
|
|||||||
msgid "Please enter a valid URL."
|
msgid "Please enter a valid URL."
|
||||||
msgstr "Введите действительный URL-адрес."
|
msgstr "Введите действительный URL-адрес."
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:176
|
#: frontend/src/components/Modals/LiveClassModal.vue:182
|
||||||
msgid "Please enter a valid time in the format HH:mm."
|
msgid "Please enter a valid time in the format HH:mm."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -4054,7 +4013,7 @@ msgstr "Пожалуйста, войдите в систему, чтобы по
|
|||||||
msgid "Please login to access this page."
|
msgid "Please login to access this page."
|
||||||
msgstr "Пожалуйста, войдите в систему, чтобы получить доступ к этой странице."
|
msgstr "Пожалуйста, войдите в систему, чтобы получить доступ к этой странице."
|
||||||
|
|
||||||
#: lms/lms/api.py:200
|
#: lms/lms/api.py:206
|
||||||
msgid "Please login to continue with payment."
|
msgid "Please login to continue with payment."
|
||||||
msgstr "Пожалуйста, войдите в систему, чтобы продолжить оплату."
|
msgstr "Пожалуйста, войдите в систему, чтобы продолжить оплату."
|
||||||
|
|
||||||
@@ -4067,23 +4026,23 @@ msgstr "Пожалуйста, хорошо подготовьтесь и при
|
|||||||
msgid "Please schedule an evaluation to get certified."
|
msgid "Please schedule an evaluation to get certified."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:167
|
#: frontend/src/components/Modals/LiveClassModal.vue:173
|
||||||
msgid "Please select a date."
|
msgid "Please select a date."
|
||||||
msgstr "Пожалуйста, выберите дату."
|
msgstr "Пожалуйста, выберите дату."
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:191
|
#: frontend/src/components/Modals/LiveClassModal.vue:197
|
||||||
msgid "Please select a duration."
|
msgid "Please select a duration."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:188
|
#: frontend/src/components/Modals/LiveClassModal.vue:194
|
||||||
msgid "Please select a future date and time."
|
msgid "Please select a future date and time."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:170
|
#: frontend/src/components/Modals/LiveClassModal.vue:176
|
||||||
msgid "Please select a time."
|
msgid "Please select a time."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:173
|
#: frontend/src/components/Modals/LiveClassModal.vue:179
|
||||||
msgid "Please select a timezone."
|
msgid "Please select a timezone."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -4091,13 +4050,6 @@ msgstr ""
|
|||||||
msgid "Please take appropriate action at {0}"
|
msgid "Please take appropriate action at {0}"
|
||||||
msgstr "Пожалуйста, примите соответствующие меры в {0}"
|
msgstr "Пожалуйста, примите соответствующие меры в {0}"
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:79
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:83
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:91
|
|
||||||
#: frontend/src/components/UserDropdown.vue:244
|
|
||||||
msgid "Please try again"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: frontend/src/components/Modals/ChapterModal.vue:177
|
#: frontend/src/components/Modals/ChapterModal.vue:177
|
||||||
msgid "Please upload a SCORM package"
|
msgid "Please upload a SCORM package"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -4210,7 +4162,7 @@ msgstr ""
|
|||||||
msgid "Primary Subgroup"
|
msgid "Primary Subgroup"
|
||||||
msgstr "Первичная подгруппа"
|
msgstr "Первичная подгруппа"
|
||||||
|
|
||||||
#: lms/lms/utils.py:436
|
#: lms/lms/utils.py:437
|
||||||
msgid "Privacy Policy"
|
msgid "Privacy Policy"
|
||||||
msgstr "Политика приватности"
|
msgstr "Политика приватности"
|
||||||
|
|
||||||
@@ -4478,7 +4430,7 @@ msgstr ""
|
|||||||
msgid "Registered"
|
msgid "Registered"
|
||||||
msgstr "Зарегистрирован"
|
msgstr "Зарегистрирован"
|
||||||
|
|
||||||
#: lms/overrides/user.py:201
|
#: lms/lms/user.py:36
|
||||||
msgid "Registered but disabled"
|
msgid "Registered but disabled"
|
||||||
msgstr "Зарегистрирован, но отключен"
|
msgstr "Зарегистрирован, но отключен"
|
||||||
|
|
||||||
@@ -4519,10 +4471,6 @@ msgstr "Запрос на наставничество"
|
|||||||
msgid "Required Role"
|
msgid "Required Role"
|
||||||
msgstr "Требуемая Роль"
|
msgstr "Требуемая Роль"
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:31
|
|
||||||
msgid "Resend"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. Option for the 'Membership' (Select) field in DocType 'LMS Batch Old'
|
#. Option for the 'Membership' (Select) field in DocType 'LMS Batch Old'
|
||||||
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
|
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
|
||||||
msgid "Restricted"
|
msgid "Restricted"
|
||||||
@@ -4677,7 +4625,7 @@ msgstr ""
|
|||||||
msgid "Search by Name"
|
msgid "Search by Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/pages/Batches.vue:45
|
#: frontend/src/pages/Batches.vue:45 frontend/src/pages/Courses.vue:45
|
||||||
msgid "Search by Title"
|
msgid "Search by Title"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -4819,7 +4767,7 @@ msgstr "Боковая панель"
|
|||||||
msgid "Sidebar Items"
|
msgid "Sidebar Items"
|
||||||
msgstr "Элементы боковой панели"
|
msgstr "Элементы боковой панели"
|
||||||
|
|
||||||
#: lms/overrides/user.py:194
|
#: lms/lms/user.py:29
|
||||||
msgid "Sign Up is disabled"
|
msgid "Sign Up is disabled"
|
||||||
msgstr "Регистрация отключена"
|
msgstr "Регистрация отключена"
|
||||||
|
|
||||||
@@ -4863,10 +4811,6 @@ msgstr "Название навыка"
|
|||||||
msgid "Skills"
|
msgid "Skills"
|
||||||
msgstr "Навыки"
|
msgstr "Навыки"
|
||||||
|
|
||||||
#: lms/overrides/user.py:42
|
|
||||||
msgid "Skills must be unique"
|
|
||||||
msgstr "Навыки должны быть уникальными"
|
|
||||||
|
|
||||||
#: lms/templates/onboarding_header.html:6
|
#: lms/templates/onboarding_header.html:6
|
||||||
msgid "Skip"
|
msgid "Skip"
|
||||||
msgstr "Пропустить"
|
msgstr "Пропустить"
|
||||||
@@ -5143,7 +5087,7 @@ msgstr "Резюме"
|
|||||||
msgid "Sunday"
|
msgid "Sunday"
|
||||||
msgstr "Воскресенье"
|
msgstr "Воскресенье"
|
||||||
|
|
||||||
#: lms/lms/api.py:1012
|
#: lms/lms/api.py:1018
|
||||||
msgid "Suspicious pattern found in {0}: {1}"
|
msgid "Suspicious pattern found in {0}: {1}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -5224,11 +5168,11 @@ msgstr ""
|
|||||||
msgid "Template"
|
msgid "Template"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/overrides/user.py:205
|
#: lms/lms/user.py:40
|
||||||
msgid "Temporarily Disabled"
|
msgid "Temporarily Disabled"
|
||||||
msgstr "Временно отключен"
|
msgstr "Временно отключен"
|
||||||
|
|
||||||
#: lms/lms/utils.py:435
|
#: lms/lms/utils.py:436
|
||||||
msgid "Terms of Use"
|
msgid "Terms of Use"
|
||||||
msgstr "Условия использования"
|
msgstr "Условия использования"
|
||||||
|
|
||||||
@@ -5264,7 +5208,7 @@ msgstr ""
|
|||||||
msgid "Thanks and Regards"
|
msgid "Thanks and Regards"
|
||||||
msgstr "Спасибо и с наилучшими пожеланиями"
|
msgstr "Спасибо и с наилучшими пожеланиями"
|
||||||
|
|
||||||
#: lms/lms/utils.py:1801
|
#: lms/lms/utils.py:1930
|
||||||
msgid "The batch is full. Please contact the Administrator."
|
msgid "The batch is full. Please contact the Administrator."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -5300,8 +5244,8 @@ msgstr ""
|
|||||||
msgid "There are no chapters in this course. Create and manage chapters from here."
|
msgid "There are no chapters in this course. Create and manage chapters from here."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/pages/Courses.vue:155
|
#: frontend/src/pages/Courses.vue:83
|
||||||
msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
|
msgid "There are no courses matching the criteria. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/pages/CertifiedParticipants.vue:92
|
#: frontend/src/pages/CertifiedParticipants.vue:92
|
||||||
@@ -5359,7 +5303,7 @@ msgstr ""
|
|||||||
msgid "This course has:"
|
msgid "This course has:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/utils.py:1644
|
#: lms/lms/utils.py:1773
|
||||||
msgid "This course is free."
|
msgid "This course is free."
|
||||||
msgstr "Этот курс бесплатный."
|
msgstr "Этот курс бесплатный."
|
||||||
|
|
||||||
@@ -5427,7 +5371,7 @@ msgstr "Шаблон расписания"
|
|||||||
#. Label of the timezone (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 Certificate Request'
|
#. Label of the timezone (Data) field in DocType 'LMS Certificate Request'
|
||||||
#. Label of the timezone (Data) field in DocType 'LMS Live Class'
|
#. Label of the timezone (Data) field in DocType 'LMS Live Class'
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:46
|
#: frontend/src/components/Modals/LiveClassModal.vue:45
|
||||||
#: frontend/src/pages/BatchForm.vue:120
|
#: frontend/src/pages/BatchForm.vue:120
|
||||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||||
@@ -5501,7 +5445,7 @@ msgstr ""
|
|||||||
msgid "To Date"
|
msgid "To Date"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/utils.py:1655
|
#: lms/lms/utils.py:1784
|
||||||
msgid "To join this batch, please contact the Administrator."
|
msgid "To join this batch, please contact the Administrator."
|
||||||
msgstr "Чтобы присоединиться к этой группе, свяжитесь с администратором."
|
msgstr "Чтобы присоединиться к этой группе, свяжитесь с администратором."
|
||||||
|
|
||||||
@@ -5509,7 +5453,7 @@ msgstr "Чтобы присоединиться к этой группе, свя
|
|||||||
msgid "To upload Image, Video, Audio or PDF from your system, click on the add icon and select upload from the menu. Then choose the file you want to add to the lesson and it gets added to your lesson."
|
msgid "To upload Image, Video, Audio or PDF from your system, click on the add icon and select upload from the menu. Then choose the file you want to add to the lesson and it gets added to your lesson."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/overrides/user.py:206
|
#: lms/lms/user.py:41
|
||||||
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
|
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
|
||||||
msgstr "Слишком много пользователей зарегистрировались недавно, поэтому регистрация отключена. Пожалуйста, попробуйте через час"
|
msgstr "Слишком много пользователей зарегистрировались недавно, поэтому регистрация отключена. Пожалуйста, попробуйте через час"
|
||||||
|
|
||||||
@@ -5626,7 +5570,8 @@ msgstr ""
|
|||||||
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request'
|
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request'
|
||||||
#. Label of the upcoming (Check) field in DocType 'LMS Course'
|
#. Label of the upcoming (Check) field in DocType 'LMS Course'
|
||||||
#: frontend/src/pages/Batches.vue:276 frontend/src/pages/Batches.vue:294
|
#: frontend/src/pages/Batches.vue:276 frontend/src/pages/Batches.vue:294
|
||||||
#: frontend/src/pages/CourseForm.vue:184 lms/lms/doctype/cohort/cohort.json
|
#: frontend/src/pages/CourseForm.vue:184 frontend/src/pages/Courses.vue:282
|
||||||
|
#: frontend/src/pages/Courses.vue:301 lms/lms/doctype/cohort/cohort.json
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||||
#: lms/lms/doctype/lms_course/lms_course.json
|
#: lms/lms/doctype/lms_course/lms_course.json
|
||||||
msgid "Upcoming"
|
msgid "Upcoming"
|
||||||
@@ -5727,14 +5672,6 @@ msgstr ""
|
|||||||
msgid "Value Change"
|
msgid "Value Change"
|
||||||
msgstr "Значения изменено"
|
msgstr "Значения изменено"
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:26
|
|
||||||
msgid "Verification Code"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:9
|
|
||||||
msgid "Verify"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. Label of the video_link (Data) field in DocType 'LMS Course'
|
#. Label of the video_link (Data) field in DocType 'LMS Course'
|
||||||
#: lms/lms/doctype/lms_course/lms_course.json
|
#: lms/lms/doctype/lms_course/lms_course.json
|
||||||
msgid "Video Embed Link"
|
msgid "Video Embed Link"
|
||||||
@@ -5776,10 +5713,6 @@ msgstr "Мы рады сообщить вам, что вы зачислены в
|
|||||||
msgid "We have a limited number of seats, and they won't be available for long!"
|
msgid "We have a limited number of seats, and they won't be available for long!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:21
|
|
||||||
msgid "We have sent the verificaton code to your email id "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lms/templates/emails/payment_reminder.html:4
|
#: lms/templates/emails/payment_reminder.html:4
|
||||||
msgid "We noticed that you started enrolling in the"
|
msgid "We noticed that you started enrolling in the"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -5855,7 +5788,7 @@ msgstr "Написать отзыв"
|
|||||||
msgid "Write your answer here"
|
msgid "Write your answer here"
|
||||||
msgstr "Напишите свой ответ здесь"
|
msgstr "Напишите свой ответ здесь"
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:95
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:96
|
||||||
msgid "You already have an evaluation on {0} at {1} for the course {2}."
|
msgid "You already have an evaluation on {0} at {1} for the course {2}."
|
||||||
msgstr "У вас уже есть оценка {0} в {1} для курса {2}."
|
msgstr "У вас уже есть оценка {0} в {1} для курса {2}."
|
||||||
|
|
||||||
@@ -5863,11 +5796,11 @@ msgstr "У вас уже есть оценка {0} в {1} для курса {2}.
|
|||||||
msgid "You are already certified for this course. Click on the card below to open your certificate."
|
msgid "You are already certified for this course. Click on the card below to open your certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/api.py:224
|
#: lms/lms/api.py:230
|
||||||
msgid "You are already enrolled for this batch."
|
msgid "You are already enrolled for this batch."
|
||||||
msgstr "Вы уже зачислены в эту группу."
|
msgstr "Вы уже зачислены в эту группу."
|
||||||
|
|
||||||
#: lms/lms/api.py:216
|
#: lms/lms/api.py:222
|
||||||
msgid "You are already enrolled for this course."
|
msgid "You are already enrolled for this course."
|
||||||
msgstr "Вы уже зачислены на этот курс."
|
msgstr "Вы уже зачислены на этот курс."
|
||||||
|
|
||||||
@@ -5887,10 +5820,6 @@ msgstr ""
|
|||||||
msgid "You are not enrolled in this course. Please enroll to access this lesson."
|
msgid "You are not enrolled in this course. Please enroll to access this lesson."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/pages/Courses.vue:139
|
|
||||||
msgid "You can add chapters and lessons to it."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lms/templates/emails/lms_course_interest.html:13
|
#: lms/templates/emails/lms_course_interest.html:13
|
||||||
#: lms/templates/emails/lms_invite_request_approved.html:11
|
#: lms/templates/emails/lms_invite_request_approved.html:11
|
||||||
msgid "You can also copy-paste following link in your browser"
|
msgid "You can also copy-paste following link in your browser"
|
||||||
@@ -5908,11 +5837,11 @@ msgstr "Вы можете попробовать пройти этот тест
|
|||||||
msgid "You can find their resume attached to this email."
|
msgid "You can find their resume attached to this email."
|
||||||
msgstr "Их резюме вы найдете в приложении к этому электронному письму."
|
msgstr "Их резюме вы найдете в приложении к этому электронному письму."
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:115
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:116
|
||||||
msgid "You cannot schedule evaluations after {0}."
|
msgid "You cannot schedule evaluations after {0}."
|
||||||
msgstr "Вы не можете запланировать оценки после {0}."
|
msgstr "Вы не можете запланировать оценки после {0}."
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:104
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:105
|
||||||
msgid "You cannot schedule evaluations for past slots."
|
msgid "You cannot schedule evaluations for past slots."
|
||||||
msgstr "Вы не можете планировать оценки для прошедших слотов."
|
msgstr "Вы не можете планировать оценки для прошедших слотов."
|
||||||
|
|
||||||
@@ -5945,7 +5874,7 @@ msgstr "Вы уже подали заявку на эту вакансию."
|
|||||||
msgid "You have already exceeded the maximum number of attempts allowed for this quiz."
|
msgid "You have already exceeded the maximum number of attempts allowed for this quiz."
|
||||||
msgstr "Вы уже превысили максимально допустимое количество попыток для этого теста."
|
msgstr "Вы уже превысили максимально допустимое количество попыток для этого теста."
|
||||||
|
|
||||||
#: lms/lms/api.py:237
|
#: lms/lms/api.py:243
|
||||||
msgid "You have already purchased the certificate for this course."
|
msgid "You have already purchased the certificate for this course."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -5985,10 +5914,6 @@ msgstr "Вы выбрали получение уведомлений об эт
|
|||||||
msgid "You need to login first to enroll for this course"
|
msgid "You need to login first to enroll for this course"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:71
|
|
||||||
msgid "You will be redirected to Frappe Cloud soon."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: frontend/src/components/Quiz.vue:27 lms/templates/quiz/quiz.html:11
|
#: frontend/src/components/Quiz.vue:27 lms/templates/quiz/quiz.html:11
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "You will have to get {0}% correct answers in order to pass the quiz."
|
msgid "You will have to get {0}% correct answers in order to pass the quiz."
|
||||||
@@ -6026,7 +5951,7 @@ msgstr "Ваш календарь настроен."
|
|||||||
msgid "Your evaluation for the course {0} has been scheduled on {1} at {2} {3}."
|
msgid "Your evaluation for the course {0} has been scheduled on {1} at {2} {3}."
|
||||||
msgstr "Ваша оценка курса {0} запланирована на {1} в {2} {3}."
|
msgstr "Ваша оценка курса {0} запланирована на {1} в {2} {3}."
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:125
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:126
|
||||||
msgid "Your evaluation slot has been booked"
|
msgid "Your evaluation slot has been booked"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -6127,7 +6052,7 @@ msgstr ""
|
|||||||
msgid "you can"
|
msgid "you can"
|
||||||
msgstr "вы можете"
|
msgstr "вы можете"
|
||||||
|
|
||||||
#: lms/lms/api.py:802 lms/lms/api.py:810
|
#: lms/lms/api.py:808 lms/lms/api.py:816
|
||||||
msgid "{0} Settings not found"
|
msgid "{0} Settings not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -6167,7 +6092,7 @@ msgstr "{0} уже сертифицирован для курса {1}"
|
|||||||
msgid "{0} is your evaluator"
|
msgid "{0} is your evaluator"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/utils.py:681
|
#: lms/lms/utils.py:682
|
||||||
msgid "{0} mentioned you in a comment"
|
msgid "{0} mentioned you in a comment"
|
||||||
msgstr "{0} упомянул вас в комментарии"
|
msgstr "{0} упомянул вас в комментарии"
|
||||||
|
|
||||||
@@ -6175,11 +6100,11 @@ msgstr "{0} упомянул вас в комментарии"
|
|||||||
msgid "{0} mentioned you in a comment in your batch."
|
msgid "{0} mentioned you in a comment in your batch."
|
||||||
msgstr "{0} упомянул вас в комментарии в вашей группе."
|
msgstr "{0} упомянул вас в комментарии в вашей группе."
|
||||||
|
|
||||||
#: lms/lms/utils.py:634 lms/lms/utils.py:640
|
#: lms/lms/utils.py:635 lms/lms/utils.py:641
|
||||||
msgid "{0} mentioned you in a comment in {1}"
|
msgid "{0} mentioned you in a comment in {1}"
|
||||||
msgstr "{0} упомянул вас в комментарии в {1}"
|
msgstr "{0} упомянул вас в комментарии в {1}"
|
||||||
|
|
||||||
#: lms/lms/utils.py:457
|
#: lms/lms/utils.py:458
|
||||||
msgid "{0}k"
|
msgid "{0}k"
|
||||||
msgstr "{0}k"
|
msgstr "{0}k"
|
||||||
|
|
||||||
|
|||||||
245
lms/locale/sv.po
245
lms/locale/sv.po
@@ -2,8 +2,8 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: frappe\n"
|
"Project-Id-Version: frappe\n"
|
||||||
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
|
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
|
||||||
"POT-Creation-Date: 2025-02-28 16:04+0000\n"
|
"POT-Creation-Date: 2025-03-07 16:04+0000\n"
|
||||||
"PO-Revision-Date: 2025-03-03 21:29\n"
|
"PO-Revision-Date: 2025-03-10 22:46\n"
|
||||||
"Last-Translator: jannat@frappe.io\n"
|
"Last-Translator: jannat@frappe.io\n"
|
||||||
"Language-Team: Swedish\n"
|
"Language-Team: Swedish\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -228,7 +228,7 @@ msgstr "Alla Grupper"
|
|||||||
msgid "All Certified Participants"
|
msgid "All Certified Participants"
|
||||||
msgstr "Alla Certifierade Deltagare"
|
msgstr "Alla Certifierade Deltagare"
|
||||||
|
|
||||||
#: lms/lms/widgets/BreadCrumb.html:3
|
#: frontend/src/pages/Courses.vue:26 lms/lms/widgets/BreadCrumb.html:3
|
||||||
msgid "All Courses"
|
msgid "All Courses"
|
||||||
msgstr "Alla Kurser"
|
msgstr "Alla Kurser"
|
||||||
|
|
||||||
@@ -268,7 +268,7 @@ msgstr "Tillåt åtkomst till framtida datum"
|
|||||||
msgid "Allow self enrollment"
|
msgid "Allow self enrollment"
|
||||||
msgstr "Tillåt självregistrering"
|
msgstr "Tillåt självregistrering"
|
||||||
|
|
||||||
#: lms/overrides/user.py:199
|
#: lms/lms/user.py:34
|
||||||
msgid "Already Registered"
|
msgid "Already Registered"
|
||||||
msgstr "Redan Registrerad"
|
msgstr "Redan Registrerad"
|
||||||
|
|
||||||
@@ -378,7 +378,7 @@ msgstr "Arkiverad"
|
|||||||
msgid "Are you sure you want to cancel this evaluation? This action cannot be undone."
|
msgid "Are you sure you want to cancel this evaluation? This action cannot be undone."
|
||||||
msgstr "Är du säker på att du vill avbryta denna utvärdering? Denna åtgärd kan inte ångras."
|
msgstr "Är du säker på att du vill avbryta denna utvärdering? Denna åtgärd kan inte ångras."
|
||||||
|
|
||||||
#: frontend/src/components/UserDropdown.vue:209
|
#: frontend/src/components/UserDropdown.vue:169
|
||||||
msgid "Are you sure you want to login to your Frappe Cloud dashboard?"
|
msgid "Are you sure you want to login to your Frappe Cloud dashboard?"
|
||||||
msgstr "Är du säker på att du vill logga in på din Översikt Panel i Frappe Cloud?"
|
msgstr "Är du säker på att du vill logga in på din Översikt Panel i Frappe Cloud?"
|
||||||
|
|
||||||
@@ -492,12 +492,12 @@ msgid "Auto Assign"
|
|||||||
msgstr "Automatiskt Tilldela"
|
msgstr "Automatiskt Tilldela"
|
||||||
|
|
||||||
#. Label of the auto_recording (Select) field in DocType 'LMS Live Class'
|
#. Label of the auto_recording (Select) field in DocType 'LMS Live Class'
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:71
|
#: frontend/src/components/Modals/LiveClassModal.vue:77
|
||||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||||
msgid "Auto Recording"
|
msgid "Auto Recording"
|
||||||
msgstr "Automatisk Inspelning"
|
msgstr "Automatisk Inspelning"
|
||||||
|
|
||||||
#: frontend/src/components/CourseCard.vue:50
|
#: frontend/src/components/CourseCard.vue:51
|
||||||
#: frontend/src/pages/CourseDetail.vue:20
|
#: frontend/src/pages/CourseDetail.vue:20
|
||||||
msgid "Average Rating"
|
msgid "Average Rating"
|
||||||
msgstr "Genomsnittlig Betyg"
|
msgstr "Genomsnittlig Betyg"
|
||||||
@@ -739,7 +739,7 @@ msgstr "Fritidskläder"
|
|||||||
#. Label of the category (Link) field in DocType 'LMS Course'
|
#. Label of the category (Link) field in DocType 'LMS Course'
|
||||||
#: frontend/src/pages/BatchForm.vue:190 frontend/src/pages/Batches.vue:55
|
#: frontend/src/pages/BatchForm.vue:190 frontend/src/pages/Batches.vue:55
|
||||||
#: frontend/src/pages/CertifiedParticipants.vue:37
|
#: frontend/src/pages/CertifiedParticipants.vue:37
|
||||||
#: frontend/src/pages/CourseForm.vue:147 frontend/src/pages/Courses.vue:17
|
#: frontend/src/pages/CourseForm.vue:147 frontend/src/pages/Courses.vue:55
|
||||||
#: frontend/src/pages/JobDetail.vue:96 lms/lms/doctype/lms_batch/lms_batch.json
|
#: frontend/src/pages/JobDetail.vue:96 lms/lms/doctype/lms_batch/lms_batch.json
|
||||||
#: lms/lms/doctype/lms_category/lms_category.json
|
#: lms/lms/doctype/lms_category/lms_category.json
|
||||||
#: lms/lms/doctype/lms_course/lms_course.json
|
#: lms/lms/doctype/lms_course/lms_course.json
|
||||||
@@ -790,12 +790,12 @@ msgstr "Certifikat genererade"
|
|||||||
#. Enrollment'
|
#. Enrollment'
|
||||||
#. Label of a Card Break in the LMS Workspace
|
#. Label of a Card Break in the LMS Workspace
|
||||||
#. Label of a Link in the LMS Workspace
|
#. Label of a Link in the LMS Workspace
|
||||||
#: frontend/src/components/CourseCard.vue:110
|
#: frontend/src/components/CourseCard.vue:111
|
||||||
#: frontend/src/components/Modals/Event.vue:371
|
#: frontend/src/components/Modals/Event.vue:371
|
||||||
#: frontend/src/pages/BatchForm.vue:37 frontend/src/pages/Batches.vue:38
|
#: frontend/src/pages/BatchForm.vue:37 frontend/src/pages/Batches.vue:38
|
||||||
#: frontend/src/pages/CourseCertification.vue:10
|
#: frontend/src/pages/CourseCertification.vue:10
|
||||||
#: frontend/src/pages/CourseCertification.vue:114
|
#: frontend/src/pages/CourseCertification.vue:114
|
||||||
#: lms/fixtures/custom_field.json
|
#: frontend/src/pages/Courses.vue:38 lms/fixtures/custom_field.json
|
||||||
#: lms/lms/doctype/certification/certification.json
|
#: lms/lms/doctype/certification/certification.json
|
||||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
||||||
@@ -912,10 +912,6 @@ msgstr "Rensa"
|
|||||||
msgid "Clearly Defined Role"
|
msgid "Clearly Defined Role"
|
||||||
msgstr "Tydligt Definierad Roll"
|
msgstr "Tydligt Definierad Roll"
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:75
|
|
||||||
msgid "Click here to login"
|
|
||||||
msgstr "Klicka här för att logga in"
|
|
||||||
|
|
||||||
#: frontend/src/components/LessonHelp.vue:30
|
#: frontend/src/components/LessonHelp.vue:30
|
||||||
msgid "Click on the add icon in the editor and select Quiz from the menu. It opens up a dialog, where you can either select a quiz from the list or create a new quiz. When you select the Create New option it redirects you to the quiz creation page."
|
msgid "Click on the add icon in the editor and select Quiz from the menu. It opens up a dialog, where you can either select a quiz from the list or create a new quiz. When you select the Create New option it redirects you to the quiz creation page."
|
||||||
msgstr "Klicka på lägg till ikon i redigeraren och välj Frågesport från menyn. Det öppnar dialogruta där du antingen kan välja frågesport från listan eller skapa nytt frågesport. När du väljer alternativ Skapa nytt omdirigeras du till en annan sida för att skapa frågesport."
|
msgstr "Klicka på lägg till ikon i redigeraren och välj Frågesport från menyn. Det öppnar dialogruta där du antingen kan välja frågesport från listan eller skapa nytt frågesport. När du väljer alternativ Skapa nytt omdirigeras du till en annan sida för att skapa frågesport."
|
||||||
@@ -1084,7 +1080,7 @@ msgstr "Slutför Registrering"
|
|||||||
msgid "Complete Your Enrollment"
|
msgid "Complete Your Enrollment"
|
||||||
msgstr "Slutför din Registrering"
|
msgstr "Slutför din Registrering"
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_payment/lms_payment.py:40
|
#: lms/lms/doctype/lms_payment/lms_payment.py:55
|
||||||
msgid "Complete Your Enrollment - Don't miss out!"
|
msgid "Complete Your Enrollment - Don't miss out!"
|
||||||
msgstr "Slutför din Registrering - Missa inte!"
|
msgstr "Slutför din Registrering - Missa inte!"
|
||||||
|
|
||||||
@@ -1125,7 +1121,11 @@ msgstr "Villkoret måste vara i giltigt JSON format."
|
|||||||
msgid "Condition must be valid python code."
|
msgid "Condition must be valid python code."
|
||||||
msgstr "Villkoret måste vara giltig python kod."
|
msgstr "Villkoret måste vara giltig python kod."
|
||||||
|
|
||||||
#: frontend/src/components/UserDropdown.vue:214
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.js:7
|
||||||
|
msgid "Conduct Evaluation"
|
||||||
|
msgstr "Genomför Utvärdering"
|
||||||
|
|
||||||
|
#: frontend/src/components/UserDropdown.vue:174
|
||||||
msgid "Confirm"
|
msgid "Confirm"
|
||||||
msgstr "Bekräfta"
|
msgstr "Bekräfta"
|
||||||
|
|
||||||
@@ -1166,7 +1166,7 @@ msgstr "Fortsätt lära dig"
|
|||||||
msgid "Contract"
|
msgid "Contract"
|
||||||
msgstr "Avtal"
|
msgstr "Avtal"
|
||||||
|
|
||||||
#: lms/lms/utils.py:437
|
#: lms/lms/utils.py:438
|
||||||
msgid "Cookie Policy"
|
msgid "Cookie Policy"
|
||||||
msgstr "Princip för Kakor"
|
msgstr "Princip för Kakor"
|
||||||
|
|
||||||
@@ -1382,7 +1382,7 @@ msgstr "Kurs {0} har redan lagts till i denna omgång."
|
|||||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:79
|
#: frontend/src/components/Modals/BatchStudentProgress.vue:79
|
||||||
#: frontend/src/pages/BatchDetail.vue:21 frontend/src/pages/BatchDetail.vue:70
|
#: frontend/src/pages/BatchDetail.vue:21 frontend/src/pages/BatchDetail.vue:70
|
||||||
#: frontend/src/pages/CourseCertification.vue:106
|
#: frontend/src/pages/CourseCertification.vue:106
|
||||||
#: frontend/src/pages/Courses.vue:8 frontend/src/pages/Statistics.vue:21
|
#: frontend/src/pages/Courses.vue:314 frontend/src/pages/Statistics.vue:21
|
||||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||||
msgid "Courses"
|
msgid "Courses"
|
||||||
@@ -1393,10 +1393,6 @@ msgstr "Kurser"
|
|||||||
msgid "Courses Completed"
|
msgid "Courses Completed"
|
||||||
msgstr "Klara Kurser"
|
msgstr "Klara Kurser"
|
||||||
|
|
||||||
#: lms/lms/web_template/courses_mentored/courses_mentored.html:4
|
|
||||||
msgid "Courses Mentored"
|
|
||||||
msgstr "Kurser Mentorerade"
|
|
||||||
|
|
||||||
#: frontend/src/components/BatchCourses.vue:151
|
#: frontend/src/components/BatchCourses.vue:151
|
||||||
msgid "Courses deleted successfully"
|
msgid "Courses deleted successfully"
|
||||||
msgstr "Kurser borttagna"
|
msgstr "Kurser borttagna"
|
||||||
@@ -1412,14 +1408,10 @@ msgid "Create"
|
|||||||
msgstr "Skapa"
|
msgstr "Skapa"
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.js:7
|
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.js:7
|
||||||
msgid "Create LMS Certificate"
|
msgid "Create Certificate"
|
||||||
msgstr "Skapa Certifikat"
|
msgstr "Skapa Certifikat"
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.js:8
|
#: lms/templates/onboarding_header.html:19
|
||||||
msgid "Create LMS Certificate Evaluation"
|
|
||||||
msgstr "Skapa Certifikat Utvärdering"
|
|
||||||
|
|
||||||
#: frontend/src/pages/Courses.vue:136 lms/templates/onboarding_header.html:19
|
|
||||||
msgid "Create a Course"
|
msgid "Create a Course"
|
||||||
msgstr "Skapa Kurs"
|
msgstr "Skapa Kurs"
|
||||||
|
|
||||||
@@ -1435,7 +1427,8 @@ msgstr "Skapa Kurs"
|
|||||||
msgid "Create a new question"
|
msgid "Create a new question"
|
||||||
msgstr "Skapa ny fråga"
|
msgstr "Skapa ny fråga"
|
||||||
|
|
||||||
#: frontend/src/pages/Assignments.vue:163
|
#: frontend/src/pages/Assignments.vue:163 frontend/src/pages/Courses.vue:287
|
||||||
|
#: frontend/src/pages/Courses.vue:307
|
||||||
msgid "Created"
|
msgid "Created"
|
||||||
msgstr "Skapad"
|
msgstr "Skapad"
|
||||||
|
|
||||||
@@ -1488,7 +1481,7 @@ msgstr "Översikt Panel"
|
|||||||
#. Label of the date (Date) field in DocType 'Scheduled Flow'
|
#. Label of the date (Date) field in DocType 'Scheduled Flow'
|
||||||
#: frontend/src/components/Modals/EvaluationModal.vue:26
|
#: frontend/src/components/Modals/EvaluationModal.vue:26
|
||||||
#: frontend/src/components/Modals/Event.vue:40
|
#: frontend/src/components/Modals/Event.vue:40
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:55
|
#: frontend/src/components/Modals/LiveClassModal.vue:61
|
||||||
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
|
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
|
||||||
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
|
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||||
@@ -1587,7 +1580,7 @@ msgstr "Borttagning av denna lektion kommer att ta bort den permanent från kurs
|
|||||||
#. Label of the description (Small Text) field in DocType 'LMS Exercise'
|
#. 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 (Text) field in DocType 'LMS Live Class'
|
||||||
#. Label of the description (Small Text) field in DocType 'Work Experience'
|
#. Label of the description (Small Text) field in DocType 'Work Experience'
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:78
|
#: frontend/src/components/Modals/LiveClassModal.vue:84
|
||||||
#: frontend/src/pages/BatchForm.vue:224 frontend/src/pages/JobCreation.vue:50
|
#: frontend/src/pages/BatchForm.vue:224 frontend/src/pages/JobCreation.vue:50
|
||||||
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
||||||
#: lms/lms/doctype/certification/certification.json
|
#: lms/lms/doctype/certification/certification.json
|
||||||
@@ -1614,10 +1607,6 @@ msgstr "Skrivbord"
|
|||||||
msgid "Details"
|
msgid "Details"
|
||||||
msgstr "Detaljer"
|
msgstr "Detaljer"
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:30
|
|
||||||
msgid "Didn't receive the code?"
|
|
||||||
msgstr "Fick du ingen kod?"
|
|
||||||
|
|
||||||
#: frontend/src/pages/CourseForm.vue:194
|
#: frontend/src/pages/CourseForm.vue:194
|
||||||
msgid "Disable Self Enrollment"
|
msgid "Disable Self Enrollment"
|
||||||
msgstr "Inaktivera självregistrering"
|
msgstr "Inaktivera självregistrering"
|
||||||
@@ -1668,7 +1657,7 @@ msgstr "Duplicerade alternativ hittades för denna fråga."
|
|||||||
#. Label of the duration (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 (Data) field in DocType 'LMS Batch Timetable'
|
||||||
#. Label of the duration (Int) field in DocType 'LMS Live Class'
|
#. Label of the duration (Int) field in DocType 'LMS Live Class'
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:62
|
#: frontend/src/components/Modals/LiveClassModal.vue:68
|
||||||
#: lms/lms/doctype/cohort/cohort.json
|
#: lms/lms/doctype/cohort/cohort.json
|
||||||
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
|
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
|
||||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||||
@@ -1680,7 +1669,7 @@ msgstr "Varaktighet"
|
|||||||
msgid "Duration (in minutes)"
|
msgid "Duration (in minutes)"
|
||||||
msgstr "Varaktighet (i minuter)"
|
msgstr "Varaktighet (i minuter)"
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:58
|
#: frontend/src/components/Modals/LiveClassModal.vue:64
|
||||||
msgid "Duration of the live class in minutes"
|
msgid "Duration of the live class in minutes"
|
||||||
msgstr "Livelektion varaktighet i minuter"
|
msgstr "Livelektion varaktighet i minuter"
|
||||||
|
|
||||||
@@ -1826,11 +1815,12 @@ msgstr "Slut Tid"
|
|||||||
msgid "Enroll Now"
|
msgid "Enroll Now"
|
||||||
msgstr "Registrera Nu"
|
msgstr "Registrera Nu"
|
||||||
|
|
||||||
#: frontend/src/pages/Batches.vue:292
|
#: frontend/src/pages/Batches.vue:292 frontend/src/pages/Courses.vue:285
|
||||||
|
#: frontend/src/pages/Courses.vue:305
|
||||||
msgid "Enrolled"
|
msgid "Enrolled"
|
||||||
msgstr "Inskriven"
|
msgstr "Inskriven"
|
||||||
|
|
||||||
#: frontend/src/components/CourseCard.vue:41
|
#: frontend/src/components/CourseCard.vue:42
|
||||||
#: frontend/src/components/CourseCardOverlay.vue:106
|
#: frontend/src/components/CourseCardOverlay.vue:106
|
||||||
#: frontend/src/pages/CourseDetail.vue:33
|
#: frontend/src/pages/CourseDetail.vue:33
|
||||||
msgid "Enrolled Students"
|
msgid "Enrolled Students"
|
||||||
@@ -1849,11 +1839,11 @@ msgstr "Registreringsbekräftelse för {0}"
|
|||||||
msgid "Enrollment Count"
|
msgid "Enrollment Count"
|
||||||
msgstr "Antal Inskrivna"
|
msgstr "Antal Inskrivna"
|
||||||
|
|
||||||
#: lms/lms/utils.py:1769
|
#: lms/lms/utils.py:1898
|
||||||
msgid "Enrollment Failed"
|
msgid "Enrollment Failed"
|
||||||
msgstr "Registrering Misslyckad"
|
msgstr "Registrering Misslyckad"
|
||||||
|
|
||||||
#. Label of the enrollments (Data) field in DocType 'LMS Course'
|
#. Label of the enrollments (Int) field in DocType 'LMS Course'
|
||||||
#. Label of a chart in the LMS Workspace
|
#. Label of a chart in the LMS Workspace
|
||||||
#. Label of a shortcut in the LMS Workspace
|
#. Label of a shortcut in the LMS Workspace
|
||||||
#: frontend/src/pages/Statistics.vue:51
|
#: frontend/src/pages/Statistics.vue:51
|
||||||
@@ -2057,14 +2047,6 @@ msgstr "Utforska mer"
|
|||||||
msgid "Fail"
|
msgid "Fail"
|
||||||
msgstr "Misslyckad "
|
msgstr "Misslyckad "
|
||||||
|
|
||||||
#: frontend/src/components/UserDropdown.vue:243
|
|
||||||
msgid "Failed to login to Frappe Cloud"
|
|
||||||
msgstr "Det gick inte att logga in på Frappe Cloud"
|
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:91
|
|
||||||
msgid "Failed to resend code"
|
|
||||||
msgstr "Det gick inte att skicka om koden"
|
|
||||||
|
|
||||||
#. Label of the featured (Check) field in DocType 'LMS Course'
|
#. Label of the featured (Check) field in DocType 'LMS Course'
|
||||||
#: frontend/src/components/CourseCard.vue:16
|
#: frontend/src/components/CourseCard.vue:16
|
||||||
#: frontend/src/pages/CourseForm.vue:189
|
#: frontend/src/pages/CourseForm.vue:189
|
||||||
@@ -2125,10 +2107,6 @@ msgstr "Formulär för att skapa och redigera frågesporter"
|
|||||||
msgid "Formal Wear"
|
msgid "Formal Wear"
|
||||||
msgstr "Formella Kläder"
|
msgstr "Formella Kläder"
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:70
|
|
||||||
msgid "Frappe Cloud Login Successful"
|
|
||||||
msgstr "Frappe Cloud Inloggning Lyckades"
|
|
||||||
|
|
||||||
#: lms/lms/widgets/CourseCard.html:114
|
#: lms/lms/widgets/CourseCard.html:114
|
||||||
msgid "Free"
|
msgid "Free"
|
||||||
msgstr "Gratis"
|
msgstr "Gratis"
|
||||||
@@ -2212,7 +2190,7 @@ msgstr "Allmän"
|
|||||||
msgid "Generate Certificates"
|
msgid "Generate Certificates"
|
||||||
msgstr "Skapa Certifikat"
|
msgstr "Skapa Certifikat"
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.js:18
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.js:15
|
||||||
msgid "Generate Google Meet Link"
|
msgid "Generate Google Meet Link"
|
||||||
msgstr "Skapa Google Meet länk"
|
msgstr "Skapa Google Meet länk"
|
||||||
|
|
||||||
@@ -2382,10 +2360,6 @@ msgstr "Om du har några frågor eller behöver hjälp är du välkommen att kon
|
|||||||
msgid "If you have any questions or require assistance, feel free to contact us."
|
msgid "If you have any questions or require assistance, feel free to contact us."
|
||||||
msgstr "Om du har några frågor eller behöver hjälp är du välkommen att kontakta oss."
|
msgstr "Om du har några frågor eller behöver hjälp är du välkommen att kontakta oss."
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:71
|
|
||||||
msgid "If you haven't been redirected,"
|
|
||||||
msgstr "Om du inte blivit omdirigerad,"
|
|
||||||
|
|
||||||
#. Description of the 'Amount (USD)' (Currency) field in DocType 'LMS Batch'
|
#. Description of the 'Amount (USD)' (Currency) field in DocType 'LMS Batch'
|
||||||
#. Description of the 'Amount (USD)' (Currency) field in DocType 'LMS Course'
|
#. Description of the 'Amount (USD)' (Currency) field in DocType 'LMS Course'
|
||||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||||
@@ -2969,8 +2943,8 @@ msgstr "Lektion Benämning"
|
|||||||
|
|
||||||
#. Label of the lessons (Table) field in DocType 'Course Chapter'
|
#. Label of the lessons (Table) field in DocType 'Course Chapter'
|
||||||
#. Group in Course Chapter's connections
|
#. Group in Course Chapter's connections
|
||||||
#. Label of the lessons (Data) field in DocType 'LMS Course'
|
#. Label of the lessons (Int) field in DocType 'LMS Course'
|
||||||
#: frontend/src/components/CourseCard.vue:32
|
#: frontend/src/components/CourseCard.vue:33
|
||||||
#: frontend/src/components/CourseCardOverlay.vue:99
|
#: frontend/src/components/CourseCardOverlay.vue:99
|
||||||
#: lms/lms/doctype/course_chapter/course_chapter.json
|
#: lms/lms/doctype/course_chapter/course_chapter.json
|
||||||
#: lms/lms/doctype/lms_course/lms_course.json
|
#: lms/lms/doctype/lms_course/lms_course.json
|
||||||
@@ -3021,7 +2995,7 @@ msgid "List of quizzes"
|
|||||||
msgstr "Lista över frågesporter"
|
msgstr "Lista över frågesporter"
|
||||||
|
|
||||||
#. Option for the 'Status' (Select) field in DocType 'Cohort'
|
#. Option for the 'Status' (Select) field in DocType 'Cohort'
|
||||||
#: lms/lms/doctype/cohort/cohort.json
|
#: frontend/src/pages/Courses.vue:295 lms/lms/doctype/cohort/cohort.json
|
||||||
msgid "Live"
|
msgid "Live"
|
||||||
msgstr "Live"
|
msgstr "Live"
|
||||||
|
|
||||||
@@ -3039,6 +3013,7 @@ msgstr "LiveCode URL"
|
|||||||
#: frontend/src/components/Members.vue:108
|
#: frontend/src/components/Members.vue:108
|
||||||
#: frontend/src/pages/Assignments.vue:71 frontend/src/pages/Batches.vue:94
|
#: frontend/src/pages/Assignments.vue:71 frontend/src/pages/Batches.vue:94
|
||||||
#: frontend/src/pages/CertifiedParticipants.vue:79
|
#: frontend/src/pages/CertifiedParticipants.vue:79
|
||||||
|
#: frontend/src/pages/Courses.vue:94
|
||||||
#: frontend/src/pages/QuizSubmissionList.vue:39
|
#: frontend/src/pages/QuizSubmissionList.vue:39
|
||||||
#: frontend/src/pages/Quizzes.vue:51
|
#: frontend/src/pages/Quizzes.vue:51
|
||||||
msgid "Load More"
|
msgid "Load More"
|
||||||
@@ -3071,16 +3046,7 @@ msgstr "Platspreferens"
|
|||||||
msgid "Login"
|
msgid "Login"
|
||||||
msgstr "Logga In"
|
msgstr "Logga In"
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:79
|
#: frontend/src/components/UserDropdown.vue:168
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:83
|
|
||||||
msgid "Login failed"
|
|
||||||
msgstr "Inloggning misslyckades"
|
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:6
|
|
||||||
msgid "Login to Frappe Cloud"
|
|
||||||
msgstr "Logga in på Frappe Cloud"
|
|
||||||
|
|
||||||
#: frontend/src/components/UserDropdown.vue:208
|
|
||||||
msgid "Login to Frappe Cloud?"
|
msgid "Login to Frappe Cloud?"
|
||||||
msgstr "Logga in på Frappe Cloud?"
|
msgstr "Logga in på Frappe Cloud?"
|
||||||
|
|
||||||
@@ -3396,11 +3362,11 @@ msgstr "Moderator"
|
|||||||
msgid "Modified By"
|
msgid "Modified By"
|
||||||
msgstr "Modifierad Av"
|
msgstr "Modifierad Av"
|
||||||
|
|
||||||
#: lms/lms/api.py:208
|
#: lms/lms/api.py:214
|
||||||
msgid "Module Name is incorrect or does not exist."
|
msgid "Module Name is incorrect or does not exist."
|
||||||
msgstr "Modul Namn är felaktigt eller existerar inte."
|
msgstr "Modul Namn är felaktigt eller existerar inte."
|
||||||
|
|
||||||
#: lms/lms/api.py:204
|
#: lms/lms/api.py:210
|
||||||
msgid "Module is incorrect."
|
msgid "Module is incorrect."
|
||||||
msgstr "Modul är felaktig."
|
msgstr "Modul är felaktig."
|
||||||
|
|
||||||
@@ -3430,7 +3396,8 @@ msgstr "Min kalender"
|
|||||||
|
|
||||||
#. Option for the 'Event' (Select) field in DocType 'LMS Badge'
|
#. Option for the 'Event' (Select) field in DocType 'LMS Badge'
|
||||||
#: frontend/src/pages/Assignments.vue:18 frontend/src/pages/Batches.vue:17
|
#: frontend/src/pages/Assignments.vue:18 frontend/src/pages/Batches.vue:17
|
||||||
#: frontend/src/pages/Courses.vue:48 frontend/src/pages/Programs.vue:14
|
#: frontend/src/pages/Courses.vue:17 frontend/src/pages/Courses.vue:281
|
||||||
|
#: frontend/src/pages/Courses.vue:298 frontend/src/pages/Programs.vue:14
|
||||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||||
msgid "New"
|
msgid "New"
|
||||||
msgstr "Ny"
|
msgstr "Ny"
|
||||||
@@ -3484,11 +3451,11 @@ msgstr "Nytt Frågesport"
|
|||||||
msgid "New Sign Up"
|
msgid "New Sign Up"
|
||||||
msgstr "Ny Registrering"
|
msgstr "Ny Registrering"
|
||||||
|
|
||||||
#: lms/lms/utils.py:604
|
#: lms/lms/utils.py:605
|
||||||
msgid "New comment in batch {0}"
|
msgid "New comment in batch {0}"
|
||||||
msgstr "Ny kommentar i grupp {0}"
|
msgstr "Ny kommentar i grupp {0}"
|
||||||
|
|
||||||
#: lms/lms/utils.py:597
|
#: lms/lms/utils.py:598
|
||||||
msgid "New reply on the topic {0} in course {1}"
|
msgid "New reply on the topic {0} in course {1}"
|
||||||
msgstr "Nytt svar i ämne {0} i kurs {1}"
|
msgstr "Nytt svar i ämne {0} i kurs {1}"
|
||||||
|
|
||||||
@@ -3546,7 +3513,7 @@ msgstr "Inga certifikat"
|
|||||||
msgid "No courses created"
|
msgid "No courses created"
|
||||||
msgstr "Inga kurser skapade"
|
msgstr "Inga kurser skapade"
|
||||||
|
|
||||||
#: frontend/src/pages/Courses.vue:151
|
#: frontend/src/pages/Courses.vue:79
|
||||||
msgid "No courses found"
|
msgid "No courses found"
|
||||||
msgstr "Inga kurser hittades"
|
msgstr "Inga kurser hittades"
|
||||||
|
|
||||||
@@ -3598,15 +3565,11 @@ msgstr "Inga inlämningar"
|
|||||||
msgid "No {0}"
|
msgid "No {0}"
|
||||||
msgstr "Ingen {0}"
|
msgstr "Ingen {0}"
|
||||||
|
|
||||||
#: frontend/src/pages/Courses.vue:111
|
|
||||||
msgid "No {0} courses"
|
|
||||||
msgstr "Inga {0} kurser"
|
|
||||||
|
|
||||||
#: lms/templates/quiz/quiz.html:147
|
#: lms/templates/quiz/quiz.html:147
|
||||||
msgid "No."
|
msgid "No."
|
||||||
msgstr "Nr."
|
msgstr "Nr."
|
||||||
|
|
||||||
#: lms/overrides/user.py:194
|
#: lms/lms/user.py:29
|
||||||
msgid "Not Allowed"
|
msgid "Not Allowed"
|
||||||
msgstr "Ej Tillåtet"
|
msgstr "Ej Tillåtet"
|
||||||
|
|
||||||
@@ -3695,7 +3658,7 @@ msgstr "Endast kurser för vilka självinlärning är inaktiverat kan läggas ti
|
|||||||
msgid "Only files of type {0} will be accepted."
|
msgid "Only files of type {0} will be accepted."
|
||||||
msgstr "Endast filer av typ {0} kommer att accepteras."
|
msgstr "Endast filer av typ {0} kommer att accepteras."
|
||||||
|
|
||||||
#: frontend/src/pages/CourseForm.vue:506 frontend/src/utils/index.js:533
|
#: frontend/src/pages/CourseForm.vue:506 frontend/src/utils/index.js:552
|
||||||
msgid "Only image file is allowed."
|
msgid "Only image file is allowed."
|
||||||
msgstr "Endast bildfiler är tillåtna."
|
msgstr "Endast bildfiler är tillåtna."
|
||||||
|
|
||||||
@@ -3726,10 +3689,6 @@ msgstr "Öppen Kurs"
|
|||||||
msgid "Open Ended"
|
msgid "Open Ended"
|
||||||
msgstr "Öppen Avslutad"
|
msgstr "Öppen Avslutad"
|
||||||
|
|
||||||
#: lms/lms/widgets/MemberCard.html:16
|
|
||||||
msgid "Open Network"
|
|
||||||
msgstr "Öppna Nätverk"
|
|
||||||
|
|
||||||
#. Label of the option (Data) field in DocType 'LMS Option'
|
#. Label of the option (Data) field in DocType 'LMS Option'
|
||||||
#: frontend/src/components/Modals/Question.vue:64
|
#: frontend/src/components/Modals/Question.vue:64
|
||||||
#: lms/lms/doctype/lms_option/lms_option.json
|
#: lms/lms/doctype/lms_option/lms_option.json
|
||||||
@@ -3981,11 +3940,11 @@ msgstr "Logga in"
|
|||||||
msgid "Please add <a href='{0}'>{1}</a> for <a href='{2}'>{3}</a> to send calendar invites for evaluations."
|
msgid "Please add <a href='{0}'>{1}</a> for <a href='{2}'>{3}</a> to send calendar invites for evaluations."
|
||||||
msgstr "Lägg till <a href='{0}'>{1}</a> för <a href='{2}'>{3}</a> för att skicka kalender inbjudningar för utvärderingar."
|
msgstr "Lägg till <a href='{0}'>{1}</a> för <a href='{2}'>{3}</a> för att skicka kalender inbjudningar för utvärderingar."
|
||||||
|
|
||||||
#: lms/overrides/user.py:240
|
#: lms/lms/user.py:75
|
||||||
msgid "Please ask your administrator to verify your sign-up"
|
msgid "Please ask your administrator to verify your sign-up"
|
||||||
msgstr "Be Administratör att verifiera din registrering"
|
msgstr "Be Administratör att verifiera din registrering"
|
||||||
|
|
||||||
#: lms/overrides/user.py:238
|
#: lms/lms/user.py:73
|
||||||
msgid "Please check your email for verification"
|
msgid "Please check your email for verification"
|
||||||
msgstr "Kontrollera din E-post för verifiering"
|
msgstr "Kontrollera din E-post för verifiering"
|
||||||
|
|
||||||
@@ -3993,7 +3952,7 @@ msgstr "Kontrollera din E-post för verifiering"
|
|||||||
msgid "Please click on the following button to set your new password"
|
msgid "Please click on the following button to set your new password"
|
||||||
msgstr "Klicka på följande knapp för att ange ditt nya lösenord"
|
msgstr "Klicka på följande knapp för att ange ditt nya lösenord"
|
||||||
|
|
||||||
#: lms/lms/utils.py:1901 lms/lms/utils.py:1905
|
#: lms/lms/utils.py:2030 lms/lms/utils.py:2034
|
||||||
msgid "Please complete the previous courses in the program to enroll in this course."
|
msgid "Please complete the previous courses in the program to enroll in this course."
|
||||||
msgstr "Slutför tidigare kurser i program för att anmäla dig till denna kurs."
|
msgstr "Slutför tidigare kurser i program för att anmäla dig till denna kurs."
|
||||||
|
|
||||||
@@ -4009,7 +3968,7 @@ msgstr "Anmäl dig till denna kurs för att se denna lektion"
|
|||||||
msgid "Please ensure that you complete all the questions in {0} minutes."
|
msgid "Please ensure that you complete all the questions in {0} minutes."
|
||||||
msgstr "Se till att besvara alla frågor på {0} minuter."
|
msgstr "Se till att besvara alla frågor på {0} minuter."
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:164
|
#: frontend/src/components/Modals/LiveClassModal.vue:170
|
||||||
msgid "Please enter a title."
|
msgid "Please enter a title."
|
||||||
msgstr "Ange benämning."
|
msgstr "Ange benämning."
|
||||||
|
|
||||||
@@ -4018,7 +3977,7 @@ msgstr "Ange benämning."
|
|||||||
msgid "Please enter a valid URL."
|
msgid "Please enter a valid URL."
|
||||||
msgstr "Ange giltig URL."
|
msgstr "Ange giltig URL."
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:176
|
#: frontend/src/components/Modals/LiveClassModal.vue:182
|
||||||
msgid "Please enter a valid time in the format HH:mm."
|
msgid "Please enter a valid time in the format HH:mm."
|
||||||
msgstr "Ange giltig tid i format HH:mm."
|
msgstr "Ange giltig tid i format HH:mm."
|
||||||
|
|
||||||
@@ -4054,7 +4013,7 @@ msgstr "Logga in för att komma åt frågesport."
|
|||||||
msgid "Please login to access this page."
|
msgid "Please login to access this page."
|
||||||
msgstr "Logga in för att komma till denna sida."
|
msgstr "Logga in för att komma till denna sida."
|
||||||
|
|
||||||
#: lms/lms/api.py:200
|
#: lms/lms/api.py:206
|
||||||
msgid "Please login to continue with payment."
|
msgid "Please login to continue with payment."
|
||||||
msgstr "Logga in för att fortsätta med betalning."
|
msgstr "Logga in för att fortsätta med betalning."
|
||||||
|
|
||||||
@@ -4067,23 +4026,23 @@ msgstr "Förbered dig väl och kom i tid till utvärderingarna."
|
|||||||
msgid "Please schedule an evaluation to get certified."
|
msgid "Please schedule an evaluation to get certified."
|
||||||
msgstr "Boka gärna utvärdering för att bli certifierad."
|
msgstr "Boka gärna utvärdering för att bli certifierad."
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:167
|
#: frontend/src/components/Modals/LiveClassModal.vue:173
|
||||||
msgid "Please select a date."
|
msgid "Please select a date."
|
||||||
msgstr "Välj Datum"
|
msgstr "Välj Datum"
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:191
|
#: frontend/src/components/Modals/LiveClassModal.vue:197
|
||||||
msgid "Please select a duration."
|
msgid "Please select a duration."
|
||||||
msgstr "Välj varaktighet."
|
msgstr "Välj varaktighet."
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:188
|
#: frontend/src/components/Modals/LiveClassModal.vue:194
|
||||||
msgid "Please select a future date and time."
|
msgid "Please select a future date and time."
|
||||||
msgstr "Välj framtida datum och tid."
|
msgstr "Välj framtida datum och tid."
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:170
|
#: frontend/src/components/Modals/LiveClassModal.vue:176
|
||||||
msgid "Please select a time."
|
msgid "Please select a time."
|
||||||
msgstr "Välj tid."
|
msgstr "Välj tid."
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:173
|
#: frontend/src/components/Modals/LiveClassModal.vue:179
|
||||||
msgid "Please select a timezone."
|
msgid "Please select a timezone."
|
||||||
msgstr "Välj tidszon."
|
msgstr "Välj tidszon."
|
||||||
|
|
||||||
@@ -4091,13 +4050,6 @@ msgstr "Välj tidszon."
|
|||||||
msgid "Please take appropriate action at {0}"
|
msgid "Please take appropriate action at {0}"
|
||||||
msgstr "Vidta lämpliga åtgärder {0}"
|
msgstr "Vidta lämpliga åtgärder {0}"
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:79
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:83
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:91
|
|
||||||
#: frontend/src/components/UserDropdown.vue:244
|
|
||||||
msgid "Please try again"
|
|
||||||
msgstr "Försök igen"
|
|
||||||
|
|
||||||
#: frontend/src/components/Modals/ChapterModal.vue:177
|
#: frontend/src/components/Modals/ChapterModal.vue:177
|
||||||
msgid "Please upload a SCORM package"
|
msgid "Please upload a SCORM package"
|
||||||
msgstr "Ladda upp SCORM App"
|
msgstr "Ladda upp SCORM App"
|
||||||
@@ -4210,7 +4162,7 @@ msgstr "Primära Länder"
|
|||||||
msgid "Primary Subgroup"
|
msgid "Primary Subgroup"
|
||||||
msgstr "Primär Undergrupp"
|
msgstr "Primär Undergrupp"
|
||||||
|
|
||||||
#: lms/lms/utils.py:436
|
#: lms/lms/utils.py:437
|
||||||
msgid "Privacy Policy"
|
msgid "Privacy Policy"
|
||||||
msgstr "Integritet Princip"
|
msgstr "Integritet Princip"
|
||||||
|
|
||||||
@@ -4478,7 +4430,7 @@ msgstr "Registrera Nu"
|
|||||||
msgid "Registered"
|
msgid "Registered"
|
||||||
msgstr "Registrerad"
|
msgstr "Registrerad"
|
||||||
|
|
||||||
#: lms/overrides/user.py:201
|
#: lms/lms/user.py:36
|
||||||
msgid "Registered but disabled"
|
msgid "Registered but disabled"
|
||||||
msgstr "Registrerad men inaktiverad"
|
msgstr "Registrerad men inaktiverad"
|
||||||
|
|
||||||
@@ -4519,10 +4471,6 @@ msgstr "Begäran om Mentorskap"
|
|||||||
msgid "Required Role"
|
msgid "Required Role"
|
||||||
msgstr "Erfordrad Roll"
|
msgstr "Erfordrad Roll"
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:31
|
|
||||||
msgid "Resend"
|
|
||||||
msgstr "Skicka igen"
|
|
||||||
|
|
||||||
#. Option for the 'Membership' (Select) field in DocType 'LMS Batch Old'
|
#. Option for the 'Membership' (Select) field in DocType 'LMS Batch Old'
|
||||||
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
|
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
|
||||||
msgid "Restricted"
|
msgid "Restricted"
|
||||||
@@ -4677,7 +4625,7 @@ msgstr "Sök"
|
|||||||
msgid "Search by Name"
|
msgid "Search by Name"
|
||||||
msgstr "Sök efter Namn"
|
msgstr "Sök efter Namn"
|
||||||
|
|
||||||
#: frontend/src/pages/Batches.vue:45
|
#: frontend/src/pages/Batches.vue:45 frontend/src/pages/Courses.vue:45
|
||||||
msgid "Search by Title"
|
msgid "Search by Title"
|
||||||
msgstr "Sök efter Benämning"
|
msgstr "Sök efter Benämning"
|
||||||
|
|
||||||
@@ -4819,7 +4767,7 @@ msgstr "Sidofält"
|
|||||||
msgid "Sidebar Items"
|
msgid "Sidebar Items"
|
||||||
msgstr "Sidofält Element"
|
msgstr "Sidofält Element"
|
||||||
|
|
||||||
#: lms/overrides/user.py:194
|
#: lms/lms/user.py:29
|
||||||
msgid "Sign Up is disabled"
|
msgid "Sign Up is disabled"
|
||||||
msgstr "Registrering är inaktiverad"
|
msgstr "Registrering är inaktiverad"
|
||||||
|
|
||||||
@@ -4863,10 +4811,6 @@ msgstr "Färdighet Namn"
|
|||||||
msgid "Skills"
|
msgid "Skills"
|
||||||
msgstr "Färdigheter"
|
msgstr "Färdigheter"
|
||||||
|
|
||||||
#: lms/overrides/user.py:42
|
|
||||||
msgid "Skills must be unique"
|
|
||||||
msgstr "Färdigheter måste vara unika"
|
|
||||||
|
|
||||||
#: lms/templates/onboarding_header.html:6
|
#: lms/templates/onboarding_header.html:6
|
||||||
msgid "Skip"
|
msgid "Skip"
|
||||||
msgstr "Hoppa Över"
|
msgstr "Hoppa Över"
|
||||||
@@ -5143,7 +5087,7 @@ msgstr "Översikt"
|
|||||||
msgid "Sunday"
|
msgid "Sunday"
|
||||||
msgstr "Söndag"
|
msgstr "Söndag"
|
||||||
|
|
||||||
#: lms/lms/api.py:1012
|
#: lms/lms/api.py:1018
|
||||||
msgid "Suspicious pattern found in {0}: {1}"
|
msgid "Suspicious pattern found in {0}: {1}"
|
||||||
msgstr "Misstänkt mönster hittat i {0}: {1}"
|
msgstr "Misstänkt mönster hittat i {0}: {1}"
|
||||||
|
|
||||||
@@ -5224,11 +5168,11 @@ msgstr "Teamarbete"
|
|||||||
msgid "Template"
|
msgid "Template"
|
||||||
msgstr "Mall"
|
msgstr "Mall"
|
||||||
|
|
||||||
#: lms/overrides/user.py:205
|
#: lms/lms/user.py:40
|
||||||
msgid "Temporarily Disabled"
|
msgid "Temporarily Disabled"
|
||||||
msgstr "Tillfälligt Inaktiverad"
|
msgstr "Tillfälligt Inaktiverad"
|
||||||
|
|
||||||
#: lms/lms/utils.py:435
|
#: lms/lms/utils.py:436
|
||||||
msgid "Terms of Use"
|
msgid "Terms of Use"
|
||||||
msgstr "Villkor"
|
msgstr "Villkor"
|
||||||
|
|
||||||
@@ -5264,7 +5208,7 @@ msgstr "Tack för återkoppling!"
|
|||||||
msgid "Thanks and Regards"
|
msgid "Thanks and Regards"
|
||||||
msgstr "Tack och Hälsningar"
|
msgstr "Tack och Hälsningar"
|
||||||
|
|
||||||
#: lms/lms/utils.py:1801
|
#: lms/lms/utils.py:1930
|
||||||
msgid "The batch is full. Please contact the Administrator."
|
msgid "The batch is full. Please contact the Administrator."
|
||||||
msgstr "Gruppen är full. Kontakta administratör."
|
msgstr "Gruppen är full. Kontakta administratör."
|
||||||
|
|
||||||
@@ -5300,9 +5244,9 @@ msgstr "Det finns inga grupper som matchar kriterierna. Håll utkik, nya inlärn
|
|||||||
msgid "There are no chapters in this course. Create and manage chapters from here."
|
msgid "There are no chapters in this course. Create and manage chapters from here."
|
||||||
msgstr "Det finns inga kapitel i denna kurs. Skapa och hantera kapitel härifrån."
|
msgstr "Det finns inga kapitel i denna kurs. Skapa och hantera kapitel härifrån."
|
||||||
|
|
||||||
#: frontend/src/pages/Courses.vue:155
|
#: frontend/src/pages/Courses.vue:83
|
||||||
msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
|
msgid "There are no courses matching the criteria. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||||
msgstr "Det finns inga kurser tillgängliga just nu. Håll utkik, färska inlärningsupplevelser är på väg snart!"
|
msgstr "Det finns inga kurser som stämmer med kriterierna. Håll utkik, nya inlärningsupplevelser är på väg snart!"
|
||||||
|
|
||||||
#: frontend/src/pages/CertifiedParticipants.vue:92
|
#: frontend/src/pages/CertifiedParticipants.vue:92
|
||||||
msgid "There are no participants matching this criteria."
|
msgid "There are no participants matching this criteria."
|
||||||
@@ -5359,7 +5303,7 @@ msgstr "Denna klass har avslutats"
|
|||||||
msgid "This course has:"
|
msgid "This course has:"
|
||||||
msgstr "Denna kurs har:"
|
msgstr "Denna kurs har:"
|
||||||
|
|
||||||
#: lms/lms/utils.py:1644
|
#: lms/lms/utils.py:1773
|
||||||
msgid "This course is free."
|
msgid "This course is free."
|
||||||
msgstr "Denna kurs är gratis."
|
msgstr "Denna kurs är gratis."
|
||||||
|
|
||||||
@@ -5427,7 +5371,7 @@ msgstr "Tidtabell Mall"
|
|||||||
#. Label of the timezone (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 Certificate Request'
|
#. Label of the timezone (Data) field in DocType 'LMS Certificate Request'
|
||||||
#. Label of the timezone (Data) field in DocType 'LMS Live Class'
|
#. Label of the timezone (Data) field in DocType 'LMS Live Class'
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:46
|
#: frontend/src/components/Modals/LiveClassModal.vue:45
|
||||||
#: frontend/src/pages/BatchForm.vue:120
|
#: frontend/src/pages/BatchForm.vue:120
|
||||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||||
@@ -5501,7 +5445,7 @@ msgstr "Till"
|
|||||||
msgid "To Date"
|
msgid "To Date"
|
||||||
msgstr "Till Datum"
|
msgstr "Till Datum"
|
||||||
|
|
||||||
#: lms/lms/utils.py:1655
|
#: lms/lms/utils.py:1784
|
||||||
msgid "To join this batch, please contact the Administrator."
|
msgid "To join this batch, please contact the Administrator."
|
||||||
msgstr "För att gå med i denna grupp, kontakta Administratör."
|
msgstr "För att gå med i denna grupp, kontakta Administratör."
|
||||||
|
|
||||||
@@ -5509,7 +5453,7 @@ msgstr "För att gå med i denna grupp, kontakta Administratör."
|
|||||||
msgid "To upload Image, Video, Audio or PDF from your system, click on the add icon and select upload from the menu. Then choose the file you want to add to the lesson and it gets added to your lesson."
|
msgid "To upload Image, Video, Audio or PDF from your system, click on the add icon and select upload from the menu. Then choose the file you want to add to the lesson and it gets added to your lesson."
|
||||||
msgstr "För att ladda upp bild, video, ljud eller PDF från ditt system, klicka på ikonen Lägg till och välj ladda upp från menyn. Välj sedan filen du vill lägga till i lektionen och den läggs till din lektion."
|
msgstr "För att ladda upp bild, video, ljud eller PDF från ditt system, klicka på ikonen Lägg till och välj ladda upp från menyn. Välj sedan filen du vill lägga till i lektionen och den läggs till din lektion."
|
||||||
|
|
||||||
#: lms/overrides/user.py:206
|
#: lms/lms/user.py:41
|
||||||
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
|
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
|
||||||
msgstr "Alltför många Användare registrerade sig nyligen, så registrering är inaktiverad. Försök igen om en timme"
|
msgstr "Alltför många Användare registrerade sig nyligen, så registrering är inaktiverad. Försök igen om en timme"
|
||||||
|
|
||||||
@@ -5626,7 +5570,8 @@ msgstr "Ostrukturerad Roll"
|
|||||||
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request'
|
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request'
|
||||||
#. Label of the upcoming (Check) field in DocType 'LMS Course'
|
#. Label of the upcoming (Check) field in DocType 'LMS Course'
|
||||||
#: frontend/src/pages/Batches.vue:276 frontend/src/pages/Batches.vue:294
|
#: frontend/src/pages/Batches.vue:276 frontend/src/pages/Batches.vue:294
|
||||||
#: frontend/src/pages/CourseForm.vue:184 lms/lms/doctype/cohort/cohort.json
|
#: frontend/src/pages/CourseForm.vue:184 frontend/src/pages/Courses.vue:282
|
||||||
|
#: frontend/src/pages/Courses.vue:301 lms/lms/doctype/cohort/cohort.json
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||||
#: lms/lms/doctype/lms_course/lms_course.json
|
#: lms/lms/doctype/lms_course/lms_course.json
|
||||||
msgid "Upcoming"
|
msgid "Upcoming"
|
||||||
@@ -5727,14 +5672,6 @@ msgstr "Värde"
|
|||||||
msgid "Value Change"
|
msgid "Value Change"
|
||||||
msgstr "Värde Förändring"
|
msgstr "Värde Förändring"
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:26
|
|
||||||
msgid "Verification Code"
|
|
||||||
msgstr "Verifiering Kod"
|
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:9
|
|
||||||
msgid "Verify"
|
|
||||||
msgstr "Verifiera"
|
|
||||||
|
|
||||||
#. Label of the video_link (Data) field in DocType 'LMS Course'
|
#. Label of the video_link (Data) field in DocType 'LMS Course'
|
||||||
#: lms/lms/doctype/lms_course/lms_course.json
|
#: lms/lms/doctype/lms_course/lms_course.json
|
||||||
msgid "Video Embed Link"
|
msgid "Video Embed Link"
|
||||||
@@ -5776,10 +5713,6 @@ msgstr "Vi är glada att informera dig om att du har blivit antagen i vår komma
|
|||||||
msgid "We have a limited number of seats, and they won't be available for long!"
|
msgid "We have a limited number of seats, and they won't be available for long!"
|
||||||
msgstr "Vi har ett begränsat antal platser, och de kommer inte att finnas kvar länge till!"
|
msgstr "Vi har ett begränsat antal platser, och de kommer inte att finnas kvar länge till!"
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:21
|
|
||||||
msgid "We have sent the verificaton code to your email id "
|
|
||||||
msgstr "Vi har skickat verifieringskod till ditt e-post "
|
|
||||||
|
|
||||||
#: lms/templates/emails/payment_reminder.html:4
|
#: lms/templates/emails/payment_reminder.html:4
|
||||||
msgid "We noticed that you started enrolling in the"
|
msgid "We noticed that you started enrolling in the"
|
||||||
msgstr "Vi märkte att du började registrera dig i"
|
msgstr "Vi märkte att du började registrera dig i"
|
||||||
@@ -5855,7 +5788,7 @@ msgstr "Skriv en recension"
|
|||||||
msgid "Write your answer here"
|
msgid "Write your answer here"
|
||||||
msgstr "Skriv ditt svar här"
|
msgstr "Skriv ditt svar här"
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:95
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:96
|
||||||
msgid "You already have an evaluation on {0} at {1} for the course {2}."
|
msgid "You already have an evaluation on {0} at {1} for the course {2}."
|
||||||
msgstr "Du har redan utvärdering {0} kl. {1} för kurs {2}."
|
msgstr "Du har redan utvärdering {0} kl. {1} för kurs {2}."
|
||||||
|
|
||||||
@@ -5863,11 +5796,11 @@ msgstr "Du har redan utvärdering {0} kl. {1} för kurs {2}."
|
|||||||
msgid "You are already certified for this course. Click on the card below to open your certificate."
|
msgid "You are already certified for this course. Click on the card below to open your certificate."
|
||||||
msgstr "Du är redan certifierad för denna kurs. Klicka på kort nedan för att öppna ditt certifikat."
|
msgstr "Du är redan certifierad för denna kurs. Klicka på kort nedan för att öppna ditt certifikat."
|
||||||
|
|
||||||
#: lms/lms/api.py:224
|
#: lms/lms/api.py:230
|
||||||
msgid "You are already enrolled for this batch."
|
msgid "You are already enrolled for this batch."
|
||||||
msgstr "Du är redan inskriven för denna grupp."
|
msgstr "Du är redan inskriven för denna grupp."
|
||||||
|
|
||||||
#: lms/lms/api.py:216
|
#: lms/lms/api.py:222
|
||||||
msgid "You are already enrolled for this course."
|
msgid "You are already enrolled for this course."
|
||||||
msgstr "Du är redan inskriven på denna kurs."
|
msgstr "Du är redan inskriven på denna kurs."
|
||||||
|
|
||||||
@@ -5887,10 +5820,6 @@ msgstr "Du är inte inskriven"
|
|||||||
msgid "You are not enrolled in this course. Please enroll to access this lesson."
|
msgid "You are not enrolled in this course. Please enroll to access this lesson."
|
||||||
msgstr "Du är inte inskriven i denna kurs. Anmäl dig för att få tillgång till denna lektion."
|
msgstr "Du är inte inskriven i denna kurs. Anmäl dig för att få tillgång till denna lektion."
|
||||||
|
|
||||||
#: frontend/src/pages/Courses.vue:139
|
|
||||||
msgid "You can add chapters and lessons to it."
|
|
||||||
msgstr "Du kan lägga till kapitel och lektioner till den."
|
|
||||||
|
|
||||||
#: lms/templates/emails/lms_course_interest.html:13
|
#: lms/templates/emails/lms_course_interest.html:13
|
||||||
#: lms/templates/emails/lms_invite_request_approved.html:11
|
#: lms/templates/emails/lms_invite_request_approved.html:11
|
||||||
msgid "You can also copy-paste following link in your browser"
|
msgid "You can also copy-paste following link in your browser"
|
||||||
@@ -5908,11 +5837,11 @@ msgstr "Du kan prova detta frågesport {0}."
|
|||||||
msgid "You can find their resume attached to this email."
|
msgid "You can find their resume attached to this email."
|
||||||
msgstr "Du kan hitta deras CV bifogat till detta e-post meddelande."
|
msgstr "Du kan hitta deras CV bifogat till detta e-post meddelande."
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:115
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:116
|
||||||
msgid "You cannot schedule evaluations after {0}."
|
msgid "You cannot schedule evaluations after {0}."
|
||||||
msgstr "Du kan inte schemalägga utvärderingar efter {0}."
|
msgstr "Du kan inte schemalägga utvärderingar efter {0}."
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:104
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:105
|
||||||
msgid "You cannot schedule evaluations for past slots."
|
msgid "You cannot schedule evaluations for past slots."
|
||||||
msgstr "Du kan inte schemalägga utvärderingar för förflutna tider."
|
msgstr "Du kan inte schemalägga utvärderingar för förflutna tider."
|
||||||
|
|
||||||
@@ -5945,7 +5874,7 @@ msgstr "Du har redan sökt detta jobb."
|
|||||||
msgid "You have already exceeded the maximum number of attempts allowed for this quiz."
|
msgid "You have already exceeded the maximum number of attempts allowed for this quiz."
|
||||||
msgstr "Du har redan överskridit maximal antalet försök som tillåts för denna frågesport."
|
msgstr "Du har redan överskridit maximal antalet försök som tillåts för denna frågesport."
|
||||||
|
|
||||||
#: lms/lms/api.py:237
|
#: lms/lms/api.py:243
|
||||||
msgid "You have already purchased the certificate for this course."
|
msgid "You have already purchased the certificate for this course."
|
||||||
msgstr "Du har redan köpt certifikat för denna kurs."
|
msgstr "Du har redan köpt certifikat för denna kurs."
|
||||||
|
|
||||||
@@ -5985,10 +5914,6 @@ msgstr "Du har valt att bli meddelad om denna kurs. Du kommer att få ett e-post
|
|||||||
msgid "You need to login first to enroll for this course"
|
msgid "You need to login first to enroll for this course"
|
||||||
msgstr "Du måste logga in först för att registrera dig till denna kurs"
|
msgstr "Du måste logga in först för att registrera dig till denna kurs"
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:71
|
|
||||||
msgid "You will be redirected to Frappe Cloud soon."
|
|
||||||
msgstr "Du kommer snart att omdirigeras till Frappe Cloud."
|
|
||||||
|
|
||||||
#: frontend/src/components/Quiz.vue:27 lms/templates/quiz/quiz.html:11
|
#: frontend/src/components/Quiz.vue:27 lms/templates/quiz/quiz.html:11
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "You will have to get {0}% correct answers in order to pass the quiz."
|
msgid "You will have to get {0}% correct answers in order to pass the quiz."
|
||||||
@@ -6026,7 +5951,7 @@ msgstr "Din kalender är konfigurerad."
|
|||||||
msgid "Your evaluation for the course {0} has been scheduled on {1} at {2} {3}."
|
msgid "Your evaluation for the course {0} has been scheduled on {1} at {2} {3}."
|
||||||
msgstr "Din utvärdering av kurs {0} är schemalagd {1} kl. {2} {3}."
|
msgstr "Din utvärdering av kurs {0} är schemalagd {1} kl. {2} {3}."
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:125
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:126
|
||||||
msgid "Your evaluation slot has been booked"
|
msgid "Your evaluation slot has been booked"
|
||||||
msgstr "Din utvärdering plats är bokad"
|
msgstr "Din utvärdering plats är bokad"
|
||||||
|
|
||||||
@@ -6127,7 +6052,7 @@ msgstr "veckor"
|
|||||||
msgid "you can"
|
msgid "you can"
|
||||||
msgstr "du kan"
|
msgstr "du kan"
|
||||||
|
|
||||||
#: lms/lms/api.py:802 lms/lms/api.py:810
|
#: lms/lms/api.py:808 lms/lms/api.py:816
|
||||||
msgid "{0} Settings not found"
|
msgid "{0} Settings not found"
|
||||||
msgstr "{0} Inställningar hittades inte"
|
msgstr "{0} Inställningar hittades inte"
|
||||||
|
|
||||||
@@ -6167,7 +6092,7 @@ msgstr "{0} är redan certifierad för kurs {1}"
|
|||||||
msgid "{0} is your evaluator"
|
msgid "{0} is your evaluator"
|
||||||
msgstr "{0} är din utvärderare"
|
msgstr "{0} är din utvärderare"
|
||||||
|
|
||||||
#: lms/lms/utils.py:681
|
#: lms/lms/utils.py:682
|
||||||
msgid "{0} mentioned you in a comment"
|
msgid "{0} mentioned you in a comment"
|
||||||
msgstr "{0} nämnde dig i en kommentar"
|
msgstr "{0} nämnde dig i en kommentar"
|
||||||
|
|
||||||
@@ -6175,11 +6100,11 @@ msgstr "{0} nämnde dig i en kommentar"
|
|||||||
msgid "{0} mentioned you in a comment in your batch."
|
msgid "{0} mentioned you in a comment in your batch."
|
||||||
msgstr "{0} nämnde dig i en kommentar i din grupp."
|
msgstr "{0} nämnde dig i en kommentar i din grupp."
|
||||||
|
|
||||||
#: lms/lms/utils.py:634 lms/lms/utils.py:640
|
#: lms/lms/utils.py:635 lms/lms/utils.py:641
|
||||||
msgid "{0} mentioned you in a comment in {1}"
|
msgid "{0} mentioned you in a comment in {1}"
|
||||||
msgstr "{0} hänvisade dig i kommentar i {1}"
|
msgstr "{0} hänvisade dig i kommentar i {1}"
|
||||||
|
|
||||||
#: lms/lms/utils.py:457
|
#: lms/lms/utils.py:458
|
||||||
msgid "{0}k"
|
msgid "{0}k"
|
||||||
msgstr "{0}k"
|
msgstr "{0}k"
|
||||||
|
|
||||||
|
|||||||
6140
lms/locale/th.po
Normal file
6140
lms/locale/th.po
Normal file
File diff suppressed because it is too large
Load Diff
247
lms/locale/tr.po
247
lms/locale/tr.po
@@ -2,8 +2,8 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: frappe\n"
|
"Project-Id-Version: frappe\n"
|
||||||
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
|
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
|
||||||
"POT-Creation-Date: 2025-02-28 16:04+0000\n"
|
"POT-Creation-Date: 2025-03-07 16:04+0000\n"
|
||||||
"PO-Revision-Date: 2025-03-03 21:29\n"
|
"PO-Revision-Date: 2025-03-10 22:46\n"
|
||||||
"Last-Translator: jannat@frappe.io\n"
|
"Last-Translator: jannat@frappe.io\n"
|
||||||
"Language-Team: Turkish\n"
|
"Language-Team: Turkish\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -228,7 +228,7 @@ msgstr ""
|
|||||||
msgid "All Certified Participants"
|
msgid "All Certified Participants"
|
||||||
msgstr "Tüm Sertifikalı Katılımcılar"
|
msgstr "Tüm Sertifikalı Katılımcılar"
|
||||||
|
|
||||||
#: lms/lms/widgets/BreadCrumb.html:3
|
#: frontend/src/pages/Courses.vue:26 lms/lms/widgets/BreadCrumb.html:3
|
||||||
msgid "All Courses"
|
msgid "All Courses"
|
||||||
msgstr "Tüm Kurslar"
|
msgstr "Tüm Kurslar"
|
||||||
|
|
||||||
@@ -268,7 +268,7 @@ msgstr "Gelecekteki tarihlere erişime izin ver"
|
|||||||
msgid "Allow self enrollment"
|
msgid "Allow self enrollment"
|
||||||
msgstr "Kendi Kendine Kayıt Olmaya İzin Ver"
|
msgstr "Kendi Kendine Kayıt Olmaya İzin Ver"
|
||||||
|
|
||||||
#: lms/overrides/user.py:199
|
#: lms/lms/user.py:34
|
||||||
msgid "Already Registered"
|
msgid "Already Registered"
|
||||||
msgstr "Zaten kayıltı"
|
msgstr "Zaten kayıltı"
|
||||||
|
|
||||||
@@ -378,7 +378,7 @@ msgstr "Arşivlendi"
|
|||||||
msgid "Are you sure you want to cancel this evaluation? This action cannot be undone."
|
msgid "Are you sure you want to cancel this evaluation? This action cannot be undone."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/UserDropdown.vue:209
|
#: frontend/src/components/UserDropdown.vue:169
|
||||||
msgid "Are you sure you want to login to your Frappe Cloud dashboard?"
|
msgid "Are you sure you want to login to your Frappe Cloud dashboard?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -492,12 +492,12 @@ msgid "Auto Assign"
|
|||||||
msgstr "Otomatik Atama"
|
msgstr "Otomatik Atama"
|
||||||
|
|
||||||
#. Label of the auto_recording (Select) field in DocType 'LMS Live Class'
|
#. Label of the auto_recording (Select) field in DocType 'LMS Live Class'
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:71
|
#: frontend/src/components/Modals/LiveClassModal.vue:77
|
||||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||||
msgid "Auto Recording"
|
msgid "Auto Recording"
|
||||||
msgstr "Otomatik Kayıt"
|
msgstr "Otomatik Kayıt"
|
||||||
|
|
||||||
#: frontend/src/components/CourseCard.vue:50
|
#: frontend/src/components/CourseCard.vue:51
|
||||||
#: frontend/src/pages/CourseDetail.vue:20
|
#: frontend/src/pages/CourseDetail.vue:20
|
||||||
msgid "Average Rating"
|
msgid "Average Rating"
|
||||||
msgstr "Ortalama Puan"
|
msgstr "Ortalama Puan"
|
||||||
@@ -739,7 +739,7 @@ msgstr "Günlük Giyim"
|
|||||||
#. Label of the category (Link) field in DocType 'LMS Course'
|
#. Label of the category (Link) field in DocType 'LMS Course'
|
||||||
#: frontend/src/pages/BatchForm.vue:190 frontend/src/pages/Batches.vue:55
|
#: frontend/src/pages/BatchForm.vue:190 frontend/src/pages/Batches.vue:55
|
||||||
#: frontend/src/pages/CertifiedParticipants.vue:37
|
#: frontend/src/pages/CertifiedParticipants.vue:37
|
||||||
#: frontend/src/pages/CourseForm.vue:147 frontend/src/pages/Courses.vue:17
|
#: frontend/src/pages/CourseForm.vue:147 frontend/src/pages/Courses.vue:55
|
||||||
#: frontend/src/pages/JobDetail.vue:96 lms/lms/doctype/lms_batch/lms_batch.json
|
#: frontend/src/pages/JobDetail.vue:96 lms/lms/doctype/lms_batch/lms_batch.json
|
||||||
#: lms/lms/doctype/lms_category/lms_category.json
|
#: lms/lms/doctype/lms_category/lms_category.json
|
||||||
#: lms/lms/doctype/lms_course/lms_course.json
|
#: lms/lms/doctype/lms_course/lms_course.json
|
||||||
@@ -790,12 +790,12 @@ msgstr ""
|
|||||||
#. Enrollment'
|
#. Enrollment'
|
||||||
#. Label of a Card Break in the LMS Workspace
|
#. Label of a Card Break in the LMS Workspace
|
||||||
#. Label of a Link in the LMS Workspace
|
#. Label of a Link in the LMS Workspace
|
||||||
#: frontend/src/components/CourseCard.vue:110
|
#: frontend/src/components/CourseCard.vue:111
|
||||||
#: frontend/src/components/Modals/Event.vue:371
|
#: frontend/src/components/Modals/Event.vue:371
|
||||||
#: frontend/src/pages/BatchForm.vue:37 frontend/src/pages/Batches.vue:38
|
#: frontend/src/pages/BatchForm.vue:37 frontend/src/pages/Batches.vue:38
|
||||||
#: frontend/src/pages/CourseCertification.vue:10
|
#: frontend/src/pages/CourseCertification.vue:10
|
||||||
#: frontend/src/pages/CourseCertification.vue:114
|
#: frontend/src/pages/CourseCertification.vue:114
|
||||||
#: lms/fixtures/custom_field.json
|
#: frontend/src/pages/Courses.vue:38 lms/fixtures/custom_field.json
|
||||||
#: lms/lms/doctype/certification/certification.json
|
#: lms/lms/doctype/certification/certification.json
|
||||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
||||||
@@ -912,10 +912,6 @@ msgstr "Açık"
|
|||||||
msgid "Clearly Defined Role"
|
msgid "Clearly Defined Role"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:75
|
|
||||||
msgid "Click here to login"
|
|
||||||
msgstr "Giriş yapmak için buraya tıklayın"
|
|
||||||
|
|
||||||
#: frontend/src/components/LessonHelp.vue:30
|
#: frontend/src/components/LessonHelp.vue:30
|
||||||
msgid "Click on the add icon in the editor and select Quiz from the menu. It opens up a dialog, where you can either select a quiz from the list or create a new quiz. When you select the Create New option it redirects you to the quiz creation page."
|
msgid "Click on the add icon in the editor and select Quiz from the menu. It opens up a dialog, where you can either select a quiz from the list or create a new quiz. When you select the Create New option it redirects you to the quiz creation page."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1084,7 +1080,7 @@ msgstr "Kayıt İşlemini Tamamlayın"
|
|||||||
msgid "Complete Your Enrollment"
|
msgid "Complete Your Enrollment"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_payment/lms_payment.py:40
|
#: lms/lms/doctype/lms_payment/lms_payment.py:55
|
||||||
msgid "Complete Your Enrollment - Don't miss out!"
|
msgid "Complete Your Enrollment - Don't miss out!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -1125,7 +1121,11 @@ msgstr ""
|
|||||||
msgid "Condition must be valid python code."
|
msgid "Condition must be valid python code."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/UserDropdown.vue:214
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.js:7
|
||||||
|
msgid "Conduct Evaluation"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: frontend/src/components/UserDropdown.vue:174
|
||||||
msgid "Confirm"
|
msgid "Confirm"
|
||||||
msgstr "Onayla"
|
msgstr "Onayla"
|
||||||
|
|
||||||
@@ -1166,7 +1166,7 @@ msgstr "Öğrenmeye Devam Et"
|
|||||||
msgid "Contract"
|
msgid "Contract"
|
||||||
msgstr "Sözleşme"
|
msgstr "Sözleşme"
|
||||||
|
|
||||||
#: lms/lms/utils.py:437
|
#: lms/lms/utils.py:438
|
||||||
msgid "Cookie Policy"
|
msgid "Cookie Policy"
|
||||||
msgstr "Çerez Politikası"
|
msgstr "Çerez Politikası"
|
||||||
|
|
||||||
@@ -1382,7 +1382,7 @@ msgstr "Kurs {0} bu gruba zaten eklenmiştir."
|
|||||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:79
|
#: frontend/src/components/Modals/BatchStudentProgress.vue:79
|
||||||
#: frontend/src/pages/BatchDetail.vue:21 frontend/src/pages/BatchDetail.vue:70
|
#: frontend/src/pages/BatchDetail.vue:21 frontend/src/pages/BatchDetail.vue:70
|
||||||
#: frontend/src/pages/CourseCertification.vue:106
|
#: frontend/src/pages/CourseCertification.vue:106
|
||||||
#: frontend/src/pages/Courses.vue:8 frontend/src/pages/Statistics.vue:21
|
#: frontend/src/pages/Courses.vue:314 frontend/src/pages/Statistics.vue:21
|
||||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||||
msgid "Courses"
|
msgid "Courses"
|
||||||
@@ -1393,10 +1393,6 @@ msgstr "Kurs"
|
|||||||
msgid "Courses Completed"
|
msgid "Courses Completed"
|
||||||
msgstr "Tamamlanan Kurslar"
|
msgstr "Tamamlanan Kurslar"
|
||||||
|
|
||||||
#: lms/lms/web_template/courses_mentored/courses_mentored.html:4
|
|
||||||
msgid "Courses Mentored"
|
|
||||||
msgstr "Mentorluk Yapılan Kurslar"
|
|
||||||
|
|
||||||
#: frontend/src/components/BatchCourses.vue:151
|
#: frontend/src/components/BatchCourses.vue:151
|
||||||
msgid "Courses deleted successfully"
|
msgid "Courses deleted successfully"
|
||||||
msgstr "Kurslar başarıyla silindi"
|
msgstr "Kurslar başarıyla silindi"
|
||||||
@@ -1412,14 +1408,10 @@ msgid "Create"
|
|||||||
msgstr "Oluştur"
|
msgstr "Oluştur"
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.js:7
|
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.js:7
|
||||||
msgid "Create LMS Certificate"
|
msgid "Create Certificate"
|
||||||
msgstr "ÖYS Sertifikası Oluştur"
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.js:8
|
#: lms/templates/onboarding_header.html:19
|
||||||
msgid "Create LMS Certificate Evaluation"
|
|
||||||
msgstr "ÖYS Sertifika Değerlendirmesi Oluştur"
|
|
||||||
|
|
||||||
#: frontend/src/pages/Courses.vue:136 lms/templates/onboarding_header.html:19
|
|
||||||
msgid "Create a Course"
|
msgid "Create a Course"
|
||||||
msgstr "Kurs Oluştur"
|
msgstr "Kurs Oluştur"
|
||||||
|
|
||||||
@@ -1435,7 +1427,8 @@ msgstr "Bir Kurs Oluştur"
|
|||||||
msgid "Create a new question"
|
msgid "Create a new question"
|
||||||
msgstr "Yeni bir soru oluştur"
|
msgstr "Yeni bir soru oluştur"
|
||||||
|
|
||||||
#: frontend/src/pages/Assignments.vue:163
|
#: frontend/src/pages/Assignments.vue:163 frontend/src/pages/Courses.vue:287
|
||||||
|
#: frontend/src/pages/Courses.vue:307
|
||||||
msgid "Created"
|
msgid "Created"
|
||||||
msgstr "Oluşturdu"
|
msgstr "Oluşturdu"
|
||||||
|
|
||||||
@@ -1488,7 +1481,7 @@ msgstr "Gösterge Paneli"
|
|||||||
#. Label of the date (Date) field in DocType 'Scheduled Flow'
|
#. Label of the date (Date) field in DocType 'Scheduled Flow'
|
||||||
#: frontend/src/components/Modals/EvaluationModal.vue:26
|
#: frontend/src/components/Modals/EvaluationModal.vue:26
|
||||||
#: frontend/src/components/Modals/Event.vue:40
|
#: frontend/src/components/Modals/Event.vue:40
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:55
|
#: frontend/src/components/Modals/LiveClassModal.vue:61
|
||||||
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
|
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
|
||||||
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
|
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||||
@@ -1587,7 +1580,7 @@ msgstr "Bu dersi silmek onu kurstan kalıcı olarak kaldıracaktır. Bu eylem ge
|
|||||||
#. Label of the description (Small Text) field in DocType 'LMS Exercise'
|
#. 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 (Text) field in DocType 'LMS Live Class'
|
||||||
#. Label of the description (Small Text) field in DocType 'Work Experience'
|
#. Label of the description (Small Text) field in DocType 'Work Experience'
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:78
|
#: frontend/src/components/Modals/LiveClassModal.vue:84
|
||||||
#: frontend/src/pages/BatchForm.vue:224 frontend/src/pages/JobCreation.vue:50
|
#: frontend/src/pages/BatchForm.vue:224 frontend/src/pages/JobCreation.vue:50
|
||||||
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
||||||
#: lms/lms/doctype/certification/certification.json
|
#: lms/lms/doctype/certification/certification.json
|
||||||
@@ -1614,10 +1607,6 @@ msgstr ""
|
|||||||
msgid "Details"
|
msgid "Details"
|
||||||
msgstr "Ayrıntılar"
|
msgstr "Ayrıntılar"
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:30
|
|
||||||
msgid "Didn't receive the code?"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: frontend/src/pages/CourseForm.vue:194
|
#: frontend/src/pages/CourseForm.vue:194
|
||||||
msgid "Disable Self Enrollment"
|
msgid "Disable Self Enrollment"
|
||||||
msgstr "Kendi Kendine Kayıt Olmayı Devre Dışı Bırak"
|
msgstr "Kendi Kendine Kayıt Olmayı Devre Dışı Bırak"
|
||||||
@@ -1668,7 +1657,7 @@ msgstr "Bu soru için yinelenen seçenekler bulundu."
|
|||||||
#. Label of the duration (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 (Data) field in DocType 'LMS Batch Timetable'
|
||||||
#. Label of the duration (Int) field in DocType 'LMS Live Class'
|
#. Label of the duration (Int) field in DocType 'LMS Live Class'
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:62
|
#: frontend/src/components/Modals/LiveClassModal.vue:68
|
||||||
#: lms/lms/doctype/cohort/cohort.json
|
#: lms/lms/doctype/cohort/cohort.json
|
||||||
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
|
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
|
||||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||||
@@ -1680,7 +1669,7 @@ msgstr "Süre"
|
|||||||
msgid "Duration (in minutes)"
|
msgid "Duration (in minutes)"
|
||||||
msgstr "Süre (dk)"
|
msgstr "Süre (dk)"
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:58
|
#: frontend/src/components/Modals/LiveClassModal.vue:64
|
||||||
msgid "Duration of the live class in minutes"
|
msgid "Duration of the live class in minutes"
|
||||||
msgstr "Canlı dersin dakika cinsinden süresi"
|
msgstr "Canlı dersin dakika cinsinden süresi"
|
||||||
|
|
||||||
@@ -1826,11 +1815,12 @@ msgstr "Bitiş Zamanı"
|
|||||||
msgid "Enroll Now"
|
msgid "Enroll Now"
|
||||||
msgstr "Hemen Kaydol"
|
msgstr "Hemen Kaydol"
|
||||||
|
|
||||||
#: frontend/src/pages/Batches.vue:292
|
#: frontend/src/pages/Batches.vue:292 frontend/src/pages/Courses.vue:285
|
||||||
|
#: frontend/src/pages/Courses.vue:305
|
||||||
msgid "Enrolled"
|
msgid "Enrolled"
|
||||||
msgstr "Kayıtlı"
|
msgstr "Kayıtlı"
|
||||||
|
|
||||||
#: frontend/src/components/CourseCard.vue:41
|
#: frontend/src/components/CourseCard.vue:42
|
||||||
#: frontend/src/components/CourseCardOverlay.vue:106
|
#: frontend/src/components/CourseCardOverlay.vue:106
|
||||||
#: frontend/src/pages/CourseDetail.vue:33
|
#: frontend/src/pages/CourseDetail.vue:33
|
||||||
msgid "Enrolled Students"
|
msgid "Enrolled Students"
|
||||||
@@ -1849,11 +1839,11 @@ msgstr ""
|
|||||||
msgid "Enrollment Count"
|
msgid "Enrollment Count"
|
||||||
msgstr "Kayıt Sayısı"
|
msgstr "Kayıt Sayısı"
|
||||||
|
|
||||||
#: lms/lms/utils.py:1769
|
#: lms/lms/utils.py:1898
|
||||||
msgid "Enrollment Failed"
|
msgid "Enrollment Failed"
|
||||||
msgstr "Kayıt Başarısız"
|
msgstr "Kayıt Başarısız"
|
||||||
|
|
||||||
#. Label of the enrollments (Data) field in DocType 'LMS Course'
|
#. Label of the enrollments (Int) field in DocType 'LMS Course'
|
||||||
#. Label of a chart in the LMS Workspace
|
#. Label of a chart in the LMS Workspace
|
||||||
#. Label of a shortcut in the LMS Workspace
|
#. Label of a shortcut in the LMS Workspace
|
||||||
#: frontend/src/pages/Statistics.vue:51
|
#: frontend/src/pages/Statistics.vue:51
|
||||||
@@ -2057,14 +2047,6 @@ msgstr "Daha Fazlasını Keşfedin"
|
|||||||
msgid "Fail"
|
msgid "Fail"
|
||||||
msgstr "Başarısız"
|
msgstr "Başarısız"
|
||||||
|
|
||||||
#: frontend/src/components/UserDropdown.vue:243
|
|
||||||
msgid "Failed to login to Frappe Cloud"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:91
|
|
||||||
msgid "Failed to resend code"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. Label of the featured (Check) field in DocType 'LMS Course'
|
#. Label of the featured (Check) field in DocType 'LMS Course'
|
||||||
#: frontend/src/components/CourseCard.vue:16
|
#: frontend/src/components/CourseCard.vue:16
|
||||||
#: frontend/src/pages/CourseForm.vue:189
|
#: frontend/src/pages/CourseForm.vue:189
|
||||||
@@ -2125,10 +2107,6 @@ msgstr ""
|
|||||||
msgid "Formal Wear"
|
msgid "Formal Wear"
|
||||||
msgstr "Resmi Giyim"
|
msgstr "Resmi Giyim"
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:70
|
|
||||||
msgid "Frappe Cloud Login Successful"
|
|
||||||
msgstr "Frappe Cloud Girişi Başarılı"
|
|
||||||
|
|
||||||
#: lms/lms/widgets/CourseCard.html:114
|
#: lms/lms/widgets/CourseCard.html:114
|
||||||
msgid "Free"
|
msgid "Free"
|
||||||
msgstr "Serbest"
|
msgstr "Serbest"
|
||||||
@@ -2212,7 +2190,7 @@ msgstr "Genel"
|
|||||||
msgid "Generate Certificates"
|
msgid "Generate Certificates"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.js:18
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.js:15
|
||||||
msgid "Generate Google Meet Link"
|
msgid "Generate Google Meet Link"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -2382,10 +2360,6 @@ msgstr ""
|
|||||||
msgid "If you have any questions or require assistance, feel free to contact us."
|
msgid "If you have any questions or require assistance, feel free to contact us."
|
||||||
msgstr "Herhangi bir sorunuz veya yardıma ihtiyacınız varsa bizimle iletişime geçmekten çekinmeyin."
|
msgstr "Herhangi bir sorunuz veya yardıma ihtiyacınız varsa bizimle iletişime geçmekten çekinmeyin."
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:71
|
|
||||||
msgid "If you haven't been redirected,"
|
|
||||||
msgstr "Eğer yönlendirilmediyseniz,"
|
|
||||||
|
|
||||||
#. Description of the 'Amount (USD)' (Currency) field in DocType 'LMS Batch'
|
#. Description of the 'Amount (USD)' (Currency) field in DocType 'LMS Batch'
|
||||||
#. Description of the 'Amount (USD)' (Currency) field in DocType 'LMS Course'
|
#. Description of the 'Amount (USD)' (Currency) field in DocType 'LMS Course'
|
||||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||||
@@ -2969,8 +2943,8 @@ msgstr "Ders Başlığı"
|
|||||||
|
|
||||||
#. Label of the lessons (Table) field in DocType 'Course Chapter'
|
#. Label of the lessons (Table) field in DocType 'Course Chapter'
|
||||||
#. Group in Course Chapter's connections
|
#. Group in Course Chapter's connections
|
||||||
#. Label of the lessons (Data) field in DocType 'LMS Course'
|
#. Label of the lessons (Int) field in DocType 'LMS Course'
|
||||||
#: frontend/src/components/CourseCard.vue:32
|
#: frontend/src/components/CourseCard.vue:33
|
||||||
#: frontend/src/components/CourseCardOverlay.vue:99
|
#: frontend/src/components/CourseCardOverlay.vue:99
|
||||||
#: lms/lms/doctype/course_chapter/course_chapter.json
|
#: lms/lms/doctype/course_chapter/course_chapter.json
|
||||||
#: lms/lms/doctype/lms_course/lms_course.json
|
#: lms/lms/doctype/lms_course/lms_course.json
|
||||||
@@ -3021,7 +2995,7 @@ msgid "List of quizzes"
|
|||||||
msgstr "Sınavların listesi"
|
msgstr "Sınavların listesi"
|
||||||
|
|
||||||
#. Option for the 'Status' (Select) field in DocType 'Cohort'
|
#. Option for the 'Status' (Select) field in DocType 'Cohort'
|
||||||
#: lms/lms/doctype/cohort/cohort.json
|
#: frontend/src/pages/Courses.vue:295 lms/lms/doctype/cohort/cohort.json
|
||||||
msgid "Live"
|
msgid "Live"
|
||||||
msgstr "Canlı"
|
msgstr "Canlı"
|
||||||
|
|
||||||
@@ -3039,6 +3013,7 @@ msgstr ""
|
|||||||
#: frontend/src/components/Members.vue:108
|
#: frontend/src/components/Members.vue:108
|
||||||
#: frontend/src/pages/Assignments.vue:71 frontend/src/pages/Batches.vue:94
|
#: frontend/src/pages/Assignments.vue:71 frontend/src/pages/Batches.vue:94
|
||||||
#: frontend/src/pages/CertifiedParticipants.vue:79
|
#: frontend/src/pages/CertifiedParticipants.vue:79
|
||||||
|
#: frontend/src/pages/Courses.vue:94
|
||||||
#: frontend/src/pages/QuizSubmissionList.vue:39
|
#: frontend/src/pages/QuizSubmissionList.vue:39
|
||||||
#: frontend/src/pages/Quizzes.vue:51
|
#: frontend/src/pages/Quizzes.vue:51
|
||||||
msgid "Load More"
|
msgid "Load More"
|
||||||
@@ -3071,16 +3046,7 @@ msgstr "Konum Tercihi"
|
|||||||
msgid "Login"
|
msgid "Login"
|
||||||
msgstr "Giriş"
|
msgstr "Giriş"
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:79
|
#: frontend/src/components/UserDropdown.vue:168
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:83
|
|
||||||
msgid "Login failed"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:6
|
|
||||||
msgid "Login to Frappe Cloud"
|
|
||||||
msgstr "Frappe Cloud'a Giriş Yapın"
|
|
||||||
|
|
||||||
#: frontend/src/components/UserDropdown.vue:208
|
|
||||||
msgid "Login to Frappe Cloud?"
|
msgid "Login to Frappe Cloud?"
|
||||||
msgstr "Frappe Cloud'a Giriş Yapın?"
|
msgstr "Frappe Cloud'a Giriş Yapın?"
|
||||||
|
|
||||||
@@ -3396,11 +3362,11 @@ msgstr "Moderatör"
|
|||||||
msgid "Modified By"
|
msgid "Modified By"
|
||||||
msgstr "Değiştiren"
|
msgstr "Değiştiren"
|
||||||
|
|
||||||
#: lms/lms/api.py:208
|
#: lms/lms/api.py:214
|
||||||
msgid "Module Name is incorrect or does not exist."
|
msgid "Module Name is incorrect or does not exist."
|
||||||
msgstr "Modül Adı yanlış veya mevcut değil."
|
msgstr "Modül Adı yanlış veya mevcut değil."
|
||||||
|
|
||||||
#: lms/lms/api.py:204
|
#: lms/lms/api.py:210
|
||||||
msgid "Module is incorrect."
|
msgid "Module is incorrect."
|
||||||
msgstr "Modül hatalı."
|
msgstr "Modül hatalı."
|
||||||
|
|
||||||
@@ -3430,7 +3396,8 @@ msgstr "Takvimim"
|
|||||||
|
|
||||||
#. Option for the 'Event' (Select) field in DocType 'LMS Badge'
|
#. Option for the 'Event' (Select) field in DocType 'LMS Badge'
|
||||||
#: frontend/src/pages/Assignments.vue:18 frontend/src/pages/Batches.vue:17
|
#: frontend/src/pages/Assignments.vue:18 frontend/src/pages/Batches.vue:17
|
||||||
#: frontend/src/pages/Courses.vue:48 frontend/src/pages/Programs.vue:14
|
#: frontend/src/pages/Courses.vue:17 frontend/src/pages/Courses.vue:281
|
||||||
|
#: frontend/src/pages/Courses.vue:298 frontend/src/pages/Programs.vue:14
|
||||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||||
msgid "New"
|
msgid "New"
|
||||||
msgstr "Yeni"
|
msgstr "Yeni"
|
||||||
@@ -3484,11 +3451,11 @@ msgstr "Yeni Test"
|
|||||||
msgid "New Sign Up"
|
msgid "New Sign Up"
|
||||||
msgstr "Yeni Kayıt"
|
msgstr "Yeni Kayıt"
|
||||||
|
|
||||||
#: lms/lms/utils.py:604
|
#: lms/lms/utils.py:605
|
||||||
msgid "New comment in batch {0}"
|
msgid "New comment in batch {0}"
|
||||||
msgstr "Toplu işlerde yeni yorum {0}"
|
msgstr "Toplu işlerde yeni yorum {0}"
|
||||||
|
|
||||||
#: lms/lms/utils.py:597
|
#: lms/lms/utils.py:598
|
||||||
msgid "New reply on the topic {0} in course {1}"
|
msgid "New reply on the topic {0} in course {1}"
|
||||||
msgstr "{1} dersinde {0} konusuna yeni yanıt"
|
msgstr "{1} dersinde {0} konusuna yeni yanıt"
|
||||||
|
|
||||||
@@ -3546,7 +3513,7 @@ msgstr "Sertifika yok"
|
|||||||
msgid "No courses created"
|
msgid "No courses created"
|
||||||
msgstr "Hiçbir kurs oluşturulmadı"
|
msgstr "Hiçbir kurs oluşturulmadı"
|
||||||
|
|
||||||
#: frontend/src/pages/Courses.vue:151
|
#: frontend/src/pages/Courses.vue:79
|
||||||
msgid "No courses found"
|
msgid "No courses found"
|
||||||
msgstr "Hiçbir kurs bulunamadı"
|
msgstr "Hiçbir kurs bulunamadı"
|
||||||
|
|
||||||
@@ -3598,15 +3565,11 @@ msgstr "Başvuru yok"
|
|||||||
msgid "No {0}"
|
msgid "No {0}"
|
||||||
msgstr "{0} Yok"
|
msgstr "{0} Yok"
|
||||||
|
|
||||||
#: frontend/src/pages/Courses.vue:111
|
|
||||||
msgid "No {0} courses"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lms/templates/quiz/quiz.html:147
|
#: lms/templates/quiz/quiz.html:147
|
||||||
msgid "No."
|
msgid "No."
|
||||||
msgstr "Sıra"
|
msgstr "Sıra"
|
||||||
|
|
||||||
#: lms/overrides/user.py:194
|
#: lms/lms/user.py:29
|
||||||
msgid "Not Allowed"
|
msgid "Not Allowed"
|
||||||
msgstr "İzin Verilmiyor"
|
msgstr "İzin Verilmiyor"
|
||||||
|
|
||||||
@@ -3695,7 +3658,7 @@ msgstr ""
|
|||||||
msgid "Only files of type {0} will be accepted."
|
msgid "Only files of type {0} will be accepted."
|
||||||
msgstr "Sadece {0} türündeki dosyalar kabul edilecektir."
|
msgstr "Sadece {0} türündeki dosyalar kabul edilecektir."
|
||||||
|
|
||||||
#: frontend/src/pages/CourseForm.vue:506 frontend/src/utils/index.js:533
|
#: frontend/src/pages/CourseForm.vue:506 frontend/src/utils/index.js:552
|
||||||
msgid "Only image file is allowed."
|
msgid "Only image file is allowed."
|
||||||
msgstr "Sadece resim dosyasına izin verilir."
|
msgstr "Sadece resim dosyasına izin verilir."
|
||||||
|
|
||||||
@@ -3726,10 +3689,6 @@ msgstr "Açık Kurs"
|
|||||||
msgid "Open Ended"
|
msgid "Open Ended"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/widgets/MemberCard.html:16
|
|
||||||
msgid "Open Network"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. Label of the option (Data) field in DocType 'LMS Option'
|
#. Label of the option (Data) field in DocType 'LMS Option'
|
||||||
#: frontend/src/components/Modals/Question.vue:64
|
#: frontend/src/components/Modals/Question.vue:64
|
||||||
#: lms/lms/doctype/lms_option/lms_option.json
|
#: lms/lms/doctype/lms_option/lms_option.json
|
||||||
@@ -3981,11 +3940,11 @@ msgstr "Lütfen Giriş Yapın"
|
|||||||
msgid "Please add <a href='{0}'>{1}</a> for <a href='{2}'>{3}</a> to send calendar invites for evaluations."
|
msgid "Please add <a href='{0}'>{1}</a> for <a href='{2}'>{3}</a> to send calendar invites for evaluations."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/overrides/user.py:240
|
#: lms/lms/user.py:75
|
||||||
msgid "Please ask your administrator to verify your sign-up"
|
msgid "Please ask your administrator to verify your sign-up"
|
||||||
msgstr "Lütfen yöneticinizden kayıt işleminizin doğrulamasını isteyin"
|
msgstr "Lütfen yöneticinizden kayıt işleminizin doğrulamasını isteyin"
|
||||||
|
|
||||||
#: lms/overrides/user.py:238
|
#: lms/lms/user.py:73
|
||||||
msgid "Please check your email for verification"
|
msgid "Please check your email for verification"
|
||||||
msgstr "Doğrulama için lütfen e-postanızı kontrol edin"
|
msgstr "Doğrulama için lütfen e-postanızı kontrol edin"
|
||||||
|
|
||||||
@@ -3993,7 +3952,7 @@ msgstr "Doğrulama için lütfen e-postanızı kontrol edin"
|
|||||||
msgid "Please click on the following button to set your new password"
|
msgid "Please click on the following button to set your new password"
|
||||||
msgstr "Yeni şifrenizi belirlemek için lütfen aşağıdaki linke tıklayınız"
|
msgstr "Yeni şifrenizi belirlemek için lütfen aşağıdaki linke tıklayınız"
|
||||||
|
|
||||||
#: lms/lms/utils.py:1901 lms/lms/utils.py:1905
|
#: lms/lms/utils.py:2030 lms/lms/utils.py:2034
|
||||||
msgid "Please complete the previous courses in the program to enroll in this course."
|
msgid "Please complete the previous courses in the program to enroll in this course."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -4009,7 +3968,7 @@ msgstr ""
|
|||||||
msgid "Please ensure that you complete all the questions in {0} minutes."
|
msgid "Please ensure that you complete all the questions in {0} minutes."
|
||||||
msgstr "Lütfen tüm soruları {0} dakika içinde yanıtladığınızdan emin olun."
|
msgstr "Lütfen tüm soruları {0} dakika içinde yanıtladığınızdan emin olun."
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:164
|
#: frontend/src/components/Modals/LiveClassModal.vue:170
|
||||||
msgid "Please enter a title."
|
msgid "Please enter a title."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -4018,7 +3977,7 @@ msgstr ""
|
|||||||
msgid "Please enter a valid URL."
|
msgid "Please enter a valid URL."
|
||||||
msgstr "Lütfen geçerli bir URL girin."
|
msgstr "Lütfen geçerli bir URL girin."
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:176
|
#: frontend/src/components/Modals/LiveClassModal.vue:182
|
||||||
msgid "Please enter a valid time in the format HH:mm."
|
msgid "Please enter a valid time in the format HH:mm."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -4054,7 +4013,7 @@ msgstr "Teste erişmek için lütfen giriş yapın."
|
|||||||
msgid "Please login to access this page."
|
msgid "Please login to access this page."
|
||||||
msgstr "Bu sayfaya erişebilmek için lütfen giriş yapın."
|
msgstr "Bu sayfaya erişebilmek için lütfen giriş yapın."
|
||||||
|
|
||||||
#: lms/lms/api.py:200
|
#: lms/lms/api.py:206
|
||||||
msgid "Please login to continue with payment."
|
msgid "Please login to continue with payment."
|
||||||
msgstr "Ödeme işlemine devam etmek için lütfen giriş yapın."
|
msgstr "Ödeme işlemine devam etmek için lütfen giriş yapın."
|
||||||
|
|
||||||
@@ -4067,23 +4026,23 @@ msgstr "Lütfen iyi hazırlanın ve değerlendirmelere zamanında katılın."
|
|||||||
msgid "Please schedule an evaluation to get certified."
|
msgid "Please schedule an evaluation to get certified."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:167
|
#: frontend/src/components/Modals/LiveClassModal.vue:173
|
||||||
msgid "Please select a date."
|
msgid "Please select a date."
|
||||||
msgstr "Lütfen bir tarih seçin."
|
msgstr "Lütfen bir tarih seçin."
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:191
|
#: frontend/src/components/Modals/LiveClassModal.vue:197
|
||||||
msgid "Please select a duration."
|
msgid "Please select a duration."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:188
|
#: frontend/src/components/Modals/LiveClassModal.vue:194
|
||||||
msgid "Please select a future date and time."
|
msgid "Please select a future date and time."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:170
|
#: frontend/src/components/Modals/LiveClassModal.vue:176
|
||||||
msgid "Please select a time."
|
msgid "Please select a time."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:173
|
#: frontend/src/components/Modals/LiveClassModal.vue:179
|
||||||
msgid "Please select a timezone."
|
msgid "Please select a timezone."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -4091,13 +4050,6 @@ msgstr ""
|
|||||||
msgid "Please take appropriate action at {0}"
|
msgid "Please take appropriate action at {0}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:79
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:83
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:91
|
|
||||||
#: frontend/src/components/UserDropdown.vue:244
|
|
||||||
msgid "Please try again"
|
|
||||||
msgstr "Lütfen tekrar deneyin"
|
|
||||||
|
|
||||||
#: frontend/src/components/Modals/ChapterModal.vue:177
|
#: frontend/src/components/Modals/ChapterModal.vue:177
|
||||||
msgid "Please upload a SCORM package"
|
msgid "Please upload a SCORM package"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -4210,7 +4162,7 @@ msgstr ""
|
|||||||
msgid "Primary Subgroup"
|
msgid "Primary Subgroup"
|
||||||
msgstr "Birincil Alt Grup"
|
msgstr "Birincil Alt Grup"
|
||||||
|
|
||||||
#: lms/lms/utils.py:436
|
#: lms/lms/utils.py:437
|
||||||
msgid "Privacy Policy"
|
msgid "Privacy Policy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -4478,7 +4430,7 @@ msgstr "Şimdi Kaydol"
|
|||||||
msgid "Registered"
|
msgid "Registered"
|
||||||
msgstr "Kayıtlı"
|
msgstr "Kayıtlı"
|
||||||
|
|
||||||
#: lms/overrides/user.py:201
|
#: lms/lms/user.py:36
|
||||||
msgid "Registered but disabled"
|
msgid "Registered but disabled"
|
||||||
msgstr "Kayıtlı ancak devre dışı"
|
msgstr "Kayıtlı ancak devre dışı"
|
||||||
|
|
||||||
@@ -4519,10 +4471,6 @@ msgstr "Mentorluk Talebi"
|
|||||||
msgid "Required Role"
|
msgid "Required Role"
|
||||||
msgstr "Gerekli Rol"
|
msgstr "Gerekli Rol"
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:31
|
|
||||||
msgid "Resend"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. Option for the 'Membership' (Select) field in DocType 'LMS Batch Old'
|
#. Option for the 'Membership' (Select) field in DocType 'LMS Batch Old'
|
||||||
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
|
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
|
||||||
msgid "Restricted"
|
msgid "Restricted"
|
||||||
@@ -4677,7 +4625,7 @@ msgstr "Arama"
|
|||||||
msgid "Search by Name"
|
msgid "Search by Name"
|
||||||
msgstr "İsme Göre Ara"
|
msgstr "İsme Göre Ara"
|
||||||
|
|
||||||
#: frontend/src/pages/Batches.vue:45
|
#: frontend/src/pages/Batches.vue:45 frontend/src/pages/Courses.vue:45
|
||||||
msgid "Search by Title"
|
msgid "Search by Title"
|
||||||
msgstr "Başlığa Göre Ara"
|
msgstr "Başlığa Göre Ara"
|
||||||
|
|
||||||
@@ -4819,7 +4767,7 @@ msgstr "Kenar Çubuğu"
|
|||||||
msgid "Sidebar Items"
|
msgid "Sidebar Items"
|
||||||
msgstr "Kenar Çubuğu Öğeleri"
|
msgstr "Kenar Çubuğu Öğeleri"
|
||||||
|
|
||||||
#: lms/overrides/user.py:194
|
#: lms/lms/user.py:29
|
||||||
msgid "Sign Up is disabled"
|
msgid "Sign Up is disabled"
|
||||||
msgstr "Kaydolma devre dışı bırakıldı"
|
msgstr "Kaydolma devre dışı bırakıldı"
|
||||||
|
|
||||||
@@ -4863,10 +4811,6 @@ msgstr "Yetkinlik İsmi"
|
|||||||
msgid "Skills"
|
msgid "Skills"
|
||||||
msgstr "Yetkinlikler"
|
msgstr "Yetkinlikler"
|
||||||
|
|
||||||
#: lms/overrides/user.py:42
|
|
||||||
msgid "Skills must be unique"
|
|
||||||
msgstr "Yetenekler Benzersiz Olmalıdır"
|
|
||||||
|
|
||||||
#: lms/templates/onboarding_header.html:6
|
#: lms/templates/onboarding_header.html:6
|
||||||
msgid "Skip"
|
msgid "Skip"
|
||||||
msgstr "Geç"
|
msgstr "Geç"
|
||||||
@@ -5143,7 +5087,7 @@ msgstr "Özet"
|
|||||||
msgid "Sunday"
|
msgid "Sunday"
|
||||||
msgstr "Pazar"
|
msgstr "Pazar"
|
||||||
|
|
||||||
#: lms/lms/api.py:1012
|
#: lms/lms/api.py:1018
|
||||||
msgid "Suspicious pattern found in {0}: {1}"
|
msgid "Suspicious pattern found in {0}: {1}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -5224,11 +5168,11 @@ msgstr "Takım Çalışması"
|
|||||||
msgid "Template"
|
msgid "Template"
|
||||||
msgstr "Şablon"
|
msgstr "Şablon"
|
||||||
|
|
||||||
#: lms/overrides/user.py:205
|
#: lms/lms/user.py:40
|
||||||
msgid "Temporarily Disabled"
|
msgid "Temporarily Disabled"
|
||||||
msgstr "Geçici Olarak Devre Dışı"
|
msgstr "Geçici Olarak Devre Dışı"
|
||||||
|
|
||||||
#: lms/lms/utils.py:435
|
#: lms/lms/utils.py:436
|
||||||
msgid "Terms of Use"
|
msgid "Terms of Use"
|
||||||
msgstr "Kullanım Koşulları"
|
msgstr "Kullanım Koşulları"
|
||||||
|
|
||||||
@@ -5264,7 +5208,7 @@ msgstr ""
|
|||||||
msgid "Thanks and Regards"
|
msgid "Thanks and Regards"
|
||||||
msgstr "Teşekkürler ve Saygılar"
|
msgstr "Teşekkürler ve Saygılar"
|
||||||
|
|
||||||
#: lms/lms/utils.py:1801
|
#: lms/lms/utils.py:1930
|
||||||
msgid "The batch is full. Please contact the Administrator."
|
msgid "The batch is full. Please contact the Administrator."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -5300,9 +5244,9 @@ msgstr "Şu anda mevcut toplu ders bulunmamaktadır. Gözünüzü dört açın,
|
|||||||
msgid "There are no chapters in this course. Create and manage chapters from here."
|
msgid "There are no chapters in this course. Create and manage chapters from here."
|
||||||
msgstr "Bu kursta bölüm bulunmamaktadır. Bölümleri buradan oluşturun ve yönetin."
|
msgstr "Bu kursta bölüm bulunmamaktadır. Bölümleri buradan oluşturun ve yönetin."
|
||||||
|
|
||||||
#: frontend/src/pages/Courses.vue:155
|
#: frontend/src/pages/Courses.vue:83
|
||||||
msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
|
msgid "There are no courses matching the criteria. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||||
msgstr "Şu anda mevcut toplu ders bulunmamaktadır. Gözünüzü dört açın, yeni öğrenme deneyimleri yakında yolda!"
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/pages/CertifiedParticipants.vue:92
|
#: frontend/src/pages/CertifiedParticipants.vue:92
|
||||||
msgid "There are no participants matching this criteria."
|
msgid "There are no participants matching this criteria."
|
||||||
@@ -5359,7 +5303,7 @@ msgstr ""
|
|||||||
msgid "This course has:"
|
msgid "This course has:"
|
||||||
msgstr "Bu kursta:"
|
msgstr "Bu kursta:"
|
||||||
|
|
||||||
#: lms/lms/utils.py:1644
|
#: lms/lms/utils.py:1773
|
||||||
msgid "This course is free."
|
msgid "This course is free."
|
||||||
msgstr "Bu kurs ücretsizdir."
|
msgstr "Bu kurs ücretsizdir."
|
||||||
|
|
||||||
@@ -5427,7 +5371,7 @@ msgstr ""
|
|||||||
#. Label of the timezone (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 Certificate Request'
|
#. Label of the timezone (Data) field in DocType 'LMS Certificate Request'
|
||||||
#. Label of the timezone (Data) field in DocType 'LMS Live Class'
|
#. Label of the timezone (Data) field in DocType 'LMS Live Class'
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:46
|
#: frontend/src/components/Modals/LiveClassModal.vue:45
|
||||||
#: frontend/src/pages/BatchForm.vue:120
|
#: frontend/src/pages/BatchForm.vue:120
|
||||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||||
@@ -5501,7 +5445,7 @@ msgstr "Alıcı"
|
|||||||
msgid "To Date"
|
msgid "To Date"
|
||||||
msgstr "Bitiş Tarihi"
|
msgstr "Bitiş Tarihi"
|
||||||
|
|
||||||
#: lms/lms/utils.py:1655
|
#: lms/lms/utils.py:1784
|
||||||
msgid "To join this batch, please contact the Administrator."
|
msgid "To join this batch, please contact the Administrator."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -5509,7 +5453,7 @@ msgstr ""
|
|||||||
msgid "To upload Image, Video, Audio or PDF from your system, click on the add icon and select upload from the menu. Then choose the file you want to add to the lesson and it gets added to your lesson."
|
msgid "To upload Image, Video, Audio or PDF from your system, click on the add icon and select upload from the menu. Then choose the file you want to add to the lesson and it gets added to your lesson."
|
||||||
msgstr "Sisteminizden Resim, Video, Ses veya PDF yüklemek için ekle simgesine tıklayın ve menüden yüklemeyi seçin. Ardından derse eklemek istediğiniz dosyayı seçin ve dersinize eklensin."
|
msgstr "Sisteminizden Resim, Video, Ses veya PDF yüklemek için ekle simgesine tıklayın ve menüden yüklemeyi seçin. Ardından derse eklemek istediğiniz dosyayı seçin ve dersinize eklensin."
|
||||||
|
|
||||||
#: lms/overrides/user.py:206
|
#: lms/lms/user.py:41
|
||||||
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
|
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
|
||||||
msgstr "Son zamanlarda çok fazla kullanıcı kaydoldu, bu yüzden kayıt devre dışı bırakıldı. Lütfen bir saat sonra tekrar deneyin"
|
msgstr "Son zamanlarda çok fazla kullanıcı kaydoldu, bu yüzden kayıt devre dışı bırakıldı. Lütfen bir saat sonra tekrar deneyin"
|
||||||
|
|
||||||
@@ -5626,7 +5570,8 @@ msgstr "Ayarlanmamış Rol"
|
|||||||
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request'
|
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request'
|
||||||
#. Label of the upcoming (Check) field in DocType 'LMS Course'
|
#. Label of the upcoming (Check) field in DocType 'LMS Course'
|
||||||
#: frontend/src/pages/Batches.vue:276 frontend/src/pages/Batches.vue:294
|
#: frontend/src/pages/Batches.vue:276 frontend/src/pages/Batches.vue:294
|
||||||
#: frontend/src/pages/CourseForm.vue:184 lms/lms/doctype/cohort/cohort.json
|
#: frontend/src/pages/CourseForm.vue:184 frontend/src/pages/Courses.vue:282
|
||||||
|
#: frontend/src/pages/Courses.vue:301 lms/lms/doctype/cohort/cohort.json
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||||
#: lms/lms/doctype/lms_course/lms_course.json
|
#: lms/lms/doctype/lms_course/lms_course.json
|
||||||
msgid "Upcoming"
|
msgid "Upcoming"
|
||||||
@@ -5727,14 +5672,6 @@ msgstr "Değer"
|
|||||||
msgid "Value Change"
|
msgid "Value Change"
|
||||||
msgstr "Değer Değişimi"
|
msgstr "Değer Değişimi"
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:26
|
|
||||||
msgid "Verification Code"
|
|
||||||
msgstr "Doğrulama Kodu"
|
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:9
|
|
||||||
msgid "Verify"
|
|
||||||
msgstr "Doğrula"
|
|
||||||
|
|
||||||
#. Label of the video_link (Data) field in DocType 'LMS Course'
|
#. Label of the video_link (Data) field in DocType 'LMS Course'
|
||||||
#: lms/lms/doctype/lms_course/lms_course.json
|
#: lms/lms/doctype/lms_course/lms_course.json
|
||||||
msgid "Video Embed Link"
|
msgid "Video Embed Link"
|
||||||
@@ -5776,10 +5713,6 @@ msgstr "Yaklaşan grubumuza kaydolduğunuzu bildirmekten mutluluk duyuyoruz. Teb
|
|||||||
msgid "We have a limited number of seats, and they won't be available for long!"
|
msgid "We have a limited number of seats, and they won't be available for long!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:21
|
|
||||||
msgid "We have sent the verificaton code to your email id "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lms/templates/emails/payment_reminder.html:4
|
#: lms/templates/emails/payment_reminder.html:4
|
||||||
msgid "We noticed that you started enrolling in the"
|
msgid "We noticed that you started enrolling in the"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -5855,7 +5788,7 @@ msgstr "Bir inceleme yazın"
|
|||||||
msgid "Write your answer here"
|
msgid "Write your answer here"
|
||||||
msgstr "Cevabınızı buraya yazın"
|
msgstr "Cevabınızı buraya yazın"
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:95
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:96
|
||||||
msgid "You already have an evaluation on {0} at {1} for the course {2}."
|
msgid "You already have an evaluation on {0} at {1} for the course {2}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -5863,11 +5796,11 @@ msgstr ""
|
|||||||
msgid "You are already certified for this course. Click on the card below to open your certificate."
|
msgid "You are already certified for this course. Click on the card below to open your certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/api.py:224
|
#: lms/lms/api.py:230
|
||||||
msgid "You are already enrolled for this batch."
|
msgid "You are already enrolled for this batch."
|
||||||
msgstr "Bu gruba zaten kayıtlısınız."
|
msgstr "Bu gruba zaten kayıtlısınız."
|
||||||
|
|
||||||
#: lms/lms/api.py:216
|
#: lms/lms/api.py:222
|
||||||
msgid "You are already enrolled for this course."
|
msgid "You are already enrolled for this course."
|
||||||
msgstr "Bu kursa zaten kayıtlısınız."
|
msgstr "Bu kursa zaten kayıtlısınız."
|
||||||
|
|
||||||
@@ -5887,10 +5820,6 @@ msgstr "Kayıtlı değilsiniz"
|
|||||||
msgid "You are not enrolled in this course. Please enroll to access this lesson."
|
msgid "You are not enrolled in this course. Please enroll to access this lesson."
|
||||||
msgstr "Bu derse kayıtlı değilsiniz. Bu derse erişmek için lütfen kaydolun."
|
msgstr "Bu derse kayıtlı değilsiniz. Bu derse erişmek için lütfen kaydolun."
|
||||||
|
|
||||||
#: frontend/src/pages/Courses.vue:139
|
|
||||||
msgid "You can add chapters and lessons to it."
|
|
||||||
msgstr "İçerisine bölümler ve dersler ekleyebilirsiniz."
|
|
||||||
|
|
||||||
#: lms/templates/emails/lms_course_interest.html:13
|
#: lms/templates/emails/lms_course_interest.html:13
|
||||||
#: lms/templates/emails/lms_invite_request_approved.html:11
|
#: lms/templates/emails/lms_invite_request_approved.html:11
|
||||||
msgid "You can also copy-paste following link in your browser"
|
msgid "You can also copy-paste following link in your browser"
|
||||||
@@ -5908,11 +5837,11 @@ msgstr "Bu testi {0} deneyebilirsiniz."
|
|||||||
msgid "You can find their resume attached to this email."
|
msgid "You can find their resume attached to this email."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:115
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:116
|
||||||
msgid "You cannot schedule evaluations after {0}."
|
msgid "You cannot schedule evaluations after {0}."
|
||||||
msgstr "{0} tarihinden sonra değerlendirme planlayamazsınız."
|
msgstr "{0} tarihinden sonra değerlendirme planlayamazsınız."
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:104
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:105
|
||||||
msgid "You cannot schedule evaluations for past slots."
|
msgid "You cannot schedule evaluations for past slots."
|
||||||
msgstr "Geçmiş dönemler için değerlendirme planlayamazsınız."
|
msgstr "Geçmiş dönemler için değerlendirme planlayamazsınız."
|
||||||
|
|
||||||
@@ -5945,7 +5874,7 @@ msgstr "Bu iş için zaten başvurdunuz."
|
|||||||
msgid "You have already exceeded the maximum number of attempts allowed for this quiz."
|
msgid "You have already exceeded the maximum number of attempts allowed for this quiz."
|
||||||
msgstr "Bu sınav için izin verilen maksimum deneme sayısını zaten aştınız."
|
msgstr "Bu sınav için izin verilen maksimum deneme sayısını zaten aştınız."
|
||||||
|
|
||||||
#: lms/lms/api.py:237
|
#: lms/lms/api.py:243
|
||||||
msgid "You have already purchased the certificate for this course."
|
msgid "You have already purchased the certificate for this course."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -5985,10 +5914,6 @@ msgstr "Bu kurs için bildirim almayı seçtiniz. Kurs kullanılabilir olduğund
|
|||||||
msgid "You need to login first to enroll for this course"
|
msgid "You need to login first to enroll for this course"
|
||||||
msgstr "Bu kursa kaydolmak için önce giriş yapmanız gerekiyor"
|
msgstr "Bu kursa kaydolmak için önce giriş yapmanız gerekiyor"
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:71
|
|
||||||
msgid "You will be redirected to Frappe Cloud soon."
|
|
||||||
msgstr "Yakında Frappe Cloud'a yönlendirileceksiniz."
|
|
||||||
|
|
||||||
#: frontend/src/components/Quiz.vue:27 lms/templates/quiz/quiz.html:11
|
#: frontend/src/components/Quiz.vue:27 lms/templates/quiz/quiz.html:11
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "You will have to get {0}% correct answers in order to pass the quiz."
|
msgid "You will have to get {0}% correct answers in order to pass the quiz."
|
||||||
@@ -6026,7 +5951,7 @@ msgstr "Takviminiz hazır."
|
|||||||
msgid "Your evaluation for the course {0} has been scheduled on {1} at {2} {3}."
|
msgid "Your evaluation for the course {0} has been scheduled on {1} at {2} {3}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:125
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:126
|
||||||
msgid "Your evaluation slot has been booked"
|
msgid "Your evaluation slot has been booked"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -6127,7 +6052,7 @@ msgstr ""
|
|||||||
msgid "you can"
|
msgid "you can"
|
||||||
msgstr "yapabilirsin"
|
msgstr "yapabilirsin"
|
||||||
|
|
||||||
#: lms/lms/api.py:802 lms/lms/api.py:810
|
#: lms/lms/api.py:808 lms/lms/api.py:816
|
||||||
msgid "{0} Settings not found"
|
msgid "{0} Settings not found"
|
||||||
msgstr "{0} Ayarları bulunamadı"
|
msgstr "{0} Ayarları bulunamadı"
|
||||||
|
|
||||||
@@ -6167,7 +6092,7 @@ msgstr ""
|
|||||||
msgid "{0} is your evaluator"
|
msgid "{0} is your evaluator"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/utils.py:681
|
#: lms/lms/utils.py:682
|
||||||
msgid "{0} mentioned you in a comment"
|
msgid "{0} mentioned you in a comment"
|
||||||
msgstr "{0} bir yorumda sizden bahsetti"
|
msgstr "{0} bir yorumda sizden bahsetti"
|
||||||
|
|
||||||
@@ -6175,11 +6100,11 @@ msgstr "{0} bir yorumda sizden bahsetti"
|
|||||||
msgid "{0} mentioned you in a comment in your batch."
|
msgid "{0} mentioned you in a comment in your batch."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/utils.py:634 lms/lms/utils.py:640
|
#: lms/lms/utils.py:635 lms/lms/utils.py:641
|
||||||
msgid "{0} mentioned you in a comment in {1}"
|
msgid "{0} mentioned you in a comment in {1}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/utils.py:457
|
#: lms/lms/utils.py:458
|
||||||
msgid "{0}k"
|
msgid "{0}k"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
243
lms/locale/zh.po
243
lms/locale/zh.po
@@ -2,8 +2,8 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: frappe\n"
|
"Project-Id-Version: frappe\n"
|
||||||
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
|
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
|
||||||
"POT-Creation-Date: 2025-02-28 16:04+0000\n"
|
"POT-Creation-Date: 2025-03-07 16:04+0000\n"
|
||||||
"PO-Revision-Date: 2025-03-03 21:29\n"
|
"PO-Revision-Date: 2025-03-10 22:46\n"
|
||||||
"Last-Translator: jannat@frappe.io\n"
|
"Last-Translator: jannat@frappe.io\n"
|
||||||
"Language-Team: Chinese Simplified\n"
|
"Language-Team: Chinese Simplified\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -228,7 +228,7 @@ msgstr ""
|
|||||||
msgid "All Certified Participants"
|
msgid "All Certified Participants"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/widgets/BreadCrumb.html:3
|
#: frontend/src/pages/Courses.vue:26 lms/lms/widgets/BreadCrumb.html:3
|
||||||
msgid "All Courses"
|
msgid "All Courses"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -268,7 +268,7 @@ msgstr ""
|
|||||||
msgid "Allow self enrollment"
|
msgid "Allow self enrollment"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/overrides/user.py:199
|
#: lms/lms/user.py:34
|
||||||
msgid "Already Registered"
|
msgid "Already Registered"
|
||||||
msgstr "已注册"
|
msgstr "已注册"
|
||||||
|
|
||||||
@@ -378,7 +378,7 @@ msgstr ""
|
|||||||
msgid "Are you sure you want to cancel this evaluation? This action cannot be undone."
|
msgid "Are you sure you want to cancel this evaluation? This action cannot be undone."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/UserDropdown.vue:209
|
#: frontend/src/components/UserDropdown.vue:169
|
||||||
msgid "Are you sure you want to login to your Frappe Cloud dashboard?"
|
msgid "Are you sure you want to login to your Frappe Cloud dashboard?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -492,12 +492,12 @@ msgid "Auto Assign"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. Label of the auto_recording (Select) field in DocType 'LMS Live Class'
|
#. Label of the auto_recording (Select) field in DocType 'LMS Live Class'
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:71
|
#: frontend/src/components/Modals/LiveClassModal.vue:77
|
||||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||||
msgid "Auto Recording"
|
msgid "Auto Recording"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/CourseCard.vue:50
|
#: frontend/src/components/CourseCard.vue:51
|
||||||
#: frontend/src/pages/CourseDetail.vue:20
|
#: frontend/src/pages/CourseDetail.vue:20
|
||||||
msgid "Average Rating"
|
msgid "Average Rating"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -739,7 +739,7 @@ msgstr ""
|
|||||||
#. Label of the category (Link) field in DocType 'LMS Course'
|
#. Label of the category (Link) field in DocType 'LMS Course'
|
||||||
#: frontend/src/pages/BatchForm.vue:190 frontend/src/pages/Batches.vue:55
|
#: frontend/src/pages/BatchForm.vue:190 frontend/src/pages/Batches.vue:55
|
||||||
#: frontend/src/pages/CertifiedParticipants.vue:37
|
#: frontend/src/pages/CertifiedParticipants.vue:37
|
||||||
#: frontend/src/pages/CourseForm.vue:147 frontend/src/pages/Courses.vue:17
|
#: frontend/src/pages/CourseForm.vue:147 frontend/src/pages/Courses.vue:55
|
||||||
#: frontend/src/pages/JobDetail.vue:96 lms/lms/doctype/lms_batch/lms_batch.json
|
#: frontend/src/pages/JobDetail.vue:96 lms/lms/doctype/lms_batch/lms_batch.json
|
||||||
#: lms/lms/doctype/lms_category/lms_category.json
|
#: lms/lms/doctype/lms_category/lms_category.json
|
||||||
#: lms/lms/doctype/lms_course/lms_course.json
|
#: lms/lms/doctype/lms_course/lms_course.json
|
||||||
@@ -790,12 +790,12 @@ msgstr ""
|
|||||||
#. Enrollment'
|
#. Enrollment'
|
||||||
#. Label of a Card Break in the LMS Workspace
|
#. Label of a Card Break in the LMS Workspace
|
||||||
#. Label of a Link in the LMS Workspace
|
#. Label of a Link in the LMS Workspace
|
||||||
#: frontend/src/components/CourseCard.vue:110
|
#: frontend/src/components/CourseCard.vue:111
|
||||||
#: frontend/src/components/Modals/Event.vue:371
|
#: frontend/src/components/Modals/Event.vue:371
|
||||||
#: frontend/src/pages/BatchForm.vue:37 frontend/src/pages/Batches.vue:38
|
#: frontend/src/pages/BatchForm.vue:37 frontend/src/pages/Batches.vue:38
|
||||||
#: frontend/src/pages/CourseCertification.vue:10
|
#: frontend/src/pages/CourseCertification.vue:10
|
||||||
#: frontend/src/pages/CourseCertification.vue:114
|
#: frontend/src/pages/CourseCertification.vue:114
|
||||||
#: lms/fixtures/custom_field.json
|
#: frontend/src/pages/Courses.vue:38 lms/fixtures/custom_field.json
|
||||||
#: lms/lms/doctype/certification/certification.json
|
#: lms/lms/doctype/certification/certification.json
|
||||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
||||||
@@ -912,10 +912,6 @@ msgstr "明确"
|
|||||||
msgid "Clearly Defined Role"
|
msgid "Clearly Defined Role"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:75
|
|
||||||
msgid "Click here to login"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: frontend/src/components/LessonHelp.vue:30
|
#: frontend/src/components/LessonHelp.vue:30
|
||||||
msgid "Click on the add icon in the editor and select Quiz from the menu. It opens up a dialog, where you can either select a quiz from the list or create a new quiz. When you select the Create New option it redirects you to the quiz creation page."
|
msgid "Click on the add icon in the editor and select Quiz from the menu. It opens up a dialog, where you can either select a quiz from the list or create a new quiz. When you select the Create New option it redirects you to the quiz creation page."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1084,7 +1080,7 @@ msgstr ""
|
|||||||
msgid "Complete Your Enrollment"
|
msgid "Complete Your Enrollment"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_payment/lms_payment.py:40
|
#: lms/lms/doctype/lms_payment/lms_payment.py:55
|
||||||
msgid "Complete Your Enrollment - Don't miss out!"
|
msgid "Complete Your Enrollment - Don't miss out!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -1125,7 +1121,11 @@ msgstr ""
|
|||||||
msgid "Condition must be valid python code."
|
msgid "Condition must be valid python code."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/UserDropdown.vue:214
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.js:7
|
||||||
|
msgid "Conduct Evaluation"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: frontend/src/components/UserDropdown.vue:174
|
||||||
msgid "Confirm"
|
msgid "Confirm"
|
||||||
msgstr "确认"
|
msgstr "确认"
|
||||||
|
|
||||||
@@ -1166,7 +1166,7 @@ msgstr ""
|
|||||||
msgid "Contract"
|
msgid "Contract"
|
||||||
msgstr "合同"
|
msgstr "合同"
|
||||||
|
|
||||||
#: lms/lms/utils.py:437
|
#: lms/lms/utils.py:438
|
||||||
msgid "Cookie Policy"
|
msgid "Cookie Policy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -1382,7 +1382,7 @@ msgstr ""
|
|||||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:79
|
#: frontend/src/components/Modals/BatchStudentProgress.vue:79
|
||||||
#: frontend/src/pages/BatchDetail.vue:21 frontend/src/pages/BatchDetail.vue:70
|
#: frontend/src/pages/BatchDetail.vue:21 frontend/src/pages/BatchDetail.vue:70
|
||||||
#: frontend/src/pages/CourseCertification.vue:106
|
#: frontend/src/pages/CourseCertification.vue:106
|
||||||
#: frontend/src/pages/Courses.vue:8 frontend/src/pages/Statistics.vue:21
|
#: frontend/src/pages/Courses.vue:314 frontend/src/pages/Statistics.vue:21
|
||||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||||
msgid "Courses"
|
msgid "Courses"
|
||||||
@@ -1393,10 +1393,6 @@ msgstr ""
|
|||||||
msgid "Courses Completed"
|
msgid "Courses Completed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/web_template/courses_mentored/courses_mentored.html:4
|
|
||||||
msgid "Courses Mentored"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: frontend/src/components/BatchCourses.vue:151
|
#: frontend/src/components/BatchCourses.vue:151
|
||||||
msgid "Courses deleted successfully"
|
msgid "Courses deleted successfully"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1412,14 +1408,10 @@ msgid "Create"
|
|||||||
msgstr "创建"
|
msgstr "创建"
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.js:7
|
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.js:7
|
||||||
msgid "Create LMS Certificate"
|
msgid "Create Certificate"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.js:8
|
#: lms/templates/onboarding_header.html:19
|
||||||
msgid "Create LMS Certificate Evaluation"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: frontend/src/pages/Courses.vue:136 lms/templates/onboarding_header.html:19
|
|
||||||
msgid "Create a Course"
|
msgid "Create a Course"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -1435,7 +1427,8 @@ msgstr ""
|
|||||||
msgid "Create a new question"
|
msgid "Create a new question"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/pages/Assignments.vue:163
|
#: frontend/src/pages/Assignments.vue:163 frontend/src/pages/Courses.vue:287
|
||||||
|
#: frontend/src/pages/Courses.vue:307
|
||||||
msgid "Created"
|
msgid "Created"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -1488,7 +1481,7 @@ msgstr "仪表板"
|
|||||||
#. Label of the date (Date) field in DocType 'Scheduled Flow'
|
#. Label of the date (Date) field in DocType 'Scheduled Flow'
|
||||||
#: frontend/src/components/Modals/EvaluationModal.vue:26
|
#: frontend/src/components/Modals/EvaluationModal.vue:26
|
||||||
#: frontend/src/components/Modals/Event.vue:40
|
#: frontend/src/components/Modals/Event.vue:40
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:55
|
#: frontend/src/components/Modals/LiveClassModal.vue:61
|
||||||
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
|
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
|
||||||
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
|
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||||
@@ -1587,7 +1580,7 @@ msgstr ""
|
|||||||
#. Label of the description (Small Text) field in DocType 'LMS Exercise'
|
#. 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 (Text) field in DocType 'LMS Live Class'
|
||||||
#. Label of the description (Small Text) field in DocType 'Work Experience'
|
#. Label of the description (Small Text) field in DocType 'Work Experience'
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:78
|
#: frontend/src/components/Modals/LiveClassModal.vue:84
|
||||||
#: frontend/src/pages/BatchForm.vue:224 frontend/src/pages/JobCreation.vue:50
|
#: frontend/src/pages/BatchForm.vue:224 frontend/src/pages/JobCreation.vue:50
|
||||||
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
||||||
#: lms/lms/doctype/certification/certification.json
|
#: lms/lms/doctype/certification/certification.json
|
||||||
@@ -1614,10 +1607,6 @@ msgstr ""
|
|||||||
msgid "Details"
|
msgid "Details"
|
||||||
msgstr "详细信息"
|
msgstr "详细信息"
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:30
|
|
||||||
msgid "Didn't receive the code?"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: frontend/src/pages/CourseForm.vue:194
|
#: frontend/src/pages/CourseForm.vue:194
|
||||||
msgid "Disable Self Enrollment"
|
msgid "Disable Self Enrollment"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1668,7 +1657,7 @@ msgstr ""
|
|||||||
#. Label of the duration (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 (Data) field in DocType 'LMS Batch Timetable'
|
||||||
#. Label of the duration (Int) field in DocType 'LMS Live Class'
|
#. Label of the duration (Int) field in DocType 'LMS Live Class'
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:62
|
#: frontend/src/components/Modals/LiveClassModal.vue:68
|
||||||
#: lms/lms/doctype/cohort/cohort.json
|
#: lms/lms/doctype/cohort/cohort.json
|
||||||
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
|
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
|
||||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||||
@@ -1680,7 +1669,7 @@ msgstr "持续时间"
|
|||||||
msgid "Duration (in minutes)"
|
msgid "Duration (in minutes)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:58
|
#: frontend/src/components/Modals/LiveClassModal.vue:64
|
||||||
msgid "Duration of the live class in minutes"
|
msgid "Duration of the live class in minutes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -1826,11 +1815,12 @@ msgstr ""
|
|||||||
msgid "Enroll Now"
|
msgid "Enroll Now"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/pages/Batches.vue:292
|
#: frontend/src/pages/Batches.vue:292 frontend/src/pages/Courses.vue:285
|
||||||
|
#: frontend/src/pages/Courses.vue:305
|
||||||
msgid "Enrolled"
|
msgid "Enrolled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/CourseCard.vue:41
|
#: frontend/src/components/CourseCard.vue:42
|
||||||
#: frontend/src/components/CourseCardOverlay.vue:106
|
#: frontend/src/components/CourseCardOverlay.vue:106
|
||||||
#: frontend/src/pages/CourseDetail.vue:33
|
#: frontend/src/pages/CourseDetail.vue:33
|
||||||
msgid "Enrolled Students"
|
msgid "Enrolled Students"
|
||||||
@@ -1849,11 +1839,11 @@ msgstr ""
|
|||||||
msgid "Enrollment Count"
|
msgid "Enrollment Count"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/utils.py:1769
|
#: lms/lms/utils.py:1898
|
||||||
msgid "Enrollment Failed"
|
msgid "Enrollment Failed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. Label of the enrollments (Data) field in DocType 'LMS Course'
|
#. Label of the enrollments (Int) field in DocType 'LMS Course'
|
||||||
#. Label of a chart in the LMS Workspace
|
#. Label of a chart in the LMS Workspace
|
||||||
#. Label of a shortcut in the LMS Workspace
|
#. Label of a shortcut in the LMS Workspace
|
||||||
#: frontend/src/pages/Statistics.vue:51
|
#: frontend/src/pages/Statistics.vue:51
|
||||||
@@ -2057,14 +2047,6 @@ msgstr ""
|
|||||||
msgid "Fail"
|
msgid "Fail"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/UserDropdown.vue:243
|
|
||||||
msgid "Failed to login to Frappe Cloud"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:91
|
|
||||||
msgid "Failed to resend code"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. Label of the featured (Check) field in DocType 'LMS Course'
|
#. Label of the featured (Check) field in DocType 'LMS Course'
|
||||||
#: frontend/src/components/CourseCard.vue:16
|
#: frontend/src/components/CourseCard.vue:16
|
||||||
#: frontend/src/pages/CourseForm.vue:189
|
#: frontend/src/pages/CourseForm.vue:189
|
||||||
@@ -2125,10 +2107,6 @@ msgstr ""
|
|||||||
msgid "Formal Wear"
|
msgid "Formal Wear"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:70
|
|
||||||
msgid "Frappe Cloud Login Successful"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lms/lms/widgets/CourseCard.html:114
|
#: lms/lms/widgets/CourseCard.html:114
|
||||||
msgid "Free"
|
msgid "Free"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -2212,7 +2190,7 @@ msgstr ""
|
|||||||
msgid "Generate Certificates"
|
msgid "Generate Certificates"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.js:18
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.js:15
|
||||||
msgid "Generate Google Meet Link"
|
msgid "Generate Google Meet Link"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -2382,10 +2360,6 @@ msgstr ""
|
|||||||
msgid "If you have any questions or require assistance, feel free to contact us."
|
msgid "If you have any questions or require assistance, feel free to contact us."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:71
|
|
||||||
msgid "If you haven't been redirected,"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. Description of the 'Amount (USD)' (Currency) field in DocType 'LMS Batch'
|
#. Description of the 'Amount (USD)' (Currency) field in DocType 'LMS Batch'
|
||||||
#. Description of the 'Amount (USD)' (Currency) field in DocType 'LMS Course'
|
#. Description of the 'Amount (USD)' (Currency) field in DocType 'LMS Course'
|
||||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||||
@@ -2969,8 +2943,8 @@ msgstr ""
|
|||||||
|
|
||||||
#. Label of the lessons (Table) field in DocType 'Course Chapter'
|
#. Label of the lessons (Table) field in DocType 'Course Chapter'
|
||||||
#. Group in Course Chapter's connections
|
#. Group in Course Chapter's connections
|
||||||
#. Label of the lessons (Data) field in DocType 'LMS Course'
|
#. Label of the lessons (Int) field in DocType 'LMS Course'
|
||||||
#: frontend/src/components/CourseCard.vue:32
|
#: frontend/src/components/CourseCard.vue:33
|
||||||
#: frontend/src/components/CourseCardOverlay.vue:99
|
#: frontend/src/components/CourseCardOverlay.vue:99
|
||||||
#: lms/lms/doctype/course_chapter/course_chapter.json
|
#: lms/lms/doctype/course_chapter/course_chapter.json
|
||||||
#: lms/lms/doctype/lms_course/lms_course.json
|
#: lms/lms/doctype/lms_course/lms_course.json
|
||||||
@@ -3021,7 +2995,7 @@ msgid "List of quizzes"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. Option for the 'Status' (Select) field in DocType 'Cohort'
|
#. Option for the 'Status' (Select) field in DocType 'Cohort'
|
||||||
#: lms/lms/doctype/cohort/cohort.json
|
#: frontend/src/pages/Courses.vue:295 lms/lms/doctype/cohort/cohort.json
|
||||||
msgid "Live"
|
msgid "Live"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -3039,6 +3013,7 @@ msgstr ""
|
|||||||
#: frontend/src/components/Members.vue:108
|
#: frontend/src/components/Members.vue:108
|
||||||
#: frontend/src/pages/Assignments.vue:71 frontend/src/pages/Batches.vue:94
|
#: frontend/src/pages/Assignments.vue:71 frontend/src/pages/Batches.vue:94
|
||||||
#: frontend/src/pages/CertifiedParticipants.vue:79
|
#: frontend/src/pages/CertifiedParticipants.vue:79
|
||||||
|
#: frontend/src/pages/Courses.vue:94
|
||||||
#: frontend/src/pages/QuizSubmissionList.vue:39
|
#: frontend/src/pages/QuizSubmissionList.vue:39
|
||||||
#: frontend/src/pages/Quizzes.vue:51
|
#: frontend/src/pages/Quizzes.vue:51
|
||||||
msgid "Load More"
|
msgid "Load More"
|
||||||
@@ -3071,16 +3046,7 @@ msgstr ""
|
|||||||
msgid "Login"
|
msgid "Login"
|
||||||
msgstr "登录"
|
msgstr "登录"
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:79
|
#: frontend/src/components/UserDropdown.vue:168
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:83
|
|
||||||
msgid "Login failed"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:6
|
|
||||||
msgid "Login to Frappe Cloud"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: frontend/src/components/UserDropdown.vue:208
|
|
||||||
msgid "Login to Frappe Cloud?"
|
msgid "Login to Frappe Cloud?"
|
||||||
msgstr "登录 Frappe Cloud?"
|
msgstr "登录 Frappe Cloud?"
|
||||||
|
|
||||||
@@ -3396,11 +3362,11 @@ msgstr ""
|
|||||||
msgid "Modified By"
|
msgid "Modified By"
|
||||||
msgstr "修改者"
|
msgstr "修改者"
|
||||||
|
|
||||||
#: lms/lms/api.py:208
|
#: lms/lms/api.py:214
|
||||||
msgid "Module Name is incorrect or does not exist."
|
msgid "Module Name is incorrect or does not exist."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/api.py:204
|
#: lms/lms/api.py:210
|
||||||
msgid "Module is incorrect."
|
msgid "Module is incorrect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -3430,7 +3396,8 @@ msgstr ""
|
|||||||
|
|
||||||
#. Option for the 'Event' (Select) field in DocType 'LMS Badge'
|
#. Option for the 'Event' (Select) field in DocType 'LMS Badge'
|
||||||
#: frontend/src/pages/Assignments.vue:18 frontend/src/pages/Batches.vue:17
|
#: frontend/src/pages/Assignments.vue:18 frontend/src/pages/Batches.vue:17
|
||||||
#: frontend/src/pages/Courses.vue:48 frontend/src/pages/Programs.vue:14
|
#: frontend/src/pages/Courses.vue:17 frontend/src/pages/Courses.vue:281
|
||||||
|
#: frontend/src/pages/Courses.vue:298 frontend/src/pages/Programs.vue:14
|
||||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||||
msgid "New"
|
msgid "New"
|
||||||
msgstr "新"
|
msgstr "新"
|
||||||
@@ -3484,11 +3451,11 @@ msgstr ""
|
|||||||
msgid "New Sign Up"
|
msgid "New Sign Up"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/utils.py:604
|
#: lms/lms/utils.py:605
|
||||||
msgid "New comment in batch {0}"
|
msgid "New comment in batch {0}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/utils.py:597
|
#: lms/lms/utils.py:598
|
||||||
msgid "New reply on the topic {0} in course {1}"
|
msgid "New reply on the topic {0} in course {1}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -3546,7 +3513,7 @@ msgstr ""
|
|||||||
msgid "No courses created"
|
msgid "No courses created"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/pages/Courses.vue:151
|
#: frontend/src/pages/Courses.vue:79
|
||||||
msgid "No courses found"
|
msgid "No courses found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -3598,15 +3565,11 @@ msgstr ""
|
|||||||
msgid "No {0}"
|
msgid "No {0}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/pages/Courses.vue:111
|
|
||||||
msgid "No {0} courses"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lms/templates/quiz/quiz.html:147
|
#: lms/templates/quiz/quiz.html:147
|
||||||
msgid "No."
|
msgid "No."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/overrides/user.py:194
|
#: lms/lms/user.py:29
|
||||||
msgid "Not Allowed"
|
msgid "Not Allowed"
|
||||||
msgstr "不允许"
|
msgstr "不允许"
|
||||||
|
|
||||||
@@ -3695,7 +3658,7 @@ msgstr ""
|
|||||||
msgid "Only files of type {0} will be accepted."
|
msgid "Only files of type {0} will be accepted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/pages/CourseForm.vue:506 frontend/src/utils/index.js:533
|
#: frontend/src/pages/CourseForm.vue:506 frontend/src/utils/index.js:552
|
||||||
msgid "Only image file is allowed."
|
msgid "Only image file is allowed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -3726,10 +3689,6 @@ msgstr ""
|
|||||||
msgid "Open Ended"
|
msgid "Open Ended"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/widgets/MemberCard.html:16
|
|
||||||
msgid "Open Network"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. Label of the option (Data) field in DocType 'LMS Option'
|
#. Label of the option (Data) field in DocType 'LMS Option'
|
||||||
#: frontend/src/components/Modals/Question.vue:64
|
#: frontend/src/components/Modals/Question.vue:64
|
||||||
#: lms/lms/doctype/lms_option/lms_option.json
|
#: lms/lms/doctype/lms_option/lms_option.json
|
||||||
@@ -3981,11 +3940,11 @@ msgstr ""
|
|||||||
msgid "Please add <a href='{0}'>{1}</a> for <a href='{2}'>{3}</a> to send calendar invites for evaluations."
|
msgid "Please add <a href='{0}'>{1}</a> for <a href='{2}'>{3}</a> to send calendar invites for evaluations."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/overrides/user.py:240
|
#: lms/lms/user.py:75
|
||||||
msgid "Please ask your administrator to verify your sign-up"
|
msgid "Please ask your administrator to verify your sign-up"
|
||||||
msgstr "请向管理员询问,以确认您的注册"
|
msgstr "请向管理员询问,以确认您的注册"
|
||||||
|
|
||||||
#: lms/overrides/user.py:238
|
#: lms/lms/user.py:73
|
||||||
msgid "Please check your email for verification"
|
msgid "Please check your email for verification"
|
||||||
msgstr "请检查您的电子邮件验证"
|
msgstr "请检查您的电子邮件验证"
|
||||||
|
|
||||||
@@ -3993,7 +3952,7 @@ msgstr "请检查您的电子邮件验证"
|
|||||||
msgid "Please click on the following button to set your new password"
|
msgid "Please click on the following button to set your new password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/utils.py:1901 lms/lms/utils.py:1905
|
#: lms/lms/utils.py:2030 lms/lms/utils.py:2034
|
||||||
msgid "Please complete the previous courses in the program to enroll in this course."
|
msgid "Please complete the previous courses in the program to enroll in this course."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -4009,7 +3968,7 @@ msgstr ""
|
|||||||
msgid "Please ensure that you complete all the questions in {0} minutes."
|
msgid "Please ensure that you complete all the questions in {0} minutes."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:164
|
#: frontend/src/components/Modals/LiveClassModal.vue:170
|
||||||
msgid "Please enter a title."
|
msgid "Please enter a title."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -4018,7 +3977,7 @@ msgstr ""
|
|||||||
msgid "Please enter a valid URL."
|
msgid "Please enter a valid URL."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:176
|
#: frontend/src/components/Modals/LiveClassModal.vue:182
|
||||||
msgid "Please enter a valid time in the format HH:mm."
|
msgid "Please enter a valid time in the format HH:mm."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -4054,7 +4013,7 @@ msgstr ""
|
|||||||
msgid "Please login to access this page."
|
msgid "Please login to access this page."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/api.py:200
|
#: lms/lms/api.py:206
|
||||||
msgid "Please login to continue with payment."
|
msgid "Please login to continue with payment."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -4067,23 +4026,23 @@ msgstr ""
|
|||||||
msgid "Please schedule an evaluation to get certified."
|
msgid "Please schedule an evaluation to get certified."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:167
|
#: frontend/src/components/Modals/LiveClassModal.vue:173
|
||||||
msgid "Please select a date."
|
msgid "Please select a date."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:191
|
#: frontend/src/components/Modals/LiveClassModal.vue:197
|
||||||
msgid "Please select a duration."
|
msgid "Please select a duration."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:188
|
#: frontend/src/components/Modals/LiveClassModal.vue:194
|
||||||
msgid "Please select a future date and time."
|
msgid "Please select a future date and time."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:170
|
#: frontend/src/components/Modals/LiveClassModal.vue:176
|
||||||
msgid "Please select a time."
|
msgid "Please select a time."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:173
|
#: frontend/src/components/Modals/LiveClassModal.vue:179
|
||||||
msgid "Please select a timezone."
|
msgid "Please select a timezone."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -4091,13 +4050,6 @@ msgstr ""
|
|||||||
msgid "Please take appropriate action at {0}"
|
msgid "Please take appropriate action at {0}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:79
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:83
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:91
|
|
||||||
#: frontend/src/components/UserDropdown.vue:244
|
|
||||||
msgid "Please try again"
|
|
||||||
msgstr "请再试一次"
|
|
||||||
|
|
||||||
#: frontend/src/components/Modals/ChapterModal.vue:177
|
#: frontend/src/components/Modals/ChapterModal.vue:177
|
||||||
msgid "Please upload a SCORM package"
|
msgid "Please upload a SCORM package"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -4210,7 +4162,7 @@ msgstr ""
|
|||||||
msgid "Primary Subgroup"
|
msgid "Primary Subgroup"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/utils.py:436
|
#: lms/lms/utils.py:437
|
||||||
msgid "Privacy Policy"
|
msgid "Privacy Policy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -4478,7 +4430,7 @@ msgstr ""
|
|||||||
msgid "Registered"
|
msgid "Registered"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/overrides/user.py:201
|
#: lms/lms/user.py:36
|
||||||
msgid "Registered but disabled"
|
msgid "Registered but disabled"
|
||||||
msgstr "注册但被禁用"
|
msgstr "注册但被禁用"
|
||||||
|
|
||||||
@@ -4519,10 +4471,6 @@ msgstr ""
|
|||||||
msgid "Required Role"
|
msgid "Required Role"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:31
|
|
||||||
msgid "Resend"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. Option for the 'Membership' (Select) field in DocType 'LMS Batch Old'
|
#. Option for the 'Membership' (Select) field in DocType 'LMS Batch Old'
|
||||||
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
|
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
|
||||||
msgid "Restricted"
|
msgid "Restricted"
|
||||||
@@ -4677,7 +4625,7 @@ msgstr "搜索"
|
|||||||
msgid "Search by Name"
|
msgid "Search by Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/pages/Batches.vue:45
|
#: frontend/src/pages/Batches.vue:45 frontend/src/pages/Courses.vue:45
|
||||||
msgid "Search by Title"
|
msgid "Search by Title"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -4819,7 +4767,7 @@ msgstr ""
|
|||||||
msgid "Sidebar Items"
|
msgid "Sidebar Items"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/overrides/user.py:194
|
#: lms/lms/user.py:29
|
||||||
msgid "Sign Up is disabled"
|
msgid "Sign Up is disabled"
|
||||||
msgstr "注册被禁用"
|
msgstr "注册被禁用"
|
||||||
|
|
||||||
@@ -4863,10 +4811,6 @@ msgstr ""
|
|||||||
msgid "Skills"
|
msgid "Skills"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/overrides/user.py:42
|
|
||||||
msgid "Skills must be unique"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lms/templates/onboarding_header.html:6
|
#: lms/templates/onboarding_header.html:6
|
||||||
msgid "Skip"
|
msgid "Skip"
|
||||||
msgstr "跳跃"
|
msgstr "跳跃"
|
||||||
@@ -5143,7 +5087,7 @@ msgstr "概要"
|
|||||||
msgid "Sunday"
|
msgid "Sunday"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/api.py:1012
|
#: lms/lms/api.py:1018
|
||||||
msgid "Suspicious pattern found in {0}: {1}"
|
msgid "Suspicious pattern found in {0}: {1}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -5224,11 +5168,11 @@ msgstr ""
|
|||||||
msgid "Template"
|
msgid "Template"
|
||||||
msgstr "模板"
|
msgstr "模板"
|
||||||
|
|
||||||
#: lms/overrides/user.py:205
|
#: lms/lms/user.py:40
|
||||||
msgid "Temporarily Disabled"
|
msgid "Temporarily Disabled"
|
||||||
msgstr "暂时禁用"
|
msgstr "暂时禁用"
|
||||||
|
|
||||||
#: lms/lms/utils.py:435
|
#: lms/lms/utils.py:436
|
||||||
msgid "Terms of Use"
|
msgid "Terms of Use"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -5264,7 +5208,7 @@ msgstr ""
|
|||||||
msgid "Thanks and Regards"
|
msgid "Thanks and Regards"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/utils.py:1801
|
#: lms/lms/utils.py:1930
|
||||||
msgid "The batch is full. Please contact the Administrator."
|
msgid "The batch is full. Please contact the Administrator."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -5300,8 +5244,8 @@ msgstr ""
|
|||||||
msgid "There are no chapters in this course. Create and manage chapters from here."
|
msgid "There are no chapters in this course. Create and manage chapters from here."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/pages/Courses.vue:155
|
#: frontend/src/pages/Courses.vue:83
|
||||||
msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
|
msgid "There are no courses matching the criteria. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/pages/CertifiedParticipants.vue:92
|
#: frontend/src/pages/CertifiedParticipants.vue:92
|
||||||
@@ -5359,7 +5303,7 @@ msgstr ""
|
|||||||
msgid "This course has:"
|
msgid "This course has:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/utils.py:1644
|
#: lms/lms/utils.py:1773
|
||||||
msgid "This course is free."
|
msgid "This course is free."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -5427,7 +5371,7 @@ msgstr ""
|
|||||||
#. Label of the timezone (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 Certificate Request'
|
#. Label of the timezone (Data) field in DocType 'LMS Certificate Request'
|
||||||
#. Label of the timezone (Data) field in DocType 'LMS Live Class'
|
#. Label of the timezone (Data) field in DocType 'LMS Live Class'
|
||||||
#: frontend/src/components/Modals/LiveClassModal.vue:46
|
#: frontend/src/components/Modals/LiveClassModal.vue:45
|
||||||
#: frontend/src/pages/BatchForm.vue:120
|
#: frontend/src/pages/BatchForm.vue:120
|
||||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||||
@@ -5501,7 +5445,7 @@ msgstr "至"
|
|||||||
msgid "To Date"
|
msgid "To Date"
|
||||||
msgstr "至今"
|
msgstr "至今"
|
||||||
|
|
||||||
#: lms/lms/utils.py:1655
|
#: lms/lms/utils.py:1784
|
||||||
msgid "To join this batch, please contact the Administrator."
|
msgid "To join this batch, please contact the Administrator."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -5509,7 +5453,7 @@ msgstr ""
|
|||||||
msgid "To upload Image, Video, Audio or PDF from your system, click on the add icon and select upload from the menu. Then choose the file you want to add to the lesson and it gets added to your lesson."
|
msgid "To upload Image, Video, Audio or PDF from your system, click on the add icon and select upload from the menu. Then choose the file you want to add to the lesson and it gets added to your lesson."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/overrides/user.py:206
|
#: lms/lms/user.py:41
|
||||||
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
|
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
|
||||||
msgstr "最近有太多用户注册,导致注册功能被自动临时禁用了,请一个小时后重试。"
|
msgstr "最近有太多用户注册,导致注册功能被自动临时禁用了,请一个小时后重试。"
|
||||||
|
|
||||||
@@ -5626,7 +5570,8 @@ msgstr ""
|
|||||||
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request'
|
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request'
|
||||||
#. Label of the upcoming (Check) field in DocType 'LMS Course'
|
#. Label of the upcoming (Check) field in DocType 'LMS Course'
|
||||||
#: frontend/src/pages/Batches.vue:276 frontend/src/pages/Batches.vue:294
|
#: frontend/src/pages/Batches.vue:276 frontend/src/pages/Batches.vue:294
|
||||||
#: frontend/src/pages/CourseForm.vue:184 lms/lms/doctype/cohort/cohort.json
|
#: frontend/src/pages/CourseForm.vue:184 frontend/src/pages/Courses.vue:282
|
||||||
|
#: frontend/src/pages/Courses.vue:301 lms/lms/doctype/cohort/cohort.json
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||||
#: lms/lms/doctype/lms_course/lms_course.json
|
#: lms/lms/doctype/lms_course/lms_course.json
|
||||||
msgid "Upcoming"
|
msgid "Upcoming"
|
||||||
@@ -5727,14 +5672,6 @@ msgstr "值"
|
|||||||
msgid "Value Change"
|
msgid "Value Change"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:26
|
|
||||||
msgid "Verification Code"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:9
|
|
||||||
msgid "Verify"
|
|
||||||
msgstr "确认"
|
|
||||||
|
|
||||||
#. Label of the video_link (Data) field in DocType 'LMS Course'
|
#. Label of the video_link (Data) field in DocType 'LMS Course'
|
||||||
#: lms/lms/doctype/lms_course/lms_course.json
|
#: lms/lms/doctype/lms_course/lms_course.json
|
||||||
msgid "Video Embed Link"
|
msgid "Video Embed Link"
|
||||||
@@ -5776,10 +5713,6 @@ msgstr ""
|
|||||||
msgid "We have a limited number of seats, and they won't be available for long!"
|
msgid "We have a limited number of seats, and they won't be available for long!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:21
|
|
||||||
msgid "We have sent the verificaton code to your email id "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lms/templates/emails/payment_reminder.html:4
|
#: lms/templates/emails/payment_reminder.html:4
|
||||||
msgid "We noticed that you started enrolling in the"
|
msgid "We noticed that you started enrolling in the"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -5855,7 +5788,7 @@ msgstr ""
|
|||||||
msgid "Write your answer here"
|
msgid "Write your answer here"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:95
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:96
|
||||||
msgid "You already have an evaluation on {0} at {1} for the course {2}."
|
msgid "You already have an evaluation on {0} at {1} for the course {2}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -5863,11 +5796,11 @@ msgstr ""
|
|||||||
msgid "You are already certified for this course. Click on the card below to open your certificate."
|
msgid "You are already certified for this course. Click on the card below to open your certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/api.py:224
|
#: lms/lms/api.py:230
|
||||||
msgid "You are already enrolled for this batch."
|
msgid "You are already enrolled for this batch."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/api.py:216
|
#: lms/lms/api.py:222
|
||||||
msgid "You are already enrolled for this course."
|
msgid "You are already enrolled for this course."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -5887,10 +5820,6 @@ msgstr ""
|
|||||||
msgid "You are not enrolled in this course. Please enroll to access this lesson."
|
msgid "You are not enrolled in this course. Please enroll to access this lesson."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/pages/Courses.vue:139
|
|
||||||
msgid "You can add chapters and lessons to it."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lms/templates/emails/lms_course_interest.html:13
|
#: lms/templates/emails/lms_course_interest.html:13
|
||||||
#: lms/templates/emails/lms_invite_request_approved.html:11
|
#: lms/templates/emails/lms_invite_request_approved.html:11
|
||||||
msgid "You can also copy-paste following link in your browser"
|
msgid "You can also copy-paste following link in your browser"
|
||||||
@@ -5908,11 +5837,11 @@ msgstr ""
|
|||||||
msgid "You can find their resume attached to this email."
|
msgid "You can find their resume attached to this email."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:115
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:116
|
||||||
msgid "You cannot schedule evaluations after {0}."
|
msgid "You cannot schedule evaluations after {0}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:104
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:105
|
||||||
msgid "You cannot schedule evaluations for past slots."
|
msgid "You cannot schedule evaluations for past slots."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -5945,7 +5874,7 @@ msgstr ""
|
|||||||
msgid "You have already exceeded the maximum number of attempts allowed for this quiz."
|
msgid "You have already exceeded the maximum number of attempts allowed for this quiz."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/api.py:237
|
#: lms/lms/api.py:243
|
||||||
msgid "You have already purchased the certificate for this course."
|
msgid "You have already purchased the certificate for this course."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -5985,10 +5914,6 @@ msgstr ""
|
|||||||
msgid "You need to login first to enroll for this course"
|
msgid "You need to login first to enroll for this course"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: frontend/src/components/Modals/FCVerfiyCodeModal.vue:71
|
|
||||||
msgid "You will be redirected to Frappe Cloud soon."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: frontend/src/components/Quiz.vue:27 lms/templates/quiz/quiz.html:11
|
#: frontend/src/components/Quiz.vue:27 lms/templates/quiz/quiz.html:11
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "You will have to get {0}% correct answers in order to pass the quiz."
|
msgid "You will have to get {0}% correct answers in order to pass the quiz."
|
||||||
@@ -6026,7 +5951,7 @@ msgstr ""
|
|||||||
msgid "Your evaluation for the course {0} has been scheduled on {1} at {2} {3}."
|
msgid "Your evaluation for the course {0} has been scheduled on {1} at {2} {3}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:125
|
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:126
|
||||||
msgid "Your evaluation slot has been booked"
|
msgid "Your evaluation slot has been booked"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -6127,7 +6052,7 @@ msgstr ""
|
|||||||
msgid "you can"
|
msgid "you can"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/api.py:802 lms/lms/api.py:810
|
#: lms/lms/api.py:808 lms/lms/api.py:816
|
||||||
msgid "{0} Settings not found"
|
msgid "{0} Settings not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -6167,7 +6092,7 @@ msgstr ""
|
|||||||
msgid "{0} is your evaluator"
|
msgid "{0} is your evaluator"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/utils.py:681
|
#: lms/lms/utils.py:682
|
||||||
msgid "{0} mentioned you in a comment"
|
msgid "{0} mentioned you in a comment"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -6175,11 +6100,11 @@ msgstr ""
|
|||||||
msgid "{0} mentioned you in a comment in your batch."
|
msgid "{0} mentioned you in a comment in your batch."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/utils.py:634 lms/lms/utils.py:640
|
#: lms/lms/utils.py:635 lms/lms/utils.py:641
|
||||||
msgid "{0} mentioned you in a comment in {1}"
|
msgid "{0} mentioned you in a comment in {1}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lms/lms/utils.py:457
|
#: lms/lms/utils.py:458
|
||||||
msgid "{0}k"
|
msgid "{0}k"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@@ -113,37 +113,6 @@ def render_portal_page(path, **kwargs):
|
|||||||
return page.render()
|
return page.render()
|
||||||
|
|
||||||
|
|
||||||
class CoursePage(BaseRenderer):
|
|
||||||
def __init__(self, path, http_status_code):
|
|
||||||
super().__init__(path, http_status_code)
|
|
||||||
self.renderer = None
|
|
||||||
|
|
||||||
def can_render(self):
|
|
||||||
return self.path.startswith("course")
|
|
||||||
|
|
||||||
def render(self):
|
|
||||||
if "learn" in self.path:
|
|
||||||
prefix = self.path.split("/learn")[0]
|
|
||||||
course_name = prefix.split("/")[1]
|
|
||||||
lesson_index = self.path.split("/learn/")[1]
|
|
||||||
chapter_number = lesson_index.split(".")[0]
|
|
||||||
lesson_number = lesson_index.split(".")[1]
|
|
||||||
|
|
||||||
frappe.flags.redirect_location = (
|
|
||||||
f"/lms/courses/{course_name}/learn/{chapter_number}-{lesson_number}"
|
|
||||||
)
|
|
||||||
return RedirectPage(self.path).render()
|
|
||||||
|
|
||||||
elif len(self.path.split("/")) > 1:
|
|
||||||
course_name = self.path.split("/")[1]
|
|
||||||
frappe.flags.redirect_location = f"/lms/courses/{course_name}"
|
|
||||||
return RedirectPage(self.path).render()
|
|
||||||
|
|
||||||
else:
|
|
||||||
frappe.flags.redirect_location = "/lms/courses"
|
|
||||||
return RedirectPage(self.path).render()
|
|
||||||
|
|
||||||
|
|
||||||
class SCORMRenderer(BaseRenderer):
|
class SCORMRenderer(BaseRenderer):
|
||||||
def can_render(self):
|
def can_render(self):
|
||||||
return "scorm/" in self.path
|
return "scorm/" in self.path
|
||||||
|
|||||||
Reference in New Issue
Block a user