CINXE.COM

ACCA Learning - Front page

<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-GB" lang="en-GB" class="no-js" dir="ltr" prefix="og: http://ogp.me/ns#"><head> <script type="text/javascript" src="/microservices/polyfills/01_shim.min.js"></script> <link rel="shortcut icon" href="/ilp/data/client_design/ACCA/ila/20.2.4/favicon.ico" type="image/x-icon" /> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <!--fonts are used just for notifications--> <link rel="stylesheet" href="/ilp/resources/design/css/fonts.css" /> <link rel="stylesheet" href="/ilp/data/client_design/ACCA/ila/20.2.4/design/css/page.css" /> <!--jquery is used just for notifications--> <script type="text/javascript" src="/ilp/jamescore/zone.js/dist/zone.f208a7bb5e41f477960197938af1234612222341.min.js"></script> <script type="text/javascript" src="/ilp/jamescore/jquery/dist/jquery.d70fbf2f6aed2c76801d35fd793bf70a9cc060eb.min.js"></script> <!--do not load all of james dependencies--> <script> var breadcrumbsArray = []; var userLoggedIn = "false"; if (userLoggedIn === 'true') { var isPGIntegration = "false"; if (isPGIntegration === 'true') { $(window).on('load', function () { $.ready.then(function() { var pgServerUrl = ""; var pgUsername = "398bdfd5badfbd324a42a104bbaa40661407482b155e9b19fecdbc019a544217"; var script = document.createElement('script'); script.type = "text/javascript"; script.src = pgServerUrl; script.setAttribute("data-user", pgUsername); document.head.appendChild(script); }); }); } } var currentMenuId = 1104; var black_list = ['scroll', 'mouseenter', 'mouseleave', 'mousemove', 'mouseover', 'mouseout', 'mousewheel', 'pointermove', 'keypress', 'keyup']; __zone_symbol__BLACK_LISTED_EVENTS = black_list; </script> <title>ACCA Learning - Front page </title> <script> /** * Global definitions */ var contextPath = '/ilp'; var rtl = false; var solrUrl = "/ilp/solr/catalogindex/query"; var postalCodeVerification = false; var mediaPlayer = { name: 'videojs', license: '' }; var publicLearningPortalUrl = 'https://learning.accaglobal.com/ilp/'; var publicLearningPortalPath = '/ilp'; // currently used only for European Commission var showMediaEventStatus = false; var showSkillAttainmentDate = false; var showDueDate = false; var dueDateInterval = 10; var isRemoveOrderedCourseButtonDisabled = true; var showDuedateAndIdentificationByManager = false; var isEnrollmentDueDateMandatory = false; var isEnrollmentIdentificationMandatory = false; /** * James implementation */ var dataUrlPrefix = ".."; var uploadBaseUrl = ".."; var dataUrlDownloadPostfix = "?provideAsDownload=true"; var openAttachment = function (relativeDataPath) { window.location.href = dataUrlPrefix + relativeDataPath + dataUrlDownloadPostfix; }; var embedJavascriptResources = function (dependencies, callback) { return james.embedJavascriptResources('/ilp/jamescore/', dependencies, callback); }; /** * Creates a cookie to notify the Java-execution that a user-data has changed. */ var notifyAboutUserUpdate = function(expireConnection) { var courseUpdateCookieName = "ILA_USER_PROFILE_UPDATE"; var expiryInMinutes = "150"; var contextPath = "/ilp"; //"2017-04-25T11:44:01.426Z" var isoDateString = new Date().toISOString(); //to comply with cookie-value-restrictions we replace colon and period with underscore //"2017-04-25T11_44_01.426Z" var cookieValue = isoDateString.replace(/[:]/g, '_'); if (expireConnection !== undefined) { cookieValue = cookieValue + "|" + expireConnection; } createCookie(courseUpdateCookieName, cookieValue, expiryInMinutes, contextPath); }; /** * Invalidates the course room cookie in order to clear the course room session cache. */ var invalidateCourseRoomCache = function() { var courseUpdateCookieName = "de.imc.ila.cache.COURSE_UPDATE"; var expiryInMinutes = "150"; var contextPath = "/ilp"; var cookieValue = readCookie(courseUpdateCookieName); if (cookieValue === undefined) { cookieValue = 0; } else if (cookieValue !== "-1") { cookieValue = parseInt(cookieValue, 10) + 1; } createCookie(courseUpdateCookieName, cookieValue, expiryInMinutes, contextPath); }; /** * Method to validate the user * Should perform login steps and redirect the user back. */ var validateUserAndRedirect = function() { var locationObject = window.location; var relativePathWithQueryParams = locationObject.pathname + locationObject.search; var currentPathEncoded = encodeURIComponent(relativePathWithQueryParams); var currentFragmentIdEncoded = encodeURIComponent(locationObject.hash); var targetPath = '/pages/403-error.jsf'; return openPageByPath(targetPath, '?incoming=' + currentPathEncoded + '&incomingFragmentId=' + currentFragmentIdEncoded, ''); }; var reloadCourseRoom = function () { invalidateCourseRoomCache(); location.reload(); }; /** * Reloads the page with polling mode enabled. * @param forced indicates if a reload should be forced, even if polling is already enabled. */ //<![CDATA[ var reloadWithPollingModeEnabled = function (forced) { //A force reload is required for igs-polling var url = window.location.href; if (url.indexOf('pollingMode') === -1){ var suffix = 'pollingMode=on#'; var op = '?'; if (url.indexOf('?') !== -1 && (url.indexOf('?') < url.indexOf('#'))) { op = '&amp;'; } //insert pollingMode before angular-fragment-identifier (#) url = url.replace('#', op + suffix); openPageWithoutOpener(url, '_self'); } else if (forced) { //forced reload window.location.reload(); } }; //]]> /** * Open a page with provided targetPath, query and hash. * The target path must contain a leading slash. * @tabOption: can be boolean or object or undefined * -- tabOption as boolean: true/false * -- tabOption as object : with one of the following possible configurations * { * type: 'same-page', * settings: {} * } * { * type: 'new-window' * } * { * type: 'popup', * settings: {} * } */ var openPageByPath = function (targetPath, query, hash, tabOption, propsAsString) { var targetUrl = ""; if (contextPath !== "") { targetUrl = targetUrl + contextPath; } targetUrl = targetUrl + targetPath + query + hash; var configurationType = typeof tabOption; switch (configurationType) { case 'boolean': if(tabOption) { openPageWithoutOpener(targetUrl); } else { openPageWithoutOpener(targetUrl, '_self'); } break; case 'object': switch (tabOption.type) { case 'new-window': openWindowWithCallback(targetUrl, tabOption, ''); break; case 'popup': console.log('Should open URL in a popup with settings'); if(propsAsString === undefined) { console.log('No windows width and height parameters defined for popup.'); propsAsString = 'width=1000,height=800'; } openWindowWithCallback(targetUrl, tabOption, propsAsString); break; case 'dry-run': return publicLearningPortalUrl.replace(/\/$/, "") + targetPath + query + hash; break; case 'same-page': default: openPageWithoutOpener(targetUrl, '_self'); break; } break; case 'undefined': default: openPageWithoutOpener(targetUrl, '_self'); break; } //we must stop form submitting return false; }; /** * Adds the parent course id if present */ function appendParentCourseIdsIfPresent(parentCourseId, parentCourseSetId, query) { if (parentCourseId) { query = concatUrl(query, "parentCourseId=" + parentCourseId); } if (parentCourseSetId) { query = concatUrl(query, "parentCourseSetId=" + parentCourseSetId); } return query; } var openCourseComponent = function (courseId, mediaId, parentCourseId, openDirectly, runningLanguage, tabOption) { var targetPath = '/pages/coursecontent.jsf'; var query = "?courseId=" + courseId + "&mediaId=" + mediaId + "&pollingMode=on"; var hasRunningLanguage = typeof(runningLanguage) !== 'undefined' && typeof(runningLanguage) === 'string'; query += hasRunningLanguage ? '&runningLanguage=' + runningLanguage : ''; query = appendParentCourseIdsIfPresent(parentCourseId, null, query); if (openDirectly) { query += "&openDirectly=" + openDirectly; } return openPageByPath(targetPath, query, '', tabOption); }; var openCourseForum = function (courseId, discussionId, parentCourseId) { var targetPath = '/pages/discussion.jsf'; var query = "?courseId=" + courseId + "&discussionId=" + discussionId; query = appendParentCourseIdsIfPresent(parentCourseId, null, query); return openPageByPath(targetPath, query, ''); }; var openCourseLibraryComponent = function (courseId, mediaId, parentCourseId, runningLanguage) { var targetPath = '/pages/librarycontent.jsf'; var query = "?courseId=" + courseId + "&mediaId=" + mediaId; var hasRunningLanguage = typeof(runningLanguage) !== 'undefined' && typeof(runningLanguage) === 'string'; query += hasRunningLanguage ? '&runningLanguage=' + runningLanguage : ''; query = appendParentCourseIdsIfPresent(parentCourseId, null, query); return openPageByPath(targetPath, query, ''); }; var openCatalogueMedia = function (catalogId, mediaId) { var extraParams = {'catalogId': catalogId}; openCatalogueMediaForParams(mediaId, extraParams); }; var openCatalogueMediaForParams = function (mediaId, extraParameters) { var targetPath = '/pages/mediacontent.jsf'; var query = "?mediaId=" + mediaId; if (extraParameters) { // actually extra parameters must already containt the catalog id for a catalog element angular.forEach(extraParameters, function(value, key) { query = concatUrl(query, key + "=" + value); }); } return openPageByPath(targetPath, query, ''); }; /** * Easy concatenation of url. Adds the query parameter limiter automatically. * @param url - the already existing url * @param newParam - the param to be added */ function concatUrl(url, newParam) { var lastCharacter = url[url.length - 1]; if (lastCharacter && lastCharacter !== "&" && lastCharacter !== "?") { url = url + "&"; } else if (!lastCharacter) { url = url + "?"; } return url + newParam; } var openCatalogue = function (catalogId, catalogueQuery, employeeId, tabOption, customMenuId) { var targetPath = '/pages/catalogsearch.jsf'; var query = "?"; if (catalogId !== undefined && catalogId > 0) { query = concatUrl(query, "catalogId=" + catalogId); } if (employeeId !== undefined && employeeId > 0 && employeeId !== "@self") { query = concatUrl(query, "employeeId=" + employeeId); } if (catalogueQuery !== undefined) { query = concatUrl(query, catalogueQuery); } if (customMenuId !== undefined) { query = concatUrl(query, "menuId=" + customMenuId); } return openPageByPath(targetPath, query, '', tabOption); }; var openCatalogueWithConfig = function (catalogId, config) { var targetPath = '/pages/catalogsearch.jsf'; var query = '?'; if (catalogId !== undefined && catalogId > 0) { query = query + "catalogId=" + catalogId; } if (config !== undefined) { if(config.skillId !== undefined) { if(query.length > 1) { query += '&'; } query += 'fq={!tag=skillIds} skillIds:(*/'+config.skillId+'/)'; } if(config.sidebarExpanded !== undefined) { if(query.length > 1) { query += '&'; } query += 'sidebarExpanded=' + config.sidebarExpanded; } } return openPageByPath(targetPath, query, ''); }; function createQueryForCourseroom(courseId, parentCourseId, parentCourseSetId, programmeId, runningLanguage) { var query = "?courseId=" + courseId + "&pollingMode=on"; if (parentCourseId) { query += "&parentCourseId=" + parentCourseId; } if (runningLanguage && DISPLAY_LANGUAGES) { query += "&runningLanguage=" + runningLanguage; } if (parentCourseSetId) { query += "&parentCourseSetId=" + parentCourseSetId; } if(programmeId && programmeId > 0) { query += "&programmeId=" + programmeId; } return query; } var openCourseRoom = function (courseId, parentCourseId, runningLanguage, tabOption) { var targetPath = '/pages/course.jsf'; var query = createQueryForCourseroom(courseId, parentCourseId, null, 0, runningLanguage); return openPageByPath(targetPath, query, '', tabOption); }; // This is implemented since its too risky to change openCourseRoom before release TODO var openCourseRoomForSubCourse = function (courseId, parentCourseId, parentCourseSetId, programmeId, runningLanguage, tabOption) { var targetPath = '/pages/course.jsf'; var query = createQueryForCourseroom(courseId, parentCourseId, parentCourseSetId, programmeId, runningLanguage); return openPageByPath(targetPath, query, '', tabOption); }; var openAccountActivation = function () { var targetPath = '/pages/user-profile-activation.jsf'; return openPageByPath(targetPath, '', ''); }; var openLoginSuccess = function () { var targetPath = '/pages/login-success.jsf'; return openPageByPath(targetPath, '', ''); }; var openLogin = function () { var targetPath = '/pages/login.jsf'; var query = '?finishSignUp=true'; return openPageByPath(targetPath, query, ''); }; var openEditUserSyllabusPage = function (courseId, userId, newTab) { return openUserSyllabusPage(courseId, userId, newTab, false); }; var openViewUserSyllabusPage = function (courseId, userId, newTab) { return openUserSyllabusPage(courseId, userId, newTab, true); }; var openUserSyllabusPage = function (courseId, userId, newTab, view) { var targetPath = '/pages/usersyllabus.jsf'; var query = "?courseId=" + courseId + "&userId=" + userId + (view ? "&view=true" : ""); return openPageByPath(targetPath, query, '', newTab); }; var openAttendanceTrackingPage = function (courseId, participantId, tabOption) { var targetPath = '/pages/attendance-tracking.jsf'; var query = "?courseId=" + courseId; if(participantId && participantId > 0) { query += "&participantId=" + participantId; } return openPageByPath(targetPath, query, '', tabOption); }; function appendXSRFToken() { return "&XSRFToken=" + ''; } var openMyCourses = function (category, personId, customMenuId, tabOption) { var targetPath = '/pages/personalarea.jsf'; var migratedPersonId = personId !== undefined ? personId : '@self'; //fallback if not specified var hash = "#!/users/" + migratedPersonId + "/contents" + (category? "/" + category + "?type=COURSE" : ""); var query = customMenuId ? "?menuId=" + customMenuId : ''; return openPageByPath(targetPath, query, hash, tabOption); }; var openMentoredOjt = function (customMenuId) { var targetPath = "/pages/mentored-ojt.jsf"; var query = customMenuId ? "?menuId=" + customMenuId : ''; return openPageByPath(targetPath, query, ""); }; var openOjtPrintPage = function (trainingId) { var targetPath = "/pages/print-ojt.jsf"; var query = "?ojtId=" + trainingId; return openPageByPath(targetPath, query, "", true); } var openCertificationPrintPage = function (userId, profileId, certificationId, frameId) { var targetPath = "/pages/print-certification.jsf"; var query = "?userId=" + userId + "&profileId=" + profileId + "&certificationId=" + certificationId; if(frameId !== undefined){ query += "&frameId=" + frameId; } const tabOption = {type: "new-window"} return openPageByPath(targetPath, query, "", tabOption); } var openOjtDetails = function (trainingId, customMenuId) { var targetPath = "/pages/ojt-training-overview.jsf"; var query = customMenuId ? "?menuId=" + customMenuId : ''; var hash = "#!/trainings/" + trainingId + "/tasks"; return openPageByPath(targetPath, query, hash); } var openMyProgrammes = function (category, personId, customMenuId) { var targetPath = '/pages/personalarea.jsf'; var migratedPersonId = personId !== undefined ? personId : '@self'; //fallback if not specified var hash = "#!/users/" + migratedPersonId + "/contents" + (category? "/" + category + "?type=PROGRAM" : ""); var query = customMenuId ? "?menuId=" + customMenuId : ''; return openPageByPath(targetPath, query, hash); }; var openMyLearnings = function (category, personId, queryParams) { var targetPath = "/pages/personalarea.jsf"; var computedPersonId = personId !== undefined ? personId : '@self'; var hash = "#!/users/" + computedPersonId + "/contents"; if (category) { hash += "/" + category; } // Append the queryParams for optional parameters only if they exist if (queryParams && Object.keys(queryParams).length) { hash += '?'; angular.forEach(queryParams, function(value, key) { if (value) { // If the value contains comma it means it has multiple options to be set if (value.indexOf(",") !== -1) { var valuesToSet = value.split(","); // If there are valid parts/values add them with same key if (valuesToSet.length > 0) { angular.forEach(valuesToSet, function(part) { hash = concatUrl(hash, key + "=" + part.trim()); }); } } else { hash = concatUrl(hash, key + "=" + value); } } }); } return openPageByPath(targetPath, '', hash); }; var openManageTrainings = function () { var targetPath = "/pages/contentdesign.jsf"; var hash = "#!/manage"; return openPageByPath(targetPath, '', hash); }; var openMyCompetencies = function (category, personId, customMenuId) { var targetPath = "/pages/competencies.jsf"; var migratedPersonId = personId !== undefined ? personId : '@self'; //fallback if not specified var hash = "#!/users/" + migratedPersonId + "/competencies/" + category; var query = customMenuId ? "?menuId=" + customMenuId : ''; return openPageByPath(targetPath, query, hash); }; var openMyStaff = function () { var targetPath = "/pages/my-staff.jsf"; return openPageByPath(targetPath, '', ''); }; var openManageStaffEnrollment = function (componentIds, componentType, catalogId, templateId, programmeId, parentCourseId, parentCourseSetId) { var targetPath = "/pages/manage-staff-enrollment.jsf"; var query = '?componentIds=' + componentIds + '&componentType=' + componentType; var menuId = getQueryParamValueFromUrl(window.location.search, 'menuId'); if (menuId) { query = concatUrl(query, "menuId=" + menuId); } if (catalogId) { query = concatUrl(query, "catalogId=" + catalogId); } if (programmeId && programmeId > 0) { query = concatUrl(query, "programmeId=" + programmeId); } if (templateId && templateId > 0) { query = concatUrl(query, "templateId=" + templateId); } if (parentCourseId && parentCourseId > 0) { query = concatUrl(query, "parentCourseId=" + parentCourseId); } if (parentCourseSetId && parentCourseSetId > 0) { query = concatUrl(query, "parentCourseSetId=" + parentCourseSetId); } return openPageByPath(targetPath, query, ''); } // used from mystaff page when we need to open the new multi enrollment page built with React var openMultiEnrollment = function (userIds, customMenuId, tabOption) { var targetPath = "/pages/multienrollment.jsf"; var query = '?employeeIds=' + userIds.join(",") + (customMenuId ? '&menuId=' + customMenuId : ''); return openPageByPath(targetPath, query, '', tabOption); }; //used from mystaff page var openLearningPlanAssignment = function (employeeIds, customMenuId) { var targetPath = "/pages/learningplan.jsf"; var query = customMenuId ? "?menuId=" + customMenuId : ''; query += employeeIds ? '&employeeIds=' + employeeIds.join(',') : ''; return openPageByPath(targetPath, query, ''); }; var openMyStaffNavigation = function() { var targetPath = "pages/my-staff.jsf"; if (targetPath.indexOf("http") == 0) { window.location.href = targetPath; return false; } return openPageByPath("/" + targetPath, '', ''); }; var openManageEnrollmentPage = function (courseId, personId, action, tabOption) { var targetPath = "/pages/manage-enrollment.jsf"; var query = '?action=' + action + '&courseId=' + courseId + '&employeeId=' + personId; return openPageByPath(targetPath, query, '', tabOption); }; function getParamOrDefaultValue(paramValue, defaultValue) { return paramValue ? paramValue : defaultValue; } var openEnrollmentFormPage = function (componentId, participantId, supervisorId, registrationProcessType, componentType, catalogId, templateId, parentCourseId, parentCourseSetId, programmeId, actionType, originalActionTypeId, dueDate, identificationId) { var targetPath = "/pages/enrollment-form.jsf"; var query = '?componentId=' + componentId + '&componentType=' + componentType; var menuId = getQueryParamValueFromUrl(window.location.search, 'menuId'); if (menuId) { query = concatUrl(query, "menuId=" + menuId); } if (participantId) { query = concatUrl(query, "participantId=" + participantId); } if (supervisorId) { query = concatUrl(query, "supervisorId=" + supervisorId); } if (registrationProcessType) { query = concatUrl(query, "registrationProcessType=" + registrationProcessType); } if (catalogId) { query = concatUrl(query, "catalogId=" + catalogId); } if (templateId) { query = concatUrl(query, "templateId=" + templateId); } if (parentCourseId) { query = concatUrl(query, "parentCourseId=" + parentCourseId); } if (parentCourseSetId) { query = concatUrl(query, "parentCourseSetId=" + parentCourseSetId); } if (programmeId) { query = concatUrl(query, "programmeId=" + programmeId); } if (actionType) { query = concatUrl(query, "actionType=" + actionType); } if (originalActionTypeId) { query = concatUrl(query, "originalActionTypeId=" + originalActionTypeId); } if (dueDate) { query = concatUrl(query, "dueDate=" + dueDate); } if (identificationId) { query = concatUrl(query, "identificationId=" + identificationId); } return openPageByPath(targetPath, query, ''); }; /** * opens the checkout page to handle the enrolment request * method arguments (in order): courseId, catalogId, programmeId, templateId, participantId, parentCourseId, parentCourseSetId, employeeId, voucherCode */ var openCheckout = function (courseId, catalogId, programmeId, templateId, participantId, parentCourseId, parentCourseSetId, employeeId, voucherCode, dueDateStr, identificationId, approval, bookingState, menuId) { var targetPath = '/pages/checkout.jsf'; var query = concatUrl("?courseId=" + courseId, "participantId=" + participantId); if (catalogId) { query = concatUrl(query, "catalogId=" + catalogId); } if (programmeId) { query = concatUrl(query, "programmeId=" + programmeId); } if (templateId) { query = concatUrl(query, "templateId=" + templateId); } if (employeeId) { query = concatUrl(query, "employeeId=" + employeeId); } if (voucherCode) { query = concatUrl(query, "voucherCode=" + voucherCode); } if (dueDateStr) { query = concatUrl(query, "dueDate=" + dueDateStr); } if (identificationId) { query = concatUrl(query, "identificationId=" + identificationId); } if (approval) { query = concatUrl(query, "approval=" + approval); } if (bookingState) { query = concatUrl(query, "bookingState=" + bookingState); } if (menuId) { query = concatUrl(query, "menuId=" + menuId); } query += appendXSRFToken(); query = appendParentCourseIdsIfPresent(parentCourseId, parentCourseSetId, query); return openPageByPath(targetPath, query, ''); }; var open403ErrorPage = function () { var targetPath = '/pages/403-error.jsf?incoming=%2Filp%2Fpages%2Fexternal-dashboard.jsf%3FmenuId%3D1104%26locale%3Den-GB'; return openPageByPath(targetPath, '', ''); }; var open404ErrorPage = function () { var targetPath = '/pages/404-error.jsf'; return openPageByPath(targetPath, '', ''); }; var openSystemErrorPage = function () { var targetPath = '/pages/system-error.jsf'; return openPageByPath(targetPath, '', ''); }; var openUserProfile = function (participantId, tabOption, customMenuId, asSupervisor) { var targetPath; var query; targetPath = '/pages/user-profile-view.jsf'; query = "?userId=" + participantId; query += customMenuId ? "&menuId=" + customMenuId : ''; query += asSupervisor ? "&asSupervisor=" + asSupervisor : ''; return openPageByPath(targetPath, query, '', tabOption); }; /** * Open the profile of a course participant via the userprofile-functionality. */ var openCourseParticipantProfile = function (courseId, participantId) { if (userData.loggedIn) { var targetPath; targetPath= '/pages/user-profile-view.jsf'; var query = "?userId=" + participantId + "&courseId=" + courseId ; return openPageByPath(targetPath, query,''); } else { openUserProfile(participantId); } }; var openBookShelfMedia = function (mediaId) { var targetPath = '/pages/bookshelfmedia.jsf'; var query = "?mediaId=" + mediaId; return openPageByPath(targetPath, query, ''); }; var openMyExperiences = function (category) { var targetPath = '/pages/myexperiences.jsf'; var hash = "#!/"; switch (category) { case "experiences": hash += "experiences"; break; case "badges": hash += "badges"; break; } return openPageByPath(targetPath, '', hash); }; var logout = function () { var targetPath = '/pages/logout.jsf'; return openPageByPath(targetPath, '', ''); }; var openCompetenciesPage = function (employeeId, tabSelector, tabOption, customMenuId) { var employeeSelector = (employeeId ? employeeId : '@self'); var targetPath = '/pages/competencies.jsf'; var hash = '#!/users/' + employeeSelector + '/competencies/' + tabSelector; var query = customMenuId ? "?menuId=" + customMenuId : ''; return openPageByPath(targetPath, query, hash, tabOption); }; function addQueryParameter(address, queryParamKey, newQueryParamValue) { var regExp = new RegExp("(" + queryParamKey + "=)([^&?#]*)"); if (regExp.test(address)) { //locale is already present in current location query -> needs to be replaced address = address.replace(regExp, "$1" + newQueryParamValue); } else if (address === "") { //no query defined in location -> new query with queryparam (locale) address = '?' + queryParamKey + "=" + newQueryParamValue; } else { //query defined in location -> add queryparam (locale) address += '&' + queryParamKey + "=" + newQueryParamValue; } return address; } function addQueryParameterToCurrentUrl(queryParamKey, newQueryParamValue) { var queryString = addQueryParameter(location.search, queryParamKey, newQueryParamValue); var origin = location.origin; if (!origin) { //location.origin is not supported in IE10 -> if not defined create from other location properties origin = location.protocol + "//" + location.hostname + (location.port ? ':' + location.port : ''); } return origin + location.pathname + queryString + location.hash; } /** * Update page target on language navi entry with hash-tag params. * @param currentElement navigation entry to be updated */ function updateLanguageEntry(currentElement) { var language = getQueryParamValueFromUrl(currentElement.href, "locale"); currentElement.href = addQueryParameterToCurrentUrl("locale", language); } /** * Update language-section in footer and language drop down by adding/replacing the locale query parameter. * '#NL_LANGAUGE_MENU_DROPDOWN .navi-language-entry' */ var updateLangSelection = function () { $('#lang-selection .language-change-footer-entry').each(function(index, object){ //footer item updateLanguageEntry(object); }); $('.navi-language-entry').each(function (index, object) { //header item updateLanguageEntry(object); }); }; if (typeof jQuery !== 'undefined') { $(document).ready(function () { window.onhashchange = function () { updateLangSelection(); }; updateLangSelection(); }); } /** * Closes all the foundation reveal dialogs, when the page is changed */ if (typeof jQuery !== 'undefined') { $(window).bind('hashchange', function () { var allReveals = $('[data-reveal].reveal.open:not(.stay-open-on-hash-change)'); //get all the modals that are open var numberRevealsFound = allReveals.length; for (var i = 0; i < numberRevealsFound; i++) { var idReveal = allReveals[i].id; $('#' + idReveal).hide(); //if we do not hide it directly we'll have some strange side effects $('#' + idReveal).foundation('close'); } }); } /** * Indicates the environment specific global date pattern in the user language. */ var globalDatePattern = "MMM d, yyyy"; /** * Indicates the environment specific global time pattern in the user language. */ var globalTimePattern = "HH:mm"; /** * Indicates the environment specific global date time pattern in the user language. */ var globalDateTimePattern = "d MMM yyyy HH:mm"; /** * Indicates the environment specific global short date time pattern in the user language. */ var shortDatePattern = "MMM d, yyyy"; //MomentJs compatible patterns var momentDatePatterns = { //unfortunately we have to change the pattern in order to support momentjs short: shortDatePattern.toUpperCase() }; /** * Sets the decimal number format symbols for $locale * @param locale $locale service */ var setDecimalFormatProperties = function(locale) { locale.NUMBER_FORMATS.DECIMAL_SEP = "."; locale.NUMBER_FORMATS.GROUP_SEP = ","; }; /** * This variable defines whether the bundle keys or the corresponding bundle values are shown. */ var showBundleKey = false; /** * This variable defines the current app language */ var appLanguage = "en-GB"; var appPersonNameOrder = 0; /** * Indication if password autocomplete option is enabled or not. * @type {string} 'on' if enabled, 'off' otherwise. */ var passwordAutocomplete = "off"; /** * Restapi Location * @type {string} e.g. "learningportal/restapi/" */ var restapiLocation = "/ilp/restapi"; /** * Anonymous RestAPI Location * @returns the path to the rest api */ var anonymousRestapiLocation = "/ilp/commonrestapi"; /** * registration Restapi Location * @type {string} e.g. "learningportal/registrationapi/" */ var registrationRestapiLocation = "/ilp/registrationapi"; /** * Gamification api Location * @type {string} e.g. "learningportal/rest/" */ var gamificationapiLocation = "/ilp/rest"; /** * OnClick- / ButtonFunction for downloading the course certificate. */ var downloadCourseCertificate = function (courseId, userId) { var address; if (userId && userId !== '@self') { address = restapiLocation + '/lms/users/' + userId + '/courses/' + courseId + '/certificate'; } else { address = restapiLocation + '/lms/courses/' + courseId + '/certificate'; } downloadFile(address); }; /** * Function for downloading the media certificate. */ var downloadMediaCertificate = function (mediaId, courseId) { if (courseId && mediaId) { var address = restapiLocation + '/lms/certificate/download/courses/' + courseId + '/media/' + mediaId; downloadFile(address); } else { console.log('Invalid parameters for downloadMediaCertificate'); } }; /** * Function for downloading the programme certificate. */ var downloadProgrammeCertificate = function (programmeId, userId) { var address; if (userId && userId !== '@self') { address = restapiLocation + '/lms/users/' + userId + '/courses/' + programmeId + '/certificate'; } else { address = restapiLocation + '/lms/courses/' + programmeId + '/certificate'; } downloadFile(address); }; /** * Function for downloading the programme level certificate. */ var downloadProgrammeLevelCertificate = function (programmeId, levelId, userId) { var address; if (userId && userId !== '@self') { address = restapiLocation + '/lms/users/' + userId + '/programmes/' + programmeId + '/folder/' + levelId + '/certificate'; } else { address = restapiLocation + '/lms/programmes/' + programmeId + '/folder/' + levelId + '/certificate'; } downloadFile(address); }; /** * Content server * @type {string} e.g. "../data" */ var contentServer = "/ils"; /** * Design URL * @type {string} e.g. "/design" or "/ilp/data/client_design" or "/ils/data/client_design" */ var designUrl = "/ils/data/client_design"; /** * Client Design path */ var clientDesignPath = "/ilp/data/client_design/ACCA/ila/20.2.4/design"; /** * Client Templates path */ var clientTemplatesPath = "/ilp/data/client_design/ACCA/ila/20.2.4/templates"; /** * Internal content server * @type {string} e.g. "../data" */ var internalContentServer = "http://localhost:8080/ils"; /** * Internal content server context path * @type {string} e.g. "../data" */ var internalContentServerContextPath = "/ils"; /** * Internal content server * @type {string} e.g. "../data" */ var internalContentServerUrlWithPort = "http://localhost:8080/ils"; /** * Current user ID * @type {integer} e.g. 103127 */ var currentUserId = 0; /** * Timezone offset as a string * @type {string} e.g. "+0100" */ var currentUserPreferredTimeZoneOffset = ""; /** * Timezone identifier as a string * @type {string} e.g. "CET" or "Australia/Melbourne" */ var currentUserPreferredTimeZoneIdentifier = ""; /** * Indicates if remove pending enrolment is active or not */ var removePendingEnrolment = false; /** *Indicates if the logged user can prebook staff members * @deprecated see staffPrebookingSetting */ var isAllowedStaffPrebooking = false; /** *Returns one of the values 'DO_NOT_ENABLE', 'ALWAYS' or 'CONSIDER_SETTING_IN_COURSE_TEMPLATE' */ var staffPrebookingSetting = "DO_NOT_ENABLE"; /** * Variable that holds the system config value, for enrolment by supervisor */ var enrolmentBySupervisor = false; /** * Timezone identifier as a string * @type {string} e.g. "CET" or "Australia/Melbourne" */ var getMomentTimeZoneIdentifier = function() { if (currentUserPreferredTimeZoneIdentifier === "" && moment !== undefined && moment.tz !== undefined) { //this is required for an anonymous user: According to DD, we should use moment in order to resolve the TZ. //in order to avoid multiple calls to moment (performance), let's store the value so that the next time, the first if condition will stop currentUserPreferredTimeZoneIdentifier = moment.tz.guess(); } return currentUserPreferredTimeZoneIdentifier; }; /** * Definition of the navigation settings */ var navigation = { header: { sticky: false, floated: false } }; var debug = false; var courseTileSettings = { labels: [{ type: 'DUE_DATE' }] }; var sortedMetadataElements = [{"type":"ATTRIBUTE","identifier":"languages","id":0,"name":null,"iconPath":null,"description":null},{"type":"ATTRIBUTE","identifier":"price","id":0,"name":null,"iconPath":null,"description":null},{"type":"ATTRIBUTE","identifier":"course-content-learning-form","id":0,"name":null,"iconPath":null,"description":null},{"type":"ATTRIBUTE","identifier":"provider-logo","id":0,"name":null,"iconPath":null,"description":null}]; var metadataPositionDisplay = ""; if ("BELOW_PROGRESS" !== "") { metadataPositionDisplay = "BELOW_PROGRESS"; } /** * LANGUAGES GLOBAL VARIABLE * */ var DISPLAY_LANGUAGE_FLAG = false; var DISPLAY_LANGUAGE_STYLE_ON_TILES = "LANGUAGE NAME"; var DISPLAY_LANGUAGE_ON_TILES = "USE FOR DESCRIPTION AND CONTENT".split(','); var DISPLAY_LANGUAGES = true; var userData = { "loggedIn" : false, "userId" : -1, "preferredLang" : "", "firstName" : "", "lastName" : "", "loginName" : "", "title" : "", "isSupervisor" : false, "isRegistrationDelegate" : false, "loginSource" : "" }; /** * Indication whether force login is enabled or not. */ var forceLoginEnabled = false; var useComponentACLInCatalog = false; var learningFormSettings = { enabled: false, formId: 0, bundleName: "" }; var activeClientConfig = { clientId: 1, clientPattern: "", clientPatternType: "HOSTNAME", defaultCourseImage: "/ACCA/global/images/course_description_image_default.png", defaultCourseTemplateImage: "/ACCA/global/images/course_template_description_image_default.png", defaultProgrammeImage: "/ACCA/global/images/programme_description_image_default.png", eSignatureEnabled: false }; if (false) { (function (window, clientConfig) { if (clientConfig.clientPatternType === "PARAMETER") { var url = addQueryParameterToCurrentUrl("client", clientConfig.clientPattern); window.history.replaceState(null, null, url); } })(window, activeClientConfig); } var activeAuthConfiguration = { facebook: { enabled: false, appId: "", version: "v2.11", data: { scope: "public_profile,email", auth_type: "" } }, saml: { enabled: false }, windows: { enabled: false }, basic: { enabled: true }, custom: { enabled: false }, selfRegistration: { enabled: true }, passwordRequest: { enabled: true }, stayLoggedIn: { enabled: true }, openIdConnect: { enabled: true }, autocomplete : "off" }; var customTemplateMap = {}; var templatePostfix = "?r=1462dfb15d"; var getCustomTemplatePath = function(originalTemplatePath) { var result = originalTemplatePath; var customEntry = customTemplateMap[originalTemplatePath]; if (customEntry) { result = customEntry; } return result + templatePostfix; }; var openClassification = function (dashboardId, parentId, classificationId) { var targetPath = '/pages/classification-search.jsf'; var query = "?"; if (dashboardId !== undefined && dashboardId > 0) { query = concatUrl(query, "dashboardId=" + dashboardId); } if (parentId !== undefined && parentId > 0) { query = concatUrl(query, "parentId=" + parentId); } if (classificationId !== undefined && classificationId > 0) { query = concatUrl(query, "classificationId=" + classificationId); } return openPageByPath(targetPath, query, ''); }; var openDashboard = function (dashboardId) { var targetPath = '/pages/internal-dashboard.jsf'; var query; if (dashboardId !== undefined && dashboardId > 0) { query = "#/?dashboardId=" + dashboardId; } else { query = ""; } return openPageByPath(targetPath, query, ''); }; var openDashboardWithPrefilteredItems = function (dashboardId, filterId, filterValue) { var targetPath = '/pages/internal-dashboard.jsf'; var query; if (dashboardId !== undefined && dashboardId > 0 && filterId !== undefined && filterValue !== undefined) { query = "#/?dashboardId=" + dashboardId + "&filterId=" + filterId + "&filterValue=" + filterValue; } else { query = ""; } return openPageByPath(targetPath, query, '', {type: 'new-window'}); }; /** * Method that is called when multi staff enrollment should be started * Param 1: componentType (course|programme) * Param 2: componentId * Other params used for access assurance(optional): catalogId, templateId, programmeId, parentCourseId, parentCourseSetId * tabOption: how to open the page (new tab, popup, etc) */ var openMultiStaffEnrolment = function (componentType, componentIds, catalogId, templateId, programmeId, parentCourseId, parentCourseSetId, tabOption) { var targetPath = '/pages/batch-enrollment.jsf'; var query = concatUrl("", "componentIds=" + componentIds); query = concatUrl(query, "componentType=" + componentType); if (catalogId !== undefined && catalogId > 0) { query = concatUrl(query, "catalogId=" + catalogId); } if (templateId !== undefined && templateId > 0) { query = concatUrl(query, "templateId=" + templateId); } if (programmeId !== undefined && programmeId > 0) { query = concatUrl(query, "programmeId=" + programmeId); } if (parentCourseId !== undefined && parentCourseId > 0) { query = concatUrl(query, "parentCourseId=" + parentCourseId); } if (parentCourseSetId !== undefined && parentCourseSetId > 0) { query = concatUrl(query, "parentCourseSetId=" + parentCourseSetId); } return openPageByPath(targetPath, query, '', tabOption); }; /** * Method that is called when an staff enrolment should be done * Param 1: the object type * Param 2: the object id * Param 3: the context id, e.g. catalogue id (optional) */ var openCourseStaffEnrolment = function (courseId, catalogId, templateId, programmeId, parentCourseId, parentCourseSetId) { var targetPath = '/pages/mystaffs.jsf'; var query=""; if (courseId !== undefined && courseId > 0) { query = concatUrl(query, "courseId=" + courseId); } if (templateId !== undefined && templateId > 0) { query = concatUrl(query, "templateId=" + templateId); } if (catalogId !== undefined && catalogId > 0) { query = concatUrl(query, "catalogId=" + catalogId); } if (programmeId !== undefined && programmeId > 0) { query = concatUrl(query, "programmeId=" + programmeId); } if (parentCourseId !== undefined && parentCourseId > 0) { query = concatUrl(query, "parentCourseId=" + parentCourseId); } if (parentCourseSetId !== undefined && parentCourseSetId > 0) { query = concatUrl(query, "parentCourseSetId=" + parentCourseSetId); } return openPageByPath(targetPath, query, ''); }; function addParamToPathParams(paths, pathIdentifier, pathValue) { paths.push(pathIdentifier); paths.push(pathValue); } var openDescriptionPage = function (componentType, componentId, personId, selectedTab, pathParams, queryParams, tabOption) { var targetPath = '/pages/description.jsf'; var jsfParams = []; if (currentMenuId && currentMenuId > 0) { jsfParams.push("menuId=" + currentMenuId); } if (queryParams && queryParams['operation']) { if (queryParams['operation'] !== 'cancel') { jsfParams.push("operation=" + queryParams['operation']); jsfParams.push("XSRFToken=" + ''); } else { console.error("Unsupported course operation: " + operation); return; } } if (queryParams && queryParams['jsfParams'] && queryParams['jsfParams']['courseId']) { jsfParams.push("courseId=" + queryParams['jsfParams']['courseId']); delete queryParams['jsfParams']; } if (jsfParams.length) { targetPath += "?" + jsfParams.join("&"); } var hashPath = '#/'; var pathSegments = []; var componentTypePathIdentifierMap = { 'COURSE': 'courses', 'COURSE_TEMPLATE': 'coursetemplates', 'PROGRAMME': 'programmes', 'PROGRAMME_TEMPLATE': 'programmetemplates', 'MEDIA': 'media' }; // COURSE_TEMPLATE Does not exist but is necesary to diferentiate courses from course templates if (personId && personId > 0) { addParamToPathParams(pathSegments, 'users', personId); } else { addParamToPathParams(pathSegments, 'users', '@self'); } if (pathParams) { if (pathParams.catalogId) { addParamToPathParams(pathSegments, 'catalogues', pathParams.catalogId); } if (pathParams.programmeId) { addParamToPathParams(pathSegments, componentTypePathIdentifierMap['PROGRAMME'], pathParams.programmeId); } if (pathParams.courseTemplateId) { addParamToPathParams(pathSegments, componentTypePathIdentifierMap['COURSE_TEMPLATE'], pathParams.courseTemplateId); } if (pathParams.programmeTemplateId) { addParamToPathParams(pathSegments, componentTypePathIdentifierMap['PROGRAMME_TEMPLATE'], pathParams.programmeTemplateId); } } //Add the componentTypepathIdentifier and componentId (this will be last) addParamToPathParams(pathSegments, componentTypePathIdentifierMap[componentType], componentId); //Add the section/path to append after the path params if (selectedTab) { pathSegments.push(selectedTab); } //Join every path segment with '/' to include also the section hashPath += pathSegments.join('/'); //Append the queryParams for optional parameters only if they exist if (queryParams && Object.keys(queryParams).length) { hashPath += '?'; angular.forEach(queryParams, function(value, key) { if (value) { hashPath = concatUrl(hashPath, key + "=" + value); } }); } return openPageByPath(targetPath, '', hashPath, tabOption); }; var openBadgePage = function (badgeId) { var targetPath = '/pages/badge-description.jsf'; var jsfParams = []; if (badgeId && badgeId > 0) { jsfParams.push("badgeId=" + badgeId); } if (jsfParams.length) { targetPath += "?" + jsfParams.join("&"); } return openPageByPath(targetPath, '', ''); }; var openUtfpPage = function (mediaId, employeeId, courseId, tabOption) { var targetPath = '/pages/utfp.jsf'; var jsfParams = []; if (mediaId && mediaId > 0) { jsfParams.push("mediaId=" + mediaId); } if (employeeId && employeeId > 0) { jsfParams.push("employeeId=" + employeeId); } if (courseId && courseId > 0) { jsfParams.push("courseId=" + courseId); } if (jsfParams.length) { targetPath += "?" + jsfParams.join("&"); } return openPageByPath(targetPath, '', '', tabOption); } /** * Method that is called to open the suitable scorm player page * @param data - an object tha contain the following fields * { * isPreviewMode - true it will be opened in preview mode * wbtId - the WBT Id => number * scoId: the SCORM item id => number * openTarget - the opening mode: same-page, new-window or popup * catalogId: (optional) the catalog id => number * mediaId: (optional) the media id => number * courseId: (optional) the course id => number * plainSco: (optional) determine the integration content type for real time session data => boolean, when true => RestContentType.ITEM_SCORM * when false => RestContentType.WBT_SCORM * mediaLanguage: (optional) the media language => string * mediaAspectPadding: (optional) the percentage padding-bottom value to the IFrame => number * backhash: (optional) the position in the source page, so can return to the same position when click on back link => string * isOpenedFromSyllabus: (optional) true when open from syllabus otherwise false * popupOption: (optional) the information used for new pop-up window (i.e. width=640, height=480) * } * */ var openScormPlayer = function (data) { var targetPage; var query = '?'; query += "wbtId=" + data.wbtId; query += "&scoId=" + data.scoId; query += data.plainSco !== undefined ? "&plainSco=" + data.plainSco : ''; query += data.mediaLanguage !== undefined ? "&mediaLanguage=" + data.mediaLanguage : ''; query += data.mediaAspectPadding !== undefined ? "&mediaAspectPadding=" + data.mediaAspectPadding : ''; if (typeof backhash === 'undefined') { data.backhash = ''; } if (data.isPreviewMode) { targetPage = 'preview-wbt-scorm-player.jsf'; query += data.mediaId !== undefined ? "&mediaId=" + data.mediaId: ''; } else { if (data.catalogId === undefined || data.catalogId === null || data.catalogId <= 0) { if (data.courseId === undefined || data.courseId === null || data.courseId <= 0) { targetPage = 'bookshelf-wbt-scorm-player.jsf'; query += data.mediaId !== undefined ? "&mediaId=" + data.mediaId: ''; } else { targetPage = 'wbt-scorm-player.jsf'; query += "&courseId=" + data.courseId; query += data.isOpenedFromSyllabus !== undefined ? "&isOpenedFromSyllabus=" + data.isOpenedFromSyllabus : ''; } } else { targetPage = 'media-wbt-scorm-player.jsf'; query += "&catalogId=" + data.catalogId; query += data.mediaId !== undefined ? "&mediaId=" + data.mediaId : ''; } } return openScormPopup(targetPage + query + data.backhash, data.popupOption, data.openTarget); }; /** * * Method that is called to open the suitable au player page * @param wbtId - the WBT Id => number * @param auId: the AICC item id => number * @param openMode - the opening mode: same-page, new-window or popup * @param catalogId: (optional) the catalog id => number * @param mediaId: (optional) the media id => number * @param courseId: (optional) the course id => number * @param plainAu: (optional) determine the integration content type for real time session data => boolean, when true => RestContentType.ITEM_AICC * when false => RestContentType.WBT_AICC */ var openAiccPlayer = function (courseId, catalogId, mediaId, wbtId, auId, plainAu, openMode) { var query = "?"; var targetPath = '/pages/media-wbt-aicc-player.jsf'; if (courseId !== undefined && courseId > 0) { targetPath = '/pages/wbt-au-open.jsf'; query = concatUrl(query, "courseId=" + courseId); } if (mediaId !== undefined && mediaId > 0) { query = concatUrl(query, "mediaId=" + mediaId); } if (catalogId !== undefined && catalogId > 0) { query = concatUrl(query, "catalogId=" + catalogId); } if (wbtId !== undefined && wbtId > 0) { query = concatUrl(query, "wbtId=" + wbtId); } if (auId !== undefined && auId > 0) { query = concatUrl(query, "auId=" + auId); } if (plainAu !== undefined) { query = concatUrl(query, "plainAu=" + plainAu); } if (openMode !== undefined) { query = concatUrl(query, "openMode=" + openMode); } return openPageByPath(targetPath, query, ''); }; /** * * Method that is called to open the suitable xapi player page * @param courseId: (optional) the course id => number * @param catalogId: (optional) the catalog id => number * @param mediaId: (optional) the media id => number * @param openMode - the opening mode: same-page, new-window or popup * @param isXapiPlayer: (optional) opens the player => boolean */ var openXapiPlayer = function (courseId, catalogId, mediaId, openMode, isXapiPlayer) { var query = "?"; var targetPath = '/pages/media-wbt-xapi-player.jsf'; if (courseId !== undefined && courseId > 0) { targetPath = '/pages/wbt-xapi-open.jsf'; query = concatUrl(query, "courseId=" + courseId); } if (mediaId !== undefined && mediaId > 0) { query = concatUrl(query, "mediaId=" + mediaId); } if (catalogId !== undefined && catalogId > 0) { query = concatUrl(query, "catalogId=" + catalogId); } if (openMode !== undefined) { query = concatUrl(query, "openMode=" + openMode); } if (isXapiPlayer !== undefined) { query = concatUrl(query, "isXapiPlayer=" + isXapiPlayer); } return openPageByPath(targetPath, query, ''); }; /** * * Method that is called to open a specific learning path folder * @param learningPathId: (optional) the programme id => number * @param folderId: (optional) the folder id => number */ var openLearningPathFolder = function (learningPathId, folderId) { var query = ""; var targetPath = '/pages/description.jsf'; if(learningPathId) { targetPath += '#/users/@self/programmes/' + learningPathId + '/curriculum'; } if(folderId) { query = "?"; query = concatUrl(query, "folderId=" + folderId); } return openPageByPath(targetPath, query, ''); } </script> <!-- stylesheets --> <link rel="stylesheet" href="/ilp/resources/design/css/autocomplete.mod.4.0.0.css" /> <script type="text/javascript" src="/ilp/jamescore/james.7683172782697bb292fd2be3a368f4678c203aa0.min.js"></script> <script type="text/javascript" src="/ilp/resources/javascript/navi.js"></script> <script type="text/javascript"> var appInsights = window.appInsights || function (a) { function b(a) { c[a] = function () { var b = arguments; c.queue.push(function () { c[a].apply(c, b) }) } } var c = {config: a}, d = document, e = window; setTimeout(function () { var b = d.createElement("script"); b.src = a.url || "https://az416426.vo.msecnd.net/scripts/a/ai.0.js", d.getElementsByTagName("script")[0].parentNode.appendChild(b) }); try { c.cookie = d.cookie } catch (a) { } c.queue = []; for (var f = ["Event", "Exception", "Metric", "PageView", "Trace", "Dependency"]; f.length;) b("track" + f.pop()); if (b("setAuthenticatedUserContext"), b("clearAuthenticatedUserContext"), b("startTrackEvent"), b("stopTrackEvent"), b("startTrackPage"), b("stopTrackPage"), b("flush"), !a.disableExceptionTracking) { f = "onerror", b("_" + f); var g = e[f]; e[f] = function (a, b, d, e, h) { var i = g && g(a, b, d, e, h); return !0 !== i && c["_" + f](a, b, d, e, h), i } } return c }({ instrumentationKey: "d51ea479-c7ea-4e3e-9552-d0aab007ea0f" }); window.appInsights = appInsights, appInsights.queue && 0 === appInsights.queue.length && appInsights.trackPageView(); </script></head><body> <script> var utils = { notifications: { addPendingMessage: function() { console.error("Notification Plugin is not initialized yet.") } } }; </script> <div id="notifications" tabindex="-1"></div> <script> var notificationAppConfig = { appPath: "/ilp/notification/", globalNotificationDuration: "" }; </script> <script src="/ilp/notification/js/notificationRegistration.js"></script> <script>embedJavascriptResources([ { 'identifier':'angular' }, { 'identifier':'imc-templating-module' }, { 'identifier':'angular-translate' }, { 'identifier':'translateIMCCustomLoaderService' }, { 'identifier':'angular-translate-imc-loader' }, { 'identifier':'angular-translate-imc-decorator' }, { 'identifier':'angular-ui-notification' }, { 'path': notificationAppConfig.appPath + 'js_vendor_min/app.1462dfb15d.min.js'} ], function() { angular.bootstrap(document.getElementById('notification'), ['notification']); });</script> <div id="notification"> <div data-ng-controller="notificationListeningController"></div> </div> <script> function agreeCookie() { var d = new Date(); d.setTime(d.getTime() + (365 * 24 * 60 * 60 * 1000)); var expires = "expires="+d.toUTCString(); document.cookie = "acceptPolicy=1; " + expires + ";path=/"; var cookiePolicyContent = document.getElementById("cookiePolicy"); cookiePolicyContent.style.display = "none"; }; </script> <div id="cookiePolicy"> <div class="ui-notification-fix-bottom"> <div class="ui-notification-fix-bottom__block ui-notification-fix-bottom__block--cookie" tabindex="0"> <div class="ui-notification-fix-bottom__block__text">We use cookies to make our system easier for you to use. For more information, see our <a role="button" title="Cookie-Richtlinie" href="cookiepolicy.jsf">Cookie Policy</a>. </div> <div class="ui-notification-fix-bottom__block__button-wrapper"> <button class="button-element medium-button" tabindex="0" title="Accept the cookie policy and close this notification." role="button" id="closeButton" onClick="agreeCookie()"> <span>Understood</span> </button> </div> </div> </div> </div> <h1 class="outline">ACCA Learning</h1> <noscript> <div class="no-javascript-supported"> JavaScript is not enabled in your current browser. Please enable JavaScript to use the full range of functionality in this application. </div> </noscript> <div id="content-frame" class="entire-section"> <div class="contain-to-grid navigation-section" id="top-navi"> <div class="imc-topbar "> <imc-navigation data-personal="false" data-language="en-GB" data-ilp-external="/ilp" data-has-idm="false" data-current-menu-id="1104" data-rest-url="/ilp/commonrestapi" data-content-url="/ils" data-design-url="/ils/data/client_design" data-client-id="1" data-design-client-id="1" data-log-level="INFO" data-shopify-enabled="true" data-shopify-require-for-free="false" data-shopify-shops="[{&quot;id&quot;:0,&quot;name&quot;:&quot;Default Shop&quot;,&quot;shopifyBaseUrl&quot;:&quot;https://acca-learning.myshopify.com&quot;,&quot;shopifyProductStorefrontToken&quot;:&quot;6e429524918d58379290bc63819a31a7&quot;,&quot;shopifyVendorName&quot;:&quot;acca-learning&quot;,&quot;requireForFree&quot;:false}]" data-context-path="/ilp"></imc-navigation> </div> <!-- if sticky -> this height-wrap-container takes the same height as .imc-topbar --> <div class="topbar-height-wrap"></div> </div> <script id="imc-navigation-script" src="/microservices/navigation/index.js?v=20.2.4+1462dfb15d"></script> <main class="content-section" id="content-section"> <div class="full-size-section "> <section> <section> </section> <!-- PAGE HEADER BEGIN --> <imc-dashboard data-personal="false" data-language="en-GB" data-current-menu-id="1104" data-rest-url="/ilp/commonrestapi" data-content-url="/ils" data-design-url="/ils/data/client_design" data-client-id="1" data-design-client-id="1" data-log-level="INFO" include-indirectly-assigned-courses="false" supported-panel-types="['STANDARDPANEL', 'TOPTEN', 'LOGIN_PANEL', 'CATALOGUE_QUERY', 'COURSES', 'FEATUREPLUGINPANEL', 'NEWSPANEL']" supported-dashboard-types="PORTAL_DASHBOARD" front-page-solr-url="/ilp/solr/catalogindex/query" front-page-recommended-solr-url="/ilp/solr/catalogindex/" show-rating-and-reviews="false" catalog-search-sort-order="title_def asc" frontendcommon-bundles="{&quot;bundles&quot;:[{&quot;key&quot;:&quot;noteTitle&quot;,&quot;value&quot;:&quot;Delete course&quot;},{&quot;key&quot;:&quot;javaScriptFile&quot;,&quot;value&quot;:&quot;JavaScript file&quot;},{&quot;key&quot;:&quot;courseContentDownloadFile&quot;,&quot;value&quot;:&quot;Save {0} &lt;small&gt;({1})&lt;\/small&gt;&quot;},{&quot;key&quot;:&quot;strRecertificationContent&quot;,&quot;value&quot;:&quot;Recertification content&quot;},{&quot;key&quot;:&quot;strFileNotFoundAccessDenied&quot;,&quot;value&quot;:&quot;We are sorry. Either the file does not exist or you do not have permission to access the file.&quot;},{&quot;key&quot;:&quot;mediaTypeFile&quot;,&quot;value&quot;:&quot;File&quot;},{&quot;key&quot;:&quot;languageCode_ja-jp&quot;,&quot;value&quot;:&quot;\u65e5\u672c\u8a9e&quot;},{&quot;key&quot;:&quot;strHideComposedSkills&quot;,&quot;value&quot;:&quot;Hide courses skills&quot;},{&quot;key&quot;:&quot;GroupWorkMembers&quot;,&quot;value&quot;:&quot;({{count}} members)&quot;},{&quot;key&quot;:&quot;jobProfileResultCountSingularSkillsSingularJobProfiles&quot;,&quot;value&quot;:&quot;1 Skill in 1 Job profile&quot;},{&quot;key&quot;:&quot;strMyCoursesCancellationErrorMsg&quot;,&quot;value&quot;:&quot;There were problems with your request:&quot;},{&quot;key&quot;:&quot;staffEnrolmentProgrammeBooked&quot;,&quot;value&quot;:&quot;Staff member is already booked&quot;},{&quot;key&quot;:&quot;ojtDetails&quot;,&quot;value&quot;:&quot;On-the-job training details&quot;},{&quot;key&quot;:&quot;skillExpiryByDate&quot;,&quot;value&quot;:&quot;By date&quot;},{&quot;key&quot;:&quot;internalPriceFree&quot;,&quot;value&quot;:&quot;Free of charge&quot;},{&quot;key&quot;:&quot;strCoursesAvailableSoonDueDate&quot;,&quot;value&quot;:&quot;No courses available. Due on {{dueDate}}&quot;},{&quot;key&quot;:&quot;jobProfileResultCountSingularSkillsMultipleJobProfiles&quot;,&quot;value&quot;:&quot;1 Skill in {{ jobProfileCount }} Job profiles&quot;},{&quot;key&quot;:&quot;ratingBoxViewDetails&quot;,&quot;value&quot;:&quot;View details&quot;},{&quot;key&quot;:&quot;mTypeBlackBoard&quot;,&quot;value&quot;:&quot;Notice board&quot;},{&quot;key&quot;:&quot;certificationDetailsBackButton&quot;,&quot;value&quot;:&quot;Back&quot;},{&quot;key&quot;:&quot;strBtnCommonSave&quot;,&quot;value&quot;:&quot;Save&quot;},{&quot;key&quot;:&quot;strEndsOnDate&quot;,&quot;value&quot;:&quot;Ends on {{date}}&quot;},{&quot;key&quot;:&quot;strStatusFilterName&quot;,&quot;value&quot;:&quot;Filter by status&quot;},{&quot;key&quot;:&quot;strMandatoryField&quot;,&quot;value&quot;:&quot;Required field&quot;},{&quot;key&quot;:&quot;privacyPolicyRejectConfirmation&quot;,&quot;value&quot;:&quot;Are you sure you want to reject the End User Licence Agreement?&quot;},{&quot;key&quot;:&quot;revealTaskDeclinationReasonTitle&quot;,&quot;value&quot;:&quot;Decline course request&quot;},{&quot;key&quot;:&quot;certificateNotFulfilledYetTitle&quot;,&quot;value&quot;:&quot;The requirements for the certificate have not yet been fulfilled.&quot;},{&quot;key&quot;:&quot;metaTagDescriptionCataloguePage&quot;,&quot;value&quot;:&quot;Catalogue&quot;},{&quot;key&quot;:&quot;cancelCourse&quot;,&quot;value&quot;:&quot;Cancel course&quot;},{&quot;key&quot;:&quot;provider&quot;,&quot;value&quot;:&quot;Provider&quot;},{&quot;key&quot;:&quot;paymentTransactionCompletedDialogTextOpenableDelayed&quot;,&quot;value&quot;:&quot;The transaction was successfully completed for the &lt;span class=\&quot;reveal-dialog-text-highlight\&quot;&gt;\&quot;%OBJECT_NAME%\&quot; &lt;\/span&gt; course. The course cannot be started yet.&quot;},{&quot;key&quot;:&quot;strSelectAllMyStaff&quot;,&quot;value&quot;:&quot;Select all ({{currentUsersNumber}} of {{totalUsersNumber}})&quot;},{&quot;key&quot;:&quot;joinAdobeMeeting&quot;,&quot;value&quot;:&quot;Enter meeting room&quot;},{&quot;key&quot;:&quot;strEnrollmentStatusINDIVIDUAL_LEARNING_PLAN&quot;,&quot;value&quot;:&quot;Recommended&quot;},{&quot;key&quot;:&quot;strComponentPreviewTooltipText&quot;,&quot;value&quot;:&quot;&lt;b&gt;You are in a course preview mode!&lt;\/b&gt;&lt;\/br&gt;This preview allows you to see the course exactly as your participants do. This is a great opportunity to check for any mistakes, make sure the design is engaging, and improve the overall learning journey. Please note that when the preview mode is started a temporary data will be created. This would be cleared when \u201cClose preview\u201d button is clicked. Enjoy and put yourself in your participants\u2019 shoes!&quot;},{&quot;key&quot;:&quot;strMyCoursesEnrolRevealHeadline&quot;,&quot;value&quot;:&quot;Course enrolment&quot;},{&quot;key&quot;:&quot;honourCode&quot;,&quot;value&quot;:&quot;In accordance with the Honour code, I certify that I will work on the following assignments independently and without auxiliaries, only with those prescribed for that purpose.&quot;},{&quot;key&quot;:&quot;feedbackDialogBody&quot;,&quot;value&quot;:&quot;Please enter your feedback.&quot;},{&quot;key&quot;:&quot;courseEventAvailableFromTo&quot;,&quot;value&quot;:&quot;{0} to {1}&quot;},{&quot;key&quot;:&quot;strPrerequisitesSetEntryStatusMandatory&quot;,&quot;value&quot;:&quot;Mandatory prerequisite that has not yet been fulfilled&quot;},{&quot;key&quot;:&quot;strCoursePrerequisitesCancellationDependenciesCancelBtnText&quot;,&quot;value&quot;:&quot;Cancel&quot;},{&quot;key&quot;:&quot;staffEnrolmentBackToProgrammeButtonTitle&quot;,&quot;value&quot;:&quot;Back to learning path&quot;},{&quot;key&quot;:&quot;strMentor&quot;,&quot;value&quot;:&quot;Mentor&quot;},{&quot;key&quot;:&quot;strShareLearningPathTemplateConfirmButton&quot;,&quot;value&quot;:&quot;Share the learning path with the recipients&quot;},{&quot;key&quot;:&quot;tutorPictureAlt&quot;,&quot;value&quot;:&quot;Profile picture of {title}{firstname}{lastname}&quot;},{&quot;key&quot;:&quot;courseConcludeMediaCanNotConcludeManually&quot;,&quot;value&quot;:&quot;{0} cannot be completed manually&quot;},{&quot;key&quot;:&quot;strResend&quot;,&quot;value&quot;:&quot;resend&quot;},{&quot;key&quot;:&quot;strInterestRevealInfo&quot;,&quot;value&quot;:&quot;Please choose the topics you are interested in to get recommendations.&quot;},{&quot;key&quot;:&quot;strRecertificationBreak&quot;,&quot;value&quot;:&quot;Recertification break active (until {{ endDate }})&quot;},{&quot;key&quot;:&quot;competenciesCertificationProgressBarStartEndDate&quot;,&quot;value&quot;:&quot;{{startDate}} to {{endDate}}&quot;},{&quot;key&quot;:&quot;strPrebookedCourseStatus&quot;,&quot;value&quot;:&quot;Enrol now&quot;},{&quot;key&quot;:&quot;strCourseStatusProgress&quot;,&quot;value&quot;:&quot;Continue with the course&quot;},{&quot;key&quot;:&quot;catalogConcludeMedia&quot;,&quot;value&quot;:&quot;Complete content:&quot;},{&quot;key&quot;:&quot;courseContentStatusFailed&quot;,&quot;value&quot;:&quot;Failed&quot;},{&quot;key&quot;:&quot;pageTitlePasswordRequest&quot;,&quot;value&quot;:&quot;Request password&quot;},{&quot;key&quot;:&quot;strCloseComponentPreviewHeader&quot;,&quot;value&quot;:&quot;Preview mode&quot;},{&quot;key&quot;:&quot;strSeatLimitationExceededErrorMessage&quot;,&quot;value&quot;:&quot;Due to the seat limitation the participant could not be moved. No changes to the enrolment status were made. Please contact the course administrator for details.&quot;},{&quot;key&quot;:&quot;courseDurationOfUseMonth&quot;,&quot;value&quot;:&quot;Month&quot;},{&quot;key&quot;:&quot;courseEnrolmentDialogMultipleRegistrationTitle&quot;,&quot;value&quot;:&quot;Multiple booking: %COURSE_NAME%&quot;},{&quot;key&quot;:&quot;strRemovedFromBookshelf&quot;,&quot;value&quot;:&quot;The media has been removed from the bookshelf.&quot;},{&quot;key&quot;:&quot;csAvailableNow&quot;,&quot;value&quot;:&quot;Available now&quot;},{&quot;key&quot;:&quot;competenciesCertificationMinutesValue&quot;,&quot;value&quot;:&quot;{{value}}m&quot;},{&quot;key&quot;:&quot;strFolderName&quot;,&quot;value&quot;:&quot;Folder name&quot;},{&quot;key&quot;:&quot;mTypeProgramName&quot;,&quot;value&quot;:&quot;Learning Pack&quot;},{&quot;key&quot;:&quot;personalAreaCourseStatusStartedPositiveDaysLeftWithDueDate&quot;,&quot;value&quot;:&quot;Due on $DUE_DATE$&quot;},{&quot;key&quot;:&quot;courseWaitingListRegisterSubLine&quot;,&quot;value&quot;:&quot;You can book a place on the waiting list for this appointment.&quot;},{&quot;key&quot;:&quot;qtiTestCancellationBtn&quot;,&quot;value&quot;:&quot;Cancel assessment&quot;},{&quot;key&quot;:&quot;strNoResultsFoundInfo&quot;,&quot;value&quot;:&quot;Please make sure your words are spelled correctly&quot;},{&quot;key&quot;:&quot;strShowLess&quot;,&quot;value&quot;:&quot;Show less&quot;},{&quot;key&quot;:&quot;firstLoginPasswordChangeContactAdmin&quot;,&quot;value&quot;:&quot;The system requires that you change your password in an external system. Please contact your system administrator.&quot;},{&quot;key&quot;:&quot;viewInCatalogueTooltip&quot;,&quot;value&quot;:&quot;Open Catalogue&quot;},{&quot;key&quot;:&quot;courseConcludeFinished&quot;,&quot;value&quot;:&quot;You have finished this course.&quot;},{&quot;key&quot;:&quot;strCurrentPoints&quot;,&quot;value&quot;:&quot;Current points&quot;},{&quot;key&quot;:&quot;passwordRequestInvalid&quot;,&quot;value&quot;:&quot;Your entry for this form was not valid. Please check the fields marked &lt;span class=\&quot;icon-exclamation-circle icon-text-wrapped\&quot;&gt;&lt;\/span&gt;&quot;},{&quot;key&quot;:&quot;openListTileTooltip&quot;,&quot;value&quot;:&quot;Open {{itemname}}&quot;},{&quot;key&quot;:&quot;strBatchEnrollmentPageTitle&quot;,&quot;value&quot;:&quot;Multiple registration&quot;},{&quot;key&quot;:&quot;strSuccessfulEnrollment&quot;,&quot;value&quot;:&quot;Successful&quot;},{&quot;key&quot;:&quot;courseAccessibleAfterEnd&quot;,&quot;value&quot;:&quot;Available after the end&quot;},{&quot;key&quot;:&quot;strCourseBtnCancelCourseRequest&quot;,&quot;value&quot;:&quot;Request cancellation&quot;},{&quot;key&quot;:&quot;userprofileUsiDtDriversLicenceDocumentType&quot;,&quot;value&quot;:&quot;Driving licence&quot;},{&quot;key&quot;:&quot;jobProfileResultCountSingularSkills&quot;,&quot;value&quot;:&quot;1 Skill&quot;},{&quot;key&quot;:&quot;strDeleteRating&quot;,&quot;value&quot;:&quot;Delete rating&quot;},{&quot;key&quot;:&quot;videojsDone&quot;,&quot;value&quot;:&quot;Done&quot;},{&quot;key&quot;:&quot;courseDiscussionDelete&quot;,&quot;value&quot;:&quot;Delete&quot;},{&quot;key&quot;:&quot;strEnrollmentStatusCompleted&quot;,&quot;value&quot;:&quot;Completed&quot;},{&quot;key&quot;:&quot;hasStartDate&quot;,&quot;value&quot;:&quot;Available from $start_date$&quot;},{&quot;key&quot;:&quot;coursePrebookRequestDialogActionBtnTitle&quot;,&quot;value&quot;:&quot;Request pre-booking for the course&quot;},{&quot;key&quot;:&quot;ICON_BACK_TO_COURSE&quot;,&quot;value&quot;:&quot;Back to the course&quot;},{&quot;key&quot;:&quot;jobProfileResultCountMultipleSkillsFilteredBy&quot;,&quot;value&quot;:&quot;{{ skillCount }} Skills, filtered by:&quot;},{&quot;key&quot;:&quot;strUserEditIDDSectionTitle&quot;,&quot;value&quot;:&quot;IDD time&quot;},{&quot;key&quot;:&quot;adobeMeetingAppointment&quot;,&quot;value&quot;:&quot;Appointment&quot;},{&quot;key&quot;:&quot;usedLibraries&quot;,&quot;value&quot;:&quot;Used libraries&quot;},{&quot;key&quot;:&quot;videojsClose&quot;,&quot;value&quot;:&quot;Close&quot;},{&quot;key&quot;:&quot;videojsVideoPlayer&quot;,&quot;value&quot;:&quot;Video player&quot;},{&quot;key&quot;:&quot;strAddMoreParticipants&quot;,&quot;value&quot;:&quot;Add more participants&quot;},{&quot;key&quot;:&quot;deleteRatingCommentDialogBody&quot;,&quot;value&quot;:&quot;Are you sure you want to delete this comment? The deleted data cannot be restored.&quot;},{&quot;key&quot;:&quot;courseContentStatusWaiting&quot;,&quot;value&quot;:&quot;Not yet started&quot;},{&quot;key&quot;:&quot;supervisor.registration.prebooking.requested&quot;,&quot;value&quot;:&quot;Reservation already requested&quot;},{&quot;key&quot;:&quot;loadMoreResults&quot;,&quot;value&quot;:&quot;Load additional results&quot;},{&quot;key&quot;:&quot;strPersonalDataListItem5&quot;,&quot;value&quot;:&quot;Ratings given (stars)&quot;},{&quot;key&quot;:&quot;strPersonalDataListItem4&quot;,&quot;value&quot;:&quot;Tests and feedback given&quot;},{&quot;key&quot;:&quot;strPersonalDataListItem7&quot;,&quot;value&quot;:&quot;On-the-job training&quot;},{&quot;key&quot;:&quot;strPersonalDataListItem6&quot;,&quot;value&quot;:&quot;Saved search histories&quot;},{&quot;key&quot;:&quot;strPersonalDataListItem9&quot;,&quot;value&quot;:&quot;Personal messages sent or received&quot;},{&quot;key&quot;:&quot;strPersonalDataListItem8&quot;,&quot;value&quot;:&quot;Surveys you have taken part in&quot;},{&quot;key&quot;:&quot;strValueToAccumulate&quot;,&quot;value&quot;:&quot;Adds points to this skill&quot;},{&quot;key&quot;:&quot;strPersonalDataListItem1&quot;,&quot;value&quot;:&quot;Personal data like your first name, surname and e-mail address. It also contains entries from your address book.&quot;},{&quot;key&quot;:&quot;courseTimingConflictMessageFooter&quot;,&quot;value&quot;:&quot;Do you still want to enrol?&quot;},{&quot;key&quot;:&quot;strPersonalDataListItem3&quot;,&quot;value&quot;:&quot;Your learning history&quot;},{&quot;key&quot;:&quot;supervisor.registration.reserved.waitingList&quot;,&quot;value&quot;:&quot;A place on the waiting list has been reserved for the staff member.&quot;},{&quot;key&quot;:&quot;strPersonalDataListItem2&quot;,&quot;value&quot;:&quot;Deadlines&quot;},{&quot;key&quot;:&quot;dashboardReportResultsNone&quot;,&quot;value&quot;:&quot;No content available&quot;},{&quot;key&quot;:&quot;strCourseCompleted&quot;,&quot;value&quot;:&quot;{{eventDate}} - {{achived}} gained for the course&quot;},{&quot;key&quot;:&quot;imcListLayoutDownloadCertificateTooltip&quot;,&quot;value&quot;:&quot;Download a certificate for {{ entryName }}&quot;},{&quot;key&quot;:&quot;courseDetailsLevelAdvanced&quot;,&quot;value&quot;:&quot;Advanced&quot;},{&quot;key&quot;:&quot;strAdvancedSettings&quot;,&quot;value&quot;:&quot;Advanced settings&quot;},{&quot;key&quot;:&quot;strActivityAccepted&quot;,&quot;value&quot;:&quot;{0} accepted&quot;},{&quot;key&quot;:&quot;metaTagDescriptionNewsPage&quot;,&quot;value&quot;:&quot;News of the course&quot;},{&quot;key&quot;:&quot;employeeAgreedSubline&quot;,&quot;value&quot;:&quot;Employee's booking has been confirmed, awaiting booking by the administrator&quot;},{&quot;key&quot;:&quot;strDeleteAreYouSure&quot;,&quot;value&quot;:&quot;Are you sure you want to delete this message?&quot;},{&quot;key&quot;:&quot;courseStaffPrebookingButtonTitle&quot;,&quot;value&quot;:&quot;Reserve staff&quot;},{&quot;key&quot;:&quot;strCommonJulyFullName&quot;,&quot;value&quot;:&quot;July&quot;},{&quot;key&quot;:&quot;strCourseStatusApprovedStartEndDate&quot;,&quot;value&quot;:&quot;{{startDate}} to {{endDate}}&quot;},{&quot;key&quot;:&quot;strPrerequisitesDetailsTitle&quot;,&quot;value&quot;:&quot;Prerequisite details&quot;},{&quot;key&quot;:&quot;videojsLoaded&quot;,&quot;value&quot;:&quot;Loaded&quot;},{&quot;key&quot;:&quot;passwordChangeLoginPlaceholder&quot;,&quot;value&quot;:&quot;Your user name&quot;},{&quot;key&quot;:&quot;courseStatusCancelled&quot;,&quot;value&quot;:&quot;Cancelled&quot;},{&quot;key&quot;:&quot;sessionErrorDialogButtonTitle&quot;,&quot;value&quot;:&quot;To the login page&quot;},{&quot;key&quot;:&quot;validateTextFieldMandatory&quot;,&quot;value&quot;:&quot;{0}: Please complete this field.&quot;},{&quot;key&quot;:&quot;pageTitleCompetencies&quot;,&quot;value&quot;:&quot;My competencies&quot;},{&quot;key&quot;:&quot;skillsWithAssessmentLabelText&quot;,&quot;value&quot;:&quot;Assigned skills with progress achieved&quot;},{&quot;key&quot;:&quot;courseEnrolmentPrerequisiteDialogBodyError&quot;,&quot;value&quot;:&quot;You do not fulfil the prerequisites for participation in this course. However, if you would still like to apply for participation in this course, please contact the administrator responsible.&quot;},{&quot;key&quot;:&quot;csFacetFreeOfChargeExternal&quot;,&quot;value&quot;:&quot;Free&quot;},{&quot;key&quot;:&quot;locationAttachmentTitlePrefix&quot;,&quot;value&quot;:&quot;Open attachment:&quot;},{&quot;key&quot;:&quot;hours&quot;,&quot;value&quot;:&quot;Hours&quot;},{&quot;key&quot;:&quot;validateEmailFieldFormat&quot;,&quot;value&quot;:&quot;Please enter a valid email address (e.g. firstname.name@example.com)&quot;},{&quot;key&quot;:&quot;daysAgoFormat&quot;,&quot;value&quot;:&quot;%d days ago&quot;},{&quot;key&quot;:&quot;showAllCoursesStartingSoon&quot;,&quot;value&quot;:&quot;Show all courses starting soon&quot;},{&quot;key&quot;:&quot;strMoveEnrollmentSuccessMessage&quot;,&quot;value&quot;:&quot;{{userName}} was successfully moved to {{courseName}}.&quot;},{&quot;key&quot;:&quot;mediaTypeExternalContent&quot;,&quot;value&quot;:&quot;External learning content&quot;},{&quot;key&quot;:&quot;MentoredTrainingsMenuItemTitle&quot;,&quot;value&quot;:&quot;Open supervised training&quot;},{&quot;key&quot;:&quot;videojsDescriptionsOff&quot;,&quot;value&quot;:&quot;Descriptions off&quot;},{&quot;key&quot;:&quot;videojsNonFullscreen&quot;,&quot;value&quot;:&quot;No full screen&quot;},{&quot;key&quot;:&quot;strProgrammesAvailableNow&quot;,&quot;value&quot;:&quot;{{nrCourses}} Learning paths available&quot;},{&quot;key&quot;:&quot;viewStaffMemberCourses&quot;,&quot;value&quot;:&quot;Employee content&quot;},{&quot;key&quot;:&quot;strBtnAccept&quot;,&quot;value&quot;:&quot;Accept&quot;},{&quot;key&quot;:&quot;strExperiencePanelTitle&quot;,&quot;value&quot;:&quot;Experience&quot;},{&quot;key&quot;:&quot;strCancel&quot;,&quot;value&quot;:&quot;Cancel&quot;},{&quot;key&quot;:&quot;signupErrorMessageEmailNotOk&quot;,&quot;value&quot;:&quot;Not a valid email address&quot;},{&quot;key&quot;:&quot;priceSubline&quot;,&quot;value&quot;:&quot;Price including VAT&quot;},{&quot;key&quot;:&quot;loginHrSystemOption1&quot;,&quot;value&quot;:&quot;Option (1)&quot;},{&quot;key&quot;:&quot;loginHrSystemOption2&quot;,&quot;value&quot;:&quot;Option (2)&quot;},{&quot;key&quot;:&quot;loginHrSystemOption3&quot;,&quot;value&quot;:&quot;Option (3)&quot;},{&quot;key&quot;:&quot;mTypeActivityName&quot;,&quot;value&quot;:&quot;Activity&quot;},{&quot;key&quot;:&quot;CANCEL_COURSE&quot;,&quot;value&quot;:&quot;Cancel course&quot;},{&quot;key&quot;:&quot;loginHrSystemOption4&quot;,&quot;value&quot;:&quot;Option (4)&quot;},{&quot;key&quot;:&quot;browserRejectParagraph1&quot;,&quot;value&quot;:&quot;Your Internet browser is no longer up-to-date and is no longer compatible with our website. Compatible browsers are listed below.&quot;},{&quot;key&quot;:&quot;browserRejectParagraph2&quot;,&quot;value&quot;:&quot;Click on one of the icons to download a browser&quot;},{&quot;key&quot;:&quot;courseContentStart&quot;,&quot;value&quot;:&quot;Start&quot;},{&quot;key&quot;:&quot;strUserEditIDDSectionInvalidPatternErrorText&quot;,&quot;value&quot;:&quot;The entered value in not valid, please enter a value in the following pattern: hh:mm&quot;},{&quot;key&quot;:&quot;tutors&quot;,&quot;value&quot;:&quot;Tutors&quot;},{&quot;key&quot;:&quot;strAll&quot;,&quot;value&quot;:&quot;All&quot;},{&quot;key&quot;:&quot;strAssignSkillsSuccessMessage&quot;,&quot;value&quot;:&quot;The following skills have been successfully assigned to the competency profile:&quot;},{&quot;key&quot;:&quot;userprofileUsiCertRegTownCityOfBirthTitle&quot;,&quot;value&quot;:&quot;Place of birth&quot;},{&quot;key&quot;:&quot;userprofileUsiStateNameACT&quot;,&quot;value&quot;:&quot;Australian Capital Territory&quot;},{&quot;key&quot;:&quot;strTitle&quot;,&quot;value&quot;:&quot;Title&quot;},{&quot;key&quot;:&quot;userprofileUsiDtMedicareDocumentType&quot;,&quot;value&quot;:&quot;Medicare card&quot;},{&quot;key&quot;:&quot;strChoosen&quot;,&quot;value&quot;:&quot;selected&quot;},{&quot;key&quot;:&quot;strEnrollmentStatusORDERED&quot;,&quot;value&quot;:&quot;Requested&quot;},{&quot;key&quot;:&quot;previousComponent&quot;,&quot;value&quot;:&quot;Previous&quot;},{&quot;key&quot;:&quot;strMyCoursesDetailRevealCancellationRequestHeadline&quot;,&quot;value&quot;:&quot;Would you like to cancel the course?&quot;},{&quot;key&quot;:&quot;strEmployeeHeaderBreadcrumbMyStaffTitle&quot;,&quot;value&quot;:&quot;Back to my staff page&quot;},{&quot;key&quot;:&quot;strPrebookedCoursesAvailableSoonDueDatePast&quot;,&quot;value&quot;:&quot;No courses available. Due since {{dueDate}}&quot;},{&quot;key&quot;:&quot;strProgrammeEnrolRevealCancelBtn&quot;,&quot;value&quot;:&quot;Cancel&quot;},{&quot;key&quot;:&quot;strRecentUnreviewedActivity&quot;,&quot;value&quot;:&quot;Recent unreviewed activity&quot;},{&quot;key&quot;:&quot;strParticipantBundleCheckout&quot;,&quot;value&quot;:&quot;Participant&quot;},{&quot;key&quot;:&quot;staffEnrolmentSelection&quot;,&quot;value&quot;:&quot;You have selected the following learning path:&quot;},{&quot;key&quot;:&quot;personalAreaCourseStatusRegisteredPast&quot;,&quot;value&quot;:&quot;Expired on $END_DATE$&quot;},{&quot;key&quot;:&quot;ch_selected_author_none&quot;,&quot;value&quot;:&quot;No author selected&quot;},{&quot;key&quot;:&quot;videojsCaptionsOn&quot;,&quot;value&quot;:&quot;Subtitle on&quot;},{&quot;key&quot;:&quot;courseAccessibleBeforeStart&quot;,&quot;value&quot;:&quot;Available before the start&quot;},{&quot;key&quot;:&quot;strCommonNovember&quot;,&quot;value&quot;:&quot;Nov&quot;},{&quot;key&quot;:&quot;courseDurationOfUseDay&quot;,&quot;value&quot;:&quot;Day&quot;},{&quot;key&quot;:&quot;strHistoryFolderProgressInfo&quot;,&quot;value&quot;:&quot;{{achieved}} \/ {{minimum}} reached&quot;},{&quot;key&quot;:&quot;strQtiUserOrderMultipleChoice&quot;,&quot;value&quot;:&quot;Please select the right answer.&quot;},{&quot;key&quot;:&quot;strFilterBy&quot;,&quot;value&quot;:&quot;filtered by&quot;},{&quot;key&quot;:&quot;strConditionNotFulfilled&quot;,&quot;value&quot;:&quot;Condition has not yet been fulfilled&quot;},{&quot;key&quot;:&quot;ltiStartPlayer&quot;,&quot;value&quot;:&quot;Open external LTI tool&quot;},{&quot;key&quot;:&quot;metaTagDescriptionPersonalArea&quot;,&quot;value&quot;:&quot;Personal area&quot;},{&quot;key&quot;:&quot;strBatchPrebookingResultsHeadline&quot;,&quot;value&quot;:&quot;Pre-booking results&quot;},{&quot;key&quot;:&quot;strRestrictionDropdownConditionInfoGroupHeadline&quot;,&quot;value&quot;:&quot;If you are part of the group:&quot;},{&quot;key&quot;:&quot;registerText&quot;,&quot;value&quot;:&quot; &quot;},{&quot;key&quot;:&quot;exportMyContentsAsPDFTooltip&quot;,&quot;value&quot;:&quot;Export as PDF&quot;},{&quot;key&quot;:&quot;userDefinedIdTitle&quot;,&quot;value&quot;:&quot;Number&quot;},{&quot;key&quot;:&quot;videojsMonospaceSansSerif&quot;,&quot;value&quot;:&quot;Monospace Sans-Serif&quot;},{&quot;key&quot;:&quot;strComponentLockedDialogTitle&quot;,&quot;value&quot;:&quot;Training is currently locked&quot;},{&quot;key&quot;:&quot;strReportSkillWarningChangeNotification&quot;,&quot;value&quot;:&quot;The changes to the Skills have been partially saved, thus some Skills could not be updated!&quot;},{&quot;key&quot;:&quot;catalogConcludeMediaCanNotConcludeManually&quot;,&quot;value&quot;:&quot;{0} cannot be completed manually&quot;},{&quot;key&quot;:&quot;strCommonAprilFullName&quot;,&quot;value&quot;:&quot;April&quot;},{&quot;key&quot;:&quot;strMyLearningsDetailRevealDeletionText&quot;,&quot;value&quot;:&quot;This action cannot be undone and the course will be removed from your personal syllabus.&quot;},{&quot;key&quot;:&quot;strBreadcrumbsEnrollmentFormPageName&quot;,&quot;value&quot;:&quot;Enrolment form&quot;},{&quot;key&quot;:&quot;strCourseEnrolmentBySupervisorPrerequisiteDialogMandatory&quot;,&quot;value&quot;:&quot;The user you selected does not fulfil the necessary prerequisites for this training. If you nevertheless want to apply to participate, please contact the relevant administrator.&quot;},{&quot;key&quot;:&quot;naviLinkTitleHonourCode&quot;,&quot;value&quot;:&quot;Open honour code&quot;},{&quot;key&quot;:&quot;bypassDiscussion&quot;,&quot;value&quot;:&quot;Skip to discussion&quot;},{&quot;key&quot;:&quot;validatePasswordRepeatMatch&quot;,&quot;value&quot;:&quot;The passwords don't match. Please retype your password.&quot;},{&quot;key&quot;:&quot;strReasonForCancellationSelect&quot;,&quot;value&quot;:&quot;Please select a reason for cancellation&quot;},{&quot;key&quot;:&quot;privacyPolicyReject&quot;,&quot;value&quot;:&quot;Decline End User Licence Agreement&quot;},{&quot;key&quot;:&quot;tileCommonObjectMetadataFreePlacesNo&quot;,&quot;value&quot;:&quot;No free spaces&quot;},{&quot;key&quot;:&quot;strAttributeLearningFormName&quot;,&quot;value&quot;:&quot;Learning mode&quot;},{&quot;key&quot;:&quot;strRead&quot;,&quot;value&quot;:&quot;Read&quot;},{&quot;key&quot;:&quot;businessError_PRS0126&quot;,&quot;value&quot;:&quot;There is already a user account with this e-mail address. Please use another e-mail address or register &lt;a href=\&quot;{0}\&quot;&gt;here&lt;\/a&gt;.&quot;},{&quot;key&quot;:&quot;termsTitle&quot;,&quot;value&quot;:&quot;Terms of use&quot;},{&quot;key&quot;:&quot;certificationRelevant&quot;,&quot;value&quot;:&quot;Certification relevant&quot;},{&quot;key&quot;:&quot;courseDiscussionShowAllComments&quot;,&quot;value&quot;:&quot;Show all answers&quot;},{&quot;key&quot;:&quot;certificationHistoryButton&quot;,&quot;value&quot;:&quot;History&quot;},{&quot;key&quot;:&quot;openCourseSyllabusItemIsLocked&quot;,&quot;value&quot;:&quot;is currently not released&quot;},{&quot;key&quot;:&quot;catalogLoadMore&quot;,&quot;value&quot;:&quot;More&quot;},{&quot;key&quot;:&quot;courseEmployeeBookingWaitingSubline&quot;,&quot;value&quot;:&quot;Employee is on the waiting list for this course&quot;},{&quot;key&quot;:&quot;strMyCoursesConcludeRevealTextConclude&quot;,&quot;value&quot;:&quot;Do you want to end the course? Before ending the course, please ensure that you have processed all the necessary components.&quot;},{&quot;key&quot;:&quot;videojsReset&quot;,&quot;value&quot;:&quot;Reset&quot;},{&quot;key&quot;:&quot;userprofileUsiCitizenTownCityOfBirthTitle&quot;,&quot;value&quot;:&quot;Place of birth&quot;},{&quot;key&quot;:&quot;videojsSmallCaps&quot;,&quot;value&quot;:&quot;Small caps&quot;},{&quot;key&quot;:&quot;strInterestOpenRevealButton&quot;,&quot;value&quot;:&quot;Select interests&quot;},{&quot;key&quot;:&quot;jobProfileFlyoutTitle&quot;,&quot;value&quot;:&quot;Description&quot;},{&quot;key&quot;:&quot;strSystemMetaDataAttributeSkills&quot;,&quot;value&quot;:&quot;Skills&quot;},{&quot;key&quot;:&quot;userprofileUsiValidationConfirmation&quot;,&quot;value&quot;:&quot;valid&quot;},{&quot;key&quot;:&quot;strPleaseSelectAMessage&quot;,&quot;value&quot;:&quot;Please select a message from the list.&quot;},{&quot;key&quot;:&quot;chooseValueEmptyOption&quot;,&quot;value&quot;:&quot;Choose...&quot;},{&quot;key&quot;:&quot;ratingBoxStarsPlural&quot;,&quot;value&quot;:&quot;{{count}} stars&quot;},{&quot;key&quot;:&quot;status&quot;,&quot;value&quot;:&quot;Status&quot;},{&quot;key&quot;:&quot;supervisor.registration.prebooking.confirmed&quot;,&quot;value&quot;:&quot;Employee is already pre-booked.&quot;},{&quot;key&quot;:&quot;CANCEL_PROGRAMME&quot;,&quot;value&quot;:&quot;Cancel the learning path&quot;},{&quot;key&quot;:&quot;openAchievableBadges&quot;,&quot;value&quot;:&quot;Show all badges&quot;},{&quot;key&quot;:&quot;strCourseRegFormTermsOfUseIAgree&quot;,&quot;value&quot;:&quot;I agree&quot;},{&quot;key&quot;:&quot;certificateAvailabilityWhenOrganiserConcludeCourse&quot;,&quot;value&quot;:&quot;The certificate is available as soon as the organiser has marked the course as passed.&quot;},{&quot;key&quot;:&quot;supervisor.registration.prebooking.selectable&quot;,&quot;value&quot;:&quot;Not yet reserved for the course.&quot;},{&quot;key&quot;:&quot;staffEnrolmentPageTitle&quot;,&quot;value&quot;:&quot;Book staff member&quot;},{&quot;key&quot;:&quot;strMediaAvailabilityInfoFrom&quot;,&quot;value&quot;:&quot;This component is accessible from {{startDate}}&quot;},{&quot;key&quot;:&quot;strBatchEnrollmentResultsHeadline&quot;,&quot;value&quot;:&quot;Enrolment results&quot;},{&quot;key&quot;:&quot;error404MessageDescription&quot;,&quot;value&quot;:&quot;The page requested is unfortunately not available in our system.&quot;},{&quot;key&quot;:&quot;strAddToCartFailedForSomeUsers&quot;,&quot;value&quot;:&quot;Due to essential system maintenance this course is not currently available to purchase&quot;},{&quot;key&quot;:&quot;strEmployeeHeaderEnroll&quot;,&quot;value&quot;:&quot;Enrol&quot;},{&quot;key&quot;:&quot;courseAddToWaitingListDialogSelfregistrationBody&quot;,&quot;value&quot;:&quot;There are currently no vacant spaces available. The user will be put on the waiting list.&quot;},{&quot;key&quot;:&quot;userProfilePictureAlt&quot;,&quot;value&quot;:&quot;Profile picture&quot;},{&quot;key&quot;:&quot;strEnrollmentStatus&quot;,&quot;value&quot;:&quot;Enrollment status&quot;},{&quot;key&quot;:&quot;landingPageEndsAt&quot;,&quot;value&quot;:&quot;Ends on&quot;},{&quot;key&quot;:&quot;strSystemMetaDataAttributePrice&quot;,&quot;value&quot;:&quot;Price&quot;},{&quot;key&quot;:&quot;videojsPlaybackRate&quot;,&quot;value&quot;:&quot;Playback speed&quot;},{&quot;key&quot;:&quot;strCurriculum&quot;,&quot;value&quot;:&quot;Content&quot;},{&quot;key&quot;:&quot;strTaskTitle&quot;,&quot;value&quot;:&quot;Task&quot;},{&quot;key&quot;:&quot;strCertificationActivated&quot;,&quot;value&quot;:&quot;{{eventDate}} Certification activated&quot;},{&quot;key&quot;:&quot;strNoPointsRequestedYet&quot;,&quot;value&quot;:&quot;No points requested yet&quot;},{&quot;key&quot;:&quot;strPrerequisitesButtonOpenCourseSyllabus&quot;,&quot;value&quot;:&quot;Open classroom&quot;},{&quot;key&quot;:&quot;courseEnrolmentPrerequisiteDialogConditionRole&quot;,&quot;value&quot;:&quot;Job profile&quot;},{&quot;key&quot;:&quot;strPendingTasks&quot;,&quot;value&quot;:&quot;{{no}} pending&quot;},{&quot;key&quot;:&quot;deleteAccountFailedNotificationMessage&quot;,&quot;value&quot;:&quot;Unfortunately, the profile could not be deleted. Please contact your administrator.&quot;},{&quot;key&quot;:&quot;dashboardReportResult&quot;,&quot;value&quot;:&quot;Result&quot;},{&quot;key&quot;:&quot;1d&quot;,&quot;value&quot;:&quot;one day&quot;},{&quot;key&quot;:&quot;strESignatureRevealHeadline&quot;,&quot;value&quot;:&quot;eSignature required&quot;},{&quot;key&quot;:&quot;userprofileUsiBirthCertDatePrintedTitle&quot;,&quot;value&quot;:&quot;Date of issue&quot;},{&quot;key&quot;:&quot;1m&quot;,&quot;value&quot;:&quot;one month&quot;},{&quot;key&quot;:&quot;1y&quot;,&quot;value&quot;:&quot;one year&quot;},{&quot;key&quot;:&quot;strDropzoneText&quot;,&quot;value&quot;:&quot;Drag your files here or browse&quot;},{&quot;key&quot;:&quot;courseDurationOfUseDays&quot;,&quot;value&quot;:&quot;Days&quot;},{&quot;key&quot;:&quot;strMyCoursesRemovePrebookingRevealProceedButtonTitle&quot;,&quot;value&quot;:&quot;Remove pre-booking&quot;},{&quot;key&quot;:&quot;courseEnrolmentPrerequisiteDialogSupervisorBodyError&quot;,&quot;value&quot;:&quot;The staff member that you would like to register does not fulfil the prerequisites for participation in this course. However, if you would still like to request the participation of the staff member in this course, please contact the administrator responsible.&quot;},{&quot;key&quot;:&quot;strDisclaimerHeader&quot;,&quot;value&quot;:&quot;Enrollment conditions are defined.\u2028&quot;},{&quot;key&quot;:&quot;courseConcludeBackTitle&quot;,&quot;value&quot;:&quot;Back to the course&quot;},{&quot;key&quot;:&quot;strReopened&quot;,&quot;value&quot;:&quot;Reopened&quot;},{&quot;key&quot;:&quot;strAlreadyInCart&quot;,&quot;value&quot;:&quot;One or more of the items you selected are already added to the cart.&quot;},{&quot;key&quot;:&quot;strCourseNotEnrolledStartEndDate&quot;,&quot;value&quot;:&quot;{{startDate}} to {{endDate}}&quot;},{&quot;key&quot;:&quot;strCourseCompletedNoDate&quot;,&quot;value&quot;:&quot;gained for the course&quot;},{&quot;key&quot;:&quot;MentoredTrainingsMenuItem&quot;,&quot;value&quot;:&quot;Mentored training&quot;},{&quot;key&quot;:&quot;strProgrammePrerequisitesCancellationDependenciesRequestError&quot;,&quot;value&quot;:&quot;The cancellation request could not be processed. Please contact the administrator or try again later.&quot;},{&quot;key&quot;:&quot;deleteRatingDialogCloseTooltip&quot;,&quot;value&quot;:&quot;Cancel rating deletion&quot;},{&quot;key&quot;:&quot;strSkillHistoryPoints&quot;,&quot;value&quot;:&quot;points&quot;},{&quot;key&quot;:&quot;strOptionallyApplyForEmployee&quot;,&quot;value&quot;:&quot;Additional request&quot;},{&quot;key&quot;:&quot;feedbackSubmitted&quot;,&quot;value&quot;:&quot;Your feedback has been submitted.&quot;},{&quot;key&quot;:&quot;strSystemMetaDataAttributeCertifications&quot;,&quot;value&quot;:&quot;Certifications&quot;},{&quot;key&quot;:&quot;strPlacesSinglePlace&quot;,&quot;value&quot;:&quot;Single place&quot;},{&quot;key&quot;:&quot;strCourseStatusProgressWithDueDatePast&quot;,&quot;value&quot;:&quot;Overdue since {{dueDate}}&quot;},{&quot;key&quot;:&quot;strProgrammeNotEnrolledDurationOfUse&quot;,&quot;value&quot;:&quot;Available for {{durationUse}}&quot;},{&quot;key&quot;:&quot;ch_more_actions&quot;,&quot;value&quot;:&quot;More actions&quot;},{&quot;key&quot;:&quot;catalogConcludeMediaFailed&quot;,&quot;value&quot;:&quot;{0} not passed&quot;},{&quot;key&quot;:&quot;fileUploadFailedWithReasonMessage&quot;,&quot;value&quot;:&quot;Upload failed. {{reason}}&quot;},{&quot;key&quot;:&quot;showOnMapsLink&quot;,&quot;value&quot;:&quot;Open in Maps&quot;},{&quot;key&quot;:&quot;strPrerequisitesSetHeaderTargetStatus&quot;,&quot;value&quot;:&quot;Target status&quot;},{&quot;key&quot;:&quot;strEnrollmentStatusDELETE&quot;,&quot;value&quot;:&quot;Deletion in process&quot;},{&quot;key&quot;:&quot;pageTitleCourseCertificate&quot;,&quot;value&quot;:&quot;Certificate&quot;},{&quot;key&quot;:&quot;videojsVolumeLevel&quot;,&quot;value&quot;:&quot;Volume level&quot;},{&quot;key&quot;:&quot;enroll.my.staff.user&quot;,&quot;value&quot;:&quot;User&quot;},{&quot;key&quot;:&quot;revealTaskApproveActionBtn&quot;,&quot;value&quot;:&quot;Approve course&quot;},{&quot;key&quot;:&quot;strstrSeatAllocationEnrolUnfulfielledTitle&quot;,&quot;value&quot;:&quot;Unfulfilled conditions for space allocation&quot;},{&quot;key&quot;:&quot;videojsDropshadow&quot;,&quot;value&quot;:&quot;Drop shadow&quot;},{&quot;key&quot;:&quot;userprofileUsiBirthCertCertificateNumberTitle&quot;,&quot;value&quot;:&quot;Document number&quot;},{&quot;key&quot;:&quot;strMyCoursesRemovePrebookingRevealProceedButton&quot;,&quot;value&quot;:&quot;Remove pre-booking&quot;},{&quot;key&quot;:&quot;imprintTitle&quot;,&quot;value&quot;:&quot;Imprint&quot;},{&quot;key&quot;:&quot;videojsSubtitlesOff&quot;,&quot;value&quot;:&quot;Subtitles off&quot;},{&quot;key&quot;:&quot;strCourseDueDateLabelOnTrack&quot;,&quot;value&quot;:&quot;Scheduled&quot;},{&quot;key&quot;:&quot;strNoJobProfileSelected&quot;,&quot;value&quot;:&quot;No job profiles selected&quot;},{&quot;key&quot;:&quot;afterCourseEnd&quot;,&quot;value&quot;:&quot;{{period}} after course end&quot;},{&quot;key&quot;:&quot;strCommonJanuary&quot;,&quot;value&quot;:&quot;Jan&quot;},{&quot;key&quot;:&quot;userSyllabusTabBarName&quot;,&quot;value&quot;:&quot;Employee's syllabus&quot;},{&quot;key&quot;:&quot;pageTitleCatalogue&quot;,&quot;value&quot;:&quot;Catalogue&quot;},{&quot;key&quot;:&quot;strIdpUploadEmployeeAllowed&quot;,&quot;value&quot;:&quot;Allow staff member to upload data files&quot;},{&quot;key&quot;:&quot;dashboardTaskEnrolmentRequestedStep&quot;,&quot;value&quot;:&quot;Enrolment requested&quot;},{&quot;key&quot;:&quot;strCourseSubscriptionState_WAITING&quot;,&quot;value&quot;:&quot;Waiting&quot;},{&quot;key&quot;:&quot;courseDiscussionDeletePostTitle&quot;,&quot;value&quot;:&quot;Delete post&quot;},{&quot;key&quot;:&quot;videojsAudioPlayer&quot;,&quot;value&quot;:&quot;Audio player&quot;},{&quot;key&quot;:&quot;passwordChangePlaceholder&quot;,&quot;value&quot;:&quot;Password&quot;},{&quot;key&quot;:&quot;strCourseSubscriptionState_INDIVIDUAL_LEARNING_PLAN&quot;,&quot;value&quot;:&quot;Personal syllabus&quot;},{&quot;key&quot;:&quot;strCustomNgSelectNoResultsFoundText&quot;,&quot;value&quot;:&quot;No results found&quot;},{&quot;key&quot;:&quot;END_DATE&quot;,&quot;value&quot;:&quot;to&quot;},{&quot;key&quot;:&quot;qtiTestSubmissionBtn&quot;,&quot;value&quot;:&quot;Submit assessment&quot;},{&quot;key&quot;:&quot;strMyCoursesErrorRevealHttpStatusCode&quot;,&quot;value&quot;:&quot;Error code:&quot;},{&quot;key&quot;:&quot;strTaskFailed&quot;,&quot;value&quot;:&quot;Failed&quot;},{&quot;key&quot;:&quot;sourceOfLicense&quot;,&quot;value&quot;:&quot;Source of license information&quot;},{&quot;key&quot;:&quot;courseEnrolmentDialogSelfregistrationWithConfirmationBody&quot;,&quot;value&quot;:&quot;Booking for this course requires approval. Continue in order to inform the person responsible for approval. As soon as the course has been confirmed, you can start.&quot;},{&quot;key&quot;:&quot;strCourseEnrolmentPrerequisiteDialogMandatory&quot;,&quot;value&quot;:&quot;You do not meet the prerequisites required for this course or this course template. To request participation or pre-book, anyway, please contact your administrator.&quot;},{&quot;key&quot;:&quot;supervisor.participants.count&quot;,&quot;value&quot;:&quot;Staff member $start$ of $end$&quot;},{&quot;key&quot;:&quot;strEmployeeHeaderBreadcrumbCompetenciesText&quot;,&quot;value&quot;:&quot;Competency profile&quot;},{&quot;key&quot;:&quot;strFileUploadError&quot;,&quot;value&quot;:&quot;File upload not possible&quot;},{&quot;key&quot;:&quot;naviLinkTitleMyInbox&quot;,&quot;value&quot;:&quot;Open messages&quot;},{&quot;key&quot;:&quot;strShareCourseTemplateConfirmButton&quot;,&quot;value&quot;:&quot;Share this course template now with recipients provided&quot;},{&quot;key&quot;:&quot;withoutEvaluation&quot;,&quot;value&quot;:&quot;Without classification&quot;},{&quot;key&quot;:&quot;strSystemMetaDataAttributeCourseContentLearningForm&quot;,&quot;value&quot;:&quot;Learning mode&quot;},{&quot;key&quot;:&quot;strCertificationExportIDColumn&quot;,&quot;value&quot;:&quot;ID&quot;},{&quot;key&quot;:&quot;strCourseExpired&quot;,&quot;value&quot;:&quot;Expired on {{endDate}}&quot;},{&quot;key&quot;:&quot;courseDiscussionAvailableFromTo&quot;,&quot;value&quot;:&quot;{0} to {1}&quot;},{&quot;key&quot;:&quot;strCourseApproveComment&quot;,&quot;value&quot;:&quot;Note regarding approval&quot;},{&quot;key&quot;:&quot;availableSoon&quot;,&quot;value&quot;:&quot;Courses available soon&quot;},{&quot;key&quot;:&quot;strProgrammePrerequisitesEnrolmentOrderMessageNotMandatory&quot;,&quot;value&quot;:&quot;The staff member that you would like to register does not meet the recommended requirements for this learning path. Do you want to continue with the registration in spite of this?&quot;},{&quot;key&quot;:&quot;coursePrebookDialogActionBtnText&quot;,&quot;value&quot;:&quot;Pre-book&quot;},{&quot;key&quot;:&quot;imc-qr-title&quot;,&quot;value&quot;:&quot;Your QR code&quot;},{&quot;key&quot;:&quot;descriptionTabBarName&quot;,&quot;value&quot;:&quot;Overview&quot;},{&quot;key&quot;:&quot;mTypeMaharaPortfolioName&quot;,&quot;value&quot;:&quot;Mahara Portfolio&quot;},{&quot;key&quot;:&quot;strTemplateNoRelationNoCourses&quot;,&quot;value&quot;:&quot;Courses available soon&quot;},{&quot;key&quot;:&quot;courseFeaturePracticalExercise&quot;,&quot;value&quot;:&quot;practical exercises&quot;},{&quot;key&quot;:&quot;strOverdueSince&quot;,&quot;value&quot;:&quot;Due since {{ dueDate }}&quot;},{&quot;key&quot;:&quot;request.for.staffmember&quot;,&quot;value&quot;:&quot;Request for employee&quot;},{&quot;key&quot;:&quot;videojsAudioTrack&quot;,&quot;value&quot;:&quot;Audio track&quot;},{&quot;key&quot;:&quot;revealTaskDeclineActionBtn&quot;,&quot;value&quot;:&quot;Confirm declination&quot;},{&quot;key&quot;:&quot;mRating3More&quot;,&quot;value&quot;:&quot;3 stars &amp; more&quot;},{&quot;key&quot;:&quot;strProgrammeBtnOpenCurriculum&quot;,&quot;value&quot;:&quot;Open learning path&quot;},{&quot;key&quot;:&quot;supervisor.registration.prebooking.rejected&quot;,&quot;value&quot;:&quot;Employee's enrolment was declined.&quot;},{&quot;key&quot;:&quot;beforeCourseEnd&quot;,&quot;value&quot;:&quot;{{period}} before course end&quot;},{&quot;key&quot;:&quot;privacyPolicyTitle&quot;,&quot;value&quot;:&quot;End user licence agreement&quot;},{&quot;key&quot;:&quot;qtiTestRestartDialogSubmitButtonTitle&quot;,&quot;value&quot;:&quot;Restart&quot;},{&quot;key&quot;:&quot;strManageEnrollmentToTheCourse&quot;,&quot;value&quot;:&quot;on the course&quot;},{&quot;key&quot;:&quot;strTrainingCalendarTodayButton&quot;,&quot;value&quot;:&quot;Today&quot;},{&quot;key&quot;:&quot;strMediaAvailabilityInfoUntil&quot;,&quot;value&quot;:&quot;This component was accessible until {{endDate}}&quot;},{&quot;key&quot;:&quot;myInbox&quot;,&quot;value&quot;:&quot;Messages&quot;},{&quot;key&quot;:&quot;sessionErrorRedirectBtnOK&quot;,&quot;value&quot;:&quot;Log in again and continue&quot;},{&quot;key&quot;:&quot;strAttParticipantsShownLimitedNotification&quot;,&quot;value&quot;:&quot;Due to a high number of participants and\/or media elements, the display is limited to the top {{maxUsers}} participants. Bulk changes will still apply for all participants including the invisibles. Please use the search function to locate additional participants.&quot;},{&quot;key&quot;:&quot;strSelectDate&quot;,&quot;value&quot;:&quot;Select date&quot;},{&quot;key&quot;:&quot;strPreparingZipCertificateError&quot;,&quot;value&quot;:&quot;Your request cannot be processed at present. Please try again later or contact your administrator.&quot;},{&quot;key&quot;:&quot;strFeedbackMissingPrerequisites&quot;,&quot;value&quot;:&quot;Missing prerequisites&quot;},{&quot;key&quot;:&quot;userprofileUsiCertRegAcquisitionDateTitle&quot;,&quot;value&quot;:&quot;Date of entry&quot;},{&quot;key&quot;:&quot;strQtiMissingTestItemCorrectAnswer&quot;,&quot;value&quot;:&quot;Please select the right answer.&quot;},{&quot;key&quot;:&quot;paymentTransactionCompletedDialogTitle&quot;,&quot;value&quot;:&quot;Transaction successful&quot;},{&quot;key&quot;:&quot;paymentTransactionCancelledDialogText&quot;,&quot;value&quot;:&quot;Transaction aborted&quot;},{&quot;key&quot;:&quot;strPrerequisitesSubsetName&quot;,&quot;value&quot;:&quot;Prerequisite sub-set&quot;},{&quot;key&quot;:&quot;competenciesCertificationProgressBarInProggress&quot;,&quot;value&quot;:&quot;In Progress&quot;},{&quot;key&quot;:&quot;strSelectAllMessages&quot;,&quot;value&quot;:&quot;Select all messages&quot;},{&quot;key&quot;:&quot;strDisclaimerTitle&quot;,&quot;value&quot;:&quot;Do you want to leave this page?&quot;},{&quot;key&quot;:&quot;dashboardReportResults&quot;,&quot;value&quot;:&quot;Results&quot;},{&quot;key&quot;:&quot;strCommonTimezone&quot;,&quot;value&quot;:&quot;Time zone&quot;},{&quot;key&quot;:&quot;coursePrebookRemovalDialogActionBtnTitle&quot;,&quot;value&quot;:&quot;Remove pre-booking&quot;},{&quot;key&quot;:&quot;svgContrastControllerOpenButton&quot;,&quot;value&quot;:&quot;Open the contrast slider by pressing the Enter key.&quot;},{&quot;key&quot;:&quot;identificationBookingError&quot;,&quot;value&quot;:&quot;Invalid or no identification selected&quot;},{&quot;key&quot;:&quot;sessionErrorRedirectTitle&quot;,&quot;value&quot;:&quot;To the login page&quot;},{&quot;key&quot;:&quot;cancelButton&quot;,&quot;value&quot;:&quot;Cancel&quot;},{&quot;key&quot;:&quot;strEventTrackingAlreadyCompleted&quot;,&quot;value&quot;:&quot;Attendance tracking was already done&quot;},{&quot;key&quot;:&quot;csSearch&quot;,&quot;value&quot;:&quot;Search&quot;},{&quot;key&quot;:&quot;strActivityDeclined&quot;,&quot;value&quot;:&quot;{0} declined&quot;},{&quot;key&quot;:&quot;strEditRatingComment&quot;,&quot;value&quot;:&quot;Edit comment&quot;},{&quot;key&quot;:&quot;strCoursePrerequisitesStatusCheck&quot;,&quot;value&quot;:&quot;You do not fulfil the recommended prerequisites for this course.&quot;},{&quot;key&quot;:&quot;loginUsingWindowsAuthentication&quot;,&quot;value&quot;:&quot;Log in with your Windows login&quot;},{&quot;key&quot;:&quot;fieldTelephoneNumberViolation&quot;,&quot;value&quot;:&quot;Please enter a valid value.&quot;},{&quot;key&quot;:&quot;courseReplacementErrorTitle&quot;,&quot;value&quot;:&quot;The replace function is restricted for &lt;course name&gt;&quot;},{&quot;key&quot;:&quot;newUserCreateAnother&quot;,&quot;value&quot;:&quot;Create another&quot;},{&quot;key&quot;:&quot;shareProgram&quot;,&quot;value&quot;:&quot;Share this learning path&quot;},{&quot;key&quot;:&quot;searchTermPlaceholder&quot;,&quot;value&quot;:&quot;Search term&quot;},{&quot;key&quot;:&quot;landingPageVideoUrl&quot;,&quot;value&quot;:&quot; &quot;},{&quot;key&quot;:&quot;strMyCoursesRemoveRevealProceedButton&quot;,&quot;value&quot;:&quot;Yes, remove&quot;},{&quot;key&quot;:&quot;strCourseStatusPassed&quot;,&quot;value&quot;:&quot;Finished on {{completionDate}}&quot;},{&quot;key&quot;:&quot;strCourseParticipationRefusedMessage&quot;,&quot;value&quot;:&quot;You have declined participation in the course.&quot;},{&quot;key&quot;:&quot;courseEnrolmentEmployeeDialogBody&quot;,&quot;value&quot;:&quot;Employee will be enrolled in the course&quot;},{&quot;key&quot;:&quot;userprofileUsiRegistrationRevealTitle&quot;,&quot;value&quot;:&quot;USI application&quot;},{&quot;key&quot;:&quot;ppExpressCheckoutBundle&quot;,&quot;value&quot;:&quot;Pay with PayPal Express&quot;},{&quot;key&quot;:&quot;courseAlreadyFinished&quot;,&quot;value&quot;:&quot;Already finished&quot;},{&quot;key&quot;:&quot;learnMenu&quot;,&quot;value&quot;:&quot;Learn&quot;},{&quot;key&quot;:&quot;strAttParticipantsShownLimitedCounter&quot;,&quot;value&quot;:&quot;{{current}} of {{total}} participants shown&quot;},{&quot;key&quot;:&quot;strMyCoursesConcludeRevealTextConfirm&quot;,&quot;value&quot;:&quot;This course requires you to confirm completion with your user name and password.&quot;},{&quot;key&quot;:&quot;strDuration&quot;,&quot;value&quot;:&quot;Duration&quot;},{&quot;key&quot;:&quot;strCourseError_message&quot;,&quot;value&quot;:&quot;An error occurred while processing. Please try again later.&quot;},{&quot;key&quot;:&quot;strCourseSubscriptionState_6&quot;,&quot;value&quot;:&quot;Waiting&quot;},{&quot;key&quot;:&quot;strCourseSubscriptionState_5&quot;,&quot;value&quot;:&quot;Not confirmed&quot;},{&quot;key&quot;:&quot;strCourseSubscriptionState_4&quot;,&quot;value&quot;:&quot;Notified&quot;},{&quot;key&quot;:&quot;enrolmentPrerequisitesUserText&quot;,&quot;value&quot;:&quot;User&quot;},{&quot;key&quot;:&quot;strCourseSubscriptionState_3&quot;,&quot;value&quot;:&quot;Confirmed&quot;},{&quot;key&quot;:&quot;strCourseSubscriptionState_2&quot;,&quot;value&quot;:&quot;Requested&quot;},{&quot;key&quot;:&quot;strProgrammeEnrolmentPrerequisiteDialogMandatory&quot;,&quot;value&quot;:&quot;You do not fulfil the necessary prerequisites for this learning path. If you nevertheless want to apply to participate, please contact your administrator.&quot;},{&quot;key&quot;:&quot;strCourseSubscriptionState_1&quot;,&quot;value&quot;:&quot;On the wish list&quot;},{&quot;key&quot;:&quot;strCourseSubscriptionState_0&quot;,&quot;value&quot;:&quot;No relation&quot;},{&quot;key&quot;:&quot;strCommonDone&quot;,&quot;value&quot;:&quot;Done&quot;},{&quot;key&quot;:&quot;loginSecurityInformation&quot;,&quot;value&quot;:&quot;(Security information)&quot;},{&quot;key&quot;:&quot;languageCode_cs-cz&quot;,&quot;value&quot;:&quot;\u010ce\u0161tina&quot;},{&quot;key&quot;:&quot;strDownloadSuccessInfo&quot;,&quot;value&quot;:&quot;Your download will start shortly. If not, please refresh the page or contact your supervisor.&quot;},{&quot;key&quot;:&quot;strCommonUploadFailed&quot;,&quot;value&quot;:&quot;Upload failed&quot;},{&quot;key&quot;:&quot;strCourseStatusProgressEnded&quot;,&quot;value&quot;:&quot;Ended on {{endDate}}&quot;},{&quot;key&quot;:&quot;strCourseBookingConfirmationWaiting&quot;,&quot;value&quot;:&quot;The course is full, and the participant was placed on the waiting list.&quot;},{&quot;key&quot;:&quot;strIdpOjtCompletionDateSelectionAllowed&quot;,&quot;value&quot;:&quot;Require date and time at task completion&quot;},{&quot;key&quot;:&quot;strCourseSubscriptionState_9&quot;,&quot;value&quot;:&quot;In progress&quot;},{&quot;key&quot;:&quot;strCourseSubscriptionState_8&quot;,&quot;value&quot;:&quot;Enrolled&quot;},{&quot;key&quot;:&quot;strCourseSubscriptionState_7&quot;,&quot;value&quot;:&quot;Cancelled&quot;},{&quot;key&quot;:&quot;openPasswordForgotPage&quot;,&quot;value&quot;:&quot;Open a form to order a new password&quot;},{&quot;key&quot;:&quot;loginErrorOpenIdConnectAuthenticationFailed&quot;,&quot;value&quot;:&quot;Open ID Connect authentication unsuccessful.&quot;},{&quot;key&quot;:&quot;strTaskLog&quot;,&quot;value&quot;:&quot;Task log&quot;},{&quot;key&quot;:&quot;courseDiscussionDeletePost&quot;,&quot;value&quot;:&quot;Delete post?&quot;},{&quot;key&quot;:&quot;paymentTransactionDialogOkBtnText&quot;,&quot;value&quot;:&quot;Close&quot;},{&quot;key&quot;:&quot;videojsCaptionsSettings&quot;,&quot;value&quot;:&quot;Subtitle settings&quot;},{&quot;key&quot;:&quot;courseDiscussionAvailableFrom&quot;,&quot;value&quot;:&quot;Available from {0}&quot;},{&quot;key&quot;:&quot;userprofileUsiMedicareCardNumberTitle&quot;,&quot;value&quot;:&quot;Medicare card number&quot;},{&quot;key&quot;:&quot;coursePrebookStartdateAttributeHeadline&quot;,&quot;value&quot;:&quot;Preferred start date&quot;},{&quot;key&quot;:&quot;skills&quot;,&quot;value&quot;:&quot;Skills&quot;},{&quot;key&quot;:&quot;deleteRatingErrorMessage&quot;,&quot;value&quot;:&quot;Error during rating deletion. Reason: {{reason}}.&quot;},{&quot;key&quot;:&quot;strCommonDay3Min&quot;,&quot;value&quot;:&quot;Tue&quot;},{&quot;key&quot;:&quot;accessBeforeJoin&quot;,&quot;value&quot;:&quot;Meeting room can be joined&quot;},{&quot;key&quot;:&quot;strSearchPlaceholder&quot;,&quot;value&quot;:&quot;What are you looking for?&quot;},{&quot;key&quot;:&quot;scrollToOpenCourseWorld&quot;,&quot;value&quot;:&quot;Scroll to the section about the holistic learning environment&quot;},{&quot;key&quot;:&quot;strIsCoveredBy&quot;,&quot;value&quot;:&quot;The completion of this component is triggered by&quot;},{&quot;key&quot;:&quot;strAttributeUpdatedName&quot;,&quot;value&quot;:&quot;Last updated&quot;},{&quot;key&quot;:&quot;productCopyright&quot;,&quot;value&quot;:&quot;Copyright (C) 2019 imc information multimedia communication AG, Germany&quot;},{&quot;key&quot;:&quot;strShowComposedSkills&quot;,&quot;value&quot;:&quot;Show courses skills&quot;},{&quot;key&quot;:&quot;catalogConcludeMediaPassed&quot;,&quot;value&quot;:&quot;{0} is completed successfully&quot;},{&quot;key&quot;:&quot;strCourseFilterName&quot;,&quot;value&quot;:&quot;Filter by course&quot;},{&quot;key&quot;:&quot;strLanguage&quot;,&quot;value&quot;:&quot;Language&quot;},{&quot;key&quot;:&quot;strSelfEnrolmentExpiresSoon&quot;,&quot;value&quot;:&quot;Self-registration ends soon&quot;},{&quot;key&quot;:&quot;videojsProgress&quot;,&quot;value&quot;:&quot;Status&quot;},{&quot;key&quot;:&quot;qtiFeedbackCancellationDialogCancelButtonText&quot;,&quot;value&quot;:&quot;No, continue feedback&quot;},{&quot;key&quot;:&quot;sessionErrorTitle&quot;,&quot;value&quot;:&quot;The current session has ended.&quot;},{&quot;key&quot;:&quot;sharing&quot;,&quot;value&quot;:&quot;Sharing&quot;},{&quot;key&quot;:&quot;strLevel&quot;,&quot;value&quot;:&quot;Level&quot;},{&quot;key&quot;:&quot;shareCourseEmailFieldHeadline&quot;,&quot;value&quot;:&quot;Email or comma-separated list&quot;},{&quot;key&quot;:&quot;resultCountSingular&quot;,&quot;value&quot;:&quot;1 result&quot;},{&quot;key&quot;:&quot;shareCourseConfirmButtonTitle&quot;,&quot;value&quot;:&quot;Share this course now with listed recipients&quot;},{&quot;key&quot;:&quot;news&quot;,&quot;value&quot;:&quot;News&quot;},{&quot;key&quot;:&quot;courseEnrolmentPrerequisiteDialogConditionCluster&quot;,&quot;value&quot;:&quot;Cluster&quot;},{&quot;key&quot;:&quot;strProgrammesDetailRevealCancellationCancelButton&quot;,&quot;value&quot;:&quot;Close&quot;},{&quot;key&quot;:&quot;strCourseStatusWaitingStartEndDate&quot;,&quot;value&quot;:&quot;{{startDate}} to {{endDate}}&quot;},{&quot;key&quot;:&quot;mediaTypeEvent&quot;,&quot;value&quot;:&quot;Event&quot;},{&quot;key&quot;:&quot;deleteRatingCommentDialogProceedButtonText&quot;,&quot;value&quot;:&quot;Delete&quot;},{&quot;key&quot;:&quot;supervisorEnrolmentIdentificationSelectionHeadline&quot;,&quot;value&quot;:&quot;Identification&quot;},{&quot;key&quot;:&quot;strLoginAuthenticationFailed&quot;,&quot;value&quot;:&quot;Sorry, the system could not authenticate you. Please re-enter your login name and password.&quot;},{&quot;key&quot;:&quot;productName&quot;,&quot;value&quot;:&quot;ACCA Learning&quot;},{&quot;key&quot;:&quot;strProgrammeEnrolmentBySupervisorPrerequisiteDialogMandatory&quot;,&quot;value&quot;:&quot;The user you selected does not fulfil the necessary prerequisites for this learning path. If you nevertheless want to apply to participate, please contact the relevant administrator.&quot;},{&quot;key&quot;:&quot;freePlaceOne&quot;,&quot;value&quot;:&quot;1 place&quot;},{&quot;key&quot;:&quot;naviLinkReportComplianceTraining&quot;,&quot;value&quot;:&quot;Comprehensive report&quot;},{&quot;key&quot;:&quot;pageTitleCourseSyllabus&quot;,&quot;value&quot;:&quot;Syllabus&quot;},{&quot;key&quot;:&quot;strCustomNgSelectLoadingText&quot;,&quot;value&quot;:&quot;Loading results&quot;},{&quot;key&quot;:&quot;courseContentStatusFinished&quot;,&quot;value&quot;:&quot;Completed&quot;},{&quot;key&quot;:&quot;svgContrastControllerCloseButton&quot;,&quot;value&quot;:&quot;The Close button is selected. Press Enter to close the contrast slider.&quot;},{&quot;key&quot;:&quot;ManageTasksMenuSection&quot;,&quot;value&quot;:&quot;Management tasks&quot;},{&quot;key&quot;:&quot;strWebsite&quot;,&quot;value&quot;:&quot;Website&quot;},{&quot;key&quot;:&quot;loginUsingFacebookAuthentication&quot;,&quot;value&quot;:&quot;Connect with your Facebook login&quot;},{&quot;key&quot;:&quot;firstLoginPasswordChangeChangeRequested&quot;,&quot;value&quot;:&quot;Your administrator requires that you enter a new password to continue.&quot;},{&quot;key&quot;:&quot;strReceiveNoEmail&quot;,&quot;value&quot;:&quot;If you have not received an email, please click on&quot;},{&quot;key&quot;:&quot;strProgrammeEmployeeStatusEnrol&quot;,&quot;value&quot;:&quot;Booking of employee has been denied&quot;},{&quot;key&quot;:&quot;xapiStatusPassed&quot;,&quot;value&quot;:&quot;Successfully processed&quot;},{&quot;key&quot;:&quot;strJobProfileConfirmation&quot;,&quot;value&quot;:&quot;Confirmation of job profile&quot;},{&quot;key&quot;:&quot;ppExpressCheckoutTitleBundle&quot;,&quot;value&quot;:&quot;Pay with PayPal Express now&quot;},{&quot;key&quot;:&quot;strEmployeeHeaderCompetenciesTitle&quot;,&quot;value&quot;:&quot;Competency profile&quot;},{&quot;key&quot;:&quot;strUnavailableCoursesFromTemplate&quot;,&quot;value&quot;:&quot;+{{count}} courses at locations not available for you&quot;},{&quot;key&quot;:&quot;strEmployeeHeaderStopEnrollment&quot;,&quot;value&quot;:&quot;Stop enrolment&quot;},{&quot;key&quot;:&quot;qtiTestTimeAlertDialogBody&quot;,&quot;value&quot;:&quot;You now have less than {x} minutes(s) to finish your test.&quot;},{&quot;key&quot;:&quot;strProgrammeEnrolRevealEnrolBnt&quot;,&quot;value&quot;:&quot;Enrol&quot;},{&quot;key&quot;:&quot;videojsPlaybackWasAbortedDueToACorruptionOrTheMediaUsedIsNotSupported&quot;,&quot;value&quot;:&quot;Video playback was cancelled either because of a problem with a corrupted video or because of features that are not supported by the browser.&quot;},{&quot;key&quot;:&quot;strProgrammeEmployeeAlreadyAppliedInfo&quot;,&quot;value&quot;:&quot;The employee has requested this learning path, but the confirmation is still pending.&quot;},{&quot;key&quot;:&quot;strLockedPassedItemInfoText&quot;,&quot;value&quot;:&quot;This component is considered passed for the following reasons&quot;},{&quot;key&quot;:&quot;paymentTransactionDialogOpenBtnText&quot;,&quot;value&quot;:&quot;Start course&quot;},{&quot;key&quot;:&quot;minutesAgoFormat&quot;,&quot;value&quot;:&quot;%d minutes ago&quot;},{&quot;key&quot;:&quot;courseEnrolmentPrerequisiteDialogConditionSkill&quot;,&quot;value&quot;:&quot;Skill&quot;},{&quot;key&quot;:&quot;strHideCompletedElementsButton&quot;,&quot;value&quot;:&quot;Hide completed elements&quot;},{&quot;key&quot;:&quot;strMultipleEnrollment&quot;,&quot;value&quot;:&quot;Multiple enrolment&quot;},{&quot;key&quot;:&quot;strUserEditSectionRevealCancelButtonTooltip&quot;,&quot;value&quot;:&quot;Cancel&quot;},{&quot;key&quot;:&quot;strErrorLoadingTraining&quot;,&quot;value&quot;:&quot;Error loading trainings&quot;},{&quot;key&quot;:&quot;strMyProgrammesDetailRevealCancellationRequestCancelButton&quot;,&quot;value&quot;:&quot;Cancel&quot;},{&quot;key&quot;:&quot;strSupervisorResetEnrollmenStatusProceedButtonText&quot;,&quot;value&quot;:&quot;Reset enrolement status&quot;},{&quot;key&quot;:&quot;openExternalMedia&quot;,&quot;value&quot;:&quot;Open external learning content&quot;},{&quot;key&quot;:&quot;courseEnrolmentEmployeeDialogActionBtnTitle&quot;,&quot;value&quot;:&quot;Enrol employee&quot;},{&quot;key&quot;:&quot;mTypeWBTName&quot;,&quot;value&quot;:&quot;Web-based training&quot;},{&quot;key&quot;:&quot;strComponentLockedNoActionAvailableDialogBody&quot;,&quot;value&quot;:&quot;The Training is locked by course learning logic.&quot;},{&quot;key&quot;:&quot;mTypeLinkedInLearningName&quot;,&quot;value&quot;:&quot;LinkedIn Learning&quot;},{&quot;key&quot;:&quot;strUploadImage&quot;,&quot;value&quot;:&quot;Upload image&quot;},{&quot;key&quot;:&quot;openRegisterPage&quot;,&quot;value&quot;:&quot;Open the registration page&quot;},{&quot;key&quot;:&quot;strMarkAsRead&quot;,&quot;value&quot;:&quot;Mark as read&quot;},{&quot;key&quot;:&quot;strLearningpathContinueLearning&quot;,&quot;value&quot;:&quot;Continue learning&quot;},{&quot;key&quot;:&quot;strMyProgrammesCancellationRequestSuccessMsg&quot;,&quot;value&quot;:&quot;The cancellation request was sent successfully.&quot;},{&quot;key&quot;:&quot;strEventTrackingStop&quot;,&quot;value&quot;:&quot;Do you want to check-out?&quot;},{&quot;key&quot;:&quot;userProfileNewPasswordValidationMessage&quot;,&quot;value&quot;:&quot;Please specify a password&quot;},{&quot;key&quot;:&quot;videojsOpaque&quot;,&quot;value&quot;:&quot;Opaque&quot;},{&quot;key&quot;:&quot;strNoPublicInformation&quot;,&quot;value&quot;:&quot;No public information for this user!&quot;},{&quot;key&quot;:&quot;ratingBoxSingleRatingCount&quot;,&quot;value&quot;:&quot;{{count}} Rating&quot;},{&quot;key&quot;:&quot;strAddToShopifyCartForEmployee&quot;,&quot;value&quot;:&quot;Add to cart for employee&quot;},{&quot;key&quot;:&quot;locationAttachmentFieldName&quot;,&quot;value&quot;:&quot;Attachment&quot;},{&quot;key&quot;:&quot;strPersonalDataNotice1&quot;,&quot;value&quot;:&quot;You can request a copy of your personal data saved in the system. After your request the data will be prepared.&quot;},{&quot;key&quot;:&quot;strPersonalDataNotice2&quot;,&quot;value&quot;:&quot;You will receive an e-mail with the report enclosed as soon as the process is completed.&quot;},{&quot;key&quot;:&quot;enroll.staffmember.course.selection.notification&quot;,&quot;value&quot;:&quot;You have selected the following course.&quot;},{&quot;key&quot;:&quot;showInCatalogue&quot;,&quot;value&quot;:&quot;Show in catalogue&quot;},{&quot;key&quot;:&quot;personalAreaCourseStatusNotApproved&quot;,&quot;value&quot;:&quot;Enrolment request rejected&quot;},{&quot;key&quot;:&quot;metaTagDescriptionImprintPage&quot;,&quot;value&quot;:&quot;Imprint for&quot;},{&quot;key&quot;:&quot;signUpPasswordTitle&quot;,&quot;value&quot;:&quot;Your password&quot;},{&quot;key&quot;:&quot;qtiTestCancellationDialogBodyManualSave&quot;,&quot;value&quot;:&quot;Do you want to cancel the test? This action cannot be undone, and unsaved entries will be lost.&quot;},{&quot;key&quot;:&quot;languageCode_fi-fi&quot;,&quot;value&quot;:&quot;Suomen kieli&quot;},{&quot;key&quot;:&quot;videojsANetworkErrorCausedTheMediaDownloadToFailPartWay&quot;,&quot;value&quot;:&quot;The video download failed due to a network error.&quot;},{&quot;key&quot;:&quot;deleteAccountButtonTooltip&quot;,&quot;value&quot;:&quot;Delete profile now&quot;},{&quot;key&quot;:&quot;strMyProgrammesDetailRevealCancellationRequestText&quot;,&quot;value&quot;:&quot;The cancellation for the learning path &lt;span class=\&quot;reveal-dialog-text-highlight\&quot;&gt;{{programmeName}}&lt;\/span&gt; must be confirmed. The learning path will remain in its current status until the person in charge has confirmed the cancellation.&quot;},{&quot;key&quot;:&quot;strMyCoursesDetailRevealCommentLabel&quot;,&quot;value&quot;:&quot;Note&quot;},{&quot;key&quot;:&quot;END&quot;,&quot;value&quot;:&quot;End&quot;},{&quot;key&quot;:&quot;ch_selected_filters_other&quot;,&quot;value&quot;:&quot;{{count}} filters selected&quot;},{&quot;key&quot;:&quot;userProfileFieldMandatory&quot;,&quot;value&quot;:&quot;Please complete the field&quot;},{&quot;key&quot;:&quot;employeeRegisteredSubLine&quot;,&quot;value&quot;:&quot;Employee is already booked&quot;},{&quot;key&quot;:&quot;freePlaces&quot;,&quot;value&quot;:&quot;Available places&quot;},{&quot;key&quot;:&quot;strMessageRatingSaved&quot;,&quot;value&quot;:&quot;Your rating was saved.&quot;},{&quot;key&quot;:&quot;strEventTrackingReveal&quot;,&quot;value&quot;:&quot;Event tracking&quot;},{&quot;key&quot;:&quot;courseMovementErrorTitle&quot;,&quot;value&quot;:&quot;The move function is restricted for &lt;course name&gt;&quot;},{&quot;key&quot;:&quot;freePlacesNo&quot;,&quot;value&quot;:&quot;No free places&quot;},{&quot;key&quot;:&quot;strSuccessfullyAddedToCart&quot;,&quot;value&quot;:&quot;Successfully added to cart&quot;},{&quot;key&quot;:&quot;mTypeWBTAICCName&quot;,&quot;value&quot;:&quot;Web-based training&quot;},{&quot;key&quot;:&quot;dashboardTaskHistoryStepDateAndUser&quot;,&quot;value&quot;:&quot;{{date}} by {{name}}&quot;},{&quot;key&quot;:&quot;strCourseSubscriptionState_REFUSED&quot;,&quot;value&quot;:&quot;Not confirmed&quot;},{&quot;key&quot;:&quot;loginSectionSubheadlineToThirdParty&quot;,&quot;value&quot;:&quot;If you are an ACCA member, affiliate or student, please sign in with your myACCA credentials using the Sign in with myACCA button below.&quot;},{&quot;key&quot;:&quot;skillScaleTitle&quot;,&quot;value&quot;:&quot;Skill levels&quot;},{&quot;key&quot;:&quot;strNoSelfAssessedLevel&quot;,&quot;value&quot;:&quot;No self-assessed level&quot;},{&quot;key&quot;:&quot;context&quot;,&quot;value&quot;:&quot;Context&quot;},{&quot;key&quot;:&quot;strCertificationDeactivated&quot;,&quot;value&quot;:&quot;{{eventDate}} Certification deactivated&quot;},{&quot;key&quot;:&quot;openManageMenu&quot;,&quot;value&quot;:&quot;Open the managing menu&quot;},{&quot;key&quot;:&quot;strAccountActivatedFailTitle&quot;,&quot;value&quot;:&quot;Activation of your user account failed&quot;},{&quot;key&quot;:&quot;ratingBoxStars&quot;,&quot;value&quot;:&quot;1 star&quot;},{&quot;key&quot;:&quot;strNumberOfTrainings&quot;,&quot;value&quot;:&quot;{{count}} trainings&quot;},{&quot;key&quot;:&quot;closeFeedbackReveal&quot;,&quot;value&quot;:&quot;Cancel feedback submission&quot;},{&quot;key&quot;:&quot;selfStudyCourses&quot;,&quot;value&quot;:&quot;Self-study courses&quot;},{&quot;key&quot;:&quot;competenciesCertificationContributingCourses&quot;,&quot;value&quot;:&quot;Contributing elements&quot;},{&quot;key&quot;:&quot;courseFinishedSubline&quot;,&quot;value&quot;:&quot;You have finished the course&quot;},{&quot;key&quot;:&quot;courseDiscussionDeleteCommentText&quot;,&quot;value&quot;:&quot;Do you want to delete the comment?&quot;},{&quot;key&quot;:&quot;strCertificationRemovedNoDate&quot;,&quot;value&quot;:&quot;Certification removed&quot;},{&quot;key&quot;:&quot;copyCourseUrlButtonTooltip&quot;,&quot;value&quot;:&quot;Copy the address to the clipboard&quot;},{&quot;key&quot;:&quot;strCourseWaitinglist_message&quot;,&quot;value&quot;:&quot;You have been put on the waiting list for this course.&quot;},{&quot;key&quot;:&quot;strMovedBy&quot;,&quot;value&quot;:&quot;moved by&quot;},{&quot;key&quot;:&quot;strCommonExamity&quot;,&quot;value&quot;:&quot;Examity&quot;},{&quot;key&quot;:&quot;strContentTypeFilterHeaderTrainingCalendar&quot;,&quot;value&quot;:&quot;Content Type&quot;},{&quot;key&quot;:&quot;strSelf_registration_with_notifikation&quot;,&quot;value&quot;:&quot;Self-enrolment with notification&quot;},{&quot;key&quot;:&quot;qtiSubmissionError&quot;,&quot;value&quot;:&quot;Please try again later.&quot;},{&quot;key&quot;:&quot;videojsPause&quot;,&quot;value&quot;:&quot;Pause&quot;},{&quot;key&quot;:&quot;courseContentAvailableFrom&quot;,&quot;value&quot;:&quot;Available from {0}&quot;},{&quot;key&quot;:&quot;userProfileCurrentPasswordField&quot;,&quot;value&quot;:&quot;Current password*&quot;},{&quot;key&quot;:&quot;mediaTypeLink&quot;,&quot;value&quot;:&quot;Link&quot;},{&quot;key&quot;:&quot;deleteRatingCommentDialogProceedButtonTooltip&quot;,&quot;value&quot;:&quot;Delete comment now&quot;},{&quot;key&quot;:&quot;courseEnrolmentDialogSelfregistrationAbortBtnTitle&quot;,&quot;value&quot;:&quot;Cancel booking&quot;},{&quot;key&quot;:&quot;courseEnrolmentDialogSelfregistrationActionBtnTitle&quot;,&quot;value&quot;:&quot;Enrol in the course&quot;},{&quot;key&quot;:&quot;personalAreaCourseStatusPassedWithCertificate&quot;,&quot;value&quot;:&quot;Successfully completed&quot;},{&quot;key&quot;:&quot;strCourseTemplateRequired&quot;,&quot;value&quot;:&quot;Pre-booking on course template is required&quot;},{&quot;key&quot;:&quot;strCertificationHistoryPrintBtn&quot;,&quot;value&quot;:&quot;Print\/PDF&quot;},{&quot;key&quot;:&quot;strCommonDay3Short&quot;,&quot;value&quot;:&quot;Tue&quot;},{&quot;key&quot;:&quot;strPrerequisitesSetEntryStatusPartiallyFulfilled&quot;,&quot;value&quot;:&quot;You are already enrolled but you must complete this mandatory prerequisite until &lt;date&gt;&quot;},{&quot;key&quot;:&quot;strCourseConcludeESignatureError409&quot;,&quot;value&quot;:&quot;The status of the course has since changed. Please close the dialogue box.&quot;},{&quot;key&quot;:&quot;strCourseConcludeESignatureError403&quot;,&quot;value&quot;:&quot;The combination of username and password does not correspond to the user who is logged in.&quot;},{&quot;key&quot;:&quot;coursePrebookDialogActionBtnTitle&quot;,&quot;value&quot;:&quot;Pre-book for participation&quot;},{&quot;key&quot;:&quot;ok&quot;,&quot;value&quot;:&quot;OK&quot;},{&quot;key&quot;:&quot;courseDiscussionListTitle&quot;,&quot;value&quot;:&quot;Discussions&quot;},{&quot;key&quot;:&quot;or&quot;,&quot;value&quot;:&quot;or&quot;},{&quot;key&quot;:&quot;languageCode_id-id&quot;,&quot;value&quot;:&quot;Bahasa Indonesia&quot;},{&quot;key&quot;:&quot;qtiSubmissionErrorTitle&quot;,&quot;value&quot;:&quot;Error&quot;},{&quot;key&quot;:&quot;deleteRatingDialogProceedButtonText&quot;,&quot;value&quot;:&quot;Delete&quot;},{&quot;key&quot;:&quot;fileUploadRestrictions&quot;,&quot;value&quot;:&quot;({{extensionList}} - {{maxSize}} max.)&quot;},{&quot;key&quot;:&quot;passwordRequestButton&quot;,&quot;value&quot;:&quot;Request password&quot;},{&quot;key&quot;:&quot;courseNews&quot;,&quot;value&quot;:&quot;News&quot;},{&quot;key&quot;:&quot;strCourseSubscriptionState_NOT_EVALUATED&quot;,&quot;value&quot;:&quot;Not evaluated&quot;},{&quot;key&quot;:&quot;strSavePublishButton&quot;,&quot;value&quot;:&quot;Save and publish&quot;},{&quot;key&quot;:&quot;skillAchievedLevelHistory&quot;,&quot;value&quot;:&quot;on Level {{levelName}}&quot;},{&quot;key&quot;:&quot;metaTagDescriptionPersonalAreaExt&quot;,&quot;value&quot;:&quot;All your courses are listed here.&quot;},{&quot;key&quot;:&quot;strHere&quot;,&quot;value&quot;:&quot;here&quot;},{&quot;key&quot;:&quot;naviLinkTitleLogin&quot;,&quot;value&quot;:&quot;Login using your login information&quot;},{&quot;key&quot;:&quot;strSelf_registration&quot;,&quot;value&quot;:&quot;Self-enrolment&quot;},{&quot;key&quot;:&quot;strCommonSeptember&quot;,&quot;value&quot;:&quot;Sep&quot;},{&quot;key&quot;:&quot;openScoFullscreen&quot;,&quot;value&quot;:&quot;Open %SCO_NAME% in fullscreen&quot;},{&quot;key&quot;:&quot;wbtBackButton&quot;,&quot;value&quot;:&quot;Back&quot;},{&quot;key&quot;:&quot;pageTitleFrontpage&quot;,&quot;value&quot;:&quot;Front page&quot;},{&quot;key&quot;:&quot;strNewMediaOnCourse&quot;,&quot;value&quot;:&quot;Updated&quot;},{&quot;key&quot;:&quot;strCertificationExportTypeColumn&quot;,&quot;value&quot;:&quot;Type&quot;},{&quot;key&quot;:&quot;courseRemovePrebookButtonText&quot;,&quot;value&quot;:&quot;Remove pre-booking&quot;},{&quot;key&quot;:&quot;strMyCoursesDetailRevealCancellationHeadline&quot;,&quot;value&quot;:&quot;Do you want to cancel the course?&quot;},{&quot;key&quot;:&quot;loginHrSystemFieldTitle&quot;,&quot;value&quot;:&quot;HR System&quot;},{&quot;key&quot;:&quot;toggleJobProfileFolder&quot;,&quot;value&quot;:&quot;Switch view&quot;},{&quot;key&quot;:&quot;certificateDownloadNote&quot;,&quot;value&quot;:&quot; &quot;},{&quot;key&quot;:&quot;courseStartOperationTitle&quot;,&quot;value&quot;:&quot;Start now: %COURSENAME%&quot;},{&quot;key&quot;:&quot;courseEnrollmentFor&quot;,&quot;value&quot;:&quot;Course registration for:&quot;},{&quot;key&quot;:&quot;userprofileUsiStateNameQLD&quot;,&quot;value&quot;:&quot;Queensland&quot;},{&quot;key&quot;:&quot;courseDiscussionAreaTitle&quot;,&quot;value&quot;:&quot;Your comment&quot;},{&quot;key&quot;:&quot;revealTaskDeclinationReasonSelectBoxLabelText&quot;,&quot;value&quot;:&quot;Reason for declining&quot;},{&quot;key&quot;:&quot;strPrerequisitesButtonOpenCatalog&quot;,&quot;value&quot;:&quot;Open catalogue&quot;},{&quot;key&quot;:&quot;courseDiscussionOpenDiscussion&quot;,&quot;value&quot;:&quot;Open discussion&quot;},{&quot;key&quot;:&quot;revealTaskDeclinationReasonCommentsLabelText&quot;,&quot;value&quot;:&quot;Comments&quot;},{&quot;key&quot;:&quot;noContentAvailable&quot;,&quot;value&quot;:&quot;No content available&quot;},{&quot;key&quot;:&quot;COURSE_IMAGE&quot;,&quot;value&quot;:&quot;Course image&quot;},{&quot;key&quot;:&quot;competenciesSkillExpiredOn&quot;,&quot;value&quot;:&quot;on {{eventDate}}&quot;},{&quot;key&quot;:&quot;personalAreaCourseStatusRequested&quot;,&quot;value&quot;:&quot;Awaiting approval&quot;},{&quot;key&quot;:&quot;courseReservedWaitingSubLine&quot;,&quot;value&quot;:&quot;A place on the waiting list has been reserved for you&quot;},{&quot;key&quot;:&quot;videojsQuality&quot;,&quot;value&quot;:&quot;Quality&quot;},{&quot;key&quot;:&quot;signupPolicyText&quot;,&quot;value&quot;:&quot;I accept the &lt;a href=\&quot;..\/..\/ilp\/pages\/new-external-dashboard.jsf?#\/?dashboardId=113930\&quot; target=\&quot;_blank\&quot;&gt;End User Licence Agreement&lt;\/a&gt;&quot;},{&quot;key&quot;:&quot;userprofileUsiBirthCertTownCityOfBirthTitle&quot;,&quot;value&quot;:&quot;Place of birth&quot;},{&quot;key&quot;:&quot;mediaTypeWbt&quot;,&quot;value&quot;:&quot;Web-based training&quot;},{&quot;key&quot;:&quot;strPlacesExceededTooltip&quot;,&quot;value&quot;:&quot;The selected number of participants exceeds the available places&quot;},{&quot;key&quot;:&quot;strBtnCommonPrint&quot;,&quot;value&quot;:&quot;Print&quot;},{&quot;key&quot;:&quot;strCertificationAssigned&quot;,&quot;value&quot;:&quot;{{eventDate}} - Certification assigned&quot;},{&quot;key&quot;:&quot;strTrainingCalendarCourseSyllabusButton&quot;,&quot;value&quot;:&quot;Course syllabus&quot;},{&quot;key&quot;:&quot;menuTitleInfoMenu&quot;,&quot;value&quot;:&quot;Information navigation&quot;},{&quot;key&quot;:&quot;xd&quot;,&quot;value&quot;:&quot;{{x}} days&quot;},{&quot;key&quot;:&quot;strCurrentLevel&quot;,&quot;value&quot;:&quot;Current level&quot;},{&quot;key&quot;:&quot;xm&quot;,&quot;value&quot;:&quot;{{x}} months&quot;},{&quot;key&quot;:&quot;firstLoginPasswordChangeSuccessfullyMessage&quot;,&quot;value&quot;:&quot;Your password was changed successfully&quot;},{&quot;key&quot;:&quot;xy&quot;,&quot;value&quot;:&quot;{{x}} years&quot;},{&quot;key&quot;:&quot;componentDateFixedTimeZone&quot;,&quot;value&quot;:&quot;Local time&quot;},{&quot;key&quot;:&quot;strCancelAssignment&quot;,&quot;value&quot;:&quot;Cancel assignment&quot;},{&quot;key&quot;:&quot;userprofileUsiUserAttributeButtonTitle&quot;,&quot;value&quot;:&quot;USI check&quot;},{&quot;key&quot;:&quot;courseEnrolmentPrerequisiteDialogFulfilled&quot;,&quot;value&quot;:&quot;fulfilled&quot;},{&quot;key&quot;:&quot;strSeatAllocationEnrolLimitExceededText&quot;,&quot;value&quot;:&quot;The {0} available number of {1} seats has already been used up. A registration is therefore not possible.&quot;},{&quot;key&quot;:&quot;strTaskPending&quot;,&quot;value&quot;:&quot;Pending&quot;},{&quot;key&quot;:&quot;noscriptErrorMessage&quot;,&quot;value&quot;:&quot;JavaScript is not enabled in your current browser. Please enable JavaScript to use the full range of functionality in this application.&quot;},{&quot;key&quot;:&quot;pageTitleCourseLibrary&quot;,&quot;value&quot;:&quot;Library&quot;},{&quot;key&quot;:&quot;course&quot;,&quot;value&quot;:&quot;Course&quot;},{&quot;key&quot;:&quot;metaTagDescriptionContentPage&quot;,&quot;value&quot;:&quot;Content page description&quot;},{&quot;key&quot;:&quot;deleteCourseCancelButton&quot;,&quot;value&quot;:&quot;Cancel&quot;},{&quot;key&quot;:&quot;strCourseSubscriptionState_FAILED&quot;,&quot;value&quot;:&quot;Failed&quot;},{&quot;key&quot;:&quot;strAllowMultipleEnrollmentsRestriction&quot;,&quot;value&quot;:&quot;Enrolment conditions are defined. To ensure that only eligible users are included in the enrolment process, it is only possible to proceed with one user at a time.&quot;},{&quot;key&quot;:&quot;strAnonymizeRating&quot;,&quot;value&quot;:&quot;Publish anonymously&quot;},{&quot;key&quot;:&quot;tileCommonObjectMetadataFreePlacesOne&quot;,&quot;value&quot;:&quot;1 place&quot;},{&quot;key&quot;:&quot;loginHere&quot;,&quot;value&quot;:&quot;You can log in here.&quot;},{&quot;key&quot;:&quot;strOpenBadgeInstructionTitle&quot;,&quot;value&quot;:&quot;Instruction&quot;},{&quot;key&quot;:&quot;userProfileCurrentPasswordValidationMessage&quot;,&quot;value&quot;:&quot;Please enter your password&quot;},{&quot;key&quot;:&quot;strEnrollAll&quot;,&quot;value&quot;:&quot;Enrol all&quot;},{&quot;key&quot;:&quot;deleteRatingDialogProceedButtonTooltip&quot;,&quot;value&quot;:&quot;Delete rating now&quot;},{&quot;key&quot;:&quot;employeeRefusedSubline&quot;,&quot;value&quot;:&quot;Employee's booking has been rejected&quot;},{&quot;key&quot;:&quot;strConditionFulfilled&quot;,&quot;value&quot;:&quot;Condition was fulfilled&quot;},{&quot;key&quot;:&quot;courseEnrolmentStaffOrdered&quot;,&quot;value&quot;:&quot;The course has been requested for an employee.&quot;},{&quot;key&quot;:&quot;qtiFeedbackSubmissionDialogTitle&quot;,&quot;value&quot;:&quot;Submit feedback&quot;},{&quot;key&quot;:&quot;strIdpEvaluateRequired&quot;,&quot;value&quot;:&quot;Task can be evaluated as passed or failed&quot;},{&quot;key&quot;:&quot;fileUploadSuccessMessage&quot;,&quot;value&quot;:&quot;File successfully uploaded.&quot;},{&quot;key&quot;:&quot;strClearAllSelections&quot;,&quot;value&quot;:&quot;Clear all {{count}} selections&quot;},{&quot;key&quot;:&quot;bypassContent&quot;,&quot;value&quot;:&quot;Skip to content&quot;},{&quot;key&quot;:&quot;strSearchFrontendSortedBy&quot;,&quot;value&quot;:&quot;Sorted by&quot;},{&quot;key&quot;:&quot;strCompleteFirst&quot;,&quot;value&quot;:&quot;Complete {{ nextLevelName }} first&quot;},{&quot;key&quot;:&quot;supervisor.registration.canceled&quot;,&quot;value&quot;:&quot;The enrolment of the staff member has been cancelled&quot;},{&quot;key&quot;:&quot;courseContentStatusPassed&quot;,&quot;value&quot;:&quot;Successfully processed&quot;},{&quot;key&quot;:&quot;courseEventAvailableTo&quot;,&quot;value&quot;:&quot;Available until {1}&quot;},{&quot;key&quot;:&quot;openCourseCertificate&quot;,&quot;value&quot;:&quot;Certificate&quot;},{&quot;key&quot;:&quot;ratingInfo__Total&quot;,&quot;value&quot;:&quot;Overall assessment&quot;},{&quot;key&quot;:&quot;deleteCourseFailedMessage&quot;,&quot;value&quot;:&quot;Your request cannot be processed at present. Please try again later or contact your administrator if the problem continues.&quot;},{&quot;key&quot;:&quot;strNoLevelEntered&quot;,&quot;value&quot;:&quot;No value entered&quot;},{&quot;key&quot;:&quot;languageCode_de-de&quot;,&quot;value&quot;:&quot;Deutsch&quot;},{&quot;key&quot;:&quot;catalogSearchTermTitle&quot;,&quot;value&quot;:&quot;Your search term&quot;},{&quot;key&quot;:&quot;strManageEnrollmentInTheCourse&quot;,&quot;value&quot;:&quot;for the course&quot;},{&quot;key&quot;:&quot;courseCancelledSubLine&quot;,&quot;value&quot;:&quot;Your booking has been cancelled&quot;},{&quot;key&quot;:&quot;MyTrainingsMenuItem&quot;,&quot;value&quot;:&quot;On-the-job training&quot;},{&quot;key&quot;:&quot;strCourseParticipantModificationType_6&quot;,&quot;value&quot;:&quot;Move enrolment&quot;},{&quot;key&quot;:&quot;strRequestedSkillLevel&quot;,&quot;value&quot;:&quot;Requested level&quot;},{&quot;key&quot;:&quot;pageTitleFAQ&quot;,&quot;value&quot;:&quot;Frequently asked questions&quot;},{&quot;key&quot;:&quot;strProctoredTest&quot;,&quot;value&quot;:&quot;Proctored&quot;},{&quot;key&quot;:&quot;certificateEmailAddress&quot;,&quot;value&quot;:&quot;CHANGE_ME@im-c.de&quot;},{&quot;key&quot;:&quot;strJoinMSTeamsMeeting&quot;,&quot;value&quot;:&quot;Join Teams Meeting&quot;},{&quot;key&quot;:&quot;employeeSelectedSubLine&quot;,&quot;value&quot;:&quot;The course is on the staff member's wish list&quot;},{&quot;key&quot;:&quot;employeeCancelledSubLine&quot;,&quot;value&quot;:&quot;Employee's booking has been cancelled&quot;},{&quot;key&quot;:&quot;strSupervisorResetEnrollmenStatusRevealSubheadline&quot;,&quot;value&quot;:&quot;Reset enrolment&quot;},{&quot;key&quot;:&quot;strCommonFebruaryFullName&quot;,&quot;value&quot;:&quot;February&quot;},{&quot;key&quot;:&quot;copyCourseUrlOperationSuccess&quot;,&quot;value&quot;:&quot;The address was successfully copied to the clipboard.&quot;},{&quot;key&quot;:&quot;employeeRegisterButtonTitle&quot;,&quot;value&quot;:&quot;Enrol staff member&quot;},{&quot;key&quot;:&quot;strTutorFeedback&quot;,&quot;value&quot;:&quot;Tutor&quot;},{&quot;key&quot;:&quot;courseDiscussionComment&quot;,&quot;value&quot;:&quot;Reply&quot;},{&quot;key&quot;:&quot;errorZipCode&quot;,&quot;value&quot;:&quot;Please enter a correct postal code&quot;},{&quot;key&quot;:&quot;faqTitle&quot;,&quot;value&quot;:&quot;FAQ&quot;},{&quot;key&quot;:&quot;strCertificationExportMoreInfo&quot;,&quot;value&quot;:&quot;More info&quot;},{&quot;key&quot;:&quot;cancelSendFeedbackButtonTooltip&quot;,&quot;value&quot;:&quot;Submit feedback later&quot;},{&quot;key&quot;:&quot;shareCourse&quot;,&quot;value&quot;:&quot;Share this course&quot;},{&quot;key&quot;:&quot;errorMessageWrongShopifyConfiguration&quot;,&quot;value&quot;:&quot;A configuration issue is preventing the load of the learning path. Please contact an administrator.&quot;},{&quot;key&quot;:&quot;coursePrebookRequestDialogAbortBtnText&quot;,&quot;value&quot;:&quot;Cancel&quot;},{&quot;key&quot;:&quot;myInboxAttachment&quot;,&quot;value&quot;:&quot;Attachment&quot;},{&quot;key&quot;:&quot;videojsLIVE&quot;,&quot;value&quot;:&quot;LIVE&quot;},{&quot;key&quot;:&quot;strProgrammeEnrolRevealSubtitle&quot;,&quot;value&quot;:&quot;You are enrolling for the learning path \&quot;{{programmeName}}\&quot;. Please proceed with the enrolment!&quot;},{&quot;key&quot;:&quot;strPersonalDataErrorMessage&quot;,&quot;value&quot;:&quot;We are sorry! The archive with your personal data could not be created.&quot;},{&quot;key&quot;:&quot;WRITE_RATING&quot;,&quot;value&quot;:&quot;Rating text (max. 4000 characters)&quot;},{&quot;key&quot;:&quot;mandatoryFieldError&quot;,&quot;value&quot;:&quot;Please select an option&quot;},{&quot;key&quot;:&quot;jobProfileResultCountMultipleSkills&quot;,&quot;value&quot;:&quot;{{ skillCount }} Skills&quot;},{&quot;key&quot;:&quot;strAttributeFreePlacesName&quot;,&quot;value&quot;:&quot;Available places&quot;},{&quot;key&quot;:&quot;strRegistrationsProcessed&quot;,&quot;value&quot;:&quot;{{currentUsersProcessed}} of {{totalNumberOfUsers}} registrations processed&quot;},{&quot;key&quot;:&quot;strCompleteTaskAllowed&quot;,&quot;value&quot;:&quot;Staff member can mark tasks as done&quot;},{&quot;key&quot;:&quot;strFreeWaitingPlaces&quot;,&quot;value&quot;:&quot;{{numberOfPlaces}} Waiting slots&quot;},{&quot;key&quot;:&quot;competenciesDueOnHoverPointsTitle&quot;,&quot;value&quot;:&quot;{{achievedValue}}pts ({{achievedPercentage}}%) achieved, {{remainingValue}} ({{remainingPercentage}}%) still required&quot;},{&quot;key&quot;:&quot;openLearnMenu&quot;,&quot;value&quot;:&quot;Open the learning menu&quot;},{&quot;key&quot;:&quot;strCloseComponentPreviewContent&quot;,&quot;value&quot;:&quot;You are exploring the participant's perspective!&quot;},{&quot;key&quot;:&quot;openCourseDescription&quot;,&quot;value&quot;:&quot;Open the course description:&quot;},{&quot;key&quot;:&quot;userprofileUsiStateNameVIC&quot;,&quot;value&quot;:&quot;Victoria&quot;},{&quot;key&quot;:&quot;addToBookshelf&quot;,&quot;value&quot;:&quot;Add to bookshelf&quot;},{&quot;key&quot;:&quot;signUpFirstname&quot;,&quot;value&quot;:&quot;Please enter your first name&quot;},{&quot;key&quot;:&quot;courseEnrolmentDialogEmployeeBody&quot;,&quot;value&quot;:&quot;You are booking the course &lt;span class=\&quot;reveal-dialog-text-highlight\&quot;&gt;%COURSE_NAME%&lt;\/span&gt;.&quot;},{&quot;key&quot;:&quot;mTypeEventName&quot;,&quot;value&quot;:&quot;Event&quot;},{&quot;key&quot;:&quot;myProfile&quot;,&quot;value&quot;:&quot;My profile&quot;},{&quot;key&quot;:&quot;csFacetFreeOfCharge&quot;,&quot;value&quot;:&quot;Free of charge&quot;},{&quot;key&quot;:&quot;strCourseMainType&quot;,&quot;value&quot;:&quot;Course type&quot;},{&quot;key&quot;:&quot;naviLinkTitleCatalogMenu&quot;,&quot;value&quot;:&quot;Open catalogue menu&quot;},{&quot;key&quot;:&quot;strAddedToBookshelf&quot;,&quot;value&quot;:&quot;The media has been added to the bookshelf.&quot;},{&quot;key&quot;:&quot;signUpPasswordRepeatTitle&quot;,&quot;value&quot;:&quot;Please repeat your password&quot;},{&quot;key&quot;:&quot;userProfileRepeatPassword&quot;,&quot;value&quot;:&quot;Repeat password*&quot;},{&quot;key&quot;:&quot;toggleJobProfileInfo&quot;,&quot;value&quot;:&quot;Display details&quot;},{&quot;key&quot;:&quot;deleteCourseAcceptButton&quot;,&quot;value&quot;:&quot;Remove&quot;},{&quot;key&quot;:&quot;strForMedia&quot;,&quot;value&quot;:&quot;for media&quot;},{&quot;key&quot;:&quot;strBadgeProviderWebsite&quot;,&quot;value&quot;:&quot;Provider website&quot;},{&quot;key&quot;:&quot;strProgramme&quot;,&quot;value&quot;:&quot;Learning Path&quot;},{&quot;key&quot;:&quot;strNotCompleted&quot;,&quot;value&quot;:&quot;Not completed {{endDate}}&quot;},{&quot;key&quot;:&quot;error403MessageContact&quot;,&quot;value&quot;:&quot;If you think this is an error please contact us.&quot;},{&quot;key&quot;:&quot;strEmployeeHeaderMyProfile&quot;,&quot;value&quot;:&quot;My profile&quot;},{&quot;key&quot;:&quot;strCourseStatusProgressEnd&quot;,&quot;value&quot;:&quot;{{startDate}} to {{endDate}}&quot;},{&quot;key&quot;:&quot;strCloseNotification&quot;,&quot;value&quot;:&quot;Close notification&quot;},{&quot;key&quot;:&quot;strCancelCommentPlaceholder&quot;,&quot;value&quot;:&quot;Type something...&quot;},{&quot;key&quot;:&quot;strProgramTemplate&quot;,&quot;value&quot;:&quot;Learning path template&quot;},{&quot;key&quot;:&quot;courseEnrolmentPrerequisiteDialogSupervisorBody&quot;,&quot;value&quot;:&quot;The staff member that you would like to register does not meet the recommended requirements for this course. Would you still like to continue with the registration?&quot;},{&quot;key&quot;:&quot;ManageStaffMenuSection&quot;,&quot;value&quot;:&quot;Staff administration&quot;},{&quot;key&quot;:&quot;strMedia&quot;,&quot;value&quot;:&quot;Media&quot;},{&quot;key&quot;:&quot;pageTitlePasswordRequestSuccess&quot;,&quot;value&quot;:&quot;Password request successful&quot;},{&quot;key&quot;:&quot;strCommonDay5Short&quot;,&quot;value&quot;:&quot;Thu&quot;},{&quot;key&quot;:&quot;tileCommonObjectMetadataFreePlacesMany&quot;,&quot;value&quot;:&quot;{{numberOfPlaces}} Places&quot;},{&quot;key&quot;:&quot;eventTrackingDialogOkBtnText&quot;,&quot;value&quot;:&quot;Proceed&quot;},{&quot;key&quot;:&quot;strCourseAgendaComputedPointsLabel&quot;,&quot;value&quot;:&quot;points&quot;},{&quot;key&quot;:&quot;videojsRemainingTime&quot;,&quot;value&quot;:&quot;Remaining time&quot;},{&quot;key&quot;:&quot;strDoesNotExpire&quot;,&quot;value&quot;:&quot;Does not expire&quot;},{&quot;key&quot;:&quot;shareCourseButtonTitle&quot;,&quot;value&quot;:&quot;Share this course&quot;},{&quot;key&quot;:&quot;pageTitleMediaSearch&quot;,&quot;value&quot;:&quot;Search media&quot;},{&quot;key&quot;:&quot;strAssignedTemplateCoursesAvailableNow&quot;,&quot;value&quot;:&quot;Courses available&quot;},{&quot;key&quot;:&quot;strCourseBtnCancelCourse&quot;,&quot;value&quot;:&quot;Cancel course&quot;},{&quot;key&quot;:&quot;coursePrebookRequestDialogBody&quot;,&quot;value&quot;:&quot;You are pre-registering for course &lt;span class=\&quot;reveal-dialog-text-highlight\&quot;&gt;%COURSE_NAME%&lt;\/span&gt;. You can find the course in your open registrations if you have not yet booked a course date.&quot;},{&quot;key&quot;:&quot;strCoursesAvailableNowWithDueDate&quot;,&quot;value&quot;:&quot;Courses available. Due on {{dueDate}}&quot;},{&quot;key&quot;:&quot;personalAreaCourseStatusReservedForWaitingList&quot;,&quot;value&quot;:&quot;Has been reserved for the waiting list&quot;},{&quot;key&quot;:&quot;strEmployeeHeaderBreadcrumbDashboardText&quot;,&quot;value&quot;:&quot;Certifications&quot;},{&quot;key&quot;:&quot;csFacetNotBooked&quot;,&quot;value&quot;:&quot;Not enrolled&quot;},{&quot;key&quot;:&quot;deleteRatingDialogBody&quot;,&quot;value&quot;:&quot;Do you really want to delete the complete rating?&quot;},{&quot;key&quot;:&quot;imc-qr-copy-link&quot;,&quot;value&quot;:&quot;Copy QR code link&quot;},{&quot;key&quot;:&quot;languageCode_pt-pt&quot;,&quot;value&quot;:&quot;Portugu\u00eas&quot;},{&quot;key&quot;:&quot;courseDetailsSingleDay&quot;,&quot;value&quot;:&quot;Day&quot;},{&quot;key&quot;:&quot;strSeatAllocationTimespanMonthly&quot;,&quot;value&quot;:&quot;monthy&quot;},{&quot;key&quot;:&quot;strTrainingCalendarHeader&quot;,&quot;value&quot;:&quot;My calendar&quot;},{&quot;key&quot;:&quot;searchButtonTitle&quot;,&quot;value&quot;:&quot;Start search&quot;},{&quot;key&quot;:&quot;videojsEndOfDialogWindow&quot;,&quot;value&quot;:&quot;End of the dialogue window.&quot;},{&quot;key&quot;:&quot;courseEnrolmentStaffPrebooked&quot;,&quot;value&quot;:&quot;The course has been pre-booked for an employee.&quot;},{&quot;key&quot;:&quot;strProgramLearningPathLevelNotAvailable&quot;,&quot;value&quot;:&quot;No level achieved yet&quot;},{&quot;key&quot;:&quot;courseNoContentAvailableNews&quot;,&quot;value&quot;:&quot;No news available&quot;},{&quot;key&quot;:&quot;strBreadcrumbsExternalDashboardPageName&quot;,&quot;value&quot;:&quot;Dashboard&quot;},{&quot;key&quot;:&quot;strStaffEnrollmentCancelModalSubtitle&quot;,&quot;value&quot;:&quot;Are you sure you want to cancel?&quot;},{&quot;key&quot;:&quot;strESignatureRevealButtonConfirm&quot;,&quot;value&quot;:&quot;Authorize&quot;},{&quot;key&quot;:&quot;discussion&quot;,&quot;value&quot;:&quot;Discussion&quot;},{&quot;key&quot;:&quot;strNotStartedTrackingCannotBeDone&quot;,&quot;value&quot;:&quot;Attendance tracking cannot be done as the event is not started yet&quot;},{&quot;key&quot;:&quot;strEnrollmentStatusSUCCESSFULLY_COMPLETED&quot;,&quot;value&quot;:&quot;Completed&quot;},{&quot;key&quot;:&quot;strCourseTabStatusRecommended&quot;,&quot;value&quot;:&quot;Recommended&quot;},{&quot;key&quot;:&quot;certificationHistoryButtonTooltip&quot;,&quot;value&quot;:&quot;Certification history&quot;},{&quot;key&quot;:&quot;ICON_REFRESH_PAGE&quot;,&quot;value&quot;:&quot;Update views&quot;},{&quot;key&quot;:&quot;strEnd&quot;,&quot;value&quot;:&quot;End&quot;},{&quot;key&quot;:&quot;strCourseBtnReplaceEnrollmentForCourse&quot;,&quot;value&quot;:&quot;Replace participant&quot;},{&quot;key&quot;:&quot;strSelectUsersHint&quot;,&quot;value&quot;:&quot;Proceed by selecting a new participant&quot;},{&quot;key&quot;:&quot;strMyCoursesErrorRevealDefaultText&quot;,&quot;value&quot;:&quot;An unknown error has occurred&quot;},{&quot;key&quot;:&quot;userprofileUsiImmiCardTownCityOfBirthTitle&quot;,&quot;value&quot;:&quot;Place of birth&quot;},{&quot;key&quot;:&quot;errorReason&quot;,&quot;value&quot;:&quot;Reason&quot;},{&quot;key&quot;:&quot;strRegisterForUsi&quot;,&quot;value&quot;:&quot;Register for a USI&quot;},{&quot;key&quot;:&quot;strMyCoursesEnrolRevealCancelButton&quot;,&quot;value&quot;:&quot;Cancel&quot;},{&quot;key&quot;:&quot;hasEndDate&quot;,&quot;value&quot;:&quot;Available until $end_date$&quot;},{&quot;key&quot;:&quot;userprofileUsiMedicareIndividualRefNumberTitle&quot;,&quot;value&quot;:&quot;Personal reference number&quot;},{&quot;key&quot;:&quot;strEnrollmentStatusSTARTED&quot;,&quot;value&quot;:&quot;In progress&quot;},{&quot;key&quot;:&quot;certificateOfAttendanceNotAvailableYet&quot;,&quot;value&quot;:&quot;If you have not passed the course, you can download your personal certificate of participation here.&quot;},{&quot;key&quot;:&quot;metaTagDescriptionLibraryPage&quot;,&quot;value&quot;:&quot;Library content&quot;},{&quot;key&quot;:&quot;strCourseStatusProgressDue&quot;,&quot;value&quot;:&quot;Due on {{dueDate}}&quot;},{&quot;key&quot;:&quot;menuTitleModuleNavigation&quot;,&quot;value&quot;:&quot;Module navigation&quot;},{&quot;key&quot;:&quot;strBuyNow&quot;,&quot;value&quot;:&quot;Buy now&quot;},{&quot;key&quot;:&quot;courseContentNextElement&quot;,&quot;value&quot;:&quot;Continue&quot;},{&quot;key&quot;:&quot;strAnonymous&quot;,&quot;value&quot;:&quot;Anonymous&quot;},{&quot;key&quot;:&quot;programmeEmployeeFinishedSubline&quot;,&quot;value&quot;:&quot;The employee has finished the learning path&quot;},{&quot;key&quot;:&quot;strDurationInMinutes&quot;,&quot;value&quot;:&quot;{{absoluteMinutes}} Minutes&quot;},{&quot;key&quot;:&quot;TrainingMenuTitle&quot;,&quot;value&quot;:&quot;Open on-the-job training menu&quot;},{&quot;key&quot;:&quot;strShareLearningPathTemplate&quot;,&quot;value&quot;:&quot;Share this learning path with others&quot;},{&quot;key&quot;:&quot;myInboxNoContentAvailable&quot;,&quot;value&quot;:&quot;No messages available&quot;},{&quot;key&quot;:&quot;acceptPolicyRequiredErrorMessage&quot;,&quot;value&quot;:&quot;Please accept the End User Licence Agreement.&quot;},{&quot;key&quot;:&quot;strRestrictionDropdownConditionInfoFolderHeadline&quot;,&quot;value&quot;:&quot;Proceed as follows:&quot;},{&quot;key&quot;:&quot;strPrerequisitesButtonOpenCompetencies&quot;,&quot;value&quot;:&quot;Open competences&quot;},{&quot;key&quot;:&quot;courseFeatureDiscussion&quot;,&quot;value&quot;:&quot;Discussion&quot;},{&quot;key&quot;:&quot;strSkillIssueDate&quot;,&quot;value&quot;:&quot;Issue date&quot;},{&quot;key&quot;:&quot;honourTitle&quot;,&quot;value&quot;:&quot;Honour code&quot;},{&quot;key&quot;:&quot;courseContentStatusBlocked&quot;,&quot;value&quot;:&quot;Blocked&quot;},{&quot;key&quot;:&quot;deleteAccountDialogHeadline&quot;,&quot;value&quot;:&quot;Delete profile&quot;},{&quot;key&quot;:&quot;strReportSkillEditRevealCancelButtonTooltip&quot;,&quot;value&quot;:&quot;Back to selection of person&quot;},{&quot;key&quot;:&quot;bypassCourseDescription&quot;,&quot;value&quot;:&quot;Skip to course description&quot;},{&quot;key&quot;:&quot;ltiReturnPageTitle&quot;,&quot;value&quot;:&quot;The external learning content has ended.&quot;},{&quot;key&quot;:&quot;strProgrammeStatusProgressDue&quot;,&quot;value&quot;:&quot;Due on {{dueDate}}&quot;},{&quot;key&quot;:&quot;strReplaceEnrollmentSuccessMessage&quot;,&quot;value&quot;:&quot;{{userName1}} was replaced successfully with {{userName2}} on {{courseName}}.&quot;},{&quot;key&quot;:&quot;strErrorMessageCodeRequired&quot;,&quot;value&quot;:&quot;Please enter the Code&quot;},{&quot;key&quot;:&quot;passwordRequestConfirmationText&quot;,&quot;value&quot;:&quot;We have sent you an email with instructions on how to reset your password. Please check your inbox. If you do not receive an email please contact our &lt;a href=\&quot;donotreply@accaglobal.com\&quot;&gt;donotreply@accaglobal.com&lt;\/a&gt;.&quot;},{&quot;key&quot;:&quot;userprofileUsiImmiCardImmiCardNumberTitle&quot;,&quot;value&quot;:&quot;Immigration Card Number&quot;},{&quot;key&quot;:&quot;coursePrebookRemovalDialogActionBtnText&quot;,&quot;value&quot;:&quot;Remove pre-booking&quot;},{&quot;key&quot;:&quot;strTrainingCalendarDayButton&quot;,&quot;value&quot;:&quot;Day&quot;},{&quot;key&quot;:&quot;openCourseSyllabus&quot;,&quot;value&quot;:&quot;Open the contents for:&quot;},{&quot;key&quot;:&quot;userProfileCategory&quot;,&quot;value&quot;:&quot;User profile&quot;},{&quot;key&quot;:&quot;shareCoursePersonalNoteLabel&quot;,&quot;value&quot;:&quot;Personal note&quot;},{&quot;key&quot;:&quot;strOpenCalendar&quot;,&quot;value&quot;:&quot;Open calendar&quot;},{&quot;key&quot;:&quot;languageCode_pt-br&quot;,&quot;value&quot;:&quot;Portugu\u00eas (Brasil)&quot;},{&quot;key&quot;:&quot;strTextTruncationShowMore&quot;,&quot;value&quot;:&quot;more&quot;},{&quot;key&quot;:&quot;strBatchEnrollment&quot;,&quot;value&quot;:&quot;Multiple registration&quot;},{&quot;key&quot;:&quot;strCommonStartDate&quot;,&quot;value&quot;:&quot;Start date&quot;},{&quot;key&quot;:&quot;strLearningPathConditions&quot;,&quot;value&quot;:&quot;Learning path conditions&quot;},{&quot;key&quot;:&quot;userprofileUsiMedicareCardColourTitle&quot;,&quot;value&quot;:&quot;Card colour&quot;},{&quot;key&quot;:&quot;passwordChangeServerError&quot;,&quot;value&quot;:&quot;Your request to reset the password is not valid. Please check the provided user name or the validity of the password reset token. You can repeat the process on the &lt;a href=\&quot;{0}\&quot;&gt;Reset password&lt;\/a&gt; page&quot;},{&quot;key&quot;:&quot;strSelectsAllUnloadedMessages&quot;,&quot;value&quot;:&quot;Selects all unloaded messages&quot;},{&quot;key&quot;:&quot;mTypeFileName&quot;,&quot;value&quot;:&quot;File&quot;},{&quot;key&quot;:&quot;courseDiscussionEnterComment&quot;,&quot;value&quot;:&quot;Write reply...&quot;},{&quot;key&quot;:&quot;strMessageDeletingRating&quot;,&quot;value&quot;:&quot;The rating was deleted.&quot;},{&quot;key&quot;:&quot;strPrerequisitesStatusPartiallyFulfilledNoDueDate&quot;,&quot;value&quot;:&quot;You are already enrolled but you must complete this mandatory prerequisite before you start the course you are enrolling in.&quot;},{&quot;key&quot;:&quot;strCommonComponentId&quot;,&quot;value&quot;:&quot;Component ID&quot;},{&quot;key&quot;:&quot;skillAssessmentModalExpiryMode&quot;,&quot;value&quot;:&quot;Expiration mode&quot;},{&quot;key&quot;:&quot;revealTaskDeclineCancelBtn&quot;,&quot;value&quot;:&quot;Cancel&quot;},{&quot;key&quot;:&quot;courseRemovePrebookingRequestButtonText&quot;,&quot;value&quot;:&quot;Remove reservation&quot;},{&quot;key&quot;:&quot;mTypeFeedbackName&quot;,&quot;value&quot;:&quot;Feedback&quot;},{&quot;key&quot;:&quot;strNewMedia&quot;,&quot;value&quot;:&quot;New&quot;},{&quot;key&quot;:&quot;pageTitleAttendanceTracking&quot;,&quot;value&quot;:&quot;Attendance tracking&quot;},{&quot;key&quot;:&quot;runningTimeInMinutes&quot;,&quot;value&quot;:&quot;{{minutes}} min&quot;},{&quot;key&quot;:&quot;coursePrebookRemovalDialogBody&quot;,&quot;value&quot;:&quot;Would you like to remove the pre-booking for the course template &lt;span class=\&quot;reveal-dialog-text-highlight\&quot;&gt;%COURSE_NAME%&lt;\/span&gt;? The course template will no longer be displayed in your pending enrolments.&quot;},{&quot;key&quot;:&quot;videojsBlue&quot;,&quot;value&quot;:&quot;Blue&quot;},{&quot;key&quot;:&quot;strCommonMay&quot;,&quot;value&quot;:&quot;May&quot;},{&quot;key&quot;:&quot;strProgrammeSupervisorCancellationRevealHeadline&quot;,&quot;value&quot;:&quot;Would you like to cancel the learning path \&quot;{{programme}}\&quot; for \&quot;{{currentUser}}\&quot;?&quot;},{&quot;key&quot;:&quot;courseContentStartTitle&quot;,&quot;value&quot;:&quot;Start&quot;},{&quot;key&quot;:&quot;strManageStaffEnrolmentHeader&quot;,&quot;value&quot;:&quot;Manage staff enrolment&quot;},{&quot;key&quot;:&quot;coursePrebookRemovalDialogTitle&quot;,&quot;value&quot;:&quot;Remove pre-booking&quot;},{&quot;key&quot;:&quot;strMessageTwoFactorsTimeout&quot;,&quot;value&quot;:&quot;The verification attempt took too long and the time has expired, the verification must be performed again.&quot;},{&quot;key&quot;:&quot;whatIsAMoocPart2&quot;,&quot;value&quot;:&quot; &quot;},{&quot;key&quot;:&quot;strPoints&quot;,&quot;value&quot;:&quot;Points&quot;},{&quot;key&quot;:&quot;errorGeneralRestAPIMessage&quot;,&quot;value&quot;:&quot;Unexpected error during the connection with REST-API; please check the log files.&quot;},{&quot;key&quot;:&quot;strCommonDay2Short&quot;,&quot;value&quot;:&quot;Mon&quot;},{&quot;key&quot;:&quot;deleteAccountDialogCancelButtonText&quot;,&quot;value&quot;:&quot;Cancel&quot;},{&quot;key&quot;:&quot;userprofileUsiStateNameSA&quot;,&quot;value&quot;:&quot;South Australia&quot;},{&quot;key&quot;:&quot;strProgrammeEnrolRevealTitle&quot;,&quot;value&quot;:&quot;Learning path enrolment&quot;},{&quot;key&quot;:&quot;myLearnings&quot;,&quot;value&quot;:&quot;My content&quot;},{&quot;key&quot;:&quot;personalAreaCourseStatusApproved&quot;,&quot;value&quot;:&quot;Confirmed. Awaiting booking by the administrator&quot;},{&quot;key&quot;:&quot;videojsReplay&quot;,&quot;value&quot;:&quot;Replay&quot;},{&quot;key&quot;:&quot;validateEmailFieldMandatory&quot;,&quot;value&quot;:&quot;{0}: Please complete the field.&quot;},{&quot;key&quot;:&quot;cookiePolicyMessage&quot;,&quot;value&quot;:&quot;We use cookies to make our system easier for you to use. For more information, see our &lt;a role=\&quot;button\&quot; title=\&quot;Cookie-Richtlinie\&quot; href=\&quot;cookiepolicy.jsf\&quot;&gt;Cookie Policy&lt;\/a&gt;.&quot;},{&quot;key&quot;:&quot;courseEnrolmentPrerequisiteDialogMandatory&quot;,&quot;value&quot;:&quot;required&quot;},{&quot;key&quot;:&quot;assignOJTPageTitle&quot;,&quot;value&quot;:&quot;Assign on-the-job training&quot;},{&quot;key&quot;:&quot;courseRoomNavigationItem&quot;,&quot;value&quot;:&quot;Back to the course&quot;},{&quot;key&quot;:&quot;paymentPaypalExpressCheckoutLinkTitle&quot;,&quot;value&quot;:&quot;Pay with PayPal&quot;},{&quot;key&quot;:&quot;toggleJobProfileFolderInfo&quot;,&quot;value&quot;:&quot;Switch view&quot;},{&quot;key&quot;:&quot;strCoursePrerequisitesCancellationBySupervisorDependenciesInfo&quot;,&quot;value&quot;:&quot;If you still want to cancel this course, please contact your administrator.&quot;},{&quot;key&quot;:&quot;qtiTestCancellationDialogCancelButtonText&quot;,&quot;value&quot;:&quot;No, continue &quot;},{&quot;key&quot;:&quot;courseCancelOperationTitle&quot;,&quot;value&quot;:&quot;Cancel now: %COURSENAME%&quot;},{&quot;key&quot;:&quot;strCertified&quot;,&quot;value&quot;:&quot;Certified&quot;},{&quot;key&quot;:&quot;strNoSkillSelected&quot;,&quot;value&quot;:&quot;No skills selected&quot;},{&quot;key&quot;:&quot;downloadSkillCertificate&quot;,&quot;value&quot;:&quot;Download certificate&quot;},{&quot;key&quot;:&quot;userprofileUsiStateNameNT&quot;,&quot;value&quot;:&quot;Northern Territory&quot;},{&quot;key&quot;:&quot;userProfileEditProfile&quot;,&quot;value&quot;:&quot;You can edit your profile here. Fields marked with an asterisk (*) are mandatory.&quot;},{&quot;key&quot;:&quot;passwordChangeErrorMessageInvalidPasswordRepeat&quot;,&quot;value&quot;:&quot;Please repeat your password&quot;},{&quot;key&quot;:&quot;strCourseAvailable&quot;,&quot;value&quot;:&quot;Course available&quot;},{&quot;key&quot;:&quot;strRestrictionConditionInformationDetails&quot;,&quot;value&quot;:&quot;This condition will be fulfilled by processing minimum {{minumumRequired}} out of the following:&quot;},{&quot;key&quot;:&quot;csLoadMore&quot;,&quot;value&quot;:&quot;Show more results&quot;},{&quot;key&quot;:&quot;videojsNone&quot;,&quot;value&quot;:&quot;None&quot;},{&quot;key&quot;:&quot;certificateYouConcludedTheCourseTitle&quot;,&quot;value&quot;:&quot;You have finished the course &lt;em&gt;$COURSE_NAME$&lt;\/em&gt;.&quot;},{&quot;key&quot;:&quot;courseSelectedSubLine&quot;,&quot;value&quot;:&quot;Course is on your wish list&quot;},{&quot;key&quot;:&quot;qtiFeedbackCloseEvaluationBtn&quot;,&quot;value&quot;:&quot;Close evaluation&quot;},{&quot;key&quot;:&quot;courseEmployeeOrderedPendingRegistration&quot;,&quot;value&quot;:&quot;Request of employee is approved, awaiting enrolment by administrator&quot;},{&quot;key&quot;:&quot;strManageStaffEnrollmentButton&quot;,&quot;value&quot;:&quot;Manage staff enrolment&quot;},{&quot;key&quot;:&quot;courseEnrolmentDialogSelfregistrationActionBtnText&quot;,&quot;value&quot;:&quot;Enrol&quot;},{&quot;key&quot;:&quot;startWbt&quot;,&quot;value&quot;:&quot;START WBT&quot;},{&quot;key&quot;:&quot;strSeatAllocationEnrolUnfulfielledTitle&quot;,&quot;value&quot;:&quot;Unfulfilled conditions for seat allocation&quot;},{&quot;key&quot;:&quot;strFileAlreadyUploaded&quot;,&quot;value&quot;:&quot;File already uploaded.&quot;},{&quot;key&quot;:&quot;strShowAll&quot;,&quot;value&quot;:&quot;Show all&quot;},{&quot;key&quot;:&quot;videojsCasual&quot;,&quot;value&quot;:&quot;Casual&quot;},{&quot;key&quot;:&quot;strShareCourseTemplate&quot;,&quot;value&quot;:&quot;Share this course template&quot;},{&quot;key&quot;:&quot;strExternalCourseStatusPassed&quot;,&quot;value&quot;:&quot;Recorded on {{completionDate}}&quot;},{&quot;key&quot;:&quot;courseDiscussionAreaResponseTitle&quot;,&quot;value&quot;:&quot;Your answer&quot;},{&quot;key&quot;:&quot;strBatchPrebookingPageTitle&quot;,&quot;value&quot;:&quot;Multiple pre-booking&quot;},{&quot;key&quot;:&quot;mTypeUnknown&quot;,&quot;value&quot;:&quot;Unknown&quot;},{&quot;key&quot;:&quot;coursePrebookableHint&quot;,&quot;value&quot;:&quot;You can pre-book this course&quot;},{&quot;key&quot;:&quot;strAssignSkillsFailedMessage&quot;,&quot;value&quot;:&quot;The following skills have not been assigned because a system error occurred:&quot;},{&quot;key&quot;:&quot;CI_TLM_TASKS_TABLE_ENTRIES_PAGE&quot;,&quot;value&quot;:&quot;Entries per page&quot;},{&quot;key&quot;:&quot;mTypeGoToWebinarName&quot;,&quot;value&quot;:&quot;GoToWebinar&quot;},{&quot;key&quot;:&quot;strMyProgramDetailRevealCancellationProceedButton&quot;,&quot;value&quot;:&quot;Cancel learning path&quot;},{&quot;key&quot;:&quot;ICON_XP_COURSE&quot;,&quot;value&quot;:&quot;Experience points acquired in this course&quot;},{&quot;key&quot;:&quot;supervisor.registration.not.selectable.requested&quot;,&quot;value&quot;:&quot;Course already applied for.&quot;},{&quot;key&quot;:&quot;strUserEditSectionRevealCloseTooltip&quot;,&quot;value&quot;:&quot;Close&quot;},{&quot;key&quot;:&quot;strPathProgress&quot;,&quot;value&quot;:&quot;Path progress&quot;},{&quot;key&quot;:&quot;userprofileUsiDriversLicenceTownCityOfBirthTitle&quot;,&quot;value&quot;:&quot;Place of birth&quot;},{&quot;key&quot;:&quot;strBreadcrumbsManageEnrollmentPageName&quot;,&quot;value&quot;:&quot;Manage enrolment&quot;},{&quot;key&quot;:&quot;strDeleteMultipleMessages&quot;,&quot;value&quot;:&quot;{{count}} messages will be deleted.&quot;},{&quot;key&quot;:&quot;courseEnrolmentPrerequisiteDialogTitle&quot;,&quot;value&quot;:&quot;Missing prerequisites for %COURSE_NAME%&quot;},{&quot;key&quot;:&quot;feedbackDialogHeadline&quot;,&quot;value&quot;:&quot;Feedback&quot;},{&quot;key&quot;:&quot;loginText&quot;,&quot;value&quot;:&quot;&lt;br \/&gt;&quot;},{&quot;key&quot;:&quot;courseContentStatusUnknown&quot;,&quot;value&quot;:&quot;Not yet started&quot;},{&quot;key&quot;:&quot;coursePrerequisitesTabName&quot;,&quot;value&quot;:&quot;Prerequisites&quot;},{&quot;key&quot;:&quot;successMsgEnrolmentData&quot;,&quot;value&quot;:&quot;The enrolmentdata was saved successfully&quot;},{&quot;key&quot;:&quot;mTypeForumName&quot;,&quot;value&quot;:&quot;Forum&quot;},{&quot;key&quot;:&quot;strCommonDay5Min&quot;,&quot;value&quot;:&quot;Thu&quot;},{&quot;key&quot;:&quot;csTitle&quot;,&quot;value&quot;:&quot;Catalogue&quot;},{&quot;key&quot;:&quot;strRestrictionDropdownConditioninfoHeadline&quot;,&quot;value&quot;:&quot;Information on conditions&quot;},{&quot;key&quot;:&quot;strBreadcrumbsProgrammeDescriptionPageName&quot;,&quot;value&quot;:&quot;Learning path&quot;},{&quot;key&quot;:&quot;userprofileUsiStateNameWA&quot;,&quot;value&quot;:&quot;Western Australia&quot;},{&quot;key&quot;:&quot;userprofileUsiDtCertificateOfRegistrationByDescentDocumentType&quot;,&quot;value&quot;:&quot;Certificate Registration through descent&quot;},{&quot;key&quot;:&quot;employeeRegisterButtonText&quot;,&quot;value&quot;:&quot;Enrol staff member&quot;},{&quot;key&quot;:&quot;naviLinkCreateComplianceTraining&quot;,&quot;value&quot;:&quot;Create training&quot;},{&quot;key&quot;:&quot;qtiTestFailed&quot;,&quot;value&quot;:&quot;Sorry, you have failed the test!&quot;},{&quot;key&quot;:&quot;strCourseSubscriptionState_PREBOOKING_REQUESTED&quot;,&quot;value&quot;:&quot;Reservation requested&quot;},{&quot;key&quot;:&quot;strSelectForEnrollment&quot;,&quot;value&quot;:&quot;Select for enrolment&quot;},{&quot;key&quot;:&quot;strUserRatingStars&quot;,&quot;value&quot;:&quot;Rating&quot;},{&quot;key&quot;:&quot;errorsCommonNavigation&quot;,&quot;value&quot;:&quot;You can navigate to the following pages:&quot;},{&quot;key&quot;:&quot;strTableSawCancellationListShowAllButton&quot;,&quot;value&quot;:&quot;Display all&quot;},{&quot;key&quot;:&quot;saveProfileChanges&quot;,&quot;value&quot;:&quot;Save changes&quot;},{&quot;key&quot;:&quot;strUnreviewedLearnerActivityFilter&quot;,&quot;value&quot;:&quot;Unreviewed learner activity&quot;},{&quot;key&quot;:&quot;orderCourseCertificate&quot;,&quot;value&quot;:&quot;Order a certificate for:&quot;},{&quot;key&quot;:&quot;strAccountActivatedInfoTitle&quot;,&quot;value&quot;:&quot;Activation of the user account&quot;},{&quot;key&quot;:&quot;xapiStatusFailed&quot;,&quot;value&quot;:&quot;Failed&quot;},{&quot;key&quot;:&quot;strBreadcrumbsCompetenciesPageName&quot;,&quot;value&quot;:&quot;Competency profile&quot;},{&quot;key&quot;:&quot;strMyCoursesDetailRevealCancellationRequestCancelButton&quot;,&quot;value&quot;:&quot;Cancel&quot;},{&quot;key&quot;:&quot;strEmployeeHeaderLearningStatus&quot;,&quot;value&quot;:&quot;My learning&quot;},{&quot;key&quot;:&quot;strMyProgrammesDetailRevealReasonLabel&quot;,&quot;value&quot;:&quot;Cancellation reason&quot;},{&quot;key&quot;:&quot;strCourseStatusRequestedExternal&quot;,&quot;value&quot;:&quot;Requested on {{statusUpdaterTime}}&quot;},{&quot;key&quot;:&quot;strCourseBtnConcludeCourse&quot;,&quot;value&quot;:&quot;Conclude&quot;},{&quot;key&quot;:&quot;strCourseTabStatusCompleted&quot;,&quot;value&quot;:&quot;Completed&quot;},{&quot;key&quot;:&quot;supervisor.registration.not.selectable&quot;,&quot;value&quot;:&quot;Employee is already enrolled.&quot;},{&quot;key&quot;:&quot;strCertificationCompleted&quot;,&quot;value&quot;:&quot;{{eventDate}} Certification Completed&quot;},{&quot;key&quot;:&quot;wbtStartTraining&quot;,&quot;value&quot;:&quot;Open training&quot;},{&quot;key&quot;:&quot;employeePrebookedSubline&quot;,&quot;value&quot;:&quot;Employee is reserved for this course&quot;},{&quot;key&quot;:&quot;ch_toast_subscribe&quot;,&quot;value&quot;:&quot;Channel subscription successful&quot;},{&quot;key&quot;:&quot;strClear&quot;,&quot;value&quot;:&quot;Delete&quot;},{&quot;key&quot;:&quot;strNumberOfResults&quot;,&quot;value&quot;:&quot;{{strNumberOfElements}} {{typeOfResult}} found&quot;},{&quot;key&quot;:&quot;strCannotSubscribeToChannelMessage&quot;,&quot;value&quot;:&quot;Subscribing was not successful&quot;},{&quot;key&quot;:&quot;loginUsingOpenIdAuthentication&quot;,&quot;value&quot;:&quot;Sign in with myACCA&quot;},{&quot;key&quot;:&quot;scrollToCoursesTeaser&quot;,&quot;value&quot;:&quot;Scroll to featured courses&quot;},{&quot;key&quot;:&quot;strManageEnrollmentReplaceButtonText&quot;,&quot;value&quot;:&quot;Replace participant&quot;},{&quot;key&quot;:&quot;hoursAgoFormat&quot;,&quot;value&quot;:&quot;%d hours ago&quot;},{&quot;key&quot;:&quot;strWebExMeeting&quot;,&quot;value&quot;:&quot;WebEx Meeting&quot;},{&quot;key&quot;:&quot;myInboxPageTitle&quot;,&quot;value&quot;:&quot;Messages&quot;},{&quot;key&quot;:&quot;courseEnrolmentDialogSelfregistrationWithConfirmationTitle&quot;,&quot;value&quot;:&quot;Course application&quot;},{&quot;key&quot;:&quot;qtiFeedbackSubmissionDialogCancelButtonTitle&quot;,&quot;value&quot;:&quot;Continue your feedback&quot;},{&quot;key&quot;:&quot;imcListLayoutCollapseTooltip&quot;,&quot;value&quot;:&quot;Hide details&quot;},{&quot;key&quot;:&quot;strCovers&quot;,&quot;value&quot;:&quot;This component triggers the completion of&quot;},{&quot;key&quot;:&quot;catalogStartSearchButtonTitle&quot;,&quot;value&quot;:&quot;Search&quot;},{&quot;key&quot;:&quot;strTableSawOpenUserProfile&quot;,&quot;value&quot;:&quot;Open user profile&quot;},{&quot;key&quot;:&quot;strEmployeeHeaderBreadcrumbLearningStatusTitle&quot;,&quot;value&quot;:&quot;Back to employee learning status&quot;},{&quot;key&quot;:&quot;tileCommonObjectMetadataWaitingListAccessible&quot;,&quot;value&quot;:&quot;Waiting list available&quot;},{&quot;key&quot;:&quot;paymentTransactionCompletedDialogText&quot;,&quot;value&quot;:&quot;Transaction completed successfully. You can now start the course.&quot;},{&quot;key&quot;:&quot;strCourseBtnStartCourse&quot;,&quot;value&quot;:&quot;Start course&quot;},{&quot;key&quot;:&quot;deleteAccountButtonText&quot;,&quot;value&quot;:&quot;Delete profile&quot;},{&quot;key&quot;:&quot;strAddedBy&quot;,&quot;value&quot;:&quot;added by&quot;},{&quot;key&quot;:&quot;mTypeGlossaryName&quot;,&quot;value&quot;:&quot;Glossary&quot;},{&quot;key&quot;:&quot;userprofileUsiErrorGivenUsiBasicValidationError&quot;,&quot;value&quot;:&quot;Your USI must contain 10 characters.&quot;},{&quot;key&quot;:&quot;strStartLearning&quot;,&quot;value&quot;:&quot;Start learning&quot;},{&quot;key&quot;:&quot;strAddTask&quot;,&quot;value&quot;:&quot;Add new task&quot;},{&quot;key&quot;:&quot;strReportAssignedToCourse&quot;,&quot;value&quot;:&quot;Currently assigned&quot;},{&quot;key&quot;:&quot;strCourseAvailableNow&quot;,&quot;value&quot;:&quot;Course available&quot;},{&quot;key&quot;:&quot;strModerationDateFrom&quot;,&quot;value&quot;:&quot;from&quot;},{&quot;key&quot;:&quot;jobProfileResultCountSingularSkillsSingularJobProfilesFilteredBy&quot;,&quot;value&quot;:&quot;1 Skill in 1 Job profile, filtered by:&quot;},{&quot;key&quot;:&quot;userprofileUsiDriversLicenceStateTitle&quot;,&quot;value&quot;:&quot;State&quot;},{&quot;key&quot;:&quot;qtiFeedbackCancellationDialogSubmitButtonText&quot;,&quot;value&quot;:&quot;Yes, cancel feedback&quot;},{&quot;key&quot;:&quot;courseDiscussionEnterPost&quot;,&quot;value&quot;:&quot;Write feedback...&quot;},{&quot;key&quot;:&quot;supervisor.registration.ordered&quot;,&quot;value&quot;:&quot;The staff member has applied for this course, but the confirmation is pending.&quot;},{&quot;key&quot;:&quot;strCourseBtnOpenCourse&quot;,&quot;value&quot;:&quot;Open course&quot;},{&quot;key&quot;:&quot;courseRemovePrebookButtonTitle&quot;,&quot;value&quot;:&quot;Remove pre-booking&quot;},{&quot;key&quot;:&quot;strOpenJobProfile&quot;,&quot;value&quot;:&quot;Open job profile&quot;},{&quot;key&quot;:&quot;validateGeneralError&quot;,&quot;value&quot;:&quot;Unfortunately your submitted data was invalid. Please check all marked fields.&quot;},{&quot;key&quot;:&quot;strBeingPartOfGroup&quot;,&quot;value&quot;:&quot;Belonging to the group {{ GROUP_NAME }}} counts towards this condition.&quot;},{&quot;key&quot;:&quot;strOpen&quot;,&quot;value&quot;:&quot;Open&quot;},{&quot;key&quot;:&quot;strInterestRevealTitle&quot;,&quot;value&quot;:&quot;Selection of interests&quot;},{&quot;key&quot;:&quot;ManageTrainingMenuSection&quot;,&quot;value&quot;:&quot;On-the-job training&quot;},{&quot;key&quot;:&quot;strBtnProgramCancellation&quot;,&quot;value&quot;:&quot;Cancel learning path&quot;},{&quot;key&quot;:&quot;strClientDefaultSearchCatalogFiltersIsBookable&quot;,&quot;value&quot;:&quot;Available for enrolment&quot;},{&quot;key&quot;:&quot;ltiReturnPageTitleMessage&quot;,&quot;value&quot;:&quot;The external learning content has ended:&quot;},{&quot;key&quot;:&quot;strEnrollmentProcessorReturnBtn&quot;,&quot;value&quot;:&quot;Return&quot;},{&quot;key&quot;:&quot;strCourseSubscriptionState_18&quot;,&quot;value&quot;:&quot;Reserved&quot;},{&quot;key&quot;:&quot;strCourseSubscriptionState_19&quot;,&quot;value&quot;:&quot;Reserved for waiting list&quot;},{&quot;key&quot;:&quot;strCourseSubscriptionState_16&quot;,&quot;value&quot;:&quot;Pre-booked&quot;},{&quot;key&quot;:&quot;courseEnrolmentPrerequisiteDialogNotFulfilled&quot;,&quot;value&quot;:&quot;Not fulfilled&quot;},{&quot;key&quot;:&quot;strCourseSubscriptionState_17&quot;,&quot;value&quot;:&quot;Personal syllabus&quot;},{&quot;key&quot;:&quot;strCourseSubscriptionState_14&quot;,&quot;value&quot;:&quot;Not Evaluated&quot;},{&quot;key&quot;:&quot;strCourseSubscriptionState_15&quot;,&quot;value&quot;:&quot;Unblocked&quot;},{&quot;key&quot;:&quot;COLLAPSE_ALL&quot;,&quot;value&quot;:&quot;Collapse all&quot;},{&quot;key&quot;:&quot;strCourseSubscriptionState_12&quot;,&quot;value&quot;:&quot;Failed&quot;},{&quot;key&quot;:&quot;strCourseSubscriptionState_13&quot;,&quot;value&quot;:&quot;Deleted&quot;},{&quot;key&quot;:&quot;strCourseSubscriptionState_10&quot;,&quot;value&quot;:&quot;Concluded&quot;},{&quot;key&quot;:&quot;strCourseSubscriptionState_11&quot;,&quot;value&quot;:&quot;Passed&quot;},{&quot;key&quot;:&quot;loginName&quot;,&quot;value&quot;:&quot;Login&quot;},{&quot;key&quot;:&quot;strComponentLockedDialogBody&quot;,&quot;value&quot;:&quot;The training is locked by course learning logic. Do you want to open the course syllabus instead?&quot;},{&quot;key&quot;:&quot;strCompletedOn&quot;,&quot;value&quot;:&quot;Completed on {{ completionDate }}&quot;},{&quot;key&quot;:&quot;courseDiscussionStartDiscussionLabel&quot;,&quot;value&quot;:&quot;Start a new discussion&quot;},{&quot;key&quot;:&quot;shareCourseConfirmButton&quot;,&quot;value&quot;:&quot;Sharing&quot;},{&quot;key&quot;:&quot;EnrolmentRequestsMenuItemTitle&quot;,&quot;value&quot;:&quot;Open booking requests&quot;},{&quot;key&quot;:&quot;strCourseSubscriptionState_21&quot;,&quot;value&quot;:&quot;Fail&quot;},{&quot;key&quot;:&quot;loginUsingExternalIdentityProvider&quot;,&quot;value&quot;:&quot;Login with external identity provider&quot;},{&quot;key&quot;:&quot;strCourseSubscriptionState_20&quot;,&quot;value&quot;:&quot;Successfully completed&quot;},{&quot;key&quot;:&quot;strAssignJobProfile&quot;,&quot;value&quot;:&quot;Add job profile&quot;},{&quot;key&quot;:&quot;strLearningPathCumulativeCertificationsHeader&quot;,&quot;value&quot;:&quot;Cumulative course certifications&quot;},{&quot;key&quot;:&quot;coursePrebookButtonTitle&quot;,&quot;value&quot;:&quot;Pre-book now&quot;},{&quot;key&quot;:&quot;strNumberOfAttemptsInfo&quot;,&quot;value&quot;:&quot;The default of \&quot;0\&quot; equals to unlimited attempts.&quot;},{&quot;key&quot;:&quot;strCoursePrerequisitesStatusCheckSupervisor&quot;,&quot;value&quot;:&quot;The user you selected does not fulfil the recommended prerequisites for this course.&quot;},{&quot;key&quot;:&quot;strProgrammeAvailableFrom&quot;,&quot;value&quot;:&quot;Available from {0}&quot;},{&quot;key&quot;:&quot;courseContentJoinMeeting&quot;,&quot;value&quot;:&quot;Call up meeting&quot;},{&quot;key&quot;:&quot;strSkillsTooltipNoLevel&quot;,&quot;value&quot;:&quot;{{skillName}}: {{selectedSkillLevelName}}&quot;},{&quot;key&quot;:&quot;strTrainingCountNone&quot;,&quot;value&quot;:&quot;You have no training modules&quot;},{&quot;key&quot;:&quot;strUserDeletionPeriodHint&quot;,&quot;value&quot;:&quot;The deletion will be conducted after a time period of {{deletionPeriod}} months.&quot;},{&quot;key&quot;:&quot;courseEventAvailableFrom&quot;,&quot;value&quot;:&quot;Available from {0}&quot;},{&quot;key&quot;:&quot;certificateOfCompletionNotReached&quot;,&quot;value&quot;:&quot;Unfortunately, you have not fulfilled the requirements for the certificate.&quot;},{&quot;key&quot;:&quot;openFrontPage&quot;,&quot;value&quot;:&quot;Open front page&quot;},{&quot;key&quot;:&quot;bypassCompetencies&quot;,&quot;value&quot;:&quot;Show my Job profile and Skills&quot;},{&quot;key&quot;:&quot;userprofileUsiStateNameTAS&quot;,&quot;value&quot;:&quot;Tasmania&quot;},{&quot;key&quot;:&quot;courseContentNextContent&quot;,&quot;value&quot;:&quot;Next content&quot;},{&quot;key&quot;:&quot;exportMyCertificatesAsZipTooltip&quot;,&quot;value&quot;:&quot;Export certificate as ZIP&quot;},{&quot;key&quot;:&quot;strCommonNovemberFullName&quot;,&quot;value&quot;:&quot;November&quot;},{&quot;key&quot;:&quot;staffEnrolmentProgrammeBookable&quot;,&quot;value&quot;:&quot;Not yet enrolled for the learning path.&quot;},{&quot;key&quot;:&quot;shareLearningPathTemplateOperationSuccess&quot;,&quot;value&quot;:&quot;The learning path template was successfully shared.&quot;},{&quot;key&quot;:&quot;videojsYouAbortedTheMediaPlayback&quot;,&quot;value&quot;:&quot;You have aborted the video playback.&quot;},{&quot;key&quot;:&quot;supervisor.participants&quot;,&quot;value&quot;:&quot;Staff member&quot;},{&quot;key&quot;:&quot;strTrainingCalendarYearButton&quot;,&quot;value&quot;:&quot;Year&quot;},{&quot;key&quot;:&quot;courseEnrolmentBackToCourseDetailsBtnTitle&quot;,&quot;value&quot;:&quot;Back to course details&quot;},{&quot;key&quot;:&quot;coursePrebookRequestDialogActionBtnText&quot;,&quot;value&quot;:&quot;Request pre-booking&quot;},{&quot;key&quot;:&quot;firstLoginPasswordChangeErrorNoOldPassword&quot;,&quot;value&quot;:&quot;Please enter your password&quot;},{&quot;key&quot;:&quot;strNewCertificationPeriodStartedNoDate&quot;,&quot;value&quot;:&quot;New certification period started&quot;},{&quot;key&quot;:&quot;externalContentNotFound&quot;,&quot;value&quot;:&quot;External learning content could not be found&quot;},{&quot;key&quot;:&quot;licenseNotAvailable&quot;,&quot;value&quot;:&quot;Not available&quot;},{&quot;key&quot;:&quot;strCommunicationErrorConfirmationButtonTitle&quot;,&quot;value&quot;:&quot;Close message&quot;},{&quot;key&quot;:&quot;strReportSkillEditRevealProceedButton&quot;,&quot;value&quot;:&quot;Save&quot;},{&quot;key&quot;:&quot;loginFormInvalid&quot;,&quot;value&quot;:&quot;Your entry for this form was not valid. Please check the fields marked &lt;span class=\&quot;icon-exclamation-circle icon-text-wrapped\&quot;&gt;&lt;\/span&gt;&quot;},{&quot;key&quot;:&quot;dueDateBookingError&quot;,&quot;value&quot;:&quot;Invalid or no due date selected&quot;},{&quot;key&quot;:&quot;strCatalogCatalog&quot;,&quot;value&quot;:&quot;Catalogue&quot;},{&quot;key&quot;:&quot;strCommonJanuaryFullName&quot;,&quot;value&quot;:&quot;January&quot;},{&quot;key&quot;:&quot;strCertificationExportNameColumn&quot;,&quot;value&quot;:&quot;Name&quot;},{&quot;key&quot;:&quot;competenciesCertificationProgressBarEndDate&quot;,&quot;value&quot;:&quot;Due on: {{endDate}}&quot;},{&quot;key&quot;:&quot;languageCode_es-es&quot;,&quot;value&quot;:&quot;Espa\u00f1ol&quot;},{&quot;key&quot;:&quot;qtiTestCloseEvaluationBtn&quot;,&quot;value&quot;:&quot;Close evaluation&quot;},{&quot;key&quot;:&quot;strMyLearningsDetailRevealDeletionProceedButton&quot;,&quot;value&quot;:&quot;Remove course&quot;},{&quot;key&quot;:&quot;menuTitleFooterMenu&quot;,&quot;value&quot;:&quot;Footer navigation&quot;},{&quot;key&quot;:&quot;employeeEnrollmentDeletedSubLine&quot;,&quot;value&quot;:&quot;The deletion of the employee's enrolment is in progress&quot;},{&quot;key&quot;:&quot;courseContentFileNotFound&quot;,&quot;value&quot;:&quot;File not found&quot;},{&quot;key&quot;:&quot;strMyCoursesErrorRevealHeadline&quot;,&quot;value&quot;:&quot;Error&quot;},{&quot;key&quot;:&quot;headlineCertificationsPanel&quot;,&quot;value&quot;:&quot;Certification&quot;},{&quot;key&quot;:&quot;strCourseStatusRegisteredDueDateFuture&quot;,&quot;value&quot;:&quot;Due on {{dueDate}}. Can be started&quot;},{&quot;key&quot;:&quot;certificateFulfilledPart2&quot;,&quot;value&quot;:&quot;&lt;br&gt; &lt;p&gt;The requirement for a certificate is the successful processing of the required components. If the link does not work, please write an &lt;a href=\&quot;mailto:$EMAIL_ADDRESS$\&quot;&gt;e-mail&lt;\/a&gt; with your user name, the course ID, your address and possibly proof of study to the following address: $EMAIL_ADDRESS$.&lt;br&gt;&quot;},{&quot;key&quot;:&quot;openLoginPage&quot;,&quot;value&quot;:&quot;Open the login page&quot;},{&quot;key&quot;:&quot;strCommonJuly&quot;,&quot;value&quot;:&quot;Jul&quot;},{&quot;key&quot;:&quot;strProgrammeEnrolmentBySupervisorPrerequisiteDialogOptional&quot;,&quot;value&quot;:&quot;The user you selected does not fulfil the recommended prerequisites for this learning path. Do you still want to continue the registration process?&quot;},{&quot;key&quot;:&quot;strSelfEnrolmentAvailable&quot;,&quot;value&quot;:&quot;Self-registration available&quot;},{&quot;key&quot;:&quot;strProgrammePrerequisitesCancellationBySupervisorDependenciesCancelBtnText&quot;,&quot;value&quot;:&quot;Cancel&quot;},{&quot;key&quot;:&quot;videojsTheMediaIsEncryptedAndWeDoNotHaveTheKeysToDecryptIt&quot;,&quot;value&quot;:&quot;The key needed to decrypt the encrypted media content is not available.&quot;},{&quot;key&quot;:&quot;languageCode_zh&quot;,&quot;value&quot;:&quot;\u4e2d\u6587 (\u7b80\u4f53)&quot;},{&quot;key&quot;:&quot;strPersonalDataDownloadButton&quot;,&quot;value&quot;:&quot;Request personal data&quot;},{&quot;key&quot;:&quot;courseCancellationDialogTitle&quot;,&quot;value&quot;:&quot;Do you want to cancel the course?&quot;},{&quot;key&quot;:&quot;strCommonJune&quot;,&quot;value&quot;:&quot;Jun&quot;},{&quot;key&quot;:&quot;loginCredentials&quot;,&quot;value&quot;:&quot;Your login&quot;},{&quot;key&quot;:&quot;componentDateFixedTimeZoneInfo&quot;,&quot;value&quot;:&quot;Only available at this time. Please plan accordingly&quot;},{&quot;key&quot;:&quot;deleteRatingCommentDialogCancelButtonTooltip&quot;,&quot;value&quot;:&quot;Cancel comment deletion&quot;},{&quot;key&quot;:&quot;strSaveErrorTitle&quot;,&quot;value&quot;:&quot;Save profile error&quot;},{&quot;key&quot;:&quot;strUnlimitedTime&quot;,&quot;value&quot;:&quot;unlimited time&quot;},{&quot;key&quot;:&quot;strRecertificationDue&quot;,&quot;value&quot;:&quot;Recertification due on&quot;},{&quot;key&quot;:&quot;strPersonalDataListItem10&quot;,&quot;value&quot;:&quot;Groups to which you belong&quot;},{&quot;key&quot;:&quot;strMyLearningsDetailRevealDeletionCancelButton&quot;,&quot;value&quot;:&quot;Cancel&quot;},{&quot;key&quot;:&quot;strPersonalDataListItem14&quot;,&quot;value&quot;:&quot;Gamification&quot;},{&quot;key&quot;:&quot;strPersonalDataListItem13&quot;,&quot;value&quot;:&quot;Community content&quot;},{&quot;key&quot;:&quot;beforeCourseStart&quot;,&quot;value&quot;:&quot;{{period}} before course start&quot;},{&quot;key&quot;:&quot;strPersonalDataListItem12&quot;,&quot;value&quot;:&quot;Job profiles and skills&quot;},{&quot;key&quot;:&quot;strGenericStartsOn&quot;,&quot;value&quot;:&quot;Starts on {{startDate}}&quot;},{&quot;key&quot;:&quot;strPersonalDataListItem11&quot;,&quot;value&quot;:&quot;Learning data from AICC and SCORM WBTs&quot;},{&quot;key&quot;:&quot;strPersonalDataListItem17&quot;,&quot;value&quot;:&quot;Allocation of resources&quot;},{&quot;key&quot;:&quot;strPersonalDataListItem16&quot;,&quot;value&quot;:&quot;Favourites&quot;},{&quot;key&quot;:&quot;strPersonalDataListItem15&quot;,&quot;value&quot;:&quot;Assessments&quot;},{&quot;key&quot;:&quot;naviMediaLinkBundle&quot;,&quot;value&quot;:&quot;Discover&quot;},{&quot;key&quot;:&quot;csRemoveSelectedUser&quot;,&quot;value&quot;:&quot;Cancel&quot;},{&quot;key&quot;:&quot;mediaTypeDocumentScreenReaderText&quot;,&quot;value&quot;:&quot;This is the live view of the document. To download it, please use the link given below.&quot;},{&quot;key&quot;:&quot;courseEnrolmentPrerequisiteDialogBody&quot;,&quot;value&quot;:&quot;You do not fulfil the recommended prerequisites for this course. Would you still like to register for this course?&quot;},{&quot;key&quot;:&quot;userprofileUsiDtCitizenshipCertificateDocumentType&quot;,&quot;value&quot;:&quot;Citizenship certificate&quot;},{&quot;key&quot;:&quot;ratingInfo__RICHNESS&quot;,&quot;value&quot;:&quot;Scope of the content&quot;},{&quot;key&quot;:&quot;strCourseComponentStatusNotStarted&quot;,&quot;value&quot;:&quot;Not Started&quot;},{&quot;key&quot;:&quot;strShowConcludedCourses&quot;,&quot;value&quot;:&quot;Show concluded elements&quot;},{&quot;key&quot;:&quot;strErrorMessageAttemptsOver&quot;,&quot;value&quot;:&quot;The maximum number of verification attempts was exceeded. The verification process must be started again from the beginning. &quot;},{&quot;key&quot;:&quot;strObjectId&quot;,&quot;value&quot;:&quot;Object ID&quot;},{&quot;key&quot;:&quot;strComponentAccessRestrictionInfo&quot;,&quot;value&quot;:&quot;{{accessRestrictionName}} (minimum {{minReq}} out of the following)&quot;},{&quot;key&quot;:&quot;deleteAccountHeadline&quot;,&quot;value&quot;:&quot;Delete profile&quot;},{&quot;key&quot;:&quot;loginErrorFacebookAuthenticationFailed&quot;,&quot;value&quot;:&quot;Either this user name does not exist in our system or it has been blocked. Please contact your system administrator.&quot;},{&quot;key&quot;:&quot;strDeleteText1&quot;,&quot;value&quot;:&quot;Are you sure you want to delete &lt;strong&gt;\&quot;{{emailTitle}}\&quot;&lt;\/strong&gt;?&quot;},{&quot;key&quot;:&quot;strNoLevelSelectedCallToAction&quot;,&quot;value&quot;:&quot;Display content by selecting a level&quot;},{&quot;key&quot;:&quot;TaskReportMenuItem&quot;,&quot;value&quot;:&quot;Task report&quot;},{&quot;key&quot;:&quot;strDeleteText2&quot;,&quot;value&quot;:&quot;This operation cannot be undone. &quot;},{&quot;key&quot;:&quot;strPrivacyPolicyDeclineRevealSubtitle&quot;,&quot;value&quot;:&quot;If you do not accept the End User Licence Agreement, you can no longer use the learning platform and your account will be blocked. Your account can only be reactivated by an administrator. Are you sure you do not want to accept the End User Licence Agreement?&quot;},{&quot;key&quot;:&quot;strVerify&quot;,&quot;value&quot;:&quot;Verify&quot;},{&quot;key&quot;:&quot;strCommonLanguages&quot;,&quot;value&quot;:&quot;Languages&quot;},{&quot;key&quot;:&quot;strCourseDueDateLabelDueSoon&quot;,&quot;value&quot;:&quot;Due soon&quot;},{&quot;key&quot;:&quot;projectTitle&quot;,&quot;value&quot;:&quot;ACCA Learning&quot;},{&quot;key&quot;:&quot;openMediaDescription&quot;,&quot;value&quot;:&quot;Open media description&quot;},{&quot;key&quot;:&quot;strMessageSelected&quot;,&quot;value&quot;:&quot;{{count}} message selected&quot;},{&quot;key&quot;:&quot;strCommonComponents&quot;,&quot;value&quot;:&quot;The component(s) :&quot;},{&quot;key&quot;:&quot;mTypeGoToMeetingName&quot;,&quot;value&quot;:&quot;GoToMeeting&quot;},{&quot;key&quot;:&quot;strProgrammeSupervisorCancellationRevealProceedButtonText&quot;,&quot;value&quot;:&quot;Confirm cancellation&quot;},{&quot;key&quot;:&quot;mRatingMore&quot;,&quot;value&quot;:&quot;&amp; more&quot;},{&quot;key&quot;:&quot;strCourseSubscriptionState_PASSED&quot;,&quot;value&quot;:&quot;Passed&quot;},{&quot;key&quot;:&quot;strSkillExpirySectionError&quot;,&quot;value&quot;:&quot;You have not selected an expiry date&quot;},{&quot;key&quot;:&quot;strReportSkillEditRevealCancelButton&quot;,&quot;value&quot;:&quot;Cancel&quot;},{&quot;key&quot;:&quot;strRemoveFromBookshelf&quot;,&quot;value&quot;:&quot;Remove from bookshelf&quot;},{&quot;key&quot;:&quot;fieldTelephoneNumberTooltip&quot;,&quot;value&quot;:&quot;Please enter your phone number.&quot;},{&quot;key&quot;:&quot;ckEditorImageUploadTab&quot;,&quot;value&quot;:&quot;Upload image&quot;},{&quot;key&quot;:&quot;strAutomatedProctoredTestTileInfo&quot;,&quot;value&quot;:&quot;Can be started.&quot;},{&quot;key&quot;:&quot;passwordChangeErrorMessageInvalidPassword&quot;,&quot;value&quot;:&quot;Please enter your password&quot;},{&quot;key&quot;:&quot;videojsRaised&quot;,&quot;value&quot;:&quot;Raised&quot;},{&quot;key&quot;:&quot;strCourseStatusWithDueDatePast&quot;,&quot;value&quot;:&quot;Due since {{dueDate}}. Register now&quot;},{&quot;key&quot;:&quot;strCodeExpireOn&quot;,&quot;value&quot;:&quot;The code will expire in:&quot;},{&quot;key&quot;:&quot;strTrainingCalendarContentTypeEvent&quot;,&quot;value&quot;:&quot;Event&quot;},{&quot;key&quot;:&quot;strCommonApril&quot;,&quot;value&quot;:&quot;Apr&quot;},{&quot;key&quot;:&quot;openPersonalMenu&quot;,&quot;value&quot;:&quot;Open personal menu&quot;},{&quot;key&quot;:&quot;linkFrontPage&quot;,&quot;value&quot;:&quot;Link to homepage&quot;},{&quot;key&quot;:&quot;strEnrollmentStatusCANCELLED&quot;,&quot;value&quot;:&quot;Cancelled&quot;},{&quot;key&quot;:&quot;mTypeLinkName&quot;,&quot;value&quot;:&quot;Link&quot;},{&quot;key&quot;:&quot;signupErrorMessagePasswordNoMatch&quot;,&quot;value&quot;:&quot;The two passwords do not match&quot;},{&quot;key&quot;:&quot;strCourseStatusRegistered&quot;,&quot;value&quot;:&quot;Can be started&quot;},{&quot;key&quot;:&quot;strNoJobProfileAvailable&quot;,&quot;value&quot;:&quot;No job profile available&quot;},{&quot;key&quot;:&quot;strRefreshParticipantList&quot;,&quot;value&quot;:&quot;Refresh participants list&quot;},{&quot;key&quot;:&quot;strCourseUploadExternalCertificateHint&quot;,&quot;value&quot;:&quot;Please upload here your external certificate. Please note that an uploaded certificate can only be changed by the administrator if required.&quot;},{&quot;key&quot;:&quot;strReplyMessageSubject&quot;,&quot;value&quot;:&quot;RE:&quot;},{&quot;key&quot;:&quot;strRequestedPoints&quot;,&quot;value&quot;:&quot;Requested points&quot;},{&quot;key&quot;:&quot;strExamityProctoringAutomatedPremium&quot;,&quot;value&quot;:&quot;Automated Premium&quot;},{&quot;key&quot;:&quot;courseDiscussionAvailableUntil&quot;,&quot;value&quot;:&quot;Available until {0}&quot;},{&quot;key&quot;:&quot;runningTime&quot;,&quot;value&quot;:&quot;Running time&quot;},{&quot;key&quot;:&quot;strDownload&quot;,&quot;value&quot;:&quot;Download&quot;},{&quot;key&quot;:&quot;strPrerequisitesApply&quot;,&quot;value&quot;:&quot;Prerequisites apply&quot;},{&quot;key&quot;:&quot;strCourseEnrolmentPrerequisiteDialogPartially&quot;,&quot;value&quot;:&quot;You do not fulfil the necessary prerequisites for this course.&quot;},{&quot;key&quot;:&quot;openProgrammeSubline&quot;,&quot;value&quot;:&quot;Requires translation&quot;},{&quot;key&quot;:&quot;strMyProgrammesDetailRevealCancellationRequestHeadline&quot;,&quot;value&quot;:&quot;Do you want to request cancellation for the learning path?&quot;},{&quot;key&quot;:&quot;strErrorMessageIDMNotEnabled&quot;,&quot;value&quot;:&quot;IMC IDM configurations has not been set.&quot;},{&quot;key&quot;:&quot;strProgrammeBtnCancel&quot;,&quot;value&quot;:&quot;Cancel learning path&quot;},{&quot;key&quot;:&quot;orbitPrevPictureTitle&quot;,&quot;value&quot;:&quot;Previous image&quot;},{&quot;key&quot;:&quot;description&quot;,&quot;value&quot;:&quot;Description&quot;},{&quot;key&quot;:&quot;browserRejectHeader&quot;,&quot;value&quot;:&quot;Did you know that your Internet browser is no longer up-to-date?&quot;},{&quot;key&quot;:&quot;courseConcludeMediaStartToProceed&quot;,&quot;value&quot;:&quot;Open {0} to continue&quot;},{&quot;key&quot;:&quot;strAccountActivatedSuccessTitle&quot;,&quot;value&quot;:&quot;User account activated&quot;},{&quot;key&quot;:&quot;strMyProgrammesCancellationSuccessMsg&quot;,&quot;value&quot;:&quot;The cancellation was implemented.&quot;},{&quot;key&quot;:&quot;strOpenBadgePage&quot;,&quot;value&quot;:&quot;Open badge page&quot;},{&quot;key&quot;:&quot;strProgrammeRequestRevealEnrolBnt&quot;,&quot;value&quot;:&quot;Request learning path&quot;},{&quot;key&quot;:&quot;strAttributeIdName&quot;,&quot;value&quot;:&quot;Identification code&quot;},{&quot;key&quot;:&quot;EnrolmentRequestsMenuItem&quot;,&quot;value&quot;:&quot;Booking requests&quot;},{&quot;key&quot;:&quot;strCustomMetadataOnTileName&quot;,&quot;value&quot;:&quot;Custom&quot;},{&quot;key&quot;:&quot;qtiTestCancellationDialogSubmitButtonText&quot;,&quot;value&quot;:&quot;Yes, cancel test&quot;},{&quot;key&quot;:&quot;strSupervisorResetEnrollmenStatusRevealMessage&quot;,&quot;value&quot;:&quot;Editing the personal syllabus is only possible if you reset the enrolment status to \&quot;In progress\&quot;. Do you want to reset the enrolment status?&quot;},{&quot;key&quot;:&quot;eventTrackingCheckInBtnText&quot;,&quot;value&quot;:&quot;Check in&quot;},{&quot;key&quot;:&quot;openMenu&quot;,&quot;value&quot;:&quot;Open menu&quot;},{&quot;key&quot;:&quot;videojsThisIsAModalWindow&quot;,&quot;value&quot;:&quot;This is a modal window&quot;},{&quot;key&quot;:&quot;headlineRatingPanel&quot;,&quot;value&quot;:&quot;Evaluation&quot;},{&quot;key&quot;:&quot;courseDetails&quot;,&quot;value&quot;:&quot;Details&quot;},{&quot;key&quot;:&quot;certificateAvailabilityWhenCourseEnds&quot;,&quot;value&quot;:&quot;The certificate is available as soon as the course has ended.&quot;},{&quot;key&quot;:&quot;deleteRatingCommentDialogCancelButtonText&quot;,&quot;value&quot;:&quot;Cancel&quot;},{&quot;key&quot;:&quot;pageTitleRegister&quot;,&quot;value&quot;:&quot;Sign up&quot;},{&quot;key&quot;:&quot;showAlternativesBundle&quot;,&quot;value&quot;:&quot;Show alternatives&quot;},{&quot;key&quot;:&quot;noContentsAvailable&quot;,&quot;value&quot;:&quot;No content available&quot;},{&quot;key&quot;:&quot;courseConcludeMediaPassed&quot;,&quot;value&quot;:&quot;{0} is successfully completed&quot;},{&quot;key&quot;:&quot;strInShoppingCartShopify&quot;,&quot;value&quot;:&quot;Remove from cart&quot;},{&quot;key&quot;:&quot;MyTrainingsMenuItemTitle&quot;,&quot;value&quot;:&quot;Open on-the-job training&quot;},{&quot;key&quot;:&quot;strShareLearningPathConfirmButton&quot;,&quot;value&quot;:&quot;Share this learning path now with recipients provided&quot;},{&quot;key&quot;:&quot;loginUsername&quot;,&quot;value&quot;:&quot;Email&quot;},{&quot;key&quot;:&quot;strEnrolmentConditionsExplained&quot;,&quot;value&quot;:&quot;The course \u201c{{name}}\u201d has enrolment conditions that require individual check for each participant before enrolment.&quot;},{&quot;key&quot;:&quot;passwordRequestPlaceholder&quot;,&quot;value&quot;:&quot;Your login&quot;},{&quot;key&quot;:&quot;userprofileUsiDtPassportDocumentType&quot;,&quot;value&quot;:&quot;Australian passport&quot;},{&quot;key&quot;:&quot;coursePrebookDialogAbortBtnText&quot;,&quot;value&quot;:&quot;Cancel&quot;},{&quot;key&quot;:&quot;strLearningpathNextChallenge&quot;,&quot;value&quot;:&quot;Your next challenge&quot;},{&quot;key&quot;:&quot;strPage&quot;,&quot;value&quot;:&quot;Page&quot;},{&quot;key&quot;:&quot;strActivityAcceptInfo&quot;,&quot;value&quot;:&quot;{0} must be agreed or declined manually&quot;},{&quot;key&quot;:&quot;paymentTransactionPendingDialogText&quot;,&quot;value&quot;:&quot;Transaction was pre-booked. You can access the course as soon as the transaction is confirmed.&quot;},{&quot;key&quot;:&quot;csFromDate&quot;,&quot;value&quot;:&quot;from&quot;},{&quot;key&quot;:&quot;strCoursesAvailableSoonDueDatePast&quot;,&quot;value&quot;:&quot;No courses available. Due since {{dueDate}}&quot;},{&quot;key&quot;:&quot;strBadgeIssuedOn&quot;,&quot;value&quot;:&quot;Issued on {{issuedDate}}&quot;},{&quot;key&quot;:&quot;loginErrorFacebookAuthenticationEmailAccessNotGranted&quot;,&quot;value&quot;:&quot;In order to log in to Facebook, we need your email address. Please allow access to your email address in the Facebook account settings for our application.&quot;},{&quot;key&quot;:&quot;courseContentOpenInNewWindow&quot;,&quot;value&quot;:&quot;Open in new window&quot;},{&quot;key&quot;:&quot;headerText1&quot;,&quot;value&quot;:&quot;IMC's new learning environment&quot;},{&quot;key&quot;:&quot;noUserAccountYet&quot;,&quot;value&quot;:&quot;Do you want to create a user account?&quot;},{&quot;key&quot;:&quot;headerText2&quot;,&quot;value&quot;:&quot;Pure. Accessible. Intuitive.&quot;},{&quot;key&quot;:&quot;courseConcludeTitle&quot;,&quot;value&quot;:&quot;Conclude course&quot;},{&quot;key&quot;:&quot;passwordRequestFormInvalid&quot;,&quot;value&quot;:&quot;The system does not recognise the user name that you have entered.&quot;},{&quot;key&quot;:&quot;csMediaAvailableFromTo&quot;,&quot;value&quot;:&quot;{0} to {1}&quot;},{&quot;key&quot;:&quot;strAttributeAvailableWaitingListPlacesName&quot;,&quot;value&quot;:&quot;Available waiting list places&quot;},{&quot;key&quot;:&quot;strNewRecertificationStarts&quot;,&quot;value&quot;:&quot;New recertification starts on&quot;},{&quot;key&quot;:&quot;strSeatAllocationTimespanQuarterly&quot;,&quot;value&quot;:&quot;quarterly&quot;},{&quot;key&quot;:&quot;svgContrastControllerOpenedInstructions&quot;,&quot;value&quot;:&quot;The contrast slider is open. Press the Tab key to select the slider. Pressing the Escape key closes the contrast slider.&quot;},{&quot;key&quot;:&quot;strCoursesListElements&quot;,&quot;value&quot;:&quot;{{numberOfCourses}} courses found&quot;},{&quot;key&quot;:&quot;errorSystemMessageContact&quot;,&quot;value&quot;:&quot;If this error persists, please contact us.&quot;},{&quot;key&quot;:&quot;ManageComplianceMenuSection&quot;,&quot;value&quot;:&quot;Compliance-Management&quot;},{&quot;key&quot;:&quot;strQtiUserOrderYesNo&quot;,&quot;value&quot;:&quot;Please select the right answer.&quot;},{&quot;key&quot;:&quot;supervisor.content&quot;,&quot;value&quot;:&quot;Content&quot;},{&quot;key&quot;:&quot;strJobProfileAssignmentSuccessMessage&quot;,&quot;value&quot;:&quot;The following job profiles have been successfully assigned to the competency profile:&quot;},{&quot;key&quot;:&quot;strCourseStatusFailed&quot;,&quot;value&quot;:&quot;Finished on {{completionDate}}&quot;},{&quot;key&quot;:&quot;strCommonNone&quot;,&quot;value&quot;:&quot;None&quot;},{&quot;key&quot;:&quot;strEmployeeHeaderPersonDetails&quot;,&quot;value&quot;:&quot;Person details&quot;},{&quot;key&quot;:&quot;strDateAvailableFromTo&quot;,&quot;value&quot;:&quot;{{startDate}} to {{endDate}}&quot;},{&quot;key&quot;:&quot;strUnknown&quot;,&quot;value&quot;:&quot;Unknown&quot;},{&quot;key&quot;:&quot;strCommonFebruary&quot;,&quot;value&quot;:&quot;Feb&quot;},{&quot;key&quot;:&quot;loginErrorWindowsAuthenticationFailed&quot;,&quot;value&quot;:&quot;Either this user does not exist in our system or it has been blocked. Please contact your system administrator.&quot;},{&quot;key&quot;:&quot;naviLinkManageComplianceTraining&quot;,&quot;value&quot;:&quot;Manage trainings&quot;},{&quot;key&quot;:&quot;linkAllCourses&quot;,&quot;value&quot;:&quot;All courses&quot;},{&quot;key&quot;:&quot;strReplaceUserSuccess&quot;,&quot;value&quot;:&quot;Learner {{userName}} has been successfully replaced.&quot;},{&quot;key&quot;:&quot;strLevelRestrictions&quot;,&quot;value&quot;:&quot;Level restrictions&quot;},{&quot;key&quot;:&quot;strCourseSubscriptionState_NULL&quot;,&quot;value&quot;:&quot;No relation&quot;},{&quot;key&quot;:&quot;languageCode_fr&quot;,&quot;value&quot;:&quot;Fran\u00e7ais&quot;},{&quot;key&quot;:&quot;strManageEnrollmentFromTheCourse&quot;,&quot;value&quot;:&quot;from the course&quot;},{&quot;key&quot;:&quot;languageCode_fi&quot;,&quot;value&quot;:&quot;Suomen kieli&quot;},{&quot;key&quot;:&quot;strCourseStatusPersonalSyllabusDueDatePast&quot;,&quot;value&quot;:&quot;Due since {{dueDate}}&quot;},{&quot;key&quot;:&quot;feedbackSubmitFailedNotification&quot;,&quot;value&quot;:&quot;Unexpected error while submitting your feedback.&quot;},{&quot;key&quot;:&quot;languageCode_el&quot;,&quot;value&quot;:&quot;\u0395\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03ac&quot;},{&quot;key&quot;:&quot;unlimitedDurationOfUse&quot;,&quot;value&quot;:&quot;Unlimited&quot;},{&quot;key&quot;:&quot;languageCode_en&quot;,&quot;value&quot;:&quot;English (US)&quot;},{&quot;key&quot;:&quot;strReportEditNumberOfSelectedItems&quot;,&quot;value&quot;:&quot;User selected&quot;},{&quot;key&quot;:&quot;languageCode_es&quot;,&quot;value&quot;:&quot;Espa\u00f1ol&quot;},{&quot;key&quot;:&quot;strAttributeStatusName&quot;,&quot;value&quot;:&quot;Enrolment status&quot;},{&quot;key&quot;:&quot;registerWaitingListHeadline&quot;,&quot;value&quot;:&quot;Book on waiting list&quot;},{&quot;key&quot;:&quot;skillRelevant&quot;,&quot;value&quot;:&quot;Improves skills&quot;},{&quot;key&quot;:&quot;strNoTemplatesAvailable&quot;,&quot;value&quot;:&quot;No templates available&quot;},{&quot;key&quot;:&quot;languageCode_en-us&quot;,&quot;value&quot;:&quot;English (US)&quot;},{&quot;key&quot;:&quot;userSyllabusDisplayAllWbtAlternatives&quot;,&quot;value&quot;:&quot;Display alternatives&quot;},{&quot;key&quot;:&quot;passwordChangeErrorMessageInvalidLogin&quot;,&quot;value&quot;:&quot;Please enter your user name&quot;},{&quot;key&quot;:&quot;qtiSubmissionAnswerAllMandatoryQuestion&quot;,&quot;value&quot;:&quot;Please answer all required questions&quot;},{&quot;key&quot;:&quot;strNeedToSelectLevelForAssessment&quot;,&quot;value&quot;:&quot;You need to select a level for assessment.&quot;},{&quot;key&quot;:&quot;pageTitleProfile&quot;,&quot;value&quot;:&quot;My profile&quot;},{&quot;key&quot;:&quot;strDateFrom&quot;,&quot;value&quot;:&quot;{name}: {fromDate}&quot;},{&quot;key&quot;:&quot;languageCode_de&quot;,&quot;value&quot;:&quot;Deutsch&quot;},{&quot;key&quot;:&quot;myExperiences&quot;,&quot;value&quot;:&quot;My badges&quot;},{&quot;key&quot;:&quot;xapiStatusStarted&quot;,&quot;value&quot;:&quot;In progress&quot;},{&quot;key&quot;:&quot;languageCode_cs&quot;,&quot;value&quot;:&quot;\u010ce\u0161tina&quot;},{&quot;key&quot;:&quot;strCourseTemplateSinglePreBookingRestriction&quot;,&quot;value&quot;:&quot;Pre-booking conditions are defined. To ensure that only eligible participants are included in the pre-booking process, the process only allows the selection of a single participant at a time.&quot;},{&quot;key&quot;:&quot;whatIsAMooc&quot;,&quot;value&quot;:&quot;The Learning Portal enables IMC to present learners with an innovative, graphically appealing holistic learning environment. The IMC Learning Portal provides a lightweight, intuitive Web user interface that is tailored to the specific requirements of learning.&quot;},{&quot;key&quot;:&quot;courseAvailableAnytime&quot;,&quot;value&quot;:&quot;Available now&quot;},{&quot;key&quot;:&quot;menuTitleCourseNavigation&quot;,&quot;value&quot;:&quot;Course navigation&quot;},{&quot;key&quot;:&quot;videojsFontSize&quot;,&quot;value&quot;:&quot;Font size&quot;},{&quot;key&quot;:&quot;strPrerequisitesButtonOpenCourseDetails&quot;,&quot;value&quot;:&quot;Open course details&quot;},{&quot;key&quot;:&quot;strDurationInHoursAndMinutes&quot;,&quot;value&quot;:&quot;{{hours}} Hours and {{minutes}} Minutes&quot;},{&quot;key&quot;:&quot;qtiTestSubmissionDialogCancelButtonTitle&quot;,&quot;value&quot;:&quot;Continue your test&quot;},{&quot;key&quot;:&quot;paymentTransactionFailedDialogText&quot;,&quot;value&quot;:&quot;An error occurred whilst processing the transaction. Please try again.&quot;},{&quot;key&quot;:&quot;strProgrammePrerequisitesCancellationDependenciesListMessage&quot;,&quot;value&quot;:&quot;The learning path \&quot;&lt;strong&gt;{{programmeName}}&lt;\/strong&gt;\&quot; is a mandatory requirement for the following learning paths on which you are registered:&quot;},{&quot;key&quot;:&quot;naviLinkTitleLogout&quot;,&quot;value&quot;:&quot;Log out and proceed to the start page&quot;},{&quot;key&quot;:&quot;languageCode_ko-kr&quot;,&quot;value&quot;:&quot;\ud55c\uad6d\uc758&quot;},{&quot;key&quot;:&quot;courseEnrolmentDialogSelfregistrationWithConfirmationAbortBtnText&quot;,&quot;value&quot;:&quot;Cancel&quot;},{&quot;key&quot;:&quot;ltiOpenNewWindowNoteCatalog&quot;,&quot;value&quot;:&quot;The tool will launch in a new window.&quot;},{&quot;key&quot;:&quot;hide&quot;,&quot;value&quot;:&quot;Hide&quot;},{&quot;key&quot;:&quot;qtiTestCancellationDialogSubmitButtonTitle&quot;,&quot;value&quot;:&quot;Cancel your test&quot;},{&quot;key&quot;:&quot;personalAreaCourseStatusRegistered&quot;,&quot;value&quot;:&quot;Can be started&quot;},{&quot;key&quot;:&quot;strCourseSubscriptionState_DELETE&quot;,&quot;value&quot;:&quot;Deleted&quot;},{&quot;key&quot;:&quot;personalAreaCourseStatusReserved&quot;,&quot;value&quot;:&quot;Has been reserved&quot;},{&quot;key&quot;:&quot;strReplaceUser&quot;,&quot;value&quot;:&quot;Replace user&quot;},{&quot;key&quot;:&quot;metaTagDescriptionCoursePage&quot;,&quot;value&quot;:&quot;Description of the course&quot;},{&quot;key&quot;:&quot;strOneHundredPercentProgressInFolder&quot;,&quot;value&quot;:&quot;100% progress in this folder counts towards this condition.&quot;},{&quot;key&quot;:&quot;strCourseSubscriptionState_STARTED&quot;,&quot;value&quot;:&quot;In progress&quot;},{&quot;key&quot;:&quot;administrators&quot;,&quot;value&quot;:&quot;Administrators&quot;},{&quot;key&quot;:&quot;openScoLoginNeeded&quot;,&quot;value&quot;:&quot;Please &lt;a href=\&quot;{0}\&quot; class=\&quot;link-underline\&quot;&gt;log in&lt;\/a&gt; to open a training and save your own progress&quot;},{&quot;key&quot;:&quot;level&quot;,&quot;value&quot;:&quot;Level&quot;},{&quot;key&quot;:&quot;strCourseBtnShowTemplateDetails&quot;,&quot;value&quot;:&quot;Alternative courses&quot;},{&quot;key&quot;:&quot;strPrerequisitesButtonOpenProgrammeDetails&quot;,&quot;value&quot;:&quot;Open learning path details&quot;},{&quot;key&quot;:&quot;qtiFeedbackCancellationDialogTitle&quot;,&quot;value&quot;:&quot;Cancel feedback&quot;},{&quot;key&quot;:&quot;strProgrammeStatusStarteable&quot;,&quot;value&quot;:&quot;{{startDate}} to {{endDate}}&quot;},{&quot;key&quot;:&quot;deleteAccountDialogCloseTooltip&quot;,&quot;value&quot;:&quot;Cancel&quot;},{&quot;key&quot;:&quot;experiencePoints&quot;,&quot;value&quot;:&quot;Experience points&quot;},{&quot;key&quot;:&quot;ch_total_subscribers&quot;,&quot;value&quot;:&quot;subscribers&quot;},{&quot;key&quot;:&quot;enrollmentFormApprovalDescription&quot;,&quot;value&quot;:&quot;Do you want to approve participation on the course {{courseName}} for the user {{userName}} ?&quot;},{&quot;key&quot;:&quot;dbsNavi_d180Name&quot;,&quot;value&quot;:&quot;Learning status&quot;},{&quot;key&quot;:&quot;strTitleBulkSkillSignatureConfirm&quot;,&quot;value&quot;:&quot;Confirm&quot;},{&quot;key&quot;:&quot;strPersonalDataSuccessMessage&quot;,&quot;value&quot;:&quot;Your data is being processed. You will receive an e-mail with the report enclosed as soon as the process is completed&quot;},{&quot;key&quot;:&quot;resultCountFilteredBySingular&quot;,&quot;value&quot;:&quot;1 result filtered by:&quot;},{&quot;key&quot;:&quot;languageCode_sl&quot;,&quot;value&quot;:&quot;Sloven\u0161\u010dina&quot;},{&quot;key&quot;:&quot;languageCode_sk&quot;,&quot;value&quot;:&quot;Sloven\u010dina&quot;},{&quot;key&quot;:&quot;languageCode_sv&quot;,&quot;value&quot;:&quot;Svenska&quot;},{&quot;key&quot;:&quot;languageCode_sr&quot;,&quot;value&quot;:&quot;\u0421\u0440\u043f\u0441\u043a\u0438&quot;},{&quot;key&quot;:&quot;strBreadcrumbsProgrammeTemplateDescriptionPageName&quot;,&quot;value&quot;:&quot;Learning path template&quot;},{&quot;key&quot;:&quot;strCourseMaximumParticipantsExceeded&quot;,&quot;value&quot;:&quot;The maximum course or waiting-list capacity was exceeded. This can be caused through simultaneous enrolments by other users. Please correct your enrolments.&quot;},{&quot;key&quot;:&quot;strFirstLoginProfileUploadButton&quot;,&quot;value&quot;:&quot;Upload&quot;},{&quot;key&quot;:&quot;languageCode_ro&quot;,&quot;value&quot;:&quot;Rom\u00e2n\u0103&quot;},{&quot;key&quot;:&quot;loginUsingCustomAuthentication&quot;,&quot;value&quot;:&quot;Custom SSO&quot;},{&quot;key&quot;:&quot;strEnrollmentStatusPREBOOKED&quot;,&quot;value&quot;:&quot;Prebooked&quot;},{&quot;key&quot;:&quot;languageCode_ru&quot;,&quot;value&quot;:&quot;P\u0443\u0441\u0441\u043a\u0438\u0439&quot;},{&quot;key&quot;:&quot;fieldTelephoneCountryCodeDefault&quot;,&quot;value&quot;:&quot;Please select...&quot;},{&quot;key&quot;:&quot;noJoinUrlFound&quot;,&quot;value&quot;:&quot;There is no URL for participation in this meeting&quot;},{&quot;key&quot;:&quot;strCloseComponentPreviewBtnText&quot;,&quot;value&quot;:&quot;Close preview&quot;},{&quot;key&quot;:&quot;confirmJobProfileButton&quot;,&quot;value&quot;:&quot;Confirm job profile&quot;},{&quot;key&quot;:&quot;strCourseSubscriptionState_NOTIFIED&quot;,&quot;value&quot;:&quot;Notified&quot;},{&quot;key&quot;:&quot;strBreadcrumbsMyStaffPageName&quot;,&quot;value&quot;:&quot;My staff&quot;},{&quot;key&quot;:&quot;courseReplacementErrorBody&quot;,&quot;value&quot;:&quot;Replacing participants is not permitted for this course. Please contact the administrator.&quot;},{&quot;key&quot;:&quot;courseOrderedPendingRegistration&quot;,&quot;value&quot;:&quot;Approved, awaiting enrolment by administrator&quot;},{&quot;key&quot;:&quot;strEmployeeHeaderBreadcrumbLearningStatusText&quot;,&quot;value&quot;:&quot;Learning status&quot;},{&quot;key&quot;:&quot;strProgrammeStatusCancelled&quot;,&quot;value&quot;:&quot;Cancelled on {{completionDate}}&quot;},{&quot;key&quot;:&quot;courseDetailsSingleHour&quot;,&quot;value&quot;:&quot;Hour&quot;},{&quot;key&quot;:&quot;mTypeExternalMediaName&quot;,&quot;value&quot;:&quot;External Content&quot;},{&quot;key&quot;:&quot;languageCode_pl&quot;,&quot;value&quot;:&quot;Polski&quot;},{&quot;key&quot;:&quot;strNotAllUsersAddedToCart&quot;,&quot;value&quot;:&quot;Not all users were added to the cart&quot;},{&quot;key&quot;:&quot;languageCode_pt&quot;,&quot;value&quot;:&quot;Portugu\u00eas&quot;},{&quot;key&quot;:&quot;mTypeTestName&quot;,&quot;value&quot;:&quot;Test&quot;},{&quot;key&quot;:&quot;naviLinkTitleInfo&quot;,&quot;value&quot;:&quot;Open info&quot;},{&quot;key&quot;:&quot;strCommonDay4Min&quot;,&quot;value&quot;:&quot;Wed&quot;},{&quot;key&quot;:&quot;strShowSelectedSkillsOnly&quot;,&quot;value&quot;:&quot;Display my selected skills&quot;},{&quot;key&quot;:&quot;qtiFeedbackCancellationDialogSubmitButtonTitle&quot;,&quot;value&quot;:&quot;Cancel your feedback&quot;},{&quot;key&quot;:&quot;strSetEnrolmentData&quot;,&quot;value&quot;:&quot;Set the enrolment data for the selected course&quot;},{&quot;key&quot;:&quot;strReportSkillSuccessChangeNotification&quot;,&quot;value&quot;:&quot;The changes to the user Skills have been successfully saved.&quot;},{&quot;key&quot;:&quot;strProgrammeStatusEnrolledStartDateFutureDueDateFuture&quot;,&quot;value&quot;:&quot;Due on {{dueDate}}. Starts on {{startDate}}&quot;},{&quot;key&quot;:&quot;shortdatepattern&quot;,&quot;value&quot;:&quot;MMM d, yyyy&quot;},{&quot;key&quot;:&quot;ch_form_image_extension_error&quot;,&quot;value&quot;:&quot;File extension is not supported&quot;},{&quot;key&quot;:&quot;strEnrollmentStatusFINISHED&quot;,&quot;value&quot;:&quot;Finished&quot;},{&quot;key&quot;:&quot;strSuccessfullySaved&quot;,&quot;value&quot;:&quot;Your changes have been saved successfully.&quot;},{&quot;key&quot;:&quot;strCourseBtnShowDetails&quot;,&quot;value&quot;:&quot;Open details&quot;},{&quot;key&quot;:&quot;courseContentDownloadImage&quot;,&quot;value&quot;:&quot;Save {0} &lt;small&gt;({1})&lt;\/small&gt;&quot;},{&quot;key&quot;:&quot;strShopifyRelevantEnrolmentRestriction&quot;,&quot;value&quot;:&quot;Enrolment conditions are defined. To ensure that only eligible participants are included in the enrolment process, the process only allows the selection of a single participant at a time.&quot;},{&quot;key&quot;:&quot;editAccount&quot;,&quot;value&quot;:&quot;Manage account&quot;},{&quot;key&quot;:&quot;courseDiscussionHideComments&quot;,&quot;value&quot;:&quot;Hide answers&quot;},{&quot;key&quot;:&quot;strDurationInHourAndMinutes&quot;,&quot;value&quot;:&quot;{{hours}} Hour and {{minutes}} Minutes&quot;},{&quot;key&quot;:&quot;strBtnEdit&quot;,&quot;value&quot;:&quot;Edit&quot;},{&quot;key&quot;:&quot;strViewSkills&quot;,&quot;value&quot;:&quot;Competency profile&quot;},{&quot;key&quot;:&quot;errorAddingItemToCart&quot;,&quot;value&quot;:&quot;The item could not be added to the cart. Please contact the administrator or try again later.&quot;},{&quot;key&quot;:&quot;videojsScript&quot;,&quot;value&quot;:&quot;Script&quot;},{&quot;key&quot;:&quot;strMyProgrammesDetailRevealCancellationCancelButton&quot;,&quot;value&quot;:&quot;Close&quot;},{&quot;key&quot;:&quot;strProgrammeStatusConcluded&quot;,&quot;value&quot;:&quot;Finished on {{completionDate}}&quot;},{&quot;key&quot;:&quot;myCertifications&quot;,&quot;value&quot;:&quot;My certifications&quot;},{&quot;key&quot;:&quot;strDragYourFileHereOr&quot;,&quot;value&quot;:&quot;Drag the file here, or&quot;},{&quot;key&quot;:&quot;strCommonSeptemberFullName&quot;,&quot;value&quot;:&quot;September&quot;},{&quot;key&quot;:&quot;strAllowMultiplePrebookingError&quot;,&quot;value&quot;:&quot;The learner is already enrolled in a course that is part of this template. It is therefore not possible to enrol the learner in this course. The enrollment will be cancelled.&quot;},{&quot;key&quot;:&quot;languageCode_tr&quot;,&quot;value&quot;:&quot;T\u00fcrk\u00e7e&quot;},{&quot;key&quot;:&quot;strCommonAugustFullName&quot;,&quot;value&quot;:&quot;August&quot;},{&quot;key&quot;:&quot;languageCode_th&quot;,&quot;value&quot;:&quot;\u0e44\u0e17\u0e22&quot;},{&quot;key&quot;:&quot;strStatus&quot;,&quot;value&quot;:&quot;Status&quot;},{&quot;key&quot;:&quot;languageCode_en-gb&quot;,&quot;value&quot;:&quot;English (UK)&quot;},{&quot;key&quot;:&quot;strNoActivityToReview&quot;,&quot;value&quot;:&quot;No activity to review&quot;},{&quot;key&quot;:&quot;csHideFilters&quot;,&quot;value&quot;:&quot;Hide filters&quot;},{&quot;key&quot;:&quot;mTypeLinkListName&quot;,&quot;value&quot;:&quot;Link list&quot;},{&quot;key&quot;:&quot;languageCode_ja&quot;,&quot;value&quot;:&quot;\u65e5\u672c\u8a9e&quot;},{&quot;key&quot;:&quot;passwordRequestErrorMessageInvalidEmail&quot;,&quot;value&quot;:&quot;Please enter a valid email&quot;},{&quot;key&quot;:&quot;clientClaim&quot;,&quot;value&quot;:&quot;IMC&quot;},{&quot;key&quot;:&quot;strRemainingAttemptsOutOf&quot;,&quot;value&quot;:&quot;Remaining attempts: {{remainingAttempts}} out of {{totalAttempts}}&quot;},{&quot;key&quot;:&quot;strEnrollmentStatusBOOKED&quot;,&quot;value&quot;:&quot;Enrolled&quot;},{&quot;key&quot;:&quot;videojsSelected&quot;,&quot;value&quot;:&quot;, selected&quot;},{&quot;key&quot;:&quot;languageCode_it&quot;,&quot;value&quot;:&quot;Italiano&quot;},{&quot;key&quot;:&quot;openCourseSubline&quot;,&quot;value&quot;:&quot;You are already enrolled!&quot;},{&quot;key&quot;:&quot;CERTIFICATE_AVAILABLE&quot;,&quot;value&quot;:&quot;Certificate available&quot;},{&quot;key&quot;:&quot;strProgrammeStatusStarteableNoDate&quot;,&quot;value&quot;:&quot;Continue with the learning path&quot;},{&quot;key&quot;:&quot;strMyCoursesEnrolRevealProceedButton&quot;,&quot;value&quot;:&quot;Enrol&quot;},{&quot;key&quot;:&quot;courseRemovePrebookingRequestButtonTitle&quot;,&quot;value&quot;:&quot;Remove reservation now&quot;},{&quot;key&quot;:&quot;languageCode_hu&quot;,&quot;value&quot;:&quot;Magyar&quot;},{&quot;key&quot;:&quot;strComplianceShowCourseEnrollmentTooltip&quot;,&quot;value&quot;:&quot;Continue with order process&quot;},{&quot;key&quot;:&quot;error404Title&quot;,&quot;value&quot;:&quot;404 Error&quot;},{&quot;key&quot;:&quot;courseDiscussionReplyButton&quot;,&quot;value&quot;:&quot;Reply&quot;},{&quot;key&quot;:&quot;EXPAND_ALL&quot;,&quot;value&quot;:&quot;Expand all&quot;},{&quot;key&quot;:&quot;componentDateFixedTimeZoneInfoNoDates&quot;,&quot;value&quot;:&quot;Only available in the following time zone: {{timezoneStr}}. Please plan accordingly.&quot;},{&quot;key&quot;:&quot;supervisor.registration.completed&quot;,&quot;value&quot;:&quot;The staff member has completed the course&quot;},{&quot;key&quot;:&quot;qtiSubmissionErrorContinueBtnTitle&quot;,&quot;value&quot;:&quot;Back to test&quot;},{&quot;key&quot;:&quot;strTaskListTasks&quot;,&quot;value&quot;:&quot;Tasks&quot;},{&quot;key&quot;:&quot;openCourseSyllabusItem&quot;,&quot;value&quot;:&quot;Open&quot;},{&quot;key&quot;:&quot;strPlacesUnlimited&quot;,&quot;value&quot;:&quot;Unlimited&quot;},{&quot;key&quot;:&quot;languageCode_nl&quot;,&quot;value&quot;:&quot;Nederlands&quot;},{&quot;key&quot;:&quot;timepattern&quot;,&quot;value&quot;:&quot;HH:mm&quot;},{&quot;key&quot;:&quot;strOpenBadgeInstruction&quot;,&quot;value&quot;:&quot;Open Badges can be downloaded and shared with others and they can be verified online. Press the download button to take the badge and share it via e-mail or social media!&quot;},{&quot;key&quot;:&quot;strSelf_registration_with_confirmation_by_manager&quot;,&quot;value&quot;:&quot;Self-enrolment with supervisor confirmation&quot;},{&quot;key&quot;:&quot;courseEnrolmentEmployeeDialogMultipleRegistrationBody&quot;,&quot;value&quot;:&quot;Employee is already enrolled in &lt;span class=\&quot;reveal-dialog-text-highlight\&quot;&gt;%COURSE_NAME%&lt;\/span&gt;. It is therefore not possible to enrol employee in another course of the same course template. The process will be cancelled.&quot;},{&quot;key&quot;:&quot;strOptionallyEnrollEmployee&quot;,&quot;value&quot;:&quot;Enrol additionally&quot;},{&quot;key&quot;:&quot;clearAllFilter&quot;,&quot;value&quot;:&quot;Remove all&quot;},{&quot;key&quot;:&quot;coursePrebookedHint&quot;,&quot;value&quot;:&quot;You are pre-booked for this course.&quot;},{&quot;key&quot;:&quot;strProgrammeStatusEndedWithDueDatePast&quot;,&quot;value&quot;:&quot;Overdue since {{dueDate}}, Ended on {{endDate}}&quot;},{&quot;key&quot;:&quot;mRating2More&quot;,&quot;value&quot;:&quot;2 stars &amp; more&quot;},{&quot;key&quot;:&quot;enrolmentformPreferencesSectionPreferredEndDate&quot;,&quot;value&quot;:&quot;End of the pre-booking period&quot;},{&quot;key&quot;:&quot;strLevelConditionsSection&quot;,&quot;value&quot;:&quot;Level conditions&quot;},{&quot;key&quot;:&quot;revealTaskDeclinationReasonPreBookingBody&quot;,&quot;value&quot;:&quot;Would you like to decline the pre-booking request on the course template {{courseName}} for the user {{userName}}?&quot;},{&quot;key&quot;:&quot;strCourseSubscriptionState_FINISHED&quot;,&quot;value&quot;:&quot;Completed&quot;},{&quot;key&quot;:&quot;filterToggleButton&quot;,&quot;value&quot;:&quot;Filter&quot;},{&quot;key&quot;:&quot;supervisor.registration.reserved.participantList&quot;,&quot;value&quot;:&quot;The course has been reserved for the staff member.&quot;},{&quot;key&quot;:&quot;strNewCertificationPeriodStarted&quot;,&quot;value&quot;:&quot;{{eventDate}} - New certification period started&quot;},{&quot;key&quot;:&quot;firstLoginPasswordChangeSkipStep&quot;,&quot;value&quot;:&quot;Skip this step&quot;},{&quot;key&quot;:&quot;fieldTelephoneCountryCodeTooltip&quot;,&quot;value&quot;:&quot;Please select the country code.&quot;},{&quot;key&quot;:&quot;courseContentStatusStarted&quot;,&quot;value&quot;:&quot;In progress&quot;},{&quot;key&quot;:&quot;strEmailTo&quot;,&quot;value&quot;:&quot;To:&quot;},{&quot;key&quot;:&quot;personalAreaCourseStatusStartedDueDateInPast&quot;,&quot;value&quot;:&quot;Due since $DUE_DATE$&quot;},{&quot;key&quot;:&quot;strCourseName&quot;,&quot;value&quot;:&quot;Course name&quot;},{&quot;key&quot;:&quot;searchTermTitle&quot;,&quot;value&quot;:&quot;Your search term&quot;},{&quot;key&quot;:&quot;coursePrebookingAgreedHint&quot;,&quot;value&quot;:&quot;You are pre-booked for this course.&quot;},{&quot;key&quot;:&quot;courseProvidedBy&quot;,&quot;value&quot;:&quot;Course is provided by&quot;},{&quot;key&quot;:&quot;languageCode_sv-se&quot;,&quot;value&quot;:&quot;Svenska&quot;},{&quot;key&quot;:&quot;strAssignedTemplateNoCoursesAvailable&quot;,&quot;value&quot;:&quot;No courses available&quot;},{&quot;key&quot;:&quot;strErrorMessageEmailNotSent&quot;,&quot;value&quot;:&quot;Could not send an Email, Please contact your system administrator.&quot;},{&quot;key&quot;:&quot;strBreadcrumbsCourseTemplateDescriptionPageName&quot;,&quot;value&quot;:&quot;Course template&quot;},{&quot;key&quot;:&quot;recordExternalCourse&quot;,&quot;value&quot;:&quot;Record external courses&quot;},{&quot;key&quot;:&quot;strNextPageButtonTooltip&quot;,&quot;value&quot;:&quot;Next&quot;},{&quot;key&quot;:&quot;strConditionSetNotFulfilled&quot;,&quot;value&quot;:&quot;Set of conditions not fulfilled&quot;},{&quot;key&quot;:&quot;strCourseEnrolmentBySupervisorPrerequisiteDialogPartially&quot;,&quot;value&quot;:&quot;The user you selected only partially fulfils the necessary prerequisites for this training.&quot;},{&quot;key&quot;:&quot;strCertificationExportContributionColumn&quot;,&quot;value&quot;:&quot;Contribution&quot;},{&quot;key&quot;:&quot;select.one.user.from.list&quot;,&quot;value&quot;:&quot;Please select a staff member.&quot;},{&quot;key&quot;:&quot;courseEnrolmentPrerequisiteDialogOrderBody&quot;,&quot;value&quot;:&quot;You do not fulfil the recommended prerequisites for this course. Would you still like to register for the course?&quot;},{&quot;key&quot;:&quot;ugcTitle&quot;,&quot;value&quot;:&quot;User Generated Content&quot;},{&quot;key&quot;:&quot;strCourseFreePlaces&quot;,&quot;value&quot;:&quot;Free spaces&quot;},{&quot;key&quot;:&quot;strTrainingCalendarContentTypeSubCourse&quot;,&quot;value&quot;:&quot;Sub course&quot;},{&quot;key&quot;:&quot;staffEnrolmentBackToProgrammeButton&quot;,&quot;value&quot;:&quot;Back&quot;},{&quot;key&quot;:&quot;speakers&quot;,&quot;value&quot;:&quot;Speakers&quot;},{&quot;key&quot;:&quot;videojsCurrentTime&quot;,&quot;value&quot;:&quot;Current time&quot;},{&quot;key&quot;:&quot;coursePrebookingRequestButtonTitle&quot;,&quot;value&quot;:&quot;Request the course pre-booking now&quot;},{&quot;key&quot;:&quot;qtiTestSubmissionDialogSubmitButtonText&quot;,&quot;value&quot;:&quot;Yes, submit&quot;},{&quot;key&quot;:&quot;strCustomMetadataOnTileDescription&quot;,&quot;value&quot;:&quot;Custom&quot;},{&quot;key&quot;:&quot;strCoursePrerequisitesCancellationDependenciesHeadline&quot;,&quot;value&quot;:&quot;Cancellation of the course is not allowed&quot;},{&quot;key&quot;:&quot;mTypeLTIName&quot;,&quot;value&quot;:&quot;LTI Tool&quot;},{&quot;key&quot;:&quot;backLinkTitle&quot;,&quot;value&quot;:&quot;Back&quot;},{&quot;key&quot;:&quot;strNoLevelSelectedMessage&quot;,&quot;value&quot;:&quot;No level selected&quot;},{&quot;key&quot;:&quot;strTaskCompleted&quot;,&quot;value&quot;:&quot;Done&quot;},{&quot;key&quot;:&quot;courseConcludeAutomaticConclude&quot;,&quot;value&quot;:&quot;The course will be concluded after you have finished all the required components.&quot;},{&quot;key&quot;:&quot;noCertificationsAvailable&quot;,&quot;value&quot;:&quot;No certifications assigned&quot;},{&quot;key&quot;:&quot;menuTitleMainNavigation&quot;,&quot;value&quot;:&quot;Main navigation&quot;},{&quot;key&quot;:&quot;strEventTrackingStart&quot;,&quot;value&quot;:&quot;Do you want to check-in?&quot;},{&quot;key&quot;:&quot;strMediaCompleted&quot;,&quot;value&quot;:&quot;{{eventDate}} - {{achived}} received for the media&quot;},{&quot;key&quot;:&quot;deleteAccountDialogProceedButtonText&quot;,&quot;value&quot;:&quot;Delete profile&quot;},{&quot;key&quot;:&quot;supervisor.registration.not.selectable.waiting&quot;,&quot;value&quot;:&quot;On the waiting list for the course.&quot;},{&quot;key&quot;:&quot;strNotCertified&quot;,&quot;value&quot;:&quot;Not certified at any level&quot;},{&quot;key&quot;:&quot;coursePrebookRemovalDialogAbortBtnTitle&quot;,&quot;value&quot;:&quot;Cancel&quot;},{&quot;key&quot;:&quot;oneUserSelected&quot;,&quot;value&quot;:&quot;One user selected&quot;},{&quot;key&quot;:&quot;error404MessageContact&quot;,&quot;value&quot;:&quot;If you think this is an error please contact us.&quot;},{&quot;key&quot;:&quot;strEnrollmentStatusRESERVED_ON_PARTICIPANT_LIST&quot;,&quot;value&quot;:&quot;Reserved&quot;},{&quot;key&quot;:&quot;employeeReservedSubLine&quot;,&quot;value&quot;:&quot;Course is reserved for staff&quot;},{&quot;key&quot;:&quot;strSkillsTooltip&quot;,&quot;value&quot;:&quot;{{skillName}}: {{selectedSkillLevelName}} ({{selectedSkillLevel}} of {{numberOfSkillLevels}})&quot;},{&quot;key&quot;:&quot;strAttributeVersionName&quot;,&quot;value&quot;:&quot;Version&quot;},{&quot;key&quot;:&quot;strPrerequisitesStatusFlagNotFulfilled&quot;,&quot;value&quot;:&quot;Prerequisites not fulfilled&quot;},{&quot;key&quot;:&quot;enrolmentPrerequisitesMessageMandatory&quot;,&quot;value&quot;:&quot;The staff member that you would like to register does not meet the recommended requirements for this course.&quot;},{&quot;key&quot;:&quot;strRestrictionConditionInformation&quot;,&quot;value&quot;:&quot;Information on conditions&quot;},{&quot;key&quot;:&quot;headlineAlternativeCourses&quot;,&quot;value&quot;:&quot;Alternative courses&quot;},{&quot;key&quot;:&quot;mTypeDictionaryName&quot;,&quot;value&quot;:&quot;Dictionary&quot;},{&quot;key&quot;:&quot;signUpFillMandatoryFields&quot;,&quot;value&quot;:&quot;We may use your personal data (collected on this form or during your relationship with us) for the purposes of supporting your learning journey with ACCA Learning and administrating your learning account, to send you ACCA publications and other communications, to respond to enquiries and investigate complaints, and to comply with our regulatory obligations. We may share information with our suppliers and our auditors. We may also share information with learning providers, where you have agreed this with them. Where access to ACCA Learning is provided to you by a 3rd party such as your Employer or Learning Provider, that 3rd party will have access to your data on ACCA Learning, including assessment results and course progress. Please note that for individuals based outside the UK, your information will be held in ACCA\u2019s main information systems which are located in the UK &amp; EU and may be accessed by ACCA\u2019s local office in your country of residence. ACCA processes information within the UK &amp; EU, but may also transfer data outside of the EU as part of its operations and service delivery.&lt;br \/&gt;&lt;br \/&gt;You can update your information by contacting us at &lt;a href=\&quot;mailto:info@accaglobal.com\&quot;&gt;info@accaglobal.com&lt;\/a&gt; &lt;br \/&gt;&lt;br \/&gt;For more information on how your information and rights are respected, please see our &lt;a href=\&quot; https:\/\/www.accaglobal.com\/gb\/en\/footertoolbar\/privacy\/acca-website-privacy-promise.html\&quot; target=\&quot;_blank\&quot;&gt;privacy notice&lt;\/a&gt;, or contact &lt;a href=\&quot;mailto:privacy@accaglobal.com\&quot;&gt;privacy@accaglobal.com&lt;\/a&gt; &lt;br \/&gt;&lt;br \/&gt;You can make your choice on what we send you by ticking the box marked \u2018I wish to receive ACCA promotional material\u2019 below before submitting your registration. You can opt out at any time by emailing &lt;a href=\&quot;mailto:info@accaglobal.com\&quot;&gt;info@accaglobal.com&lt;\/a&gt; or by clicking the unsubscribe link in one of our emails. &lt;br \/&gt;&lt;br \/&gt;Please provide the following information to register. Fields marked with an asterisk (*) are mandatory. Enter your name as you wish it to appear on certificates.&quot;},{&quot;key&quot;:&quot;coursePrebookRequestDialogTitle&quot;,&quot;value&quot;:&quot;Pre-booking request&quot;},{&quot;key&quot;:&quot;strReportSkillEditRevealExpirySectionHeadline&quot;,&quot;value&quot;:&quot;Skill expiry&quot;},{&quot;key&quot;:&quot;fileUploadFailedMessage&quot;,&quot;value&quot;:&quot;Either the file is too large or the format is not supported.&quot;},{&quot;key&quot;:&quot;courseEnrolmentDialogMultipleRegistrationSupervisorBody&quot;,&quot;value&quot;:&quot;The user has already enrolled in the course &lt;span class=\&quot;reveal-dialog-text-highlight\&quot;&gt;%COURSE_NAME%&lt;\/span&gt;. It is therefore not possible to enrol in this course (no multiple booking). The enrolment will be cancelled.&quot;},{&quot;key&quot;:&quot;strProgrammeStatusEnrol&quot;,&quot;value&quot;:&quot;Booking request has been denied&quot;},{&quot;key&quot;:&quot;strFilterCertificationTitle&quot;,&quot;value&quot;:&quot;Certification&quot;},{&quot;key&quot;:&quot;paymentTransactionDialogOpenBtnTitle&quot;,&quot;value&quot;:&quot;Start the course %OBJECT_NAME% now&quot;},{&quot;key&quot;:&quot;strFirstLoginProfileValidationErrorImageUpload&quot;,&quot;value&quot;:&quot;The file you uploaded can not be used. Either it is larger than {0} or its format is not supported ({1}).&quot;},{&quot;key&quot;:&quot;courseEnd&quot;,&quot;value&quot;:&quot;Course ends&quot;},{&quot;key&quot;:&quot;strShowSelectedJobProfilesOnly&quot;,&quot;value&quot;:&quot;Display my selected job profiles&quot;},{&quot;key&quot;:&quot;strReportSkillEditRevealHeadline&quot;,&quot;value&quot;:&quot;Edit user Skills&quot;},{&quot;key&quot;:&quot;strProgrammeEnrolmentBySupervisorPrerequisiteDialogPartially&quot;,&quot;value&quot;:&quot;The user you selected only partially fulfils the necessary prerequisites for this learning path.&quot;},{&quot;key&quot;:&quot;competenciesCertificationProgressBarTooltipValue&quot;,&quot;value&quot;:&quot;Today&lt;br\/&gt;{{today}}&quot;},{&quot;key&quot;:&quot;strCourseSubscriptionState_NOT_SUCCESSFULLY_COMPLETED&quot;,&quot;value&quot;:&quot;Not successful&quot;},{&quot;key&quot;:&quot;imc-qr-description&quot;,&quot;value&quot;:&quot;Present the QR code for your tutor to scan and open the attendence tracking&quot;},{&quot;key&quot;:&quot;userprofileUsiErrorUsiValidationFailed&quot;,&quot;value&quot;:&quot;Specified ID (USI) cannot be confirmed.&quot;},{&quot;key&quot;:&quot;courseFeatureVideoLecture&quot;,&quot;value&quot;:&quot;Video lectures&quot;},{&quot;key&quot;:&quot;CONCLUDE_COURSE&quot;,&quot;value&quot;:&quot;Complete course&quot;},{&quot;key&quot;:&quot;strNoRelation&quot;,&quot;value&quot;:&quot;Not yet enrolled&quot;},{&quot;key&quot;:&quot;userProfileSaveProfileChanges&quot;,&quot;value&quot;:&quot;Save changes&quot;},{&quot;key&quot;:&quot;loginStayLoggedIn&quot;,&quot;value&quot;:&quot;Stay logged in&quot;},{&quot;key&quot;:&quot;courseContentBack&quot;,&quot;value&quot;:&quot;Go back to the %NAME% course&quot;},{&quot;key&quot;:&quot;strSystemMetaDataAttributeProgrammeContent&quot;,&quot;value&quot;:&quot;Learning path information&quot;},{&quot;key&quot;:&quot;strCertificationRequired&quot;,&quot;value&quot;:&quot;{{ nextLevelName }} certification required&quot;},{&quot;key&quot;:&quot;courseDiscussionDeleteCommentTitle&quot;,&quot;value&quot;:&quot;Delete comment&quot;},{&quot;key&quot;:&quot;userprofileUsiRegistrationRevealBody&quot;,&quot;value&quot;:&quot;You can request a unique reference number (USI) from NCVER. A check will confirm whether a reference number (USI) has been created for you before. If not, a new reference number (USI) will be issued. You will not be able to complete this course booking without a valid reference number (USI). Please note: Your reference number (USI) application is separate from your course registration. Would you like to proceed?&quot;},{&quot;key&quot;:&quot;landingPageRunsSince&quot;,&quot;value&quot;:&quot;Running since&lt;br&gt;&quot;},{&quot;key&quot;:&quot;strNoFreeWaitingPlaces&quot;,&quot;value&quot;:&quot;No free waiting slots&quot;},{&quot;key&quot;:&quot;paymentTransactionCancelledDialogTitle&quot;,&quot;value&quot;:&quot;Transaction aborted&quot;},{&quot;key&quot;:&quot;jobProfileResultCountMultipleSkillsSingularJobProfilesFilteredBy&quot;,&quot;value&quot;:&quot;{{ skillCount }} Skills in 1 Job profile, filtered by:&quot;},{&quot;key&quot;:&quot;mTypeOnTheJobTrainingName&quot;,&quot;value&quot;:&quot;On-the-job training&quot;},{&quot;key&quot;:&quot;mTypeDocumentArchiveName&quot;,&quot;value&quot;:&quot;Document archive&quot;},{&quot;key&quot;:&quot;strProgramRecertification&quot;,&quot;value&quot;:&quot;Recertification&quot;},{&quot;key&quot;:&quot;competenciesDueOn&quot;,&quot;value&quot;:&quot;Due on {{expiryDate}}&quot;},{&quot;key&quot;:&quot;strReEnrolToACourse&quot;,&quot;value&quot;:&quot;Re-enrol&quot;},{&quot;key&quot;:&quot;courseReservedSubLine&quot;,&quot;value&quot;:&quot;The course has been reserved for you&quot;},{&quot;key&quot;:&quot;deleteCourseQuestion&quot;,&quot;value&quot;:&quot;Are you sure you want to delete this course? This action cannot be undone and the entire course history will be lost.&quot;},{&quot;key&quot;:&quot;strProgrammePrerequisitesCancellationBySupervisorDependenciesHeadline&quot;,&quot;value&quot;:&quot;Cancellation of the learning path not permitted&quot;},{&quot;key&quot;:&quot;registerHeadline&quot;,&quot;value&quot;:&quot;Enrol&quot;},{&quot;key&quot;:&quot;strConclusionOfTheCourse&quot;,&quot;value&quot;:&quot;The processing of the component {{COURSE_NAME}} counts towards this condition.&quot;},{&quot;key&quot;:&quot;scoStatusStarted&quot;,&quot;value&quot;:&quot;In progress&quot;},{&quot;key&quot;:&quot;revealTaskApprovalReasonCommentsLabelText&quot;,&quot;value&quot;:&quot;Comments&quot;},{&quot;key&quot;:&quot;strCourseStatusWaitingDurationOfUse&quot;,&quot;value&quot;:&quot;Course access for {{durationUse}}&quot;},{&quot;key&quot;:&quot;videojsCaptionSettingsDialog&quot;,&quot;value&quot;:&quot;Dialogue settings for subtitles&quot;},{&quot;key&quot;:&quot;employeeOrderedSubline&quot;,&quot;value&quot;:&quot;Employee has applied for this course, but the confirmation is pending&quot;},{&quot;key&quot;:&quot;strComponentLockedNoActionAvailableDialogTitle&quot;,&quot;value&quot;:&quot;Training is currently locked&quot;},{&quot;key&quot;:&quot;strNothingFound&quot;,&quot;value&quot;:&quot;No results found&quot;},{&quot;key&quot;:&quot;strSelectedCoursesShownHere&quot;,&quot;value&quot;:&quot;Your selected courses will show up here&quot;},{&quot;key&quot;:&quot;strReportSkillEditRevealProceedButtonTooltip&quot;,&quot;value&quot;:&quot;Save Skills for selected persons&quot;},{&quot;key&quot;:&quot;WRITE_RATING_TITLE&quot;,&quot;value&quot;:&quot;Title (max. 100 characters)&quot;},{&quot;key&quot;:&quot;languageCode_nl-nl&quot;,&quot;value&quot;:&quot;Nederlands&quot;},{&quot;key&quot;:&quot;strEmployee&quot;,&quot;value&quot;:&quot;Staff member&quot;},{&quot;key&quot;:&quot;strPrerequisitesStatusFlagPartiallyFulfilled&quot;,&quot;value&quot;:&quot;Prerequisites partially fulfilled&quot;},{&quot;key&quot;:&quot;myCourses&quot;,&quot;value&quot;:&quot;My courses&quot;},{&quot;key&quot;:&quot;strEmployeeHeaderReplaceEnrollment&quot;,&quot;value&quot;:&quot;Replace booking&quot;},{&quot;key&quot;:&quot;strProgrammePrerequisitesCancellationDependenciesInfo&quot;,&quot;value&quot;:&quot;Please contact your administrator if you still would like to cancel this learning path.&quot;},{&quot;key&quot;:&quot;competenciesCertificationHourValue&quot;,&quot;value&quot;:&quot;{{value}}h&quot;},{&quot;key&quot;:&quot;learningPathEnrolmentEmployeeDialogBody&quot;,&quot;value&quot;:&quot;Employee will be enrolled in the learning path&quot;},{&quot;key&quot;:&quot;ch_toast_unsubscribe&quot;,&quot;value&quot;:&quot;Channel unsubscription successful&quot;},{&quot;key&quot;:&quot;emu_link_placeholder&quot;,&quot;value&quot;:&quot;https:\/\/&quot;},{&quot;key&quot;:&quot;firstLoginPasswordChangePasswordWillExpire&quot;,&quot;value&quot;:&quot;Your password will expire soon. Please enter a new password before the old one expires.&quot;},{&quot;key&quot;:&quot;programmeEmployeeReservedSubLine&quot;,&quot;value&quot;:&quot;The learning path has been reserved for the employee&quot;},{&quot;key&quot;:&quot;certificationTabTooltip&quot;,&quot;value&quot;:&quot;Show certifications&quot;},{&quot;key&quot;:&quot;strSkillAssignRole&quot;,&quot;value&quot;:&quot;Assign job profiles&quot;},{&quot;key&quot;:&quot;strMyCoursesDetailRevealResponsibleLabel&quot;,&quot;value&quot;:&quot;Person responsible for the cancellation&quot;},{&quot;key&quot;:&quot;strProgrammeAvailableSince&quot;,&quot;value&quot;:&quot;Available since {0}&quot;},{&quot;key&quot;:&quot;toggleSysteminfoModule&quot;,&quot;value&quot;:&quot;Switch view:&quot;},{&quot;key&quot;:&quot;strRelatedChannels&quot;,&quot;value&quot;:&quot;Topic related channels&quot;},{&quot;key&quot;:&quot;strEmployeeStatusTitle&quot;,&quot;value&quot;:&quot;Employee status overview&quot;},{&quot;key&quot;:&quot;videojsRed&quot;,&quot;value&quot;:&quot;Red&quot;},{&quot;key&quot;:&quot;videojsSubtitlesOn&quot;,&quot;value&quot;:&quot;Subtitle on&quot;},{&quot;key&quot;:&quot;courseDiscussionSubmit&quot;,&quot;value&quot;:&quot;Submit&quot;},{&quot;key&quot;:&quot;strCommonMarch&quot;,&quot;value&quot;:&quot;Mar&quot;},{&quot;key&quot;:&quot;strRelations&quot;,&quot;value&quot;:&quot;Relations&quot;},{&quot;key&quot;:&quot;strAccountActivatedInfoConfirm&quot;,&quot;value&quot;:&quot;An email has been sent to the email address you entered. This email contains a link by which you can activate your user account.&quot;},{&quot;key&quot;:&quot;strProgrammePrerequisitesEnrolmentOrderMessageMandatory&quot;,&quot;value&quot;:&quot;The staff member you are trying to enrol does not meet the prerequisites for participating in this learning path. If you wish to apply for the staff member\u2019s participation anyway, refer to your responsible administrator.&quot;},{&quot;key&quot;:&quot;strDefineSearchCriteria&quot;,&quot;value&quot;:&quot;Please define the search criteria to initiate the report&quot;},{&quot;key&quot;:&quot;paymentTransactionErrorDialogText&quot;,&quot;value&quot;:&quot;An error has occurred. Please try again.&quot;},{&quot;key&quot;:&quot;strFirstLoginProfileNoImageSelected&quot;,&quot;value&quot;:&quot;No image selected&quot;},{&quot;key&quot;:&quot;firstLoginPasswordChangeErrorGeneralMessage&quot;,&quot;value&quot;:&quot;Your password could not be changed.&quot;},{&quot;key&quot;:&quot;strProgrammeRequestRevealTitle&quot;,&quot;value&quot;:&quot;Request learning path&quot;},{&quot;key&quot;:&quot;strLearningPathPrerequisitesStatusCheck&quot;,&quot;value&quot;:&quot;You do not fulfil the recommended prerequisites for this learning path.&quot;},{&quot;key&quot;:&quot;strMyCoursesRemovePrebookingRevealText&quot;,&quot;value&quot;:&quot;Would you like to remove the pre-booking for the course template &lt;span class=\&quot;reveal-dialog-text-highlight\&quot;&gt;{{courseName}}&lt;\/span&gt;? The course template will no longer be displayed in your open registrations.&quot;},{&quot;key&quot;:&quot;TaskReportMenuItemTitle&quot;,&quot;value&quot;:&quot;Open task status&quot;},{&quot;key&quot;:&quot;strCourseMode&quot;,&quot;value&quot;:&quot;Learning mode&quot;},{&quot;key&quot;:&quot;videojsText&quot;,&quot;value&quot;:&quot;Text&quot;},{&quot;key&quot;:&quot;strMessageRatingNotSaved&quot;,&quot;value&quot;:&quot;There was error saving your rating.&quot;},{&quot;key&quot;:&quot;strCommonDay7Short&quot;,&quot;value&quot;:&quot;Sat&quot;},{&quot;key&quot;:&quot;qtiTestCancellationDialogBody&quot;,&quot;value&quot;:&quot;Do you want to cancel the test? This action cannot be undone, and some of your entries may be lost.&quot;},{&quot;key&quot;:&quot;strPrerequisitesButtonCloseSkillGap&quot;,&quot;value&quot;:&quot;Close competence gap&quot;},{&quot;key&quot;:&quot;skillLevelNotRequested&quot;,&quot;value&quot;:&quot;No level requested yet&quot;},{&quot;key&quot;:&quot;strCertificationExportMediaEntry&quot;,&quot;value&quot;:&quot;Media&quot;},{&quot;key&quot;:&quot;loginUsingFacebook&quot;,&quot;value&quot;:&quot;Connect with Facebook&quot;},{&quot;key&quot;:&quot;strCommonDay1Min&quot;,&quot;value&quot;:&quot;Sun&quot;},{&quot;key&quot;:&quot;personalDashboardMenuItem&quot;,&quot;value&quot;:&quot;Home&quot;},{&quot;key&quot;:&quot;infoPageTitle&quot;,&quot;value&quot;:&quot;Info&quot;},{&quot;key&quot;:&quot;strShareLearningPath&quot;,&quot;value&quot;:&quot;Share this learning path&quot;},{&quot;key&quot;:&quot;strCertificationExportStartDate&quot;,&quot;value&quot;:&quot;Start: {{startDate}}&quot;},{&quot;key&quot;:&quot;courseDescriptionPdfExportBtn&quot;,&quot;value&quot;:&quot;Print&quot;},{&quot;key&quot;:&quot;strCommunicationErrorBody&quot;,&quot;value&quot;:&quot;An error occurred during editing. Your changes will not be included. Please try again later.&quot;},{&quot;key&quot;:&quot;strEnrollmentFailed&quot;,&quot;value&quot;:&quot;Failed {{fail}}&quot;},{&quot;key&quot;:&quot;strCourseTabStatusPending&quot;,&quot;value&quot;:&quot;Pending enrolments&quot;},{&quot;key&quot;:&quot;paymentTransactionPendingDialogTitle&quot;,&quot;value&quot;:&quot;Transaction pending&quot;},{&quot;key&quot;:&quot;strEquivalenceSet&quot;,&quot;value&quot;:&quot;Set of components&quot;},{&quot;key&quot;:&quot;mTypeVirtualClassroom&quot;,&quot;value&quot;:&quot;Virtual classroom&quot;},{&quot;key&quot;:&quot;strName&quot;,&quot;value&quot;:&quot;Name&quot;},{&quot;key&quot;:&quot;passwordForgot&quot;,&quot;value&quot;:&quot;Forgot your password?&quot;},{&quot;key&quot;:&quot;strWebExMeetingContentType&quot;,&quot;value&quot;:&quot;WebEx Meeting&quot;},{&quot;key&quot;:&quot;strPersonWebexAssistantTrainerGroup&quot;,&quot;value&quot;:&quot;Webex organiser&quot;},{&quot;key&quot;:&quot;strUserAssignmentFailureAlertTitle&quot;,&quot;value&quot;:&quot;User assignment error&quot;},{&quot;key&quot;:&quot;firstLoginPasswordChangeNewPassword&quot;,&quot;value&quot;:&quot;New password&quot;},{&quot;key&quot;:&quot;strInputMandatoryField&quot;,&quot;value&quot;:&quot;Required field&quot;},{&quot;key&quot;:&quot;TrainingMenu&quot;,&quot;value&quot;:&quot;On-the-job training&quot;},{&quot;key&quot;:&quot;enrolmentformButtonAreaSubmitPrebookingButtonTitle&quot;,&quot;value&quot;:&quot;Pre-book&quot;},{&quot;key&quot;:&quot;csFacetFreePlacesAvailable&quot;,&quot;value&quot;:&quot;Free places&quot;},{&quot;key&quot;:&quot;strDeleteTrainingRevealTitle&quot;,&quot;value&quot;:&quot;Do you want to remove the assignment?&quot;},{&quot;key&quot;:&quot;strCancelButton&quot;,&quot;value&quot;:&quot;Cancel&quot;},{&quot;key&quot;:&quot;userprofileUsiRequestUsiButtonTitle&quot;,&quot;value&quot;:&quot;Apply for USI&quot;},{&quot;key&quot;:&quot;strPrerequisites&quot;,&quot;value&quot;:&quot;Prerequisites&quot;},{&quot;key&quot;:&quot;strDisclaimerButtonText&quot;,&quot;value&quot;:&quot;Go to external page&quot;},{&quot;key&quot;:&quot;employeeOrderButtonTitle&quot;,&quot;value&quot;:&quot;Apply on behalf of a member of staff&quot;},{&quot;key&quot;:&quot;menuTitleProfileNavigation&quot;,&quot;value&quot;:&quot;My profile&quot;},{&quot;key&quot;:&quot;headlineProfileLogin&quot;,&quot;value&quot;:&quot;Update profile&quot;},{&quot;key&quot;:&quot;MyStaffTitle&quot;,&quot;value&quot;:&quot;My staff&quot;},{&quot;key&quot;:&quot;strMyCoursesRemovePrebookingRevealCancelButton&quot;,&quot;value&quot;:&quot;Cancel&quot;},{&quot;key&quot;:&quot;achievedLevel&quot;,&quot;value&quot;:&quot;Achieved level&quot;},{&quot;key&quot;:&quot;emDropzoneText&quot;,&quot;value&quot;:&quot;Drag &amp; drop your file here or click to &lt;strong&gt;browse&lt;\/strong&gt;&quot;},{&quot;key&quot;:&quot;languageCode_fr-fr&quot;,&quot;value&quot;:&quot;Fran\u00e7ais&quot;},{&quot;key&quot;:&quot;openCourseContentItemAccessibleComponentsMissing&quot;,&quot;value&quot;:&quot;Does not contain any supported contents&quot;},{&quot;key&quot;:&quot;paymentTransactionCompletedDialogTextOpenable&quot;,&quot;value&quot;:&quot;The transaction was successfully completed for the &lt;span class=\&quot;reveal-dialog-text-highlight\&quot;&gt;\&quot;%OBJECT_NAME%\&quot; &lt;\/span&gt; course. You can start the course now.&quot;},{&quot;key&quot;:&quot;naviLinkTitleProfile&quot;,&quot;value&quot;:&quot;Open my profile&quot;},{&quot;key&quot;:&quot;ch_selected_filters_one&quot;,&quot;value&quot;:&quot;{{count}} filter selected&quot;},{&quot;key&quot;:&quot;skillLevelNotAchieved&quot;,&quot;value&quot;:&quot;No levels achieved yet&quot;},{&quot;key&quot;:&quot;strMyCoursesRemoveTemplateRevealText&quot;,&quot;value&quot;:&quot;This action cannot be reversed and the course template will be removed from your personal syllabus.&quot;},{&quot;key&quot;:&quot;strAgreeAndCloseCookieMessage&quot;,&quot;value&quot;:&quot;Accept the cookie policy and close this notification.&quot;},{&quot;key&quot;:&quot;strPrebookedCoursesAvailableNow&quot;,&quot;value&quot;:&quot;Courses available&quot;},{&quot;key&quot;:&quot;csToDate&quot;,&quot;value&quot;:&quot;to&quot;},{&quot;key&quot;:&quot;strMyCoursesDetailRevealCancellationProceedButton&quot;,&quot;value&quot;:&quot;Cancel course&quot;},{&quot;key&quot;:&quot;strPlacesNoPlaces&quot;,&quot;value&quot;:&quot;No places&quot;},{&quot;key&quot;:&quot;userprofileUsiErrorUsiRegistrationFailed&quot;,&quot;value&quot;:&quot;Your reference number (USI) application has been unsuccessful. Please check your entries.&quot;},{&quot;key&quot;:&quot;videojsMonospaceSerif&quot;,&quot;value&quot;:&quot;Monospace Serif&quot;},{&quot;key&quot;:&quot;courseEmployeePrebookedHint&quot;,&quot;value&quot;:&quot;Employee is pre-booked for this course template&quot;},{&quot;key&quot;:&quot;userprofileUsiMedicareCardExpiryDateTitle&quot;,&quot;value&quot;:&quot;Card expiry date&quot;},{&quot;key&quot;:&quot;browserRejectCloseLink&quot;,&quot;value&quot;:&quot;Close window&quot;},{&quot;key&quot;:&quot;strNoSelfAssessedPoints&quot;,&quot;value&quot;:&quot;No self-assessed points&quot;},{&quot;key&quot;:&quot;strPrebookedCoursesAvailableNowWithDueDatePast&quot;,&quot;value&quot;:&quot;Courses available. Due since {{dueDate}}&quot;},{&quot;key&quot;:&quot;strEmployeeHeaderBreadcrumbDashboardTitle&quot;,&quot;value&quot;:&quot;Back to certifications&quot;},{&quot;key&quot;:&quot;strRemoveCancellation&quot;,&quot;value&quot;:&quot;Remove Cancellation&quot;},{&quot;key&quot;:&quot;enrolmentformTrainingDataProgramme&quot;,&quot;value&quot;:&quot;Learning path&quot;},{&quot;key&quot;:&quot;personalAreaCourseStatusStartedPositiveDaysLeft&quot;,&quot;value&quot;:&quot;Ends on $END_DATE$&quot;},{&quot;key&quot;:&quot;strAssignSkills&quot;,&quot;value&quot;:&quot;Assign skills&quot;},{&quot;key&quot;:&quot;MentoringReportMenuItemTitle&quot;,&quot;value&quot;:&quot;Open mentoring status&quot;},{&quot;key&quot;:&quot;jobProfileResultCountMultipleSkillsSingularJobProfiles&quot;,&quot;value&quot;:&quot;{{ skillCount }} Skills in 1 Job profile&quot;},{&quot;key&quot;:&quot;courseContentStatusBooked&quot;,&quot;value&quot;:&quot;Not processed yet&quot;},{&quot;key&quot;:&quot;syllabus&quot;,&quot;value&quot;:&quot;Content&quot;},{&quot;key&quot;:&quot;loginErrorMessageSystemOffline&quot;,&quot;value&quot;:&quot;Your LMS is not available at the moment. Please try again later.&quot;},{&quot;key&quot;:&quot;strMyProgramDetailRevealCancellationText&quot;,&quot;value&quot;:&quot;This action cannot be reversed and the learning path will be removed from your personal course list.&quot;},{&quot;key&quot;:&quot;openCourseWorldTeaserText&quot;,&quot;value&quot;:&quot;The IMC Learning Portal is part of IMC's holistic learning environment.&quot;},{&quot;key&quot;:&quot;languageChange&quot;,&quot;value&quot;:&quot;Change language to&quot;},{&quot;key&quot;:&quot;strCommonMayFullName&quot;,&quot;value&quot;:&quot;May&quot;},{&quot;key&quot;:&quot;courseContentOpenLink&quot;,&quot;value&quot;:&quot;Open link&quot;},{&quot;key&quot;:&quot;info&quot;,&quot;value&quot;:&quot;Info&quot;},{&quot;key&quot;:&quot;courseTemplateStart&quot;,&quot;value&quot;:&quot;Availability&quot;},{&quot;key&quot;:&quot;mTypeChatName&quot;,&quot;value&quot;:&quot;Chat&quot;},{&quot;key&quot;:&quot;passwordRequest&quot;,&quot;value&quot;:&quot;Reset password&quot;},{&quot;key&quot;:&quot;strAlertTitle&quot;,&quot;value&quot;:&quot;Note&quot;},{&quot;key&quot;:&quot;strUserEditSectionRevealHeadline&quot;,&quot;value&quot;:&quot;Edit participant information&quot;},{&quot;key&quot;:&quot;strTwoStepsVerificationDeactivated&quot;,&quot;value&quot;:&quot;two factor authentication is deactivated, please contact system administrator to activate this feature.&quot;},{&quot;key&quot;:&quot;bypassLibraryItem&quot;,&quot;value&quot;:&quot;Skip to library content&quot;},{&quot;key&quot;:&quot;strTemplateNoRelationHasCourses&quot;,&quot;value&quot;:&quot;Courses available&quot;},{&quot;key&quot;:&quot;strCoursePrerequisitesCancellationBySupervisorDependenciesListMessage&quot;,&quot;value&quot;:&quot;The course \&quot;&lt;strong&gt;{{courseName}}&lt;\/strong&gt;\&quot; is a mandatory prerequisite for the following courses or learning paths for which the staff member is enrolled:&quot;},{&quot;key&quot;:&quot;strCourseReasonForApprove&quot;,&quot;value&quot;:&quot;Reason for approval&quot;},{&quot;key&quot;:&quot;strCourseNoFreePlaces&quot;,&quot;value&quot;:&quot;No available places&quot;},{&quot;key&quot;:&quot;imcListLayoutExpandTooltip&quot;,&quot;value&quot;:&quot;Show details&quot;},{&quot;key&quot;:&quot;deleteRatingDialogHeadline&quot;,&quot;value&quot;:&quot;Delete rating&quot;},{&quot;key&quot;:&quot;landingPageVideoImage&quot;,&quot;value&quot;:&quot; &quot;},{&quot;key&quot;:&quot;strCourseStatusEndedWithDueDatePast&quot;,&quot;value&quot;:&quot;Overdue since {{dueDate}}, Ended on {{endDate}}&quot;},{&quot;key&quot;:&quot;myCompetencies&quot;,&quot;value&quot;:&quot;My competencies&quot;},{&quot;key&quot;:&quot;openMeetingRoom&quot;,&quot;value&quot;:&quot;Enter meeting room&quot;},{&quot;key&quot;:&quot;strIdpMentorResultAllowed&quot;,&quot;value&quot;:&quot;Allow the input of results in percentages&quot;},{&quot;key&quot;:&quot;cookiePolicyPageTitle&quot;,&quot;value&quot;:&quot;Cookie Policy&quot;},{&quot;key&quot;:&quot;strUserEditIDDSectionBiggerValueThanCourseErrorText&quot;,&quot;value&quot;:&quot;The value you have entered is larger than the maximum value allowed for this course. Please enter a value smaller or equal to {{maximumIddHours}}&quot;},{&quot;key&quot;:&quot;coursePrebookEmployeeDialogBody&quot;,&quot;value&quot;:&quot;You are pre-booking the course &lt;span class=\&quot;reveal-dialog-text-highlight\&quot;&gt;%COURSE_NAME%&lt;\/span&gt; for the employee. As long as he is not yet enrolled in a course , the template will be located in his pending enrolments.&quot;},{&quot;key&quot;:&quot;strTrainingCalendarMonthButton&quot;,&quot;value&quot;:&quot;Month&quot;},{&quot;key&quot;:&quot;qtiSubmissionErrorExitBtnTitle&quot;,&quot;value&quot;:&quot;Continue&quot;},{&quot;key&quot;:&quot;strAccountActivatedFailListing1&quot;,&quot;value&quot;:&quot;Your user account has already been activated using this link&quot;},{&quot;key&quot;:&quot;strAccountActivatedFailListing2&quot;,&quot;value&quot;:&quot;The activation link is invalid&quot;},{&quot;key&quot;:&quot;courseSection&quot;,&quot;value&quot;:&quot;Course section&quot;},{&quot;key&quot;:&quot;CI_TLM_TASKS_TABLE_TOTAL_ENTRIES&quot;,&quot;value&quot;:&quot;Total entries&quot;},{&quot;key&quot;:&quot;metaTagDescriptionHonourCodePage&quot;,&quot;value&quot;:&quot;Honour code for&quot;},{&quot;key&quot;:&quot;strEnrollmentProcessorPrerequisitesError&quot;,&quot;value&quot;:&quot;Missing prerequisites. Please try registering after fulfilling the prerequisites&quot;},{&quot;key&quot;:&quot;ratingInfo__DIFFICULTY&quot;,&quot;value&quot;:&quot;Level of difficulty&quot;},{&quot;key&quot;:&quot;pageTitleProgramme&quot;,&quot;value&quot;:&quot;Learning paths&quot;},{&quot;key&quot;:&quot;strSeatAllocationEnrolLimitExceededTitle&quot;,&quot;value&quot;:&quot;Number of available seats has been reached.&quot;},{&quot;key&quot;:&quot;strSelectAll&quot;,&quot;value&quot;:&quot;Select all&quot;},{&quot;key&quot;:&quot;courseDetailsLevelExpert&quot;,&quot;value&quot;:&quot;Expert&quot;},{&quot;key&quot;:&quot;courseEnrolmentDialogSelfregistrationWithConfirmationActionBtnText&quot;,&quot;value&quot;:&quot;Apply for the course&quot;},{&quot;key&quot;:&quot;courseEnrolmentPrerequisiteDialogAdministrator&quot;,&quot;value&quot;:&quot;Administrator&quot;},{&quot;key&quot;:&quot;strCourseStatusRegisteredExpiredDueDateFuture&quot;,&quot;value&quot;:&quot;Due on: {{dueDate}}. Ended on {{endDate}}.&quot;},{&quot;key&quot;:&quot;loginErrorMessageIdentificationIncomplete&quot;,&quot;value&quot;:&quot;Not all required information for authentication has been provided. Please contact your system administrator.&quot;},{&quot;key&quot;:&quot;courseSessionsTitle&quot;,&quot;value&quot;:&quot;Available courses&quot;},{&quot;key&quot;:&quot;openMediaLoginNeeded&quot;,&quot;value&quot;:&quot;Please &lt;a href=\&quot;{0}\&quot; class=\&quot;link-underline\&quot;&gt;log in&lt;\/a&gt; to open the educational content&quot;},{&quot;key&quot;:&quot;strNumberOfRetry&quot;,&quot;value&quot;:&quot;Number of attempts&quot;},{&quot;key&quot;:&quot;qtiFeedbackSubmissionBtn&quot;,&quot;value&quot;:&quot;Submit feedback&quot;},{&quot;key&quot;:&quot;strFailedEnrollment&quot;,&quot;value&quot;:&quot;Failed&quot;},{&quot;key&quot;:&quot;catalogSearchTermPlaceholder&quot;,&quot;value&quot;:&quot;Search term&quot;},{&quot;key&quot;:&quot;privacyPolicyRejectWarning&quot;,&quot;value&quot;:&quot;If you do not accept the End User Licence Agreement, you will be unable to use the learning platform and will be blocked.&quot;},{&quot;key&quot;:&quot;qtiSubmissionConflictTitle&quot;,&quot;value&quot;:&quot;Note&quot;},{&quot;key&quot;:&quot;strFirstLoginProfileServerErrorImageUpload&quot;,&quot;value&quot;:&quot;The file could not be uploaded. Please contact your administrator.&quot;},{&quot;key&quot;:&quot;mTypeViteroMeetingName&quot;,&quot;value&quot;:&quot;Vitero Meeting&quot;},{&quot;key&quot;:&quot;videojsNoCompatibleSourceWasFoundForThisMedia&quot;,&quot;value&quot;:&quot;No compatible source was found for this media.&quot;},{&quot;key&quot;:&quot;mTypeWebExMeetingName&quot;,&quot;value&quot;:&quot;WebEx Meeting&quot;},{&quot;key&quot;:&quot;csBypassCatalogue&quot;,&quot;value&quot;:&quot;Jump to catalogue&quot;},{&quot;key&quot;:&quot;strCommonJuneFullName&quot;,&quot;value&quot;:&quot;June&quot;},{&quot;key&quot;:&quot;userProfileProfilePicture&quot;,&quot;value&quot;:&quot;Profile image&quot;},{&quot;key&quot;:&quot;runningTimeInHours&quot;,&quot;value&quot;:&quot;{{hours}}h&quot;},{&quot;key&quot;:&quot;courseContentStatusUnblocked&quot;,&quot;value&quot;:&quot;Not yet started&quot;},{&quot;key&quot;:&quot;strNoContentAssignedInformation&quot;,&quot;value&quot;:&quot;No additional contents needed&quot;},{&quot;key&quot;:&quot;userAlready&quot;,&quot;value&quot;:&quot;Do you already have an ACCA Learning account?&quot;},{&quot;key&quot;:&quot;courseEnrolmentPrerequisiteDialogConditionCourse&quot;,&quot;value&quot;:&quot;Course&quot;},{&quot;key&quot;:&quot;strTrainingCalendarWeekButton&quot;,&quot;value&quot;:&quot;Week&quot;},{&quot;key&quot;:&quot;pageTitleCourseDiscussion&quot;,&quot;value&quot;:&quot;Discussions&quot;},{&quot;key&quot;:&quot;strRestrictionDropdownFolderSubline&quot;,&quot;value&quot;:&quot;This section can be unlocked by processing the following:&quot;},{&quot;key&quot;:&quot;strPrerequisitesStatusFlagNotEvaluatedYet&quot;,&quot;value&quot;:&quot;Prerequisites not evaluated yet&quot;},{&quot;key&quot;:&quot;strCommunicationErrorTitle&quot;,&quot;value&quot;:&quot;An error has occurred&quot;},{&quot;key&quot;:&quot;userProfileDownloadPersonalData&quot;,&quot;value&quot;:&quot;Personal data&quot;},{&quot;key&quot;:&quot;strPrerequisitesStatusFlagClickHere&quot;,&quot;value&quot;:&quot;Click here to see more details&quot;},{&quot;key&quot;:&quot;passwordRepeatChangePlaceholder&quot;,&quot;value&quot;:&quot;Repeat password&quot;},{&quot;key&quot;:&quot;strSelectedFilterForPanel&quot;,&quot;value&quot;:&quot;You have selected {{filterValue}} for {{filterId}}&quot;},{&quot;key&quot;:&quot;createFeedbackButtonTooltip&quot;,&quot;value&quot;:&quot;Submit feedback now&quot;},{&quot;key&quot;:&quot;strProgrammesAvailableSoon&quot;,&quot;value&quot;:&quot;Learning paths available soon&quot;},{&quot;key&quot;:&quot;qtiTestSubmissionDialogCancelButtonText&quot;,&quot;value&quot;:&quot;No, continue &quot;},{&quot;key&quot;:&quot;courseOrderSubline4&quot;,&quot;value&quot;:&quot;Confirmation from your supervisor is required&quot;},{&quot;key&quot;:&quot;courseOrderSubline3&quot;,&quot;value&quot;:&quot;Confirmation is required&quot;},{&quot;key&quot;:&quot;strInternalMessagesUnsaved&quot;,&quot;value&quot;:&quot;The message is deleted when you leave the page. Do you really want to leave the page?&quot;},{&quot;key&quot;:&quot;strShareLearningPathTemplateButton&quot;,&quot;value&quot;:&quot;Share this learning path with others&quot;},{&quot;key&quot;:&quot;confirmationNotPossible&quot;,&quot;value&quot;:&quot;This job profile can only be assigned if every skill was assessed.&quot;},{&quot;key&quot;:&quot;revealTaskDeclinationReasonBody&quot;,&quot;value&quot;:&quot;Would you like to decline the request to participate on the course {{courseName}} for the user {{userName}}?&quot;},{&quot;key&quot;:&quot;strStaffEnrollmentCancelModalTitle&quot;,&quot;value&quot;:&quot;Cancel&quot;},{&quot;key&quot;:&quot;strCannotJoinMSMeeting&quot;,&quot;value&quot;:&quot;Unable to join the meeting. Please contact the administrator&quot;},{&quot;key&quot;:&quot;csFacetTitleNewContent&quot;,&quot;value&quot;:&quot;Latest&quot;},{&quot;key&quot;:&quot;videojsPlayVideo&quot;,&quot;value&quot;:&quot;Play video&quot;},{&quot;key&quot;:&quot;videojsProgressBarTimingCurrentTime1Duration2&quot;,&quot;value&quot;:&quot;{1} of {2}&quot;},{&quot;key&quot;:&quot;courseCancelOperation&quot;,&quot;value&quot;:&quot;Cancel&quot;},{&quot;key&quot;:&quot;strCourseEnrolmentBySupervisorPrerequisiteDialogOptional&quot;,&quot;value&quot;:&quot;The user you selected does not fulfil the recommended prerequisites for this training. Do you still want to continue the registration process?&quot;},{&quot;key&quot;:&quot;strEnrollmentStatusNULL&quot;,&quot;value&quot;:&quot;Not enrolled&quot;},{&quot;key&quot;:&quot;enrollmentFormApprovalTitle&quot;,&quot;value&quot;:&quot;Approval request&quot;},{&quot;key&quot;:&quot;strRatingInfo&quot;,&quot;value&quot;:&quot;{{author}} on {{ratingDate}}&quot;},{&quot;key&quot;:&quot;courseEnrolmentPrerequisiteDialogConditionGroup&quot;,&quot;value&quot;:&quot;Group&quot;},{&quot;key&quot;:&quot;strCourseSubscriptionState_BOOKED&quot;,&quot;value&quot;:&quot;Enrolled&quot;},{&quot;key&quot;:&quot;strProgrammeSupervisorCancellationRevealSubheadline&quot;,&quot;value&quot;:&quot;A cancellation amounts to the same as non-participation in the learning path. Please enter a reason for the cancellation&quot;},{&quot;key&quot;:&quot;programmeEnrolmentDialogMultipleRegistrationBody&quot;,&quot;value&quot;:&quot;You are already enrolled in &lt;span class=\&quot;reveal-dialog-text-highlight\&quot;&gt;%PROGRAMME_NAME%&lt;\/span&gt;. It is therefore not possible to enrol in another learning path of the same learning path template. The process will be cancelled.&quot;},{&quot;key&quot;:&quot;videojsBackground&quot;,&quot;value&quot;:&quot;Background&quot;},{&quot;key&quot;:&quot;strEventTrackingNotPossible&quot;,&quot;value&quot;:&quot;Attendance tracking is currently not possible.&quot;},{&quot;key&quot;:&quot;coursePrebookingRefusedHint&quot;,&quot;value&quot;:&quot;Your pre-booking request for this course was rejected.&quot;},{&quot;key&quot;:&quot;tileCommonObjectMetadataFreePlacesUnlimited&quot;,&quot;value&quot;:&quot;Unlimited&quot;},{&quot;key&quot;:&quot;languageCode_ro-ro&quot;,&quot;value&quot;:&quot;Rom\u00e2n\u0103&quot;},{&quot;key&quot;:&quot;strDescription&quot;,&quot;value&quot;:&quot;Overview&quot;},{&quot;key&quot;:&quot;strProgrammeApprovedInfo&quot;,&quot;value&quot;:&quot;Approved, awaiting enrolment by the administrator&quot;},{&quot;key&quot;:&quot;userprofileUsiSelectFormTypeTitle&quot;,&quot;value&quot;:&quot;To create a USI, you must provide a valid ID. Please select an option from the list below and fill in the required fields.&quot;},{&quot;key&quot;:&quot;backToTop&quot;,&quot;value&quot;:&quot;Back to top&quot;},{&quot;key&quot;:&quot;strProcessingHint&quot;,&quot;value&quot;:&quot;Processing...&quot;},{&quot;key&quot;:&quot;strLearningPathPrerequisitesStatusCheckSupervisor&quot;,&quot;value&quot;:&quot;The user you selected does not fulfil the recommended prerequisites for this learning path.&quot;},{&quot;key&quot;:&quot;openAchievableBadgesTitle&quot;,&quot;value&quot;:&quot;Open available badges now&quot;},{&quot;key&quot;:&quot;videojsProportionalSansSerif&quot;,&quot;value&quot;:&quot;Proportional Sans-Serif&quot;},{&quot;key&quot;:&quot;mTypeGenericContentImporterName&quot;,&quot;value&quot;:&quot;3rd-Party Content&quot;},{&quot;key&quot;:&quot;errorMsgSavingEnrolmentData&quot;,&quot;value&quot;:&quot;There was an error saving your data&quot;},{&quot;key&quot;:&quot;videojsFontFamily&quot;,&quot;value&quot;:&quot;Font Family&quot;},{&quot;key&quot;:&quot;strMediaCompletedNoDate&quot;,&quot;value&quot;:&quot;received for the media&quot;},{&quot;key&quot;:&quot;videojsCaptions&quot;,&quot;value&quot;:&quot;Subtitle&quot;},{&quot;key&quot;:&quot;strAllAttemptsUsed&quot;,&quot;value&quot;:&quot;All attempts used. You can not submit again.&quot;},{&quot;key&quot;:&quot;freePlacesUnlimited&quot;,&quot;value&quot;:&quot;Unlimited&quot;},{&quot;key&quot;:&quot;strBtnContinue&quot;,&quot;value&quot;:&quot;Continue&quot;},{&quot;key&quot;:&quot;strMyCoursesDetailRevealCancellationCancelButton&quot;,&quot;value&quot;:&quot;Close&quot;},{&quot;key&quot;:&quot;openTraningFulscreen&quot;,&quot;value&quot;:&quot;Open training in full screen view&quot;},{&quot;key&quot;:&quot;strCommonParticipantAdministrationDeleted&quot;,&quot;value&quot;:&quot;Deleted&quot;},{&quot;key&quot;:&quot;signUp&quot;,&quot;value&quot;:&quot;Register&quot;},{&quot;key&quot;:&quot;courseEnrolmentPrerequisiteDialogConditionProgramTemplate&quot;,&quot;value&quot;:&quot;Learning Path Template&quot;},{&quot;key&quot;:&quot;strTitleBulkSkillSignatureNote&quot;,&quot;value&quot;:&quot;To proceed, please enter your password below:&quot;},{&quot;key&quot;:&quot;firstLoginPasswordChangeErrorNewPassword&quot;,&quot;value&quot;:&quot;Please specify a password&quot;},{&quot;key&quot;:&quot;strCourseTemplateDescription&quot;,&quot;value&quot;:&quot;To proceed with the course enrolment a pre-booking is required on the following course template: &quot;},{&quot;key&quot;:&quot;strCanceledMsTeamsMeetingInvitation&quot;,&quot;value&quot;:&quot;Microsoft Teams meeting invitation has been canceled&quot;},{&quot;key&quot;:&quot;strCourseManyFreePlaces&quot;,&quot;value&quot;:&quot;{{freePlaces}} available places&quot;},{&quot;key&quot;:&quot;sessionErrorDialogButtonText&quot;,&quot;value&quot;:&quot;Log in again and continue&quot;},{&quot;key&quot;:&quot;strPersonalDataContain&quot;,&quot;value&quot;:&quot;What does the report contain?&quot;},{&quot;key&quot;:&quot;pageTitleHonourCode&quot;,&quot;value&quot;:&quot;Honour code&quot;},{&quot;key&quot;:&quot;strEmployeeHeaderProgrammeDetails&quot;,&quot;value&quot;:&quot;Learning paths details&quot;},{&quot;key&quot;:&quot;userProfileChangePasswordSuccessfullySubline&quot;,&quot;value&quot;:&quot;Your password was successfully updated&quot;},{&quot;key&quot;:&quot;passwordChangeButton&quot;,&quot;value&quot;:&quot;Change password&quot;},{&quot;key&quot;:&quot;strCourseTemplate&quot;,&quot;value&quot;:&quot;Course template&quot;},{&quot;key&quot;:&quot;mTypeScormWBTName&quot;,&quot;value&quot;:&quot;Web-based training&quot;},{&quot;key&quot;:&quot;csRemoveAllFilters&quot;,&quot;value&quot;:&quot;clear filters&quot;},{&quot;key&quot;:&quot;validatePasswordMandatory&quot;,&quot;value&quot;:&quot;Please specify a password&quot;},{&quot;key&quot;:&quot;competenciesCertificationProgressBarFailed&quot;,&quot;value&quot;:&quot;Not Certified&quot;},{&quot;key&quot;:&quot;strSubject&quot;,&quot;value&quot;:&quot;Subject&quot;},{&quot;key&quot;:&quot;qtiTestTimeAlertDialogTitle&quot;,&quot;value&quot;:&quot;Your time is running out&quot;},{&quot;key&quot;:&quot;mTypeExternalContentName&quot;,&quot;value&quot;:&quot;External educational content&quot;},{&quot;key&quot;:&quot;strRecipient&quot;,&quot;value&quot;:&quot;Recipient&quot;},{&quot;key&quot;:&quot;competenciesCertificationsSearchForCourses&quot;,&quot;value&quot;:&quot;Enrol&quot;},{&quot;key&quot;:&quot;languageCode_fr-be&quot;,&quot;value&quot;:&quot;Fran\u00e7ais (BE)&quot;},{&quot;key&quot;:&quot;qtiSubmission&quot;,&quot;value&quot;:&quot;Submitting...&quot;},{&quot;key&quot;:&quot;qtiFeedbackCancellationDialogBody&quot;,&quot;value&quot;:&quot;Do you want to cancel the feedback? This action cannot be undone and your entered data will be lost.&quot;},{&quot;key&quot;:&quot;courseCancellationDialogText&quot;,&quot;value&quot;:&quot;This action cannot be undone, and the course will be removed from your personal syllabus.&quot;},{&quot;key&quot;:&quot;loginFieldTitleEmail&quot;,&quot;value&quot;:&quot;Your email&quot;},{&quot;key&quot;:&quot;languageCode_th-th&quot;,&quot;value&quot;:&quot;\u0e44\u0e17\u0e22&quot;},{&quot;key&quot;:&quot;strSeatLimitationExceededError&quot;,&quot;value&quot;:&quot;Number of available places reached.&quot;},{&quot;key&quot;:&quot;strCourseSubscriptionState_UNBLOCKED&quot;,&quot;value&quot;:&quot;Released&quot;},{&quot;key&quot;:&quot;employeesCount&quot;,&quot;value&quot;:&quot;{{count}} staff members&quot;},{&quot;key&quot;:&quot;myPrograms&quot;,&quot;value&quot;:&quot;My learning paths&quot;},{&quot;key&quot;:&quot;courseConcludeModuleHeadlineText&quot;,&quot;value&quot;:&quot;Course conclusion&quot;},{&quot;key&quot;:&quot;strEmployeeHeaderCourseSyllabus&quot;,&quot;value&quot;:&quot;Course syllabus&quot;},{&quot;key&quot;:&quot;courseEmployeeSelectedSubLine&quot;,&quot;value&quot;:&quot;Course is on the staff member's wish list.&quot;},{&quot;key&quot;:&quot;certificateOfCompletionDownload&quot;,&quot;value&quot;:&quot;Please download your certificate:&quot;},{&quot;key&quot;:&quot;xapiStatusUnknown&quot;,&quot;value&quot;:&quot;Unknown&quot;},{&quot;key&quot;:&quot;coursesAvailable&quot;,&quot;value&quot;:&quot;Courses available&quot;},{&quot;key&quot;:&quot;strShowMoreOptions&quot;,&quot;value&quot;:&quot;show more options&quot;},{&quot;key&quot;:&quot;strCourseStatusFinishedExternal&quot;,&quot;value&quot;:&quot;Recorded on {{statusUpdaterTime}}, confirmed by {{statusUpdaterName}}&quot;},{&quot;key&quot;:&quot;courseEmployeeFinishedSubline&quot;,&quot;value&quot;:&quot;Employee has finished the course&quot;},{&quot;key&quot;:&quot;languageCode_hu-hu&quot;,&quot;value&quot;:&quot;Magyar&quot;},{&quot;key&quot;:&quot;qtiTestCancellationDialogTitle&quot;,&quot;value&quot;:&quot;Cancel assessment&quot;},{&quot;key&quot;:&quot;coursePrebookDialogAbortBtnTitle&quot;,&quot;value&quot;:&quot;Cancel pre-booking&quot;},{&quot;key&quot;:&quot;thirdPartyLicenseTitle&quot;,&quot;value&quot;:&quot;Licensing agreements from third parties&quot;},{&quot;key&quot;:&quot;strFirstLoginProfileDeleteUploadButton&quot;,&quot;value&quot;:&quot;Delete&quot;},{&quot;key&quot;:&quot;naviLinkTitleCatalogLinkTitle&quot;,&quot;value&quot;:&quot;Open {0}&quot;},{&quot;key&quot;:&quot;loginSecurityOverlayMessage&quot;,&quot;value&quot;:&quot;If you are registering from your personal device, such as your PC or tablet, it is recommended that you select the \&quot;Stay logged in\&quot; option. This will allow you to stay logged in for 24 hours and you will not be prompted to log in again when you leave the platform. If you are using a public device, available to other people, it is recommended that you do not select this option, as sensitive information is retained in the browser cookies and may become open to misuse.&quot;},{&quot;key&quot;:&quot;strMyProgrammesDetailRevealCancellationText&quot;,&quot;value&quot;:&quot;This action cannot be reversed and the learning path will be removed from your personal course list.&quot;},{&quot;key&quot;:&quot;paymentTransactionErrorDialogTitle&quot;,&quot;value&quot;:&quot;Error&quot;},{&quot;key&quot;:&quot;strMyCoursesCancellationRequestSuccessMsg&quot;,&quot;value&quot;:&quot;The request for cancellation has been successfully sent.&quot;},{&quot;key&quot;:&quot;strHour&quot;,&quot;value&quot;:&quot;Hour&quot;},{&quot;key&quot;:&quot;strTrainingCalendarLearningMode&quot;,&quot;value&quot;:&quot;Learning mode&quot;},{&quot;key&quot;:&quot;strBtnDeclineCourseRequest&quot;,&quot;value&quot;:&quot;Decline&quot;},{&quot;key&quot;:&quot;programmeEnrolmentDialogMultipleRegistrationTitle&quot;,&quot;value&quot;:&quot;Multiple booking: %PROGRAMME_NAME%&quot;},{&quot;key&quot;:&quot;coursePrebookRemovalDialogAbortBtnText&quot;,&quot;value&quot;:&quot;Cancel&quot;},{&quot;key&quot;:&quot;passwordChangeLegend&quot;,&quot;value&quot;:&quot;To set a new password please repeat it in both fields below.&quot;},{&quot;key&quot;:&quot;coursePrebookButtonText&quot;,&quot;value&quot;:&quot;Pre-book&quot;},{&quot;key&quot;:&quot;strOpenProgramTemplateButton&quot;,&quot;value&quot;:&quot;Open learning path template &quot;},{&quot;key&quot;:&quot;sessionErrorDialogBody&quot;,&quot;value&quot;:&quot;To continue working, you must log in again.&quot;},{&quot;key&quot;:&quot;strTaskInReview&quot;,&quot;value&quot;:&quot;In review&quot;},{&quot;key&quot;:&quot;mTypeCourseSetName&quot;,&quot;value&quot;:&quot;Course set&quot;},{&quot;key&quot;:&quot;strReplaceStaffMember&quot;,&quot;value&quot;:&quot;Replace staff member&quot;},{&quot;key&quot;:&quot;userprofileUsiPassportTownCityOfBirthTitle&quot;,&quot;value&quot;:&quot;Place of birth&quot;},{&quot;key&quot;:&quot;certificationTab&quot;,&quot;value&quot;:&quot;Certifications&quot;},{&quot;key&quot;:&quot;userSyllabusTitle&quot;,&quot;value&quot;:&quot;Syllabus structure&quot;},{&quot;key&quot;:&quot;javaScriptTitle&quot;,&quot;value&quot;:&quot;JavaScript files&quot;},{&quot;key&quot;:&quot;ch_download_button&quot;,&quot;value&quot;:&quot;Download&quot;},{&quot;key&quot;:&quot;catalogNoContentFound&quot;,&quot;value&quot;:&quot;No content found.&quot;},{&quot;key&quot;:&quot;pageTitleFeedback&quot;,&quot;value&quot;:&quot;Feedback&quot;},{&quot;key&quot;:&quot;strOpenCourseTemplateButton&quot;,&quot;value&quot;:&quot;Open course template&quot;},{&quot;key&quot;:&quot;strCourseStatusWithDueDate&quot;,&quot;value&quot;:&quot;Due on {{dueDate}}. Register now&quot;},{&quot;key&quot;:&quot;courseContentDownloadVideo&quot;,&quot;value&quot;:&quot;Save video &lt;small&gt;({0})&lt;\/small&gt;&quot;},{&quot;key&quot;:&quot;datepattern&quot;,&quot;value&quot;:&quot;MMM d, yyyy&quot;},{&quot;key&quot;:&quot;strRatingBoxRatingCountTemplateInformation&quot;,&quot;value&quot;:&quot;from courses of this template&quot;},{&quot;key&quot;:&quot;employeeReservedWaitingSubLine&quot;,&quot;value&quot;:&quot;Place on the waiting list is reserved for staff&quot;},{&quot;key&quot;:&quot;competenciesCertificationOpenDetails&quot;,&quot;value&quot;:&quot;Open details&quot;},{&quot;key&quot;:&quot;videojsPlay&quot;,&quot;value&quot;:&quot;Playback&quot;},{&quot;key&quot;:&quot;strProgrammeEnrolErrorMsg&quot;,&quot;value&quot;:&quot;The enrolment for the learning path was not possible:&quot;},{&quot;key&quot;:&quot;strMarkMandatoryFields&quot;,&quot;value&quot;:&quot;Please complete all required fields. Required fields are marked with an asterisk (*).&quot;},{&quot;key&quot;:&quot;strReportCurrentlyAssigned&quot;,&quot;value&quot;:&quot;Currently assigned&quot;},{&quot;key&quot;:&quot;strCommonDay6Min&quot;,&quot;value&quot;:&quot;Fri&quot;},{&quot;key&quot;:&quot;videojsOpensDescriptionsSettingsDialog&quot;,&quot;value&quot;:&quot;, opens description settings&quot;},{&quot;key&quot;:&quot;videojsWindow&quot;,&quot;value&quot;:&quot;Window&quot;},{&quot;key&quot;:&quot;strQtiUserOrderMultipleResponse&quot;,&quot;value&quot;:&quot;Please select the right answers.&quot;},{&quot;key&quot;:&quot;strTableSawCancellationListSublineCount&quot;,&quot;value&quot;:&quot;Currently {{numberOfUsers}} participants are placed on the cancellation list&quot;},{&quot;key&quot;:&quot;login&quot;,&quot;value&quot;:&quot;Log in&quot;},{&quot;key&quot;:&quot;loginHrSystemFieldLabel&quot;,&quot;value&quot;:&quot;HR System&quot;},{&quot;key&quot;:&quot;userProfileChangePasswordSuccessfullyMessage&quot;,&quot;value&quot;:&quot;Your password has been changed successfully&quot;},{&quot;key&quot;:&quot;strMyLearningsDetailRevealTemplateDeletionText&quot;,&quot;value&quot;:&quot;This action cannot be reversed and the course template will be removed from your personal syllabus.&quot;},{&quot;key&quot;:&quot;scoStatusPassed&quot;,&quot;value&quot;:&quot;Successfully processed&quot;},{&quot;key&quot;:&quot;strTrainingCalendarStatusFilters&quot;,&quot;value&quot;:&quot;Status&quot;},{&quot;key&quot;:&quot;revealTaskApprovalReasonSelectBoxLabelText&quot;,&quot;value&quot;:&quot;Reason for approval&quot;},{&quot;key&quot;:&quot;strCourseBtnEditUserSyllabus&quot;,&quot;value&quot;:&quot;Edit syllabus&quot;},{&quot;key&quot;:&quot;languageCode_zh-tw&quot;,&quot;value&quot;:&quot;\u4e2d\u6587 (\u50b3\u7d71)&quot;},{&quot;key&quot;:&quot;strMyProgramDetailRevealCancellationHeadline&quot;,&quot;value&quot;:&quot;Do you want to cancel the learning path?&quot;},{&quot;key&quot;:&quot;strCancelEnrolmentButton&quot;,&quot;value&quot;:&quot;Cancel enrolment&quot;},{&quot;key&quot;:&quot;courseCancellationDialogConfirmationButtonTitle&quot;,&quot;value&quot;:&quot;Cancel the course now: %COURSENAME%&quot;},{&quot;key&quot;:&quot;strDownloadOpenBadge&quot;,&quot;value&quot;:&quot;Download open badge&quot;},{&quot;key&quot;:&quot;strErrorMessageLoginTimeExpired&quot;,&quot;value&quot;:&quot;The time for the login attempt has expired. Please try again&quot;},{&quot;key&quot;:&quot;contactTitle&quot;,&quot;value&quot;:&quot;Contact&quot;},{&quot;key&quot;:&quot;strLockedItemDueToSectionLockedInfoText&quot;,&quot;value&quot;:&quot;This component is locked due to the locked section.&quot;},{&quot;key&quot;:&quot;signUpEmailTitle&quot;,&quot;value&quot;:&quot;Your email&quot;},{&quot;key&quot;:&quot;strEnrollmentConditionsHintInCatalog&quot;,&quot;value&quot;:&quot;Enrolment conditions apply. To ensure that the required information is provided and that only eligible users are included in the purchase process, it is only possible to proceed with one user at a time.&quot;},{&quot;key&quot;:&quot;openEPortfolio&quot;,&quot;value&quot;:&quot;Open e-portfolio&quot;},{&quot;key&quot;:&quot;strShareCourseTemplateButton&quot;,&quot;value&quot;:&quot;Share this course template&quot;},{&quot;key&quot;:&quot;feedbackPlaceholder&quot;,&quot;value&quot;:&quot;Please enter your feedback here.&quot;},{&quot;key&quot;:&quot;enroll.my.staff&quot;,&quot;value&quot;:&quot;Enrol staff members&quot;},{&quot;key&quot;:&quot;strCommonClose&quot;,&quot;value&quot;:&quot;Close&quot;},{&quot;key&quot;:&quot;strUserNoDeletionPeriodHint&quot;,&quot;value&quot;:&quot;Your application for deleting your account will be executed immediately.&quot;},{&quot;key&quot;:&quot;frontPageBtnViewAllCourses&quot;,&quot;value&quot;:&quot;Show all courses&quot;},{&quot;key&quot;:&quot;videojsCloseModalDialog&quot;,&quot;value&quot;:&quot;Close modal window&quot;},{&quot;key&quot;:&quot;skillAssessmentModalExpiryDate&quot;,&quot;value&quot;:&quot;Expiry date&quot;},{&quot;key&quot;:&quot;openSourceLicenses&quot;,&quot;value&quot;:&quot;Open source licences&quot;},{&quot;key&quot;:&quot;strEnrollmentStatusPASSED&quot;,&quot;value&quot;:&quot;Passed&quot;},{&quot;key&quot;:&quot;strSelectedCoursesTitle&quot;,&quot;value&quot;:&quot;Selected courses&quot;},{&quot;key&quot;:&quot;editProfile&quot;,&quot;value&quot;:&quot;Edit profile&quot;},{&quot;key&quot;:&quot;strSystemMetaDataAttributeWaitingListPlaces&quot;,&quot;value&quot;:&quot;Waiting list places&quot;},{&quot;key&quot;:&quot;strCourseStatusApprovedDurationOfUse&quot;,&quot;value&quot;:&quot;Course access for {{durationUse}}&quot;},{&quot;key&quot;:&quot;passwordRepeat&quot;,&quot;value&quot;:&quot;Repeat password&quot;},{&quot;key&quot;:&quot;mSingleReview&quot;,&quot;value&quot;:&quot;Rating&quot;},{&quot;key&quot;:&quot;certificateBothNotAvailableYet&quot;,&quot;value&quot;:&quot;As soon as you have completed the course, you can download your personal certificate of successful completion or a certificate of participation here.&quot;},{&quot;key&quot;:&quot;strCommonAugust&quot;,&quot;value&quot;:&quot;Aug&quot;},{&quot;key&quot;:&quot;catalogAllCatalogs&quot;,&quot;value&quot;:&quot;All catalogues&quot;},{&quot;key&quot;:&quot;strSeatAllocationEnrolmentCancelButton&quot;,&quot;value&quot;:&quot;Cancel&quot;},{&quot;key&quot;:&quot;videojsUniform&quot;,&quot;value&quot;:&quot;Uniform&quot;},{&quot;key&quot;:&quot;languageCode_tr-tr&quot;,&quot;value&quot;:&quot;T\u00fcrk\u00e7e&quot;},{&quot;key&quot;:&quot;errorAddingItemsToCart&quot;,&quot;value&quot;:&quot;Due to essential system maintenance this course is not currently available to purchase&quot;},{&quot;key&quot;:&quot;strCommonDay4Short&quot;,&quot;value&quot;:&quot;Wed&quot;},{&quot;key&quot;:&quot;openCourse&quot;,&quot;value&quot;:&quot;Open course&quot;},{&quot;key&quot;:&quot;jobProfileResultCountSingularSkillsFilteredBy&quot;,&quot;value&quot;:&quot;1 Skill, filtered by:&quot;},{&quot;key&quot;:&quot;passwordChangeMessagePasswordNoMatch&quot;,&quot;value&quot;:&quot;The two passwords do not match&quot;},{&quot;key&quot;:&quot;filterToggleButtonTooltip&quot;,&quot;value&quot;:&quot;Change filter&quot;},{&quot;key&quot;:&quot;strReplyMessageIntro&quot;,&quot;value&quot;:&quot;on {{ messageDate }} {{ senderName }} wrote:&quot;},{&quot;key&quot;:&quot;locationAddressFieldName&quot;,&quot;value&quot;:&quot;Address&quot;},{&quot;key&quot;:&quot;strSelectedUsersTitle&quot;,&quot;value&quot;:&quot;Selected users&quot;},{&quot;key&quot;:&quot;strEnrollmentActionIndividualEnrollment&quot;,&quot;value&quot;:&quot;Individual registration&quot;},{&quot;key&quot;:&quot;videojsDescriptionsSettings&quot;,&quot;value&quot;:&quot;Description settings&quot;},{&quot;key&quot;:&quot;courseDownloadCertificateTitle&quot;,&quot;value&quot;:&quot;Download certificate for: %COURSENAME%&quot;},{&quot;key&quot;:&quot;dashboardTaskLearner&quot;,&quot;value&quot;:&quot;Learner&quot;},{&quot;key&quot;:&quot;validateDateMandatory&quot;,&quot;value&quot;:&quot;{0}: Please provide a value for this field&quot;},{&quot;key&quot;:&quot;courseBookingWaitingSubline&quot;,&quot;value&quot;:&quot;You are on the waiting list for this course&quot;},{&quot;key&quot;:&quot;personalDashboardMenuItemTitle&quot;,&quot;value&quot;:&quot;Open homepage&quot;},{&quot;key&quot;:&quot;strLevelConditions&quot;,&quot;value&quot;:&quot;Completion conditions&quot;},{&quot;key&quot;:&quot;strTrainingCalendarResourceHeader&quot;,&quot;value&quot;:&quot;Employee&quot;},{&quot;key&quot;:&quot;strPrerequisitesSetPartialNumber&quot;,&quot;value&quot;:&quot;{{current}} of {{target}}&quot;},{&quot;key&quot;:&quot;naviLinkTitleCatalogLink&quot;,&quot;value&quot;:&quot;Open catalogue&quot;},{&quot;key&quot;:&quot;userprofileUsiDtVisaDocumentType&quot;,&quot;value&quot;:&quot;Visa (with an overseas passport) for international students&quot;},{&quot;key&quot;:&quot;qtiSubmissionErrorExitBtn&quot;,&quot;value&quot;:&quot;OK&quot;},{&quot;key&quot;:&quot;strSelectCoursesHint&quot;,&quot;value&quot;:&quot;Proceed by selecting the desired courses for enrolment&quot;},{&quot;key&quot;:&quot;competenciesCertificationProgressBarPassed&quot;,&quot;value&quot;:&quot;Certified&quot;},{&quot;key&quot;:&quot;xapiStatusNotStarted&quot;,&quot;value&quot;:&quot;Not processed yet&quot;},{&quot;key&quot;:&quot;fileUploadButton&quot;,&quot;value&quot;:&quot;Upload&quot;},{&quot;key&quot;:&quot;error403MessageDescription&quot;,&quot;value&quot;:&quot;You do not have the authorisations required for this page&quot;},{&quot;key&quot;:&quot;coursePrebookRemovalEmployeeDialogBody&quot;,&quot;value&quot;:&quot;Would you like to remove the employee's pre-booking for the course template &lt;span class=\&quot;reveal-dialog-text-highlight\&quot;&gt;%COURSE_NAME%&lt;\/span&gt;? The course template will no longer be displayed in his pending enrolments.&quot;},{&quot;key&quot;:&quot;strSelfAssessedLevel&quot;,&quot;value&quot;:&quot;Self-assigned level&quot;},{&quot;key&quot;:&quot;competenciesCertificationProgress&quot;,&quot;value&quot;:&quot;Certification status&quot;},{&quot;key&quot;:&quot;strCourseStatusEnrolledStartDateFutureDueDateFuture&quot;,&quot;value&quot;:&quot;Due on {{dueDate}}. Starts on {{startDate}}&quot;},{&quot;key&quot;:&quot;courseDiscussionSubmitPost&quot;,&quot;value&quot;:&quot;Submit feedback form&quot;},{&quot;key&quot;:&quot;strCourseStatusStarteable&quot;,&quot;value&quot;:&quot;{{startDate}} to {{endDate}}&quot;},{&quot;key&quot;:&quot;openEmployeeCourseSubline&quot;,&quot;value&quot;:&quot;Employee is already enrolled!&quot;},{&quot;key&quot;:&quot;strDisclaimerText&quot;,&quot;value&quot;:&quot;To ensure that only eligible participants are included in the enrollment process, the process only allows the selection of a single participant at a time.&quot;},{&quot;key&quot;:&quot;strFileUploadFileTypeError&quot;,&quot;value&quot;:&quot;File type is not permitted&quot;},{&quot;key&quot;:&quot;qtiCertificate&quot;,&quot;value&quot;:&quot;Certificate&quot;},{&quot;key&quot;:&quot;strLoginButton&quot;,&quot;value&quot;:&quot;Log in&quot;},{&quot;key&quot;:&quot;strShareLearningPathButton&quot;,&quot;value&quot;:&quot;Share this learning path&quot;},{&quot;key&quot;:&quot;pageTitleCourseNews&quot;,&quot;value&quot;:&quot;News&quot;},{&quot;key&quot;:&quot;videojsWhite&quot;,&quot;value&quot;:&quot;White&quot;},{&quot;key&quot;:&quot;firstLoginPasswordChangeOldPassword&quot;,&quot;value&quot;:&quot;Old Password&quot;},{&quot;key&quot;:&quot;logout&quot;,&quot;value&quot;:&quot;Logout&quot;},{&quot;key&quot;:&quot;validateSelectBoxMandatory&quot;,&quot;value&quot;:&quot;{0}: Please select a value for this field&quot;},{&quot;key&quot;:&quot;strBreadcrumbsStaffEnrolmentName&quot;,&quot;value&quot;:&quot;Staff enrolment&quot;},{&quot;key&quot;:&quot;qtiFeedbackSubmissionDialogCancelButtonText&quot;,&quot;value&quot;:&quot;No, continue feedback&quot;},{&quot;key&quot;:&quot;strTrainingFailed&quot;,&quot;value&quot;:&quot;Training failed&quot;},{&quot;key&quot;:&quot;strProgrammePrerequisitesCancellationBySupervisorDependenciesListMessage&quot;,&quot;value&quot;:&quot;The learning path \&quot;&lt;strong&gt;{{programmeName}}&lt;\/strong&gt;\&quot; is a mandatory requirement for the following courses or learning paths on which the staff member is registered:&quot;},{&quot;key&quot;:&quot;metaTagDescriptionLandingPage&quot;,&quot;value&quot;:&quot;The IMC Learning Portal provides learners with a simple and intuitive user interface. It is directly linked with the IMC Learning Suite, which is a powerful and highly adaptable LMS.&quot;},{&quot;key&quot;:&quot;signUpLastnameTitle&quot;,&quot;value&quot;:&quot;Your name&quot;},{&quot;key&quot;:&quot;courseEnrolmentDialogSelfregistrationTitle&quot;,&quot;value&quot;:&quot;Course enrolment&quot;},{&quot;key&quot;:&quot;paymentTransactionFailedDialogTitle&quot;,&quot;value&quot;:&quot;Transaction failed&quot;},{&quot;key&quot;:&quot;courseEnrolmentDialogSelfregistrationAbortBtnText&quot;,&quot;value&quot;:&quot;Cancel&quot;},{&quot;key&quot;:&quot;pageTitleImprint&quot;,&quot;value&quot;:&quot;Imprint&quot;},{&quot;key&quot;:&quot;openMyCompetencies&quot;,&quot;value&quot;:&quot;Show my Job profile and Skills&quot;},{&quot;key&quot;:&quot;strOpenBadge&quot;,&quot;value&quot;:&quot;Open badge&quot;},{&quot;key&quot;:&quot;languageCode_zh-cn&quot;,&quot;value&quot;:&quot;\u4e2d\u6587 (\u7b80\u4f53)&quot;},{&quot;key&quot;:&quot;strXpExperiencePoints&quot;,&quot;value&quot;:&quot;XP&quot;},{&quot;key&quot;:&quot;strCommonEndDate&quot;,&quot;value&quot;:&quot;End date&quot;},{&quot;key&quot;:&quot;strBreadcrumbsCourseDescriptionPageName&quot;,&quot;value&quot;:&quot;Course&quot;},{&quot;key&quot;:&quot;strTableSawRemoveRowEntry&quot;,&quot;value&quot;:&quot;Delete entry&quot;},{&quot;key&quot;:&quot;viewInCatalogue&quot;,&quot;value&quot;:&quot;Search in Catalogue&quot;},{&quot;key&quot;:&quot;staffEnrolmentSubline&quot;,&quot;value&quot;:&quot;Please select a staff member&quot;},{&quot;key&quot;:&quot;strDifferentPriceZeroMessage&quot;,&quot;value&quot;:&quot;The course is available free of charge for the staff member selected. Continue?&quot;},{&quot;key&quot;:&quot;strBreadcrumbTrainingCalendar&quot;,&quot;value&quot;:&quot;Training calendar&quot;},{&quot;key&quot;:&quot;strCourseTabStatusCurrent&quot;,&quot;value&quot;:&quot;Current&quot;},{&quot;key&quot;:&quot;videojsMagenta&quot;,&quot;value&quot;:&quot;Magenta&quot;},{&quot;key&quot;:&quot;strCertificationExportEndDate&quot;,&quot;value&quot;:&quot;End: {{endDate}}&quot;},{&quot;key&quot;:&quot;revealPrerequisitesActionBtn&quot;,&quot;value&quot;:&quot;Enrol&quot;},{&quot;key&quot;:&quot;videojsProgressBar&quot;,&quot;value&quot;:&quot;Progress bar&quot;},{&quot;key&quot;:&quot;courseContentAvailableTo&quot;,&quot;value&quot;:&quot;Available until {1}&quot;},{&quot;key&quot;:&quot;toggleCourseSyllabusModule&quot;,&quot;value&quot;:&quot;Toggle view:&quot;},{&quot;key&quot;:&quot;qtiTestRestartDialogTitle&quot;,&quot;value&quot;:&quot;Restart test&quot;},{&quot;key&quot;:&quot;yourNextCourseInCatalogTitle&quot;,&quot;value&quot;:&quot;Your next course&quot;},{&quot;key&quot;:&quot;strReplaceEnrollmentErrorMessage&quot;,&quot;value&quot;:&quot;The participant could not be replaced. No changes to the enrolment status were made. Please try again later.&quot;},{&quot;key&quot;:&quot;deleteAccountBody&quot;,&quot;value&quot;:&quot;If you no longer wish to use the learning platform, you can delete your profile. Please note that this process is final and your profile cannot be restored. You can download a summary of your data under the menu item Personal data.&lt;br&gt;&lt;br&gt;Deleting your data may take some time.&lt;br&gt;&lt;br&gt;After deletion, data that you have created can remain anonymous in the system, such as course content, forum entries and sent messages.&quot;},{&quot;key&quot;:&quot;strBadges&quot;,&quot;value&quot;:&quot;Badges&quot;},{&quot;key&quot;:&quot;strMyCoursesErrorRevealCancelButton&quot;,&quot;value&quot;:&quot;Close&quot;},{&quot;key&quot;:&quot;coursePrebookRequestDialogAbortBtnTitle&quot;,&quot;value&quot;:&quot;Don't submit pre-booking request&quot;},{&quot;key&quot;:&quot;strCertificationExportContribution&quot;,&quot;value&quot;:&quot;Contribution&quot;},{&quot;key&quot;:&quot;courseDiscussionNow&quot;,&quot;value&quot;:&quot;Now&quot;},{&quot;key&quot;:&quot;skillsWithoutAssessmentLabelText&quot;,&quot;value&quot;:&quot;Assigned skills without progress&quot;},{&quot;key&quot;:&quot;supervisor.registration.selected&quot;,&quot;value&quot;:&quot;The course is on the staff member's wish list.&quot;},{&quot;key&quot;:&quot;strNewRequirementsDate&quot;,&quot;value&quot;:&quot;New requirements on: {{nextStartedDate}}&quot;},{&quot;key&quot;:&quot;strHasStatusOnCourse&quot;,&quot;value&quot;:&quot;Already enrolled&quot;},{&quot;key&quot;:&quot;courseEnrollmentWithoutSupervisorError&quot;,&quot;value&quot;:&quot;Booking request not possible due to missing supervisor information. Please complete your profile.&quot;},{&quot;key&quot;:&quot;staffEnrolmentProgrammeSuccessMessage&quot;,&quot;value&quot;:&quot;The learning path was booked for a staff member&quot;},{&quot;key&quot;:&quot;certificateOfAttendanceNotReached&quot;,&quot;value&quot;:&quot;Unfortunately, you have not fulfilled the requirements for a certificate of participation.&quot;},{&quot;key&quot;:&quot;courseEnrolmentDialogMultipleRegistrationBody&quot;,&quot;value&quot;:&quot;You are already enrolled in &lt;span class=\&quot;reveal-dialog-text-highlight\&quot;&gt;%COURSE_NAME%&lt;\/span&gt;. It is therefore not possible to enrol in another course of the same course template. The process will be cancelled.&quot;},{&quot;key&quot;:&quot;videojsTheMediaCouldNotBeLoadedEitherBecauseTheServerOrNetworkFailedOrBecauseTheFormatIsNotSupported&quot;,&quot;value&quot;:&quot;The video could not be loaded, as either the server or network failed, or because the format is not supported.&quot;},{&quot;key&quot;:&quot;signUpTouHonourCodeTitle&quot;,&quot;value&quot;:&quot;Please accept the terms of use.&quot;},{&quot;key&quot;:&quot;strCartProvidedBy&quot;,&quot;value&quot;:&quot;Provided by:&quot;},{&quot;key&quot;:&quot;loginErrorVisitIlsMessage&quot;,&quot;value&quot;:&quot;&lt;a href=\&quot;{0}\&quot;&gt;You first have to log in to the Learning Suite to complete the registration.&lt;\/a&gt;&quot;},{&quot;key&quot;:&quot;courseConcludeMediaFailed&quot;,&quot;value&quot;:&quot;{0} failed&quot;},{&quot;key&quot;:&quot;courseEnrolmentDialogSelfregistrationWithConfirmationActionBtnTitle&quot;,&quot;value&quot;:&quot;Apply for the course&quot;},{&quot;key&quot;:&quot;courseEnrolmentPrerequisiteDialogConditionCoursetype&quot;,&quot;value&quot;:&quot;Course template&quot;},{&quot;key&quot;:&quot;downloadFile&quot;,&quot;value&quot;:&quot;Download file&quot;},{&quot;key&quot;:&quot;cancelAssignmentMessage&quot;,&quot;value&quot;:&quot;Are you sure you would like to cancel the assignment process? The data provided in the assignment form will be lost.&quot;},{&quot;key&quot;:&quot;courseTimingConflictMessage&quot;,&quot;value&quot;:&quot;You enrol for the course {{courseName}}. In this time frame you already have a booking for {{courseList}}. Do you still want to enrol?&quot;},{&quot;key&quot;:&quot;runningTimeInMinutesAndHours&quot;,&quot;value&quot;:&quot;{{hours}}h {{minutes}}min&quot;},{&quot;key&quot;:&quot;strUsersListElements&quot;,&quot;value&quot;:&quot;{{numberOfResult}} users found&quot;},{&quot;key&quot;:&quot;courseDetailsMultipleDays&quot;,&quot;value&quot;:&quot;Days&quot;},{&quot;key&quot;:&quot;strProgrammeEnrolmentPrerequisiteDialogPartially&quot;,&quot;value&quot;:&quot;You partially fulfil the necessary prerequisites for this learning path.&quot;},{&quot;key&quot;:&quot;jobProfileResultCountMultipleSkillsMultipleJobProfiles&quot;,&quot;value&quot;:&quot;{{ skillCount }} Skills in {{ jobProfileCount }} Job profiles&quot;},{&quot;key&quot;:&quot;qtiFeedbackSubmissionDialogSubmitButtonText&quot;,&quot;value&quot;:&quot;Yes, submit feedback&quot;},{&quot;key&quot;:&quot;strMyProgrammesDetailRevealCancellationProceedButton&quot;,&quot;value&quot;:&quot;Cancel learning path&quot;},{&quot;key&quot;:&quot;strCourseBtnOpenProgram&quot;,&quot;value&quot;:&quot;Open learning path&quot;},{&quot;key&quot;:&quot;strCoursePrerequisitesCancellationDependenciesListMessage&quot;,&quot;value&quot;:&quot;The course \&quot;&lt;strong&gt;{{courseName}}&lt;\/strong&gt;\&quot; is a compulsory prerequisite for the following courses for which you are enrolled for:&quot;},{&quot;key&quot;:&quot;deleteRatingCommentDialogCloseTooltip&quot;,&quot;value&quot;:&quot;Cancel comment deletion&quot;},{&quot;key&quot;:&quot;strSystemMetaDataAttributeFreePlaces&quot;,&quot;value&quot;:&quot;Free places&quot;},{&quot;key&quot;:&quot;strReportEditActionButton&quot;,&quot;value&quot;:&quot;Edit&quot;},{&quot;key&quot;:&quot;metaTagDescriptionLoginPage&quot;,&quot;value&quot;:&quot;Login page for&quot;},{&quot;key&quot;:&quot;strCertificationExportDateOfExport&quot;,&quot;value&quot;:&quot;Date of export: {{date}}&quot;},{&quot;key&quot;:&quot;strLearningpathRecertify&quot;,&quot;value&quot;:&quot;Recertify&quot;},{&quot;key&quot;:&quot;pageTitleClassificationSearch&quot;,&quot;value&quot;:&quot;Classifications&quot;},{&quot;key&quot;:&quot;strProgrammePrerequisitesCancellationDependenciesHeadline&quot;,&quot;value&quot;:&quot;Cancellation of the learning path not permitted&quot;},{&quot;key&quot;:&quot;courseCancellationDialogAbortButtonTitle&quot;,&quot;value&quot;:&quot;Proceed with the course: %COURSENAME%&quot;},{&quot;key&quot;:&quot;qtiFeedbackPreventExitMessage&quot;,&quot;value&quot;:&quot;Would you like to leave the feedback page? This action cannot be undone and your entered data will be lost.&quot;},{&quot;key&quot;:&quot;strMyCoursesEnrolRevealText&quot;,&quot;value&quot;:&quot;You are booking the course {{courseName}}. Proceed with the booking and begin your course now!&quot;},{&quot;key&quot;:&quot;strCourseStatusWaiting&quot;,&quot;value&quot;:&quot;Enquiry is being processed&quot;},{&quot;key&quot;:&quot;strEmployeeHeaderMoveEnrollment&quot;,&quot;value&quot;:&quot;Move registration&quot;},{&quot;key&quot;:&quot;strAccountActivatedSuccessMessage&quot;,&quot;value&quot;:&quot;Your user account has been successfully activated&quot;},{&quot;key&quot;:&quot;messageAlternativeCourses&quot;,&quot;value&quot;:&quot;If you would like to register for an alternative course, please cancel the current course or inform your administrator&quot;},{&quot;key&quot;:&quot;strManageEnrollmentWithTheUser&quot;,&quot;value&quot;:&quot;with the user&quot;},{&quot;key&quot;:&quot;testLoadingImageAlt&quot;,&quot;value&quot;:&quot;Loading test&quot;},{&quot;key&quot;:&quot;licenseText&quot;,&quot;value&quot;:&quot;Licence&quot;},{&quot;key&quot;:&quot;strShowCompletedElementsButton&quot;,&quot;value&quot;:&quot;Show completed elements&quot;},{&quot;key&quot;:&quot;programmeFinishedSubline&quot;,&quot;value&quot;:&quot;You completed the learning path&quot;},{&quot;key&quot;:&quot;videojsBeginningOfDialogWindowEscapeWillCancelAndCloseTheWindow&quot;,&quot;value&quot;:&quot;Beginning of the dialogue window. Esc will cancel and close the window.&quot;},{&quot;key&quot;:&quot;courseOpenTitle&quot;,&quot;value&quot;:&quot;Open the course: %COURSENAME%&quot;},{&quot;key&quot;:&quot;strInputWaitingSince&quot;,&quot;value&quot;:&quot;Input waiting since&quot;},{&quot;key&quot;:&quot;loginErrorMessageWrongEmailPassword&quot;,&quot;value&quot;:&quot;The login\/password combination is not correct!&quot;},{&quot;key&quot;:&quot;strExportCertificationHistory&quot;,&quot;value&quot;:&quot;Export certification history for {{startDate}} - {{endDate}}&quot;},{&quot;key&quot;:&quot;cancelSendFeedbackButton&quot;,&quot;value&quot;:&quot;Cancel&quot;},{&quot;key&quot;:&quot;prerequisitesTabTitleHasPrerequisites&quot;,&quot;value&quot;:&quot;The following prerequisites are set for this course:&quot;},{&quot;key&quot;:&quot;strCourseBtnViewUserSyllabus&quot;,&quot;value&quot;:&quot;View syllabus&quot;},{&quot;key&quot;:&quot;strMyCoursesRemoveRevealHeadline&quot;,&quot;value&quot;:&quot;Do you want to remove the course?&quot;},{&quot;key&quot;:&quot;strProgrammesDetailRevealCancellationRequestHeadline&quot;,&quot;value&quot;:&quot;Do you want to request cancellation for the learning path?&quot;},{&quot;key&quot;:&quot;RATING_MULTIPLE&quot;,&quot;value&quot;:&quot;Ratings&quot;},{&quot;key&quot;:&quot;loginLegend&quot;,&quot;value&quot;:&quot;Please enter your login and password&quot;},{&quot;key&quot;:&quot;strAttributeCreationName&quot;,&quot;value&quot;:&quot;Last updated&quot;},{&quot;key&quot;:&quot;myStaffSearchButtonText&quot;,&quot;value&quot;:&quot;Search&quot;},{&quot;key&quot;:&quot;signUpGeneralError&quot;,&quot;value&quot;:&quot;There was an error during registration. Please contact your system administrator.&quot;},{&quot;key&quot;:&quot;strSelectAllMessagesCount&quot;,&quot;value&quot;:&quot;Select all {{messagesNumber}}&quot;},{&quot;key&quot;:&quot;strMyCoursesConcludeRevealUserName&quot;,&quot;value&quot;:&quot;Your user name&quot;},{&quot;key&quot;:&quot;deleteRatingCommentErrorMessage&quot;,&quot;value&quot;:&quot;Error during comment deletion. Reason: {{reason}}.&quot;},{&quot;key&quot;:&quot;personalAreaCourseStatusStartedNegativeDaysLeft&quot;,&quot;value&quot;:&quot;Ended on $END_DATE$&quot;},{&quot;key&quot;:&quot;strDeleteRatingComment&quot;,&quot;value&quot;:&quot;Delete comment&quot;},{&quot;key&quot;:&quot;strCommonOctober&quot;,&quot;value&quot;:&quot;Oct&quot;},{&quot;key&quot;:&quot;strViewCourses&quot;,&quot;value&quot;:&quot;Learning status&quot;},{&quot;key&quot;:&quot;hideAlternativesBundle&quot;,&quot;value&quot;:&quot;Hide alternatives&quot;},{&quot;key&quot;:&quot;strCourseNotEnrolledDurationOfUse&quot;,&quot;value&quot;:&quot;Course access for {{durationUse}}&quot;},{&quot;key&quot;:&quot;strTrainingCalendarSubCourseFilter&quot;,&quot;value&quot;:&quot;Sub-courses&quot;},{&quot;key&quot;:&quot;strPreparingZipCertificateSuccess&quot;,&quot;value&quot;:&quot;Your data will be processed. You will receive an email containing a download link once this process has been completed.&quot;},{&quot;key&quot;:&quot;mediaTypeLti1.3Tool&quot;,&quot;value&quot;:&quot;LTI 1.3&quot;},{&quot;key&quot;:&quot;adobeMeetingRecording&quot;,&quot;value&quot;:&quot;Recordings&quot;},{&quot;key&quot;:&quot;str1Subscriber&quot;,&quot;value&quot;:&quot;One subscriber&quot;},{&quot;key&quot;:&quot;strProgramePrerequisitesCancellationDependenciesCancelBtnText&quot;,&quot;value&quot;:&quot;Cancel&quot;},{&quot;key&quot;:&quot;courseMovementErrorBody&quot;,&quot;value&quot;:&quot;Moving the participant from this course instance is not permitted as there are cancellation fees applicable. Please contact the administrator.&quot;},{&quot;key&quot;:&quot;bypassLibrary&quot;,&quot;value&quot;:&quot;Skip to library&quot;},{&quot;key&quot;:&quot;locationLinkFieldName&quot;,&quot;value&quot;:&quot;Link&quot;},{&quot;key&quot;:&quot;competenciesDueOnHoverHourTitle&quot;,&quot;value&quot;:&quot;{{achievedValue}}h ({{achievedPercentage}}%) achieved, {{remainingValue}} ({{remainingPercentage}}%) still required&quot;},{&quot;key&quot;:&quot;coursePrebookDialogTitle&quot;,&quot;value&quot;:&quot;Pre-book&quot;},{&quot;key&quot;:&quot;strMyCoursesRemovePrebookingRevealCancelButtonTitle&quot;,&quot;value&quot;:&quot;Cancel&quot;},{&quot;key&quot;:&quot;strCourseStatusNotApproved&quot;,&quot;value&quot;:&quot;Booking request has been denied&quot;},{&quot;key&quot;:&quot;fileUploadAddText&quot;,&quot;value&quot;:&quot;Add attachments&quot;},{&quot;key&quot;:&quot;openMeetingLoginNeeded&quot;,&quot;value&quot;:&quot;Please &lt;a href=\&quot;{0}\&quot; class=\&quot;link-underline\&quot;&gt;log in&lt;\/a&gt; to join the meeting&quot;},{&quot;key&quot;:&quot;videojsProportionalSerif&quot;,&quot;value&quot;:&quot;Proportional Serif&quot;},{&quot;key&quot;:&quot;mTypeVirtualClassroomRecording&quot;,&quot;value&quot;:&quot;Recording of virtual classroom&quot;},{&quot;key&quot;:&quot;downloadSkillCertificateTooltip&quot;,&quot;value&quot;:&quot;Download certificate now&quot;},{&quot;key&quot;:&quot;supervisorEnrolmentSeparationHeadline&quot;,&quot;value&quot;:&quot;Course settings&quot;},{&quot;key&quot;:&quot;strNote&quot;,&quot;value&quot;:&quot;Note&quot;},{&quot;key&quot;:&quot;priceFree&quot;,&quot;value&quot;:&quot;Free of charge&quot;},{&quot;key&quot;:&quot;errorSystemMessageTitle&quot;,&quot;value&quot;:&quot;System error&quot;},{&quot;key&quot;:&quot;passwordChangeConfirmationText&quot;,&quot;value&quot;:&quot;Your password was successfully updated. Please proceed to the &lt;a href=\&quot;{0}\&quot;&gt;login&lt;\/a&gt; page.&quot;},{&quot;key&quot;:&quot;showAllSelfStudyCourses&quot;,&quot;value&quot;:&quot;Show all self-study courses&quot;},{&quot;key&quot;:&quot;strGenericFeedback&quot;,&quot;value&quot;:&quot;Feedback&quot;},{&quot;key&quot;:&quot;courseEnrolmentDialogSelfregistrationWithConfirmationAbortBtnTitle&quot;,&quot;value&quot;:&quot;Cancel course application&quot;},{&quot;key&quot;:&quot;userprofileUsiDtBirthCertificateDocumentType&quot;,&quot;value&quot;:&quot;Birth Certificate (Australian)&quot;},{&quot;key&quot;:&quot;strOptionallyEnroll&quot;,&quot;value&quot;:&quot;Enrol additionally&quot;},{&quot;key&quot;:&quot;strCourseBtnDeleteCourse&quot;,&quot;value&quot;:&quot;Delete course&quot;},{&quot;key&quot;:&quot;scoStatusUnknown&quot;,&quot;value&quot;:&quot;Unknown&quot;},{&quot;key&quot;:&quot;strCommunicationErrorConfirmationButtonText&quot;,&quot;value&quot;:&quot;Close&quot;},{&quot;key&quot;:&quot;strSelectTemplate&quot;,&quot;value&quot;:&quot;Select template&quot;},{&quot;key&quot;:&quot;deleteRatingCommentDialogHeadline&quot;,&quot;value&quot;:&quot;Warning&quot;},{&quot;key&quot;:&quot;runningCourses&quot;,&quot;value&quot;:&quot;Running courses&quot;},{&quot;key&quot;:&quot;courseDiscussionEnterCommentTitle&quot;,&quot;value&quot;:&quot;Write reply&quot;},{&quot;key&quot;:&quot;strMyCoursesConcludeRevealProceedButton&quot;,&quot;value&quot;:&quot;End course&quot;},{&quot;key&quot;:&quot;strFeedbackSuccessfullyReviewed&quot;,&quot;value&quot;:&quot;The review was successfully confirmed.&quot;},{&quot;key&quot;:&quot;strTrainingCalendarEvents&quot;,&quot;value&quot;:&quot;Events&quot;},{&quot;key&quot;:&quot;deleteLayerTitle&quot;,&quot;value&quot;:&quot;Delete message&quot;},{&quot;key&quot;:&quot;qtiTestSubmissionDialogMessage&quot;,&quot;value&quot;:&quot;Note: You have not answered all the questions from the test. If you submit the test now, unanswered questions will count as wrong answers.&quot;},{&quot;key&quot;:&quot;strMessagesSelected&quot;,&quot;value&quot;:&quot;{{count}} messages selected&quot;},{&quot;key&quot;:&quot;courseConcludeMedia&quot;,&quot;value&quot;:&quot;Conclude content:&quot;},{&quot;key&quot;:&quot;details&quot;,&quot;value&quot;:&quot;Details&quot;},{&quot;key&quot;:&quot;strComponentLocked&quot;,&quot;value&quot;:&quot;Component Locked&quot;},{&quot;key&quot;:&quot;userProfileRepeatPasswordValidationMessage&quot;,&quot;value&quot;:&quot;Please repeat the password&quot;},{&quot;key&quot;:&quot;firstName&quot;,&quot;value&quot;:&quot;First name&quot;},{&quot;key&quot;:&quot;strProgrammesDetailRevealCancellationRequestCancelButton&quot;,&quot;value&quot;:&quot;Cancel&quot;},{&quot;key&quot;:&quot;dbsNavi_d182Name&quot;,&quot;value&quot;:&quot;Experience area&quot;},{&quot;key&quot;:&quot;metaTagDescriptionSignUpPage&quot;,&quot;value&quot;:&quot;Sign-up for&quot;},{&quot;key&quot;:&quot;strCertificationGainedAsTutor&quot;,&quot;value&quot;:&quot;gained as tutor&quot;},{&quot;key&quot;:&quot;noBadgesAchieved&quot;,&quot;value&quot;:&quot;You have not achieved a badge yet.&quot;},{&quot;key&quot;:&quot;fileUploadDeleteUploadedFile&quot;,&quot;value&quot;:&quot;Delete attachment&quot;},{&quot;key&quot;:&quot;supervisorEnrolmentIdentificationDefault&quot;,&quot;value&quot;:&quot;None&quot;},{&quot;key&quot;:&quot;strCourseBtnRemoveCourseTemplate&quot;,&quot;value&quot;:&quot;Remove course template&quot;},{&quot;key&quot;:&quot;openCourseSyllabusItemTitleIsUnsupported&quot;,&quot;value&quot;:&quot;can only be processed in Learning Suite&quot;},{&quot;key&quot;:&quot;courseRegisterOperationTitle&quot;,&quot;value&quot;:&quot;Enrol on the course: %COURSENAME%&quot;},{&quot;key&quot;:&quot;privacyPolicyAccept&quot;,&quot;value&quot;:&quot;Accept End User Licence Agreement&quot;},{&quot;key&quot;:&quot;WRITE_NEW_RATING&quot;,&quot;value&quot;:&quot;Write a rating&quot;},{&quot;key&quot;:&quot;strWebExEvent&quot;,&quot;value&quot;:&quot;WebEx Event&quot;},{&quot;key&quot;:&quot;strCommonFinishDate&quot;,&quot;value&quot;:&quot;Conclusion date&quot;},{&quot;key&quot;:&quot;strCancelledStatusHint&quot;,&quot;value&quot;:&quot;Previously cancelled users can only be re-enrolled by an administrator&quot;},{&quot;key&quot;:&quot;location&quot;,&quot;value&quot;:&quot;Location&quot;},{&quot;key&quot;:&quot;programBookingWaitingSubline&quot;,&quot;value&quot;:&quot;You are on the waiting list for this learning path&quot;},{&quot;key&quot;:&quot;certificationDetailsCloseButton&quot;,&quot;value&quot;:&quot;Close certification details&quot;},{&quot;key&quot;:&quot;strBrowseForFile&quot;,&quot;value&quot;:&quot;Search&quot;},{&quot;key&quot;:&quot;strDeletRatingCommnetDialogBody&quot;,&quot;value&quot;:&quot;Do you really want to delete the complete comment?&quot;},{&quot;key&quot;:&quot;timeRange&quot;,&quot;value&quot;:&quot;Time range&quot;},{&quot;key&quot;:&quot;signUpLastname&quot;,&quot;value&quot;:&quot;Please specify your surname&quot;},{&quot;key&quot;:&quot;personalAreaCourseStatusFailed&quot;,&quot;value&quot;:&quot;Failed&quot;},{&quot;key&quot;:&quot;personalAreaCourseStatusWaiting&quot;,&quot;value&quot;:&quot;On the waiting list&quot;},{&quot;key&quot;:&quot;selectedMandatoryFieldError&quot;,&quot;value&quot;:&quot;Please fill out all the fields&quot;},{&quot;key&quot;:&quot;courseDurationOfUseMonths&quot;,&quot;value&quot;:&quot;Months&quot;},{&quot;key&quot;:&quot;qtiFeedbackSubmissionDialogBody&quot;,&quot;value&quot;:&quot;Do you want to submit your feedback? This action cannot be undone.&quot;},{&quot;key&quot;:&quot;strOJTDeleteConfirmation&quot;,&quot;value&quot;:&quot;Are you sure you would like to delete this &lt;b&gt;{{training}}&lt;\/b&gt; assignment for &lt;b&gt;{{employee}}&lt;\/b&gt;? &lt;br&gt; The change can not be undone.&quot;},{&quot;key&quot;:&quot;afterCourseStart&quot;,&quot;value&quot;:&quot;{{period}} after course start&quot;},{&quot;key&quot;:&quot;lastName&quot;,&quot;value&quot;:&quot;Last name&quot;},{&quot;key&quot;:&quot;deleteAccountDialogBody&quot;,&quot;value&quot;:&quot;If you confirm the deletion of your profile, you will no longer have access to the system and your personal data will be deleted. This cannot be undone. Do you want to permanently delete your profile?&quot;},{&quot;key&quot;:&quot;showLocation&quot;,&quot;value&quot;:&quot;Display details&quot;},{&quot;key&quot;:&quot;strShowMore&quot;,&quot;value&quot;:&quot;More&quot;},{&quot;key&quot;:&quot;strOptionallyApply&quot;,&quot;value&quot;:&quot;Additional request&quot;},{&quot;key&quot;:&quot;strEnrollmentAndCartHint&quot;,&quot;value&quot;:&quot;The list of enrolments contains both items that can be enroled directly and also items that require upfront payment.&lt;br\/&gt;&lt;br\/&gt;By continuing, the direct enrolment will be triggered where possible and the items that require checkout will be added to the cart.&quot;},{&quot;key&quot;:&quot;strEnrollmentStatusAGREED&quot;,&quot;value&quot;:&quot;Confirmed&quot;},{&quot;key&quot;:&quot;strMediaAccessDownloadEnabled&quot;,&quot;value&quot;:&quot;Prevent download of media through context menu access (right click)&quot;},{&quot;key&quot;:&quot;strExamityProctoringLivePremium&quot;,&quot;value&quot;:&quot;Live Premium&quot;},{&quot;key&quot;:&quot;certificationDetailsButton&quot;,&quot;value&quot;:&quot;Details&quot;},{&quot;key&quot;:&quot;firstLoginPasswordChangeChangePassword&quot;,&quot;value&quot;:&quot;Change password&quot;},{&quot;key&quot;:&quot;videojsTransparent&quot;,&quot;value&quot;:&quot;Transparent&quot;},{&quot;key&quot;:&quot;strMyCoursesDetailRevealCancellationText&quot;,&quot;value&quot;:&quot;This action cannot be undone and the course will be removed from your personal syllabus.&quot;},{&quot;key&quot;:&quot;userProfilePrivacyPolicySettings&quot;,&quot;value&quot;:&quot;End User Licence Agreement&quot;},{&quot;key&quot;:&quot;metaTagDescriptionAt&quot;,&quot;value&quot;:&quot;at&quot;},{&quot;key&quot;:&quot;strMyCoursesConcludeRevealHeadline&quot;,&quot;value&quot;:&quot;End course&quot;},{&quot;key&quot;:&quot;mTypeXapiTincanWBTName&quot;,&quot;value&quot;:&quot;Web-based training&quot;},{&quot;key&quot;:&quot;strTrainingCalendarProgressReportButton&quot;,&quot;value&quot;:&quot;Progress Report&quot;},{&quot;key&quot;:&quot;strProgramPrerequisitesCancellationDependenciesRequestError&quot;,&quot;value&quot;:&quot;The cancellation request could not be processed. Please contact the administrator or try again later.&quot;},{&quot;key&quot;:&quot;strDurationInHour&quot;,&quot;value&quot;:&quot;{{hours}} Hour&quot;},{&quot;key&quot;:&quot;userProfileMandatoryFieldsMessage&quot;,&quot;value&quot;:&quot;Fields marked with an asterisk (*) are mandatory.&quot;},{&quot;key&quot;:&quot;strLearningPathCurrentLevelAchieved&quot;,&quot;value&quot;:&quot;Current level&quot;},{&quot;key&quot;:&quot;errorMessageWrongConfiguration&quot;,&quot;value&quot;:&quot;A configuration issue is preventing the load of the learning path. Please contact an administrator.&quot;},{&quot;key&quot;:&quot;validateDateFormat&quot;,&quot;value&quot;:&quot;Please enter a valid date (e.g., {0})&quot;},{&quot;key&quot;:&quot;privacyPolicyInstructionText&quot;,&quot;value&quot;:&quot;In order to access ACCA Learning, please review our End User Licence Agreement.&quot;},{&quot;key&quot;:&quot;courseBookingError&quot;,&quot;value&quot;:&quot;The maximum number of participants for the course has already been reached, enrolment was not possible:&quot;},{&quot;key&quot;:&quot;courseTemplateUserHintFinished&quot;,&quot;value&quot;:&quot;You have already completed a course from this course template.&quot;},{&quot;key&quot;:&quot;strExpiration&quot;,&quot;value&quot;:&quot;Expiration date&quot;},{&quot;key&quot;:&quot;dashboardTaskHistoryDisabled&quot;,&quot;value&quot;:&quot;No Approval History Available&quot;},{&quot;key&quot;:&quot;courseOrderSubline11&quot;,&quot;value&quot;:&quot;Confirmation from your supervisor is required&quot;},{&quot;key&quot;:&quot;strCoursePrerequisitesCancellationBySupervisorDependenciesHeadline&quot;,&quot;value&quot;:&quot;Cancellation of the course is not allowed&quot;},{&quot;key&quot;:&quot;qtiTestResults&quot;,&quot;value&quot;:&quot;Your score&quot;},{&quot;key&quot;:&quot;mTypeMediaFileName&quot;,&quot;value&quot;:&quot;Multimedia file&quot;},{&quot;key&quot;:&quot;strIdpCommentMentorAllowed&quot;,&quot;value&quot;:&quot;Allow mentor to input feedback&quot;},{&quot;key&quot;:&quot;imcMyStaff&quot;,&quot;value&quot;:&quot;My Staff&quot;},{&quot;key&quot;:&quot;ICON_PROGRESS_INDICATOR&quot;,&quot;value&quot;:&quot;Processing progress&quot;},{&quot;key&quot;:&quot;enrolmentformPreferencesSectionLocationString&quot;,&quot;value&quot;:&quot;Location&quot;},{&quot;key&quot;:&quot;strFeedbackReviewNotConfirmed&quot;,&quot;value&quot;:&quot;The review confirmation was not successful. Please try again or contact your administrator if the error persists.&quot;},{&quot;key&quot;:&quot;videojsBlack&quot;,&quot;value&quot;:&quot;Black&quot;},{&quot;key&quot;:&quot;strBtnClose&quot;,&quot;value&quot;:&quot;Close&quot;},{&quot;key&quot;:&quot;strCertificationRemoved&quot;,&quot;value&quot;:&quot;{{eventDate}} - Certification removed&quot;},{&quot;key&quot;:&quot;coursePrebookDialogBody&quot;,&quot;value&quot;:&quot;You are pre-booking the course &lt;span class=\&quot;reveal-dialog-text-highlight\&quot;&gt;%COURSE_NAME%&lt;\/span&gt;. As long as you are not yet enrolled in a course date, the course will be located in your pending enrolments.&quot;},{&quot;key&quot;:&quot;strInReviewTasks&quot;,&quot;value&quot;:&quot;{{no}} in review&quot;},{&quot;key&quot;:&quot;downloadAttachment&quot;,&quot;value&quot;:&quot;Download attachment&quot;},{&quot;key&quot;:&quot;strCertificationAssignedNoDate&quot;,&quot;value&quot;:&quot;Certification assigned&quot;},{&quot;key&quot;:&quot;strCourseBtnDeleteCourseTemplate&quot;,&quot;value&quot;:&quot;Remove course template&quot;},{&quot;key&quot;:&quot;strSkillAchieved&quot;,&quot;value&quot;:&quot;Skill acquired&quot;},{&quot;key&quot;:&quot;strErrorMessageMaxCashReached&quot;,&quot;value&quot;:&quot;Verification could not be performed successfully. Restart the verification process&quot;},{&quot;key&quot;:&quot;csFacetRating&quot;,&quot;value&quot;:&quot;Rating&quot;},{&quot;key&quot;:&quot;strMyCoursesConcludeRevealPassword&quot;,&quot;value&quot;:&quot;Password&quot;},{&quot;key&quot;:&quot;employeeFinishedSubline&quot;,&quot;value&quot;:&quot;Staff member has completed the course&quot;},{&quot;key&quot;:&quot;strESignatureRevealFormUserName&quot;,&quot;value&quot;:&quot;Your username&quot;},{&quot;key&quot;:&quot;errorSystemTitle&quot;,&quot;value&quot;:&quot;System error&quot;},{&quot;key&quot;:&quot;strTitleBulkSkillSignatureTitle&quot;,&quot;value&quot;:&quot;Action required&quot;},{&quot;key&quot;:&quot;strBrokenLink&quot;,&quot;value&quot;:&quot;Invalid link&quot;},{&quot;key&quot;:&quot;strSystemMetaDataAttributeRegistrationIdentifier&quot;,&quot;value&quot;:&quot;Registration identifier&quot;},{&quot;key&quot;:&quot;strFileUploadFileSizeError&quot;,&quot;value&quot;:&quot;File is too large&quot;},{&quot;key&quot;:&quot;qtiTestPreventExitMessage&quot;,&quot;value&quot;:&quot;Would you like to leave the test page? This action cannot be undone and your entered data will be lost.&quot;},{&quot;key&quot;:&quot;strEmployeeHeaderBreadcrumbCompetenciesTitle&quot;,&quot;value&quot;:&quot;Back to employee competencies page&quot;},{&quot;key&quot;:&quot;signUpErrorMessage&quot;,&quot;value&quot;:&quot;There are $COUNT$ errors while you tried to register&quot;},{&quot;key&quot;:&quot;userProfileNewPasswordField&quot;,&quot;value&quot;:&quot;New password*&quot;},{&quot;key&quot;:&quot;strExamityProctoringAutomatedPractice&quot;,&quot;value&quot;:&quot;Automated Practice&quot;},{&quot;key&quot;:&quot;strCollapseLevelStructure&quot;,&quot;value&quot;:&quot;Hide level structure&quot;},{&quot;key&quot;:&quot;mRating4More&quot;,&quot;value&quot;:&quot;4 stars &amp; more&quot;},{&quot;key&quot;:&quot;courseOpenDetailsTitle&quot;,&quot;value&quot;:&quot;Open details for the course: %COURSENAME%&quot;},{&quot;key&quot;:&quot;supervisorEnrolmentDueDateSelectionHeadline&quot;,&quot;value&quot;:&quot;Due Date&quot;},{&quot;key&quot;:&quot;strMaximumNumberOfFiles&quot;,&quot;value&quot;:&quot;The maximum number of files was reached&quot;},{&quot;key&quot;:&quot;videojsThisModalCanBeClosedByPressingTheEscapeKeyOrActivatingTheCloseButton&quot;,&quot;value&quot;:&quot;This modal window can be closed by pressing the Esc key or clicking on the \u2018close\u2019 button.&quot;},{&quot;key&quot;:&quot;strUpfrontPaymentRequired&quot;,&quot;value&quot;:&quot;Upfront payment required&quot;},{&quot;key&quot;:&quot;loginFieldTitle&quot;,&quot;value&quot;:&quot;Your login&quot;},{&quot;key&quot;:&quot;strSeatAllocationTimespanYearly&quot;,&quot;value&quot;:&quot;yearly&quot;},{&quot;key&quot;:&quot;courseNoContentAvailableLibrary&quot;,&quot;value&quot;:&quot;No content available&quot;},{&quot;key&quot;:&quot;qtiFeedbackSubmissionDialogSubmitButtonTitle&quot;,&quot;value&quot;:&quot;Submit your feedback&quot;},{&quot;key&quot;:&quot;videojsCyan&quot;,&quot;value&quot;:&quot;Turquoise&quot;},{&quot;key&quot;:&quot;strAttributeCancellationFeeName&quot;,&quot;value&quot;:&quot;Cancellation fee&quot;},{&quot;key&quot;:&quot;naviLinkTitleImprint&quot;,&quot;value&quot;:&quot;Open imprint&quot;},{&quot;key&quot;:&quot;strSeatAllocationEnrolUnfulfielledText&quot;,&quot;value&quot;:&quot;It is not possible to register due to unfulfilled conditions for seat allocation.&quot;},{&quot;key&quot;:&quot;courseEnrolmentPrerequisiteDialogRecommended&quot;,&quot;value&quot;:&quot;recommended&quot;},{&quot;key&quot;:&quot;strMyMentoredTrainings&quot;,&quot;value&quot;:&quot;Mentored training&quot;},{&quot;key&quot;:&quot;saveProfileLogin&quot;,&quot;value&quot;:&quot;Save&quot;},{&quot;key&quot;:&quot;personalAreaCourseStatusStarted&quot;,&quot;value&quot;:&quot;In progress&quot;},{&quot;key&quot;:&quot;strProgrammesDetailRevealCancellationRequestText&quot;,&quot;value&quot;:&quot;The cancellation for the learning path &lt;span class=\&quot;reveal-dialog-text-highlight\&quot;&gt;{{programmeName}}&lt;\/span&gt; must be confirmed. The learning path will remain in its current status until the cancellation is confirmed by a controller.&quot;},{&quot;key&quot;:&quot;languageCode_in-id&quot;,&quot;value&quot;:&quot;Bahasa Indonesia&quot;},{&quot;key&quot;:&quot;dashboardTaskAccept&quot;,&quot;value&quot;:&quot;Accept&quot;},{&quot;key&quot;:&quot;strNotEnoughPlaces&quot;,&quot;value&quot;:&quot;Not enough places&quot;},{&quot;key&quot;:&quot;userProfileDeleteAccountTab&quot;,&quot;value&quot;:&quot;Delete profile&quot;},{&quot;key&quot;:&quot;strCoursesAvailableDueDate&quot;,&quot;value&quot;:&quot;Courses available. Due on {{dueDate}}&quot;},{&quot;key&quot;:&quot;strDisclaimerSubtitle&quot;,&quot;value&quot;:&quot;By continuing, you would leave our platform to an external content.&quot;},{&quot;key&quot;:&quot;strReportEditUncheckAllButton&quot;,&quot;value&quot;:&quot;Uncheck all&quot;},{&quot;key&quot;:&quot;strTeamsGroupPrefix&quot;,&quot;value&quot;:&quot;Group Prefix&quot;},{&quot;key&quot;:&quot;openCourseWorldTeaserTitle&quot;,&quot;value&quot;:&quot;Holistic Learning&quot;},{&quot;key&quot;:&quot;loginSectionSubheadlineToLoginPassword&quot;,&quot;value&quot;:&quot;&lt;br \/&gt;Don\u2019t have a myACCA account? Please log in with your email address and ACCA Learning password.&quot;},{&quot;key&quot;:&quot;strCoursePrerequisitesCancellationDependenciesInfo&quot;,&quot;value&quot;:&quot;If you still want to cancel this course, please contact your administrator.&quot;},{&quot;key&quot;:&quot;strShowContent&quot;,&quot;value&quot;:&quot;Show content by selecting one of the levels above&quot;},{&quot;key&quot;:&quot;strTableSawOpenCompetenceProfile&quot;,&quot;value&quot;:&quot;Open competency profile&quot;},{&quot;key&quot;:&quot;_Concluded_&quot;,&quot;value&quot;:&quot;Completed&quot;},{&quot;key&quot;:&quot;strCommonProctoringServiceProvider&quot;,&quot;value&quot;:&quot;Proctoring Service&quot;},{&quot;key&quot;:&quot;strCertificationEntryHistoryNewPeriodEvent&quot;,&quot;value&quot;:&quot;New certification period started&quot;},{&quot;key&quot;:&quot;eventDateFieldName&quot;,&quot;value&quot;:&quot;Date&quot;},{&quot;key&quot;:&quot;certificateOfAttendanceDownload&quot;,&quot;value&quot;:&quot;Please download your certificate of participation.&quot;},{&quot;key&quot;:&quot;pendingFilter&quot;,&quot;value&quot;:&quot;Pending&quot;},{&quot;key&quot;:&quot;menuTitleMainNavigationMenu&quot;,&quot;value&quot;:&quot;Menu&quot;},{&quot;key&quot;:&quot;userprofileUsiBirthCertStateTitle&quot;,&quot;value&quot;:&quot;State&quot;},{&quot;key&quot;:&quot;naviLinkTitleTermsOfService&quot;,&quot;value&quot;:&quot;Open terms of use&quot;},{&quot;key&quot;:&quot;strCourseBtnRemoveCourse&quot;,&quot;value&quot;:&quot;Remove course&quot;},{&quot;key&quot;:&quot;metaTagDescriptionSyllabusPage&quot;,&quot;value&quot;:&quot;Syllabus of the course&quot;},{&quot;key&quot;:&quot;strPrevPageButtonTooltip&quot;,&quot;value&quot;:&quot;Previous&quot;},{&quot;key&quot;:&quot;strRemoveAssignmentError&quot;,&quot;value&quot;:&quot;Error deleting Training: {{message}}&quot;},{&quot;key&quot;:&quot;metaTagDescriptionContactPage&quot;,&quot;value&quot;:&quot;Contact page for&quot;},{&quot;key&quot;:&quot;strWebExTraining&quot;,&quot;value&quot;:&quot;WebEx Training&quot;},{&quot;key&quot;:&quot;EVENT_SCORE&quot;,&quot;value&quot;:&quot;Score obtained&quot;},{&quot;key&quot;:&quot;qtiTestTimeAlertDialogCancelButtonText&quot;,&quot;value&quot;:&quot;Continue test&quot;},{&quot;key&quot;:&quot;addBookshelfButtonToolTip&quot;,&quot;value&quot;:&quot;Add this item to your bookshelf&quot;},{&quot;key&quot;:&quot;jobProfileNumberOfSkillsSingular&quot;,&quot;value&quot;:&quot;1 Skill&quot;},{&quot;key&quot;:&quot;videojsChapters&quot;,&quot;value&quot;:&quot;Chapter&quot;},{&quot;key&quot;:&quot;videojsGreen&quot;,&quot;value&quot;:&quot;Green&quot;},{&quot;key&quot;:&quot;enrolmentPrerequisitesMessageNotMandatory&quot;,&quot;value&quot;:&quot;The staff member you are trying to enrol does not meet the recommended prerequisites for this course. Would you still like to continue with the booking?&quot;},{&quot;key&quot;:&quot;strMyCoursesRemoveRevealText&quot;,&quot;value&quot;:&quot;This action cannot be undone and the course will be removed from your personal syllabus.&quot;},{&quot;key&quot;:&quot;courseDetailsMultipleHours&quot;,&quot;value&quot;:&quot;Hours&quot;},{&quot;key&quot;:&quot;videojsFullscreen&quot;,&quot;value&quot;:&quot;Full screen&quot;},{&quot;key&quot;:&quot;password&quot;,&quot;value&quot;:&quot;Password&quot;},{&quot;key&quot;:&quot;supervisor.participants.payment.status.ok&quot;,&quot;value&quot;:&quot;The payment for the staff member(s) has been processed successfully.&quot;},{&quot;key&quot;:&quot;strOldestUnreviewedActivity&quot;,&quot;value&quot;:&quot;Oldest unreviewed activity&quot;},{&quot;key&quot;:&quot;emChannel&quot;,&quot;value&quot;:&quot;Channel&quot;},{&quot;key&quot;:&quot;myInboxMessages&quot;,&quot;value&quot;:&quot;Messages&quot;},{&quot;key&quot;:&quot;strSystemMetaDataAttributeStatus&quot;,&quot;value&quot;:&quot;Status&quot;},{&quot;key&quot;:&quot;courseCancellationDialogConfirmationButtonText&quot;,&quot;value&quot;:&quot;Yes, cancel the course&quot;},{&quot;key&quot;:&quot;strQtiFeedbackNegative&quot;,&quot;value&quot;:&quot;Incorrectly answered.&quot;},{&quot;key&quot;:&quot;eventLanguageFieldName&quot;,&quot;value&quot;:&quot;Language&quot;},{&quot;key&quot;:&quot;strCourseSubscriptionState_CANCELLED&quot;,&quot;value&quot;:&quot;Cancelled&quot;},{&quot;key&quot;:&quot;qtiTestCancellationDialogBodyAutoSave&quot;,&quot;value&quot;:&quot;Do you want to cancel the test? This action cannot be undone, and your entries may be lost.&quot;},{&quot;key&quot;:&quot;ratingInfo__CreateInfo&quot;,&quot;value&quot;:&quot;You must submit an evaluation for each category.&quot;},{&quot;key&quot;:&quot;userProfileChangePassword&quot;,&quot;value&quot;:&quot;Change password&quot;},{&quot;key&quot;:&quot;courseBookedSuccesfully&quot;,&quot;value&quot;:&quot;Booking Successful&quot;},{&quot;key&quot;:&quot;skillExpiryNever&quot;,&quot;value&quot;:&quot;Never&quot;},{&quot;key&quot;:&quot;systemVersion&quot;,&quot;value&quot;:&quot;System version&quot;},{&quot;key&quot;:&quot;pageTitleOnTheJobTraining&quot;,&quot;value&quot;:&quot;On-the-job training&quot;},{&quot;key&quot;:&quot;strSearchInMessages&quot;,&quot;value&quot;:&quot;Search in messages&quot;},{&quot;key&quot;:&quot;searchInCatalogue&quot;,&quot;value&quot;:&quot;Search in catalogue&quot;},{&quot;key&quot;:&quot;strBtnCommonSend&quot;,&quot;value&quot;:&quot;Send&quot;},{&quot;key&quot;:&quot;cancellationFeeInfoHeadline&quot;,&quot;value&quot;:&quot;Applicable cancellation fees&quot;},{&quot;key&quot;:&quot;strProgrammePrerequisitesEnrolmentBookMessageMandatory&quot;,&quot;value&quot;:&quot;The staff member that you would like to book does not meet the requirements for participating in this learning path. If you want to book the participation of the staff member for this learning path in spite of this, please refer to the responsible administrator.&quot;},{&quot;key&quot;:&quot;coursePrebookPrerequisiteDialogTitle&quot;,&quot;value&quot;:&quot;Missing prerequisites for %COURSE_NAME%&quot;},{&quot;key&quot;:&quot;strPrerequisitesPastDueDateText&quot;,&quot;value&quot;:&quot;The deadline for completing the partially fulfilled prerequisites has expired. It is no longer possible to register for the course.&quot;},{&quot;key&quot;:&quot;strEnrollmentStatusSELECTED&quot;,&quot;value&quot;:&quot;On wish list&quot;},{&quot;key&quot;:&quot;courseEmployeeWaitingListRegisterSubLine&quot;,&quot;value&quot;:&quot;There are places available on the waiting list&quot;},{&quot;key&quot;:&quot;strSignupButton&quot;,&quot;value&quot;:&quot;Sign up&quot;},{&quot;key&quot;:&quot;fileUploadDropHere&quot;,&quot;value&quot;:&quot;Drag file here&quot;},{&quot;key&quot;:&quot;languageCode_pl-pl&quot;,&quot;value&quot;:&quot;Polski&quot;},{&quot;key&quot;:&quot;strSectionLockedRestrictionSublineText&quot;,&quot;value&quot;:&quot;This section can be unlocked by processing {{minumumRequired}} out of the following:&quot;},{&quot;key&quot;:&quot;strAttachments&quot;,&quot;value&quot;:&quot;Attachments&quot;},{&quot;key&quot;:&quot;paymentPaypalExpressCheckoutCancelButton&quot;,&quot;value&quot;:&quot;Abort&quot;},{&quot;key&quot;:&quot;strTaskPassed&quot;,&quot;value&quot;:&quot;Passed&quot;},{&quot;key&quot;:&quot;firstLoginPasswordChangeRepeatPassword&quot;,&quot;value&quot;:&quot;Repeat password&quot;},{&quot;key&quot;:&quot;metaTagDescriptionDiscussionPage&quot;,&quot;value&quot;:&quot;Discussion&quot;},{&quot;key&quot;:&quot;strComposedSkillInfoLevels&quot;,&quot;value&quot;:&quot;This is the highest level you can reach once the courses are completed.&quot;},{&quot;key&quot;:&quot;strCreateContentMedia&quot;,&quot;value&quot;:&quot;Create content&quot;},{&quot;key&quot;:&quot;assignButton&quot;,&quot;value&quot;:&quot;Assign&quot;},{&quot;key&quot;:&quot;strTrainingCalendarVirtualClassroomFilter&quot;,&quot;value&quot;:&quot;Virtual classroom sessions&quot;},{&quot;key&quot;:&quot;strCancelSubscriptionSuccess&quot;,&quot;value&quot;:&quot;Subscription for {{userName}} was successfully canceled&quot;},{&quot;key&quot;:&quot;strCourseStatusExpired&quot;,&quot;value&quot;:&quot;Ended on {{endDate}}&quot;},{&quot;key&quot;:&quot;registerHere&quot;,&quot;value&quot;:&quot;If you don\u2019t have an ACCA Learning account, register one here.&quot;},{&quot;key&quot;:&quot;strShopifyPriceNotFound&quot;,&quot;value&quot;:&quot;One or more items could not be added to the cart due to the currency difference between courses and the Shopify shop configuration. Please contact the administrator for further assistance.&quot;},{&quot;key&quot;:&quot;strMailNewMessage&quot;,&quot;value&quot;:&quot;New message&quot;},{&quot;key&quot;:&quot;qtiTestRestartDialogCancelButtonText&quot;,&quot;value&quot;:&quot;No, continue &quot;},{&quot;key&quot;:&quot;showOnMapsLinkTitle&quot;,&quot;value&quot;:&quot;Display location on the map&quot;},{&quot;key&quot;:&quot;strCourseNotifyAdministratorOnAcceptanceDenial&quot;,&quot;value&quot;:&quot;Send denial\/acceptance of ical by participant to course administrator (only possible for the course itself, not for scheduled media)&quot;},{&quot;key&quot;:&quot;shareCourseEmailFieldPlaceholder&quot;,&quot;value&quot;:&quot;Email address(es)&quot;},{&quot;key&quot;:&quot;strEnrollmentStatusRESERVED_ON_WAITING_LIST&quot;,&quot;value&quot;:&quot;Reserved for waiting list&quot;},{&quot;key&quot;:&quot;videojsTextEdgeStyle&quot;,&quot;value&quot;:&quot;Text edge style&quot;},{&quot;key&quot;:&quot;strError&quot;,&quot;value&quot;:&quot;Error&quot;},{&quot;key&quot;:&quot;strUserAssignmentFailureDetails&quot;,&quot;value&quot;:&quot;Unable to perform the training assignment for the following users: {{reason}}.&quot;},{&quot;key&quot;:&quot;locationLinkTitlePrefix&quot;,&quot;value&quot;:&quot;Open link:&quot;},{&quot;key&quot;:&quot;courseFeatureExpertCaseStudy&quot;,&quot;value&quot;:&quot;Case studies with experts&quot;},{&quot;key&quot;:&quot;dashboardTaskHistory&quot;,&quot;value&quot;:&quot;Approval History&quot;},{&quot;key&quot;:&quot;strSystemMetaDataAttributeMainType&quot;,&quot;value&quot;:&quot;Media type&quot;},{&quot;key&quot;:&quot;strCourseSubscriptionState_RESERVED_ON_WAITING_LIST&quot;,&quot;value&quot;:&quot;Reserved for waiting list&quot;},{&quot;key&quot;:&quot;strBreadcrumbsTrainingOverview&quot;,&quot;value&quot;:&quot;My On-the-job training&quot;},{&quot;key&quot;:&quot;error404MessageTitle&quot;,&quot;value&quot;:&quot;Page not found&quot;},{&quot;key&quot;:&quot;deleteCourseSuccessMessage&quot;,&quot;value&quot;:&quot;The course has been deleted successfully.&quot;},{&quot;key&quot;:&quot;strNew&quot;,&quot;value&quot;:&quot;New&quot;},{&quot;key&quot;:&quot;courseLibrary&quot;,&quot;value&quot;:&quot;Library&quot;},{&quot;key&quot;:&quot;emDropzoneExtension&quot;,&quot;value&quot;:&quot;document, image, video, audio&quot;},{&quot;key&quot;:&quot;userprofileUsiPassportDocumentNumberTitle&quot;,&quot;value&quot;:&quot;ID number&quot;},{&quot;key&quot;:&quot;enrolmentformErrorOnBooking&quot;,&quot;value&quot;:&quot;Error during enrolment caused by:&quot;},{&quot;key&quot;:&quot;qtiTestSubmissionDialogSubmitButtonTitle&quot;,&quot;value&quot;:&quot;Submit your test&quot;},{&quot;key&quot;:&quot;prerequisiteTitle&quot;,&quot;value&quot;:&quot;Prerequisites&quot;},{&quot;key&quot;:&quot;courseFeatureSelfTest&quot;,&quot;value&quot;:&quot;Tests&quot;},{&quot;key&quot;:&quot;strUpfrontPaymentExplained&quot;,&quot;value&quot;:&quot;The course \u201c{{name}}\u201d requires upfront payment. The desired number of places for the selected participants will be added to the cart during the enrolment process. You can afterwards proceed to checkout with the contents of your cart.&quot;},{&quot;key&quot;:&quot;strMessageTwoFactorsInfo&quot;,&quot;value&quot;:&quot;A verification code has been sent to your email address, which is connected to your personal profile&quot;},{&quot;key&quot;:&quot;strProgrammeStatusRegisteredExpiredDueDateFuture&quot;,&quot;value&quot;:&quot;Due on: {{dueDate}}. Ended on {{endDate}}.&quot;},{&quot;key&quot;:&quot;revealPrerequisitesTitle&quot;,&quot;value&quot;:&quot;Missing requirements for %COURSE_NAME%&quot;},{&quot;key&quot;:&quot;hasStartAndEndDate&quot;,&quot;value&quot;:&quot;$start_date$ to $end_date$&quot;},{&quot;key&quot;:&quot;userprofileUsiErrorGivenUsiCouldNotBeValidated&quot;,&quot;value&quot;:&quot;Your entry was not confirmed.&quot;},{&quot;key&quot;:&quot;strCatalogContentType66&quot;,&quot;value&quot;:&quot;WBT (SCORM)&quot;},{&quot;key&quot;:&quot;strCheckingUSI&quot;,&quot;value&quot;:&quot;Checking...&quot;},{&quot;key&quot;:&quot;courseEnrolmentEmployeeDialogAbortBtnTitle&quot;,&quot;value&quot;:&quot;Cancel course&quot;},{&quot;key&quot;:&quot;strEnrollmentStatusPENDING&quot;,&quot;value&quot;:&quot;Pending&quot;},{&quot;key&quot;:&quot;sendFeedbackButton&quot;,&quot;value&quot;:&quot;Send feedback&quot;},{&quot;key&quot;:&quot;naviLinkTitleContact&quot;,&quot;value&quot;:&quot;Open contact&quot;},{&quot;key&quot;:&quot;strEnrollmentStatusWAITING&quot;,&quot;value&quot;:&quot;Waiting list&quot;},{&quot;key&quot;:&quot;languageCode_sr-rs&quot;,&quot;value&quot;:&quot;\u0421\u0440\u043f\u0441\u043a\u0438&quot;},{&quot;key&quot;:&quot;courseEnrolmentEmployeePrerequisiteDialogTitle&quot;,&quot;value&quot;:&quot;The staff member does not meet the prerequisites %COURSE_NAME%&quot;},{&quot;key&quot;:&quot;strTableSawParticipantCancel&quot;,&quot;value&quot;:&quot;Cancel participant&quot;},{&quot;key&quot;:&quot;strSelectedStaff&quot;,&quot;value&quot;:&quot;Selected staff members&quot;},{&quot;key&quot;:&quot;strMessageFailed&quot;,&quot;value&quot;:&quot;Failed to send the message&quot;},{&quot;key&quot;:&quot;strDurationInHours&quot;,&quot;value&quot;:&quot;{{hours}} Hours&quot;},{&quot;key&quot;:&quot;strLoading&quot;,&quot;value&quot;:&quot;Load&quot;},{&quot;key&quot;:&quot;passwordFieldTitle&quot;,&quot;value&quot;:&quot;Your password&quot;},{&quot;key&quot;:&quot;refreshCourse&quot;,&quot;value&quot;:&quot;Refresh course&quot;},{&quot;key&quot;:&quot;videojsCaptionsOff&quot;,&quot;value&quot;:&quot;Subtitles off&quot;},{&quot;key&quot;:&quot;competenciesCertificationPointsValue&quot;,&quot;value&quot;:&quot;{{value}} points&quot;},{&quot;key&quot;:&quot;strMoveEnrollmentErrorMessage&quot;,&quot;value&quot;:&quot;The participant could not be moved. No changes to the enrolment status were made. Please try again later.&quot;},{&quot;key&quot;:&quot;pageTitleTermsOfService&quot;,&quot;value&quot;:&quot;Terms of use&quot;},{&quot;key&quot;:&quot;strAccountActivatedFailText&quot;,&quot;value&quot;:&quot;You need to log in again in order to receive a new activation link.&quot;},{&quot;key&quot;:&quot;fileUploadMaxNumberOfUploadsReachedMessage&quot;,&quot;value&quot;:&quot;Maximum number of possible uploads reached.&quot;},{&quot;key&quot;:&quot;strCookiesUnderstoodButton&quot;,&quot;value&quot;:&quot;Understood&quot;},{&quot;key&quot;:&quot;strMyCoursesDetailRevealReasonLabel&quot;,&quot;value&quot;:&quot;Reason for cancellation&quot;},{&quot;key&quot;:&quot;enrollmentRefusedSubline&quot;,&quot;value&quot;:&quot;Your enrolment request was declined&quot;},{&quot;key&quot;:&quot;revealTaskDeclinationReasonPreBookingTitle&quot;,&quot;value&quot;:&quot;Decline pre-booking request&quot;},{&quot;key&quot;:&quot;courseNoContentAvailableSyllabus&quot;,&quot;value&quot;:&quot;No content available&quot;},{&quot;key&quot;:&quot;courseTimingConflictMessageTitle&quot;,&quot;value&quot;:&quot;You are enrolling in the course &lt;span class=\&quot;reveal-dialog-text-highlight\&quot;&gt;{{courseName}}&lt;\/span&gt;. In this time frame you already have a booking for:&quot;},{&quot;key&quot;:&quot;strCourseStatusFinished&quot;,&quot;value&quot;:&quot;Finished on {{completionDate}}&quot;},{&quot;key&quot;:&quot;metaTagDescriptionCertificatePage&quot;,&quot;value&quot;:&quot;Certificate for the course&quot;},{&quot;key&quot;:&quot;strCourseDueDateLabelOverdue&quot;,&quot;value&quot;:&quot;Overdue&quot;},{&quot;key&quot;:&quot;strIdpGoalReview&quot;,&quot;value&quot;:&quot;Review&quot;},{&quot;key&quot;:&quot;courseEnrolmentAsSupervisorDialogSelfregistrationWithConfirmationBody&quot;,&quot;value&quot;:&quot;The enrolment for this course requires approval. Continue in order to inform the person responsible for approval. As soon as the request is approved, the course can be started.&quot;},{&quot;key&quot;:&quot;strMyLearningsDetailRevealDeletionHeadline&quot;,&quot;value&quot;:&quot;Do you want to remove the course?&quot;},{&quot;key&quot;:&quot;strAccessTimeEndTrackingCannotBeDone&quot;,&quot;value&quot;:&quot;Attendance tracking cannot be done as the event is over&quot;},{&quot;key&quot;:&quot;instructionProfileLogin&quot;,&quot;value&quot;:&quot;Please update your profile to continue. Fields marked with an asterisk (*) are mandatory.&quot;},{&quot;key&quot;:&quot;qtiSubmissionErrorContinueBtn&quot;,&quot;value&quot;:&quot;Back to test&quot;},{&quot;key&quot;:&quot;qtiFeedbackReviewBtn&quot;,&quot;value&quot;:&quot;Confirm Review&quot;},{&quot;key&quot;:&quot;headlineSkillPanel&quot;,&quot;value&quot;:&quot;Skills&quot;},{&quot;key&quot;:&quot;strProgrammeStatusProgressWithDueDatePast&quot;,&quot;value&quot;:&quot;Overdue since {{dueDate}}&quot;},{&quot;key&quot;:&quot;availabilitySubline&quot;,&quot;value&quot;:&quot;Availability&quot;},{&quot;key&quot;:&quot;videojsOpensSubtitlesSettingsDialog&quot;,&quot;value&quot;:&quot;, opens dialogue settings&quot;},{&quot;key&quot;:&quot;strBtnCommonSendEmail&quot;,&quot;value&quot;:&quot;Send&quot;},{&quot;key&quot;:&quot;strIdpUploadMentorAllowed&quot;,&quot;value&quot;:&quot;Allow mentor to upload data files&quot;},{&quot;key&quot;:&quot;deleteRatingDialogCancelButtonTooltip&quot;,&quot;value&quot;:&quot;Cancel rating deletion&quot;},{&quot;key&quot;:&quot;courseEnrolmentPrerequisiteDialogConditionProgram&quot;,&quot;value&quot;:&quot;Learning path&quot;},{&quot;key&quot;:&quot;home&quot;,&quot;value&quot;:&quot;Homepage&quot;},{&quot;key&quot;:&quot;strCourseBtnMoveEnrollmentForCourse&quot;,&quot;value&quot;:&quot;Move registration&quot;},{&quot;key&quot;:&quot;MyStaff&quot;,&quot;value&quot;:&quot;My staff&quot;},{&quot;key&quot;:&quot;strCommonAdded&quot;,&quot;value&quot;:&quot;has\/have been added to the catalogue:&quot;},{&quot;key&quot;:&quot;loginErrorSAMLAuthnResponseMissing&quot;,&quot;value&quot;:&quot;\&quot;Authentication Response\&quot; for the external identity provider is not available&quot;},{&quot;key&quot;:&quot;cookiePolicyPageText&quot;,&quot;value&quot;:&quot;&lt;div class=\&quot;cookies-container\&quot;&gt; &lt;p&gt;imc Learning Suite uses cookies to ensure an optimal user experience.&lt;\/p&gt; &lt;h3&gt;What are cookies?&lt;\/h3&gt; &lt;p&gt;Cookies are small text files which are saved on your device (computer, tablet or smartphone). If you access a website, the cookie saved on your device will be read to provide information to the party that placed the cookie. Cookies do not cause any damage to your device, nor do they contain viruses, trojans or other malware.&lt;\/p&gt; &lt;h3&gt;Why are cookies essential for imc Learning Suite?&lt;\/h3&gt; &lt;p&gt; Cookies are used to personalize and simplify your use of the imc Learning Suite. Cookies allow, for example, navigation within the imc Learning Suite and the customization of content to suit your needs. Without the use of cookies, we would not be able to ensure that the imc Learning Suite runs smoothly, and your user experience is as we would like it to be. &lt;\/p&gt; &lt;h3&gt;Types of cookies&lt;\/h3&gt; &lt;p&gt; We use two types of cookies on the imc Learning Suite:&lt;\/p&gt; &lt;p&gt; &lt;u&gt;Session cookies&lt;\/u&gt; are temporary cookies that exist only for as long as you visit imc Learning Suite (or, more precisely, until you close the browser after visiting imc Learning Suite). Session cookies help the imc Learning Suite to remember what choices you have made in the session so that you do not have to re-enter this information.&lt;\/p&gt; &lt;p&gt;&lt;\/p&gt; &lt;u&gt;Persistent cookies&lt;\/u&gt; are saved on your device for a longer period of time, also after your session has ended. Persistent cookies help us identify you as an individual visitor.&lt;p&gt;&lt;\/p&gt; &lt;h3&gt;Purpose of cookies&lt;\/h3&gt; &lt;p&gt; imc Learning Suite only uses such cookies, without which the proper use of imc Learning Suite would not be possible or only with significant restrictions. The legal basis for these mandatory cookies is therefore Art. 6 Para. 1 S. 1 lit. f GDPR. The legitimate interest lies in the proper performance of the imc Learning Suite, as you expect as a user. &lt;\/p&gt; &lt;h3&gt;Strictly necessary cookies&lt;\/h3&gt; &lt;table class=\&quot;tablesaw tablesaw-stack tablesaw-static\&quot;&gt; &lt;thead&gt; &lt;tr&gt; &lt;th&gt;Cookie Name&lt;\/th&gt; &lt;th&gt;Provider&lt;\/th&gt; &lt;th&gt;Purpose&lt;\/th&gt; &lt;th&gt;Expiration&lt;\/th&gt; &lt;\/tr&gt; &lt;\/thead&gt; &lt;tbody&gt; &lt;tr&gt; &lt;td&gt; &lt;span class=\&quot;tablesaw-cell-label\&quot;&gt;&lt;b&gt;Cookie Name&lt;\/b&gt;&lt;\/span&gt; &lt;span class=\&quot;tablesaw-cell-content\&quot;&gt;acceptPolicy&lt;\/span&gt; &lt;\/td&gt; &lt;td&gt; &lt;span class=\&quot;tablesaw-cell-label\&quot;&gt;&lt;b&gt;Provider&lt;\/b&gt;&lt;\/span&gt; &lt;span class=\&quot;tablesaw-cell-content\&quot;&gt;imc AG&lt;\/span&gt; &lt;\/td&gt; &lt;td&gt; &lt;span class=\&quot;tablesaw-cell-label\&quot;&gt;&lt;b&gt;Purpose&lt;\/b&gt;&lt;\/span&gt; &lt;span class=\&quot;tablesaw-cell-content\&quot;&gt;This cookie is used to save that the cookies have been accepted by the user.&lt;\/span&gt; &lt;\/td&gt; &lt;td&gt; &lt;span class=\&quot;tablesaw-cell-label\&quot;&gt;&lt;b&gt;Expiration&lt;\/b&gt;&lt;\/span&gt; &lt;span class=\&quot;tablesaw-cell-content\&quot;&gt;1 year&lt;\/span&gt; &lt;\/td&gt; &lt;\/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;span class=\&quot;tablesaw-cell-label\&quot;&gt;&lt;b&gt;Cookie Name&lt;\/b&gt;&lt;\/span&gt; &lt;span class=\&quot;tablesaw-cell-content\&quot;&gt;ARRAzureWebFarm&lt;\/span&gt; &lt;\/td&gt; &lt;td&gt; &lt;span class=\&quot;tablesaw-cell-label\&quot;&gt;&lt;b&gt;Provider&lt;\/b&gt;&lt;\/span&gt; &lt;span class=\&quot;tablesaw-cell-content\&quot;&gt;imc AG&lt;\/span&gt; &lt;\/td&gt; &lt;td&gt; &lt;span class=\&quot;tablesaw-cell-label\&quot;&gt;&lt;b&gt;Purpose&lt;\/b&gt;&lt;\/span&gt; &lt;span class=\&quot;tablesaw-cell-content\&quot;&gt;This cookie is used in Microsoft Azure environment to ensure correct forwarding to the application server.&lt;\/span&gt; &lt;\/td&gt; &lt;td&gt; &lt;span class=\&quot;tablesaw-cell-label\&quot;&gt;&lt;b&gt;Expiration&lt;\/b&gt;&lt;\/span&gt; &lt;span class=\&quot;tablesaw-cell-content\&quot;&gt;Expires at session end.&lt;br \/&gt;&lt;\/span&gt; &lt;\/td&gt; &lt;\/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;span class=\&quot;tablesaw-cell-label\&quot;&gt;&lt;b&gt;Cookie Name&lt;\/b&gt;&lt;\/span&gt; &lt;span class=\&quot;tablesaw-cell-content\&quot;&gt;de.imc.ila.cache.COURSE_UPDATE&lt;\/span&gt; &lt;\/td&gt; &lt;td&gt; &lt;span class=\&quot;tablesaw-cell-label\&quot;&gt;&lt;b&gt;Provider&lt;\/b&gt;&lt;\/span&gt; &lt;span class=\&quot;tablesaw-cell-content\&quot;&gt;imc AG&lt;\/span&gt; &lt;\/td&gt; &lt;td&gt; &lt;span class=\&quot;tablesaw-cell-label\&quot;&gt;&lt;b&gt;Purpose&lt;\/b&gt;&lt;\/span&gt; &lt;span class=\&quot;tablesaw-cell-content\&quot;&gt;This cookie indicates how long data is temporarily stored (cache) in the course room of the LMS.&lt;\/span&gt; &lt;\/td&gt; &lt;td&gt; &lt;span class=\&quot;tablesaw-cell-label\&quot;&gt;&lt;b&gt;Expiration&lt;\/b&gt;&lt;\/span&gt; &lt;span class=\&quot;tablesaw-cell-content\&quot;&gt;45 minutes&lt;\/span&gt; &lt;\/td&gt; &lt;\/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;span class=\&quot;tablesaw-cell-label\&quot;&gt;&lt;b&gt;Cookie Name&lt;\/b&gt;&lt;\/span&gt; &lt;span class=\&quot;tablesaw-cell-content\&quot;&gt;ILA_CURRENT_COURSE_MEDIA&lt;\/span&gt; &lt;\/td&gt; &lt;td&gt; &lt;span class=\&quot;tablesaw-cell-label\&quot;&gt;&lt;b&gt;Provider&lt;\/b&gt;&lt;\/span&gt; &lt;span class=\&quot;tablesaw-cell-content\&quot;&gt;imc AG&lt;\/span&gt; &lt;\/td&gt; &lt;td&gt; &lt;span class=\&quot;tablesaw-cell-label\&quot;&gt;&lt;b&gt;Purpose&lt;\/b&gt;&lt;\/span&gt; &lt;span class=\&quot;tablesaw-cell-content\&quot;&gt;This cookie is stored to save the latest used media, so user can proceed where they left off when re-opening a course by automatically expand the folder containing the last medium you worked on.&lt;\/span&gt; &lt;\/td&gt; &lt;td&gt; &lt;span class=\&quot;tablesaw-cell-label\&quot;&gt;&lt;b&gt;Expiration&lt;\/b&gt;&lt;\/span&gt; &lt;span class=\&quot;tablesaw-cell-content\&quot;&gt;45 minutes&lt;\/span&gt; &lt;\/td&gt; &lt;\/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;span class=\&quot;tablesaw-cell-label\&quot;&gt;&lt;b&gt;Cookie Name&lt;\/b&gt;&lt;\/span&gt; &lt;span class=\&quot;tablesaw-cell-content\&quot;&gt;ILA_LOGOUT&lt;\/span&gt; &lt;\/td&gt; &lt;td&gt; &lt;span class=\&quot;tablesaw-cell-label\&quot;&gt;&lt;b&gt;Provider&lt;\/b&gt;&lt;\/span&gt; &lt;span class=\&quot;tablesaw-cell-content\&quot;&gt;imc AG&lt;\/span&gt; &lt;\/td&gt; &lt;td&gt; &lt;span class=\&quot;tablesaw-cell-label\&quot;&gt;&lt;b&gt;Purpose&lt;\/b&gt;&lt;\/span&gt; &lt;span class=\&quot;tablesaw-cell-content\&quot;&gt;This cookie is stored to indicate user logout.&lt;\/span&gt; &lt;\/td&gt; &lt;td&gt; &lt;span class=\&quot;tablesaw-cell-label\&quot;&gt;&lt;b&gt;Expiration&lt;\/b&gt;&lt;\/span&gt; &lt;span class=\&quot;tablesaw-cell-content\&quot;&gt;45 minutes&lt;\/span&gt; &lt;\/td&gt; &lt;\/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;span class=\&quot;tablesaw-cell-label\&quot;&gt;&lt;b&gt;Cookie Name&lt;\/b&gt;&lt;\/span&gt; &lt;span class=\&quot;tablesaw-cell-content\&quot;&gt;ILA_USER_PROFILE_UPDATE&lt;\/span&gt; &lt;\/td&gt; &lt;td&gt; &lt;span class=\&quot;tablesaw-cell-label\&quot;&gt;&lt;b&gt;Provider&lt;\/b&gt;&lt;\/span&gt; &lt;span class=\&quot;tablesaw-cell-content\&quot;&gt;imc AG&lt;\/span&gt; &lt;\/td&gt; &lt;td&gt; &lt;span class=\&quot;tablesaw-cell-label\&quot;&gt;&lt;b&gt;Purpose&lt;\/b&gt;&lt;\/span&gt; &lt;span class=\&quot;tablesaw-cell-content\&quot;&gt;This cookie communicates date of user profile change between different parts of the LMS application.&lt;\/span&gt; &lt;\/td&gt; &lt;td&gt; &lt;span class=\&quot;tablesaw-cell-label\&quot;&gt;&lt;b&gt;Expiration&lt;\/b&gt;&lt;\/span&gt; &lt;span class=\&quot;tablesaw-cell-content\&quot;&gt;45 minutes&lt;\/span&gt; &lt;\/td&gt; &lt;\/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;span class=\&quot;tablesaw-cell-label\&quot;&gt;&lt;b&gt;Cookie Name&lt;\/b&gt;&lt;\/span&gt; &lt;span class=\&quot;tablesaw-cell-content\&quot;&gt;ILAAUTH&lt;\/span&gt; &lt;\/td&gt; &lt;td&gt; &lt;span class=\&quot;tablesaw-cell-label\&quot;&gt;&lt;b&gt;Provider&lt;\/b&gt;&lt;\/span&gt; &lt;span class=\&quot;tablesaw-cell-content\&quot;&gt;imc AG&lt;\/span&gt; &lt;\/td&gt; &lt;td&gt; &lt;span class=\&quot;tablesaw-cell-label\&quot;&gt;&lt;b&gt;Purpose&lt;\/b&gt;&lt;\/span&gt; &lt;span class=\&quot;tablesaw-cell-content\&quot;&gt;This cookie holds user object information (such as firstname \/ lastname) for display purposes in the application and to restore the user settings.&lt;\/span&gt; &lt;\/td&gt; &lt;td&gt; &lt;span class=\&quot;tablesaw-cell-label\&quot;&gt;&lt;b&gt;Expiration&lt;\/b&gt;&lt;\/span&gt; &lt;span class=\&quot;tablesaw-cell-content\&quot;&gt;45 minutes&lt;\/span&gt; &lt;\/td&gt; &lt;\/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;span class=\&quot;tablesaw-cell-label\&quot;&gt;&lt;b&gt;Cookie Name&lt;\/b&gt;&lt;\/span&gt; &lt;span class=\&quot;tablesaw-cell-content\&quot;&gt;ILALANG&lt;\/span&gt; &lt;\/td&gt; &lt;td&gt; &lt;span class=\&quot;tablesaw-cell-label\&quot;&gt;&lt;b&gt;Provider&lt;\/b&gt;&lt;\/span&gt; &lt;span class=\&quot;tablesaw-cell-content\&quot;&gt;imc AG&lt;\/span&gt; &lt;\/td&gt; &lt;td&gt; &lt;span class=\&quot;tablesaw-cell-label\&quot;&gt;&lt;b&gt;Purpose&lt;\/b&gt;&lt;\/span&gt; &lt;span class=\&quot;tablesaw-cell-content\&quot;&gt;This cookie is used to store the language the user has selected.&lt;\/span&gt; &lt;\/td&gt; &lt;td&gt; &lt;span class=\&quot;tablesaw-cell-label\&quot;&gt;&lt;b&gt;Expiration&lt;\/b&gt;&lt;\/span&gt; &lt;span class=\&quot;tablesaw-cell-content\&quot;&gt;1 year&lt;\/span&gt; &lt;\/td&gt; &lt;\/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;span class=\&quot;tablesaw-cell-label\&quot;&gt;&lt;b&gt;Cookie Name&lt;\/b&gt;&lt;\/span&gt; &lt;span class=\&quot;tablesaw-cell-content\&quot;&gt;ILAOAUTH&lt;\/span&gt; &lt;\/td&gt; &lt;td&gt; &lt;span class=\&quot;tablesaw-cell-label\&quot;&gt;&lt;b&gt;Provider&lt;\/b&gt;&lt;\/span&gt; &lt;span class=\&quot;tablesaw-cell-content\&quot;&gt;imc AG&lt;\/span&gt; &lt;\/td&gt; &lt;td&gt; &lt;span class=\&quot;tablesaw-cell-label\&quot;&gt;&lt;b&gt;Purpose&lt;\/b&gt;&lt;\/span&gt; &lt;span class=\&quot;tablesaw-cell-content\&quot;&gt;This cookie is used to authenticate and verify the user (&lt;a href=\&quot;https:\/\/oauth.net\&quot; target=\&quot;_blank\&quot;&gt;https:\/\/oauth.net&lt;\/a&gt;).&lt;\/span&gt; &lt;\/td&gt; &lt;td&gt; &lt;span class=\&quot;tablesaw-cell-label\&quot;&gt;&lt;b&gt;Expiration&lt;\/b&gt;&lt;\/span&gt; &lt;span class=\&quot;tablesaw-cell-content\&quot;&gt;45 minutes&lt;\/span&gt; &lt;\/td&gt; &lt;\/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;span class=\&quot;tablesaw-cell-label\&quot;&gt;&lt;b&gt;Cookie Name&lt;\/b&gt;&lt;\/span&gt; &lt;span class=\&quot;tablesaw-cell-content\&quot;&gt;ilp_JSESSIONID&lt;\/span&gt; &lt;\/td&gt; &lt;td&gt; &lt;span class=\&quot;tablesaw-cell-label\&quot;&gt;&lt;b&gt;Provider&lt;\/b&gt;&lt;\/span&gt; &lt;span class=\&quot;tablesaw-cell-content\&quot;&gt;imc AG&lt;\/span&gt; &lt;\/td&gt; &lt;td&gt; &lt;span class=\&quot;tablesaw-cell-label\&quot;&gt;&lt;b&gt;Purpose&lt;\/b&gt;&lt;\/span&gt; &lt;span class=\&quot;tablesaw-cell-content\&quot;&gt;This cookie is essential in order to enable you to move around the website and use its features, such as accessing secure areas of the website.&lt;\/span&gt; &lt;\/td&gt; &lt;td&gt; &lt;span class=\&quot;tablesaw-cell-label\&quot;&gt;&lt;b&gt;Expiration&lt;\/b&gt;&lt;\/span&gt; &lt;span class=\&quot;tablesaw-cell-content\&quot;&gt;Expires at session end.&lt;\/span&gt; &lt;\/td&gt; &lt;\/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;span class=\&quot;tablesaw-cell-label\&quot;&gt;&lt;b&gt;Cookie Name&lt;\/b&gt;&lt;\/span&gt; &lt;span class=\&quot;tablesaw-cell-content\&quot;&gt;ils_JSESSIONID&lt;\/span&gt; &lt;\/td&gt; &lt;td&gt; &lt;span class=\&quot;tablesaw-cell-label\&quot;&gt;&lt;b&gt;Provider&lt;\/b&gt;&lt;\/span&gt; &lt;span class=\&quot;tablesaw-cell-content\&quot;&gt;imc AG&lt;\/span&gt; &lt;\/td&gt; &lt;td&gt; &lt;span class=\&quot;tablesaw-cell-label\&quot;&gt;&lt;b&gt;Purpose&lt;\/b&gt;&lt;\/span&gt; &lt;span class=\&quot;tablesaw-cell-content\&quot;&gt;This cookie is essential in order to enable you to move around the website and use its features, such as accessing secure areas of the website.&lt;\/span&gt; &lt;\/td&gt; &lt;td&gt; &lt;span class=\&quot;tablesaw-cell-label\&quot;&gt;&lt;b&gt;Expiration&lt;\/b&gt;&lt;\/span&gt; &lt;span class=\&quot;tablesaw-cell-content\&quot;&gt;Expires at session end.&lt;\/span&gt; &lt;\/td&gt; &lt;\/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;span class=\&quot;tablesaw-cell-label\&quot;&gt;&lt;b&gt;Cookie Name&lt;\/b&gt;&lt;\/span&gt; &lt;span class=\&quot;tablesaw-cell-content\&quot;&gt;Microsoft Application Insights ai_session&lt;\/span&gt; &lt;\/td&gt; &lt;td&gt; &lt;span class=\&quot;tablesaw-cell-label\&quot;&gt;&lt;b&gt;Provider&lt;\/b&gt;&lt;\/span&gt; &lt;span class=\&quot;tablesaw-cell-content\&quot;&gt;imc AG&lt;\/span&gt; &lt;\/td&gt; &lt;td&gt; &lt;span class=\&quot;tablesaw-cell-label\&quot;&gt;&lt;b&gt;Purpose&lt;\/b&gt;&lt;\/span&gt; &lt;span class=\&quot;tablesaw-cell-content\&quot;&gt;This cookie is associated with Microsoft Application Insights software, which stores statistical usage and telemetry data for apps developed on the Azure cloud platform. It is a unique, anonymous session identifier cookie.&lt;\/span&gt; &lt;\/td&gt; &lt;td&gt; &lt;span class=\&quot;tablesaw-cell-label\&quot;&gt;&lt;b&gt;Expiration&lt;\/b&gt;&lt;\/span&gt; &lt;span class=\&quot;tablesaw-cell-content\&quot;&gt;Expires at session end.&lt;\/span&gt; &lt;\/td&gt; &lt;\/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;span class=\&quot;tablesaw-cell-label\&quot;&gt;&lt;b&gt;Cookie Name&lt;\/b&gt;&lt;\/span&gt; &lt;span class=\&quot;tablesaw-cell-content\&quot;&gt;Microsoft Application Insights ai_user&lt;\/span&gt; &lt;\/td&gt; &lt;td&gt; &lt;span class=\&quot;tablesaw-cell-label\&quot;&gt;&lt;b&gt;Provider&lt;\/b&gt;&lt;\/span&gt; &lt;span class=\&quot;tablesaw-cell-content\&quot;&gt;imc AG&lt;\/span&gt; &lt;\/td&gt; &lt;td&gt; &lt;span class=\&quot;tablesaw-cell-label\&quot;&gt;&lt;b&gt;Purpose&lt;\/b&gt;&lt;\/span&gt; &lt;span class=\&quot;tablesaw-cell-content\&quot;&gt;This cookie is associated with Microsoft Application Insights software, which stores statistical usage and telemetry data for apps developed on the Azure cloud platform. This cookie to uniquely identify a user counts the number of users who access the application over time.&lt;\/span&gt; &lt;\/td&gt; &lt;td&gt; &lt;span class=\&quot;tablesaw-cell-label\&quot;&gt;&lt;b&gt;Expiration&lt;\/b&gt;&lt;\/span&gt; &lt;span class=\&quot;tablesaw-cell-content\&quot;&gt;1 year&lt;\/span&gt; &lt;\/td&gt; &lt;\/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;span class=\&quot;tablesaw-cell-label\&quot;&gt;&lt;b&gt;Cookie Name&lt;\/b&gt;&lt;\/span&gt; &lt;span class=\&quot;tablesaw-cell-content\&quot;&gt;oam.Flash.REDIRECT&lt;\/span&gt; &lt;\/td&gt; &lt;td&gt; &lt;span class=\&quot;tablesaw-cell-label\&quot;&gt;&lt;b&gt;Provider&lt;\/b&gt;&lt;\/span&gt; &lt;span class=\&quot;tablesaw-cell-content\&quot;&gt;imc AG&lt;\/span&gt; &lt;\/td&gt; &lt;td&gt; &lt;span class=\&quot;tablesaw-cell-label\&quot;&gt;&lt;b&gt;Purpose&lt;\/b&gt;&lt;\/span&gt; &lt;span class=\&quot;tablesaw-cell-content\&quot;&gt;This cookie is used during page redirection inside Flash objects to preserve the scope between the current request and the next one.&lt;\/span&gt; &lt;\/td&gt; &lt;td&gt; &lt;span class=\&quot;tablesaw-cell-label\&quot;&gt;&lt;b&gt;Expiration&lt;\/b&gt;&lt;\/span&gt; &lt;span class=\&quot;tablesaw-cell-content\&quot;&gt;Expires at session end.&lt;\/span&gt; &lt;\/td&gt; &lt;\/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;span class=\&quot;tablesaw-cell-label\&quot;&gt;&lt;b&gt;Cookie Name&lt;\/b&gt;&lt;\/span&gt; &lt;span class=\&quot;tablesaw-cell-content\&quot;&gt;oam.Flash.RENDERMAP.TOKEN&lt;\/span&gt; &lt;\/td&gt; &lt;td&gt; &lt;span class=\&quot;tablesaw-cell-label\&quot;&gt;&lt;b&gt;Provider&lt;\/b&gt;&lt;\/span&gt; &lt;span class=\&quot;tablesaw-cell-content\&quot;&gt;imc AG&lt;\/span&gt; &lt;\/td&gt; &lt;td&gt; &lt;span class=\&quot;tablesaw-cell-label\&quot;&gt;&lt;b&gt;Purpose&lt;\/b&gt;&lt;\/span&gt; &lt;span class=\&quot;tablesaw-cell-content\&quot;&gt;This cookie is used during page redirection inside Flash objects to preserve the scope between the current request and the next one.&lt;\/span&gt; &lt;\/td&gt; &lt;td&gt; &lt;span class=\&quot;tablesaw-cell-label\&quot;&gt;&lt;b&gt;Expiration&lt;\/b&gt;&lt;\/span&gt; &lt;span class=\&quot;tablesaw-cell-content\&quot;&gt;Expires at session end.&lt;\/span&gt; &lt;\/td&gt; &lt;\/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;span class=\&quot;tablesaw-cell-label\&quot;&gt;&lt;b&gt;Cookie Name&lt;\/b&gt;&lt;\/span&gt; &lt;span class=\&quot;tablesaw-cell-content\&quot;&gt;XSRF_COOKIE&lt;\/span&gt; &lt;\/td&gt; &lt;td&gt; &lt;span class=\&quot;tablesaw-cell-label\&quot;&gt;&lt;b&gt;Provider&lt;\/b&gt;&lt;\/span&gt; &lt;span class=\&quot;tablesaw-cell-content\&quot;&gt;imc AG&lt;\/span&gt; &lt;\/td&gt; &lt;td&gt; &lt;span class=\&quot;tablesaw-cell-label\&quot;&gt;&lt;b&gt;Purpose&lt;\/b&gt;&lt;\/span&gt; &lt;span class=\&quot;tablesaw-cell-content\&quot;&gt;This cookie is used to protect the site against cross-site request forgery.&lt;\/span&gt; &lt;\/td&gt; &lt;td&gt; &lt;span class=\&quot;tablesaw-cell-label\&quot;&gt;&lt;b&gt;Expiration&lt;\/b&gt;&lt;\/span&gt; &lt;span class=\&quot;tablesaw-cell-content\&quot;&gt;45 minutes&lt;\/span&gt; &lt;\/td&gt; &lt;\/tr&gt; &lt;\/tbody&gt; &lt;\/table&gt; &lt;h3&gt;How to control and delete cookies&lt;\/h3&gt; &lt;p&gt; If you would like to delete cookies or instruct your browser to delete or decline cookies, please visit the help pages of your browser.&lt;br \/&gt; Please note, however, that if you delete or decline cookies, you might not be able to use all the functions we offer, that you cannot save your preferences and that our pages may not display properly. &lt;\/p&gt; &lt;p&gt;ACCA manages cookies across a number of related websites which may also be applicable here. Find out how &lt;a href=\&quot;https:\/\/www.accaglobal.com\/gb\/en\/footertoolbar\/privacy\/cookies-notice.html\&quot;&gt;ACCA manages cookies&lt;\/a&gt;. &lt;\/p&gt; &lt;\/div&gt;&quot;},{&quot;key&quot;:&quot;qtiTestSubmissionDialogTitle&quot;,&quot;value&quot;:&quot;Submit assessment&quot;},{&quot;key&quot;:&quot;strExamityProctoringAutomatedStandard&quot;,&quot;value&quot;:&quot;Automated Standard&quot;},{&quot;key&quot;:&quot;firstLoginPasswordChangePasswordExpired&quot;,&quot;value&quot;:&quot;Your password has expired. Please enter a new password to continue.&quot;},{&quot;key&quot;:&quot;removeBookshelfButtonToolTip&quot;,&quot;value&quot;:&quot;This item is already in your bookshelf Click here to remove it.&quot;},{&quot;key&quot;:&quot;validatePasswordRepeatMandatory&quot;,&quot;value&quot;:&quot;Please repeat the password&quot;},{&quot;key&quot;:&quot;strMyProgrammesDetailRevealCancellationRequestProceedButton&quot;,&quot;value&quot;:&quot;Request cancellation&quot;},{&quot;key&quot;:&quot;strLearningpathCurrentLevel&quot;,&quot;value&quot;:&quot;Your current level&quot;},{&quot;key&quot;:&quot;revealPrerequisitesCancelBtn&quot;,&quot;value&quot;:&quot;Cancel&quot;},{&quot;key&quot;:&quot;strCourseBtnRemovePrebookingForCourse&quot;,&quot;value&quot;:&quot;Remove pre-booking&quot;},{&quot;key&quot;:&quot;jarFileTitle&quot;,&quot;value&quot;:&quot;JAR files&quot;},{&quot;key&quot;:&quot;strJobProfileAssignmentFailedMessage&quot;,&quot;value&quot;:&quot;The following job profiles have not been assigned because a system error occurred:&quot;},{&quot;key&quot;:&quot;strProgramWaitingListMessage&quot;,&quot;value&quot;:&quot;You have been placed on the waiting list for this learning path.&quot;},{&quot;key&quot;:&quot;paymentTransactionDialogOkBtnTitle&quot;,&quot;value&quot;:&quot;Close dialog&quot;},{&quot;key&quot;:&quot;strComposedSkillInfoPoints&quot;,&quot;value&quot;:&quot;This is the sum of the points cumulated you can reach once the courses are completed.&quot;},{&quot;key&quot;:&quot;strEquivalenceInBothDirections&quot;,&quot;value&quot;:&quot;The completion is triggered in both directions&quot;},{&quot;key&quot;:&quot;strErrorMsTeams&quot;,&quot;value&quot;:&quot;Organizer can't be found in the provided External Service Provider.&quot;},{&quot;key&quot;:&quot;myStaffSearchFilterTooltipOnHideText&quot;,&quot;value&quot;:&quot;Hide filters&quot;},{&quot;key&quot;:&quot;strCourseMetatagApplyRule&quot;,&quot;value&quot;:&quot;Apply rule&quot;},{&quot;key&quot;:&quot;strCourseTabStatusCancelled&quot;,&quot;value&quot;:&quot;Cancelled&quot;},{&quot;key&quot;:&quot;certificateAvailabilityWhenConcludeCourse&quot;,&quot;value&quot;:&quot;The certificate is available as soon as you have ended the course.&quot;},{&quot;key&quot;:&quot;courseDetailsLevelBasis&quot;,&quot;value&quot;:&quot;Basic&quot;},{&quot;key&quot;:&quot;privacyPolicyStatusConflict&quot;,&quot;value&quot;:&quot;The End User Licence Agreement has already been accepted on another system. Please log in again.&quot;},{&quot;key&quot;:&quot;strMediaDetailsPreview&quot;,&quot;value&quot;:&quot;Preview&quot;},{&quot;key&quot;:&quot;strCourseBtnEnrolCourse&quot;,&quot;value&quot;:&quot;Enrol&quot;},{&quot;key&quot;:&quot;btnAttTrackingRevealShowDetails&quot;,&quot;value&quot;:&quot;Cancel&quot;},{&quot;key&quot;:&quot;strSelectSupervisorPlaceholder&quot;,&quot;value&quot;:&quot;Select supervisor&quot;},{&quot;key&quot;:&quot;signupTermsText&quot;,&quot;value&quot;:&quot;I accept the &lt;a href=\&quot;{0}\&quot; target=\&quot;_blank\&quot;&gt;Terms of Use&lt;\/a&gt;&quot;},{&quot;key&quot;:&quot;strUSIStatus&quot;,&quot;value&quot;:&quot;Unique Student Identifier&quot;},{&quot;key&quot;:&quot;naviLinkTitleFaq&quot;,&quot;value&quot;:&quot;Open FAQ&quot;},{&quot;key&quot;:&quot;strLiveProctoredTestTileInfo&quot;,&quot;value&quot;:&quot;Requires scheduling.&quot;},{&quot;key&quot;:&quot;userprofileUsiStateNameNSW&quot;,&quot;value&quot;:&quot;New South Wales&quot;},{&quot;key&quot;:&quot;videojsModalWindow&quot;,&quot;value&quot;:&quot;Modal window&quot;},{&quot;key&quot;:&quot;qtiTestSubmissionDialogBody&quot;,&quot;value&quot;:&quot;Would you like to submit the assessment? This action cannot be undone.&quot;},{&quot;key&quot;:&quot;loginSecurityOverlayTitle&quot;,&quot;value&quot;:&quot;Secure login&quot;},{&quot;key&quot;:&quot;strGeneral&quot;,&quot;value&quot;:&quot;General&quot;},{&quot;key&quot;:&quot;strCannotUnsubscribeToChannelMessage&quot;,&quot;value&quot;:&quot;Unsubscribing was not successful.&quot;},{&quot;key&quot;:&quot;courseEnrolmentStaffBooked&quot;,&quot;value&quot;:&quot;The course has been enrolled for an employee.&quot;},{&quot;key&quot;:&quot;supervisor.registration.selectable&quot;,&quot;value&quot;:&quot;Not yet enrolled in the course.&quot;},{&quot;key&quot;:&quot;strTrainingCalendarContentTypeVirtualClassroom&quot;,&quot;value&quot;:&quot;Virtual classroom&quot;},{&quot;key&quot;:&quot;ch_form_image_drop_indicator&quot;,&quot;value&quot;:&quot;Drop your files here&quot;},{&quot;key&quot;:&quot;courseEnrolmentDialogMultipleRegistrationOrderBody&quot;,&quot;value&quot;:&quot;You have already enrolled in the course &lt;span class=\&quot;reveal-dialog-text-highlight\&quot;&gt;%COURSE_NAME%&lt;\/span&gt;. It is therefore not possible to enrol in a course with the same course template. The enrolment will be cancelled.&quot;},{&quot;key&quot;:&quot;strCoursesAvailableNow&quot;,&quot;value&quot;:&quot;{{nrCourses}} Courses available&quot;},{&quot;key&quot;:&quot;strNoCertified&quot;,&quot;value&quot;:&quot;Not certified&quot;},{&quot;key&quot;:&quot;strReview&quot;,&quot;value&quot;:&quot;Rating&quot;},{&quot;key&quot;:&quot;courseEmployeeCancelledSubLine&quot;,&quot;value&quot;:&quot;Employee's booking has been cancelled&quot;},{&quot;key&quot;:&quot;dashboardTaskCourse&quot;,&quot;value&quot;:&quot;Course&quot;},{&quot;key&quot;:&quot;strButtonEnrolmentData&quot;,&quot;value&quot;:&quot;Enrolment data&quot;},{&quot;key&quot;:&quot;strCourseSubscriptionState_AGREED&quot;,&quot;value&quot;:&quot;Confirmed&quot;},{&quot;key&quot;:&quot;noBadgesAvailable&quot;,&quot;value&quot;:&quot;There are no badges available.&quot;},{&quot;key&quot;:&quot;videojsSubtitlesSettings&quot;,&quot;value&quot;:&quot;Subtitle settings&quot;},{&quot;key&quot;:&quot;strSelectedCoursesSubtitle&quot;,&quot;value&quot;:&quot;After selecting all relevant courses, you can proceed with the enrolment process&quot;},{&quot;key&quot;:&quot;strCourseSubscriptionState_PREBOOKED&quot;,&quot;value&quot;:&quot;Pre-booked&quot;},{&quot;key&quot;:&quot;priceFreeSubline&quot;,&quot;value&quot;:&quot;Price&quot;},{&quot;key&quot;:&quot;strEnrollmentStatusFAILED&quot;,&quot;value&quot;:&quot;Failed&quot;},{&quot;key&quot;:&quot;strProgrammePrerequisitesEnrolmentBookMessageNotMandatory&quot;,&quot;value&quot;:&quot;The staff member that you would like to register does not meet the recommended requirements for this learning path. Do you want to continue with the registration in spite of this?&quot;},{&quot;key&quot;:&quot;strExamityProctoringLiveStandard&quot;,&quot;value&quot;:&quot;Live Standard&quot;},{&quot;key&quot;:&quot;videojsRestoreAllSettingsToTheDefaultValues&quot;,&quot;value&quot;:&quot;Restore all settings to the default values&quot;},{&quot;key&quot;:&quot;strLearningPathLevels&quot;,&quot;value&quot;:&quot;Learning path level&quot;},{&quot;key&quot;:&quot;loginErrorSAMLIdPUrlNotValid&quot;,&quot;value&quot;:&quot;The external identity provider's URL is invalid or the external identity provider is not available.&quot;},{&quot;key&quot;:&quot;ratingBoxInfo&quot;,&quot;value&quot;:&quot;{{currentRating}} of {{ maximumRating }} stars&quot;},{&quot;key&quot;:&quot;languageCode_el-gr&quot;,&quot;value&quot;:&quot;\u0395\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03ac&quot;},{&quot;key&quot;:&quot;strCourseBtnEnrolEmployeeCourse&quot;,&quot;value&quot;:&quot;Enrol employee&quot;},{&quot;key&quot;:&quot;courseOrderHeadline&quot;,&quot;value&quot;:&quot;Request now&quot;},{&quot;key&quot;:&quot;strSystemMetaDataAttributeDuration&quot;,&quot;value&quot;:&quot;Duration in hours (10120)&quot;},{&quot;key&quot;:&quot;csSearchTermTitle&quot;,&quot;value&quot;:&quot;Your search term&quot;},{&quot;key&quot;:&quot;videojsMute&quot;,&quot;value&quot;:&quot;Mute&quot;},{&quot;key&quot;:&quot;strBreadcrumbsLearningStatusPageName&quot;,&quot;value&quot;:&quot;Learning status&quot;},{&quot;key&quot;:&quot;mTypeFaqName&quot;,&quot;value&quot;:&quot;FAQ&quot;},{&quot;key&quot;:&quot;strProgrammeAvailableNow&quot;,&quot;value&quot;:&quot;Learning path available&quot;},{&quot;key&quot;:&quot;strProfileNotSaved&quot;,&quot;value&quot;:&quot;Failed to save profile&quot;},{&quot;key&quot;:&quot;courseShowMyCourses&quot;,&quot;value&quot;:&quot;My learning status&quot;},{&quot;key&quot;:&quot;mTypeTemplate&quot;,&quot;value&quot;:&quot;Course template&quot;},{&quot;key&quot;:&quot;strPrerequisitesSetEntryStatusFulfilled&quot;,&quot;value&quot;:&quot;Fulfilled prerequisite&quot;},{&quot;key&quot;:&quot;strMyProgrammesDetailRevealCommentLabel&quot;,&quot;value&quot;:&quot;Note&quot;},{&quot;key&quot;:&quot;strTeamsGroupSufix&quot;,&quot;value&quot;:&quot;Group Sufix&quot;},{&quot;key&quot;:&quot;aboutOpenCourseWorldTitle&quot;,&quot;value&quot;:&quot;Holistic Learning Environment&quot;},{&quot;key&quot;:&quot;nextComponent&quot;,&quot;value&quot;:&quot;Next&quot;},{&quot;key&quot;:&quot;passwordRequestSupportEmail&quot;,&quot;value&quot;:&quot;mailto:CHANGE_ME@im-c.de&quot;},{&quot;key&quot;:&quot;myStaffPageTitle&quot;,&quot;value&quot;:&quot;My staff&quot;},{&quot;key&quot;:&quot;qtiTestRestartDialogSubmitButtonText&quot;,&quot;value&quot;:&quot;Yes, restart test&quot;},{&quot;key&quot;:&quot;loginErrorMessagePasswordRequired&quot;,&quot;value&quot;:&quot;Please enter your password&quot;},{&quot;key&quot;:&quot;videojsOpensCaptionsSettingsDialog&quot;,&quot;value&quot;:&quot;, opens dialogue settings&quot;},{&quot;key&quot;:&quot;courseContentAvailableFromTo&quot;,&quot;value&quot;:&quot;{0} to {1}&quot;},{&quot;key&quot;:&quot;ratingInfo__STRUCTURE&quot;,&quot;value&quot;:&quot;Structure&quot;},{&quot;key&quot;:&quot;strCourseSubscriptionState_PREBOOKING_REFUSED&quot;,&quot;value&quot;:&quot;Reservation refused&quot;},{&quot;key&quot;:&quot;bypassSyllabus&quot;,&quot;value&quot;:&quot;Skip to course module&quot;},{&quot;key&quot;:&quot;videojsSubtitles&quot;,&quot;value&quot;:&quot;Subtitle&quot;},{&quot;key&quot;:&quot;strCommonDay2Min&quot;,&quot;value&quot;:&quot;Mon&quot;},{&quot;key&quot;:&quot;bypassCourseItem&quot;,&quot;value&quot;:&quot;Skip to content&quot;},{&quot;key&quot;:&quot;courseConcludeMessage&quot;,&quot;value&quot;:&quot;Do you want to conclude the course? Before concluding the course, please ensure that you have processed all the necessary components.&quot;},{&quot;key&quot;:&quot;iddTimes&quot;,&quot;value&quot;:&quot;IDD time since {{period}}: {{hours}} hour(s) {{minutes}} minute(s)&quot;},{&quot;key&quot;:&quot;ICON_DOWNLOAD_CERTIFICATE&quot;,&quot;value&quot;:&quot;Download course certificate&quot;},{&quot;key&quot;:&quot;strRemove&quot;,&quot;value&quot;:&quot;Remove&quot;},{&quot;key&quot;:&quot;qtiTestRestartDialogCancelButtonTitle&quot;,&quot;value&quot;:&quot;Continue&quot;},{&quot;key&quot;:&quot;ratingBoxRatingCount&quot;,&quot;value&quot;:&quot;{{count}} Ratings&quot;},{&quot;key&quot;:&quot;mTypeWikiName&quot;,&quot;value&quot;:&quot;Wiki&quot;},{&quot;key&quot;:&quot;effortTotal&quot;,&quot;value&quot;:&quot;Total effort&quot;},{&quot;key&quot;:&quot;shareLearningPathOperationSuccess&quot;,&quot;value&quot;:&quot;The learning path was successfully shared.&quot;},{&quot;key&quot;:&quot;strCourseActionsText&quot;,&quot;value&quot;:&quot;Course actions&quot;},{&quot;key&quot;:&quot;scoStatusNotStarted&quot;,&quot;value&quot;:&quot;Not processed yet&quot;},{&quot;key&quot;:&quot;naviLinkTitleMyExperiences&quot;,&quot;value&quot;:&quot;Open my experience&quot;},{&quot;key&quot;:&quot;strSupervisorCancellationRevealHeadline&quot;,&quot;value&quot;:&quot;Do you want to cancel the \&quot;{{course}}\&quot; course for \&quot;{{currentUser}}\&quot;?&quot;},{&quot;key&quot;:&quot;strWebExEventContentType&quot;,&quot;value&quot;:&quot;WebEx Event&quot;},{&quot;key&quot;:&quot;feedbackSubmittedNotification&quot;,&quot;value&quot;:&quot;Your feedback has been submitted.&quot;},{&quot;key&quot;:&quot;mRating1More&quot;,&quot;value&quot;:&quot;1 star &amp; more&quot;},{&quot;key&quot;:&quot;courseStart&quot;,&quot;value&quot;:&quot;Course starts&quot;},{&quot;key&quot;:&quot;error403MessageTitle&quot;,&quot;value&quot;:&quot;Access forbidden&quot;},{&quot;key&quot;:&quot;courseConcludeMainText&quot;,&quot;value&quot;:&quot;If you have fulfilled all requirements, you can close this course here.&quot;},{&quot;key&quot;:&quot;certificateTitle&quot;,&quot;value&quot;:&quot;Certificate&quot;},{&quot;key&quot;:&quot;strEnrollmentStatusPREBOOKING_REFUSED&quot;,&quot;value&quot;:&quot;Pre-booking request rejected&quot;},{&quot;key&quot;:&quot;strUnlimitedWaitingListPlaces&quot;,&quot;value&quot;:&quot;Unlimited waiting list places&quot;},{&quot;key&quot;:&quot;enrolmentformPreferencesSectionPreferredStartDate&quot;,&quot;value&quot;:&quot;Start of the pre-booking period&quot;},{&quot;key&quot;:&quot;strProgrammeStatusProgressEnded&quot;,&quot;value&quot;:&quot;Ended on {{endDate}}&quot;},{&quot;key&quot;:&quot;reference&quot;,&quot;value&quot;:&quot;Reference&quot;},{&quot;key&quot;:&quot;courseCertificateDownload&quot;,&quot;value&quot;:&quot;Download certificate&quot;},{&quot;key&quot;:&quot;jobProfileResultCountSingularSkillsMultipleJobProfilesFilteredBy&quot;,&quot;value&quot;:&quot;1 Skill in {{ jobProfileCount }} Job profiles, filtered by:&quot;},{&quot;key&quot;:&quot;cancelDeclinePrivacyPolicy&quot;,&quot;value&quot;:&quot;Cancel&quot;},{&quot;key&quot;:&quot;strCourseLearningForm&quot;,&quot;value&quot;:&quot;Learning mode&quot;},{&quot;key&quot;:&quot;strMessageDeletingRatingError&quot;,&quot;value&quot;:&quot;There was error deleting the rating.&quot;},{&quot;key&quot;:&quot;strBreadcrumbsCatalogPageName&quot;,&quot;value&quot;:&quot;Catalogue&quot;},{&quot;key&quot;:&quot;strProgrammeEnrolSuccessMsg&quot;,&quot;value&quot;:&quot;The enrolment for the learning path was successful&quot;},{&quot;key&quot;:&quot;strAccountActivatedFailParagraph&quot;,&quot;value&quot;:&quot;This often happens for one of the following reasons:&quot;},{&quot;key&quot;:&quot;personalAreaCourseStatusRegisteredFuture&quot;,&quot;value&quot;:&quot;Can be started on $START_DATE$&quot;},{&quot;key&quot;:&quot;courseOrderedPendingApproval&quot;,&quot;value&quot;:&quot;You have applied for this course, but the confirmation is pending&quot;},{&quot;key&quot;:&quot;strPrebookedCoursesAvailableSoon&quot;,&quot;value&quot;:&quot;Pre-ordered \u2013 courses available soon&quot;},{&quot;key&quot;:&quot;strTableSawCancellationListTitle&quot;,&quot;value&quot;:&quot;Cancellation list&quot;},{&quot;key&quot;:&quot;strPrerequisitesSetEntryStatusOptional&quot;,&quot;value&quot;:&quot;This prerequisite is not fulfilled, but it is only a recommendation, so the target status is not mandatory&quot;},{&quot;key&quot;:&quot;strWebExTrainingContentType&quot;,&quot;value&quot;:&quot;WebEx Training&quot;},{&quot;key&quot;:&quot;strClassificationsFilter&quot;,&quot;value&quot;:&quot;Classifications&quot;},{&quot;key&quot;:&quot;videojsSemiTransparent&quot;,&quot;value&quot;:&quot;Semi-transparent&quot;},{&quot;key&quot;:&quot;userprofileUsiDtImmiCardDocumentType&quot;,&quot;value&quot;:&quot;Immigration certificate&quot;},{&quot;key&quot;:&quot;onTheJobTraining&quot;,&quot;value&quot;:&quot;(On-the-job training)&quot;},{&quot;key&quot;:&quot;languageCode_it-it&quot;,&quot;value&quot;:&quot;Italiano&quot;},{&quot;key&quot;:&quot;courseConcludeESignatureRequiredMessage&quot;,&quot;value&quot;:&quot;This course requires you to confirm completion with your login and password.&quot;},{&quot;key&quot;:&quot;strMediaAvailabilityInfoFromUntil&quot;,&quot;value&quot;:&quot;This component is accessible from {{startDate}} until {{endDate}}&quot;},{&quot;key&quot;:&quot;strLearningpathPathOverview&quot;,&quot;value&quot;:&quot;Show path overview&quot;},{&quot;key&quot;:&quot;skillAssessmentModalExpiryHint&quot;,&quot;value&quot;:&quot;In order to reduce the running time of the Skill, you can schedule a one-off or a gradual Skill expiry.&quot;},{&quot;key&quot;:&quot;strProgrammeEnrolmentPrerequisiteDialogOptional&quot;,&quot;value&quot;:&quot;You do not fulfil the recommended prerequisites for this learning path. Do you still want to continue the registration process?&quot;},{&quot;key&quot;:&quot;strCommonDay6Short&quot;,&quot;value&quot;:&quot;Fri&quot;},{&quot;key&quot;:&quot;myStaffSearchFilterTooltipOnShowText&quot;,&quot;value&quot;:&quot;Show filters&quot;},{&quot;key&quot;:&quot;strCreateOJT&quot;,&quot;value&quot;:&quot;Assign on-the-job training&quot;},{&quot;key&quot;:&quot;courseConcludeProceedButton&quot;,&quot;value&quot;:&quot;Proceed with course&quot;},{&quot;key&quot;:&quot;strProgrammeAlreadyAppliedInfo&quot;,&quot;value&quot;:&quot;You have applied for this learning path, but the confirmation is pending&quot;},{&quot;key&quot;:&quot;strEnrolmentConditionsApply&quot;,&quot;value&quot;:&quot;Enrolment conditions apply&quot;},{&quot;key&quot;:&quot;certificationDetailsButtonTooltip&quot;,&quot;value&quot;:&quot;Show details&quot;},{&quot;key&quot;:&quot;showAllRunningCourses&quot;,&quot;value&quot;:&quot;Show all running courses&quot;},{&quot;key&quot;:&quot;strUserEditSectionRevealProceedButtonTooltip&quot;,&quot;value&quot;:&quot;Save changes&quot;},{&quot;key&quot;:&quot;strCancelCommentText&quot;,&quot;value&quot;:&quot;Comment&quot;},{&quot;key&quot;:&quot;syncScormData&quot;,&quot;value&quot;:&quot;Transfer results&quot;},{&quot;key&quot;:&quot;feedbackSubject&quot;,&quot;value&quot;:&quot;Portal Feedback&quot;},{&quot;key&quot;:&quot;coursePrebookEnddateAttributeHeadline&quot;,&quot;value&quot;:&quot;Preferred end date&quot;},{&quot;key&quot;:&quot;MentoringReportMenuItem&quot;,&quot;value&quot;:&quot;Mentoring report&quot;},{&quot;key&quot;:&quot;userprofileUsiPreConfirmationNote&quot;,&quot;value&quot;:&quot;Your personal information will not be stored. The information will be sent to the Attorney General\u00c2\u00b4s Department Document Verification Service (DVS) to be verified.&quot;},{&quot;key&quot;:&quot;strPrerequisitesSetHeaderCurrentStatus&quot;,&quot;value&quot;:&quot;Fulfillment&quot;},{&quot;key&quot;:&quot;strErrorMessageNoEmailAddress&quot;,&quot;value&quot;:&quot;No email address has been entered. The verification code could not be sent.&quot;},{&quot;key&quot;:&quot;strCourseUploadCertificate&quot;,&quot;value&quot;:&quot;Upload certificate&quot;},{&quot;key&quot;:&quot;strProgramSuccessfulConfirmationOnWaitlistMessage&quot;,&quot;value&quot;:&quot;The learning path is full, and the participant was placed on the waiting list.&quot;},{&quot;key&quot;:&quot;effortPerWeek&quot;,&quot;value&quot;:&quot;Effort per week&quot;},{&quot;key&quot;:&quot;fieldMandatoryViolation&quot;,&quot;value&quot;:&quot;Please complete all required fields!&quot;},{&quot;key&quot;:&quot;iddValue&quot;,&quot;value&quot;:&quot;{{hours}}:{{minutes}}h&quot;},{&quot;key&quot;:&quot;pageTitleLogin&quot;,&quot;value&quot;:&quot;Login&quot;},{&quot;key&quot;:&quot;CI_TLM_TOOLBAR_FILTER&quot;,&quot;value&quot;:&quot;Filters&quot;},{&quot;key&quot;:&quot;strAccountActivatedInfoSign&quot;,&quot;value&quot;:&quot;Your user account must be activated in order to log in to the system.&quot;},{&quot;key&quot;:&quot;competenciesCertificationProgressBarStartDate&quot;,&quot;value&quot;:&quot;Start on: {{startDate}}&quot;},{&quot;key&quot;:&quot;strLevelProtectionActive&quot;,&quot;value&quot;:&quot;Level protection active&quot;},{&quot;key&quot;:&quot;userprofileUsiCitizenStockNumberTitle&quot;,&quot;value&quot;:&quot;Inventory number&quot;},{&quot;key&quot;:&quot;batchEnrollmentButtonText&quot;,&quot;value&quot;:&quot;Batch registration&quot;},{&quot;key&quot;:&quot;courseAddToWaitingListDialogSelfregistrationTitle&quot;,&quot;value&quot;:&quot;Add on the waiting list&quot;},{&quot;key&quot;:&quot;strUserEditSectionRevealProceedButtonText&quot;,&quot;value&quot;:&quot;Save&quot;},{&quot;key&quot;:&quot;manageMenu&quot;,&quot;value&quot;:&quot;Manage&quot;},{&quot;key&quot;:&quot;strCourseTemplateNavigation&quot;,&quot;value&quot;:&quot;Go to course template&quot;},{&quot;key&quot;:&quot;strMaxLengthReached&quot;,&quot;value&quot;:&quot;You have reached the maximum character limit&quot;},{&quot;key&quot;:&quot;strMyCoursesCancellationSuccessMsg&quot;,&quot;value&quot;:&quot;The course was cancelled.&quot;},{&quot;key&quot;:&quot;strEmployeeHeaderCourseDescription&quot;,&quot;value&quot;:&quot;Course details&quot;},{&quot;key&quot;:&quot;strMyCoursesRemovePrebookingRevealHeadline&quot;,&quot;value&quot;:&quot;Remove pre-booking&quot;},{&quot;key&quot;:&quot;sessionErrorDetails&quot;,&quot;value&quot;:&quot;To continue working, you must log in again. After successful log in, you will be returned to the current page.&quot;},{&quot;key&quot;:&quot;courseEnrolmentDialogMultipleRegistrationAbortBtnText&quot;,&quot;value&quot;:&quot;Cancel&quot;},{&quot;key&quot;:&quot;naviLinkTitlePersonalArea&quot;,&quot;value&quot;:&quot;Open my contents&quot;},{&quot;key&quot;:&quot;courseConclude&quot;,&quot;value&quot;:&quot;Conclude course&quot;},{&quot;key&quot;:&quot;strEnrolToACourse&quot;,&quot;value&quot;:&quot;Enrol employee&quot;},{&quot;key&quot;:&quot;usiErrorCommunicationProblemMessage&quot;,&quot;value&quot;:&quot;The required authorisation service is inaccessible. Please contact ATO at DPO@ato.gov.au and try again after some time.&quot;},{&quot;key&quot;:&quot;strOpenDescription&quot;,&quot;value&quot;:&quot;Open description&quot;},{&quot;key&quot;:&quot;mReviews&quot;,&quot;value&quot;:&quot;Ratings&quot;},{&quot;key&quot;:&quot;deleteAccountDialogProceedButtonTooltip&quot;,&quot;value&quot;:&quot;Delete profile now&quot;},{&quot;key&quot;:&quot;courseFeatureCertificate&quot;,&quot;value&quot;:&quot;certification&quot;},{&quot;key&quot;:&quot;programmeSessionsTitle&quot;,&quot;value&quot;:&quot;Available learning paths&quot;},{&quot;key&quot;:&quot;userprofileUsiDriversLicenceLicenseNumberTitle&quot;,&quot;value&quot;:&quot;Driving licence number&quot;},{&quot;key&quot;:&quot;strLockedItemText&quot;,&quot;value&quot;:&quot;Section locked&quot;},{&quot;key&quot;:&quot;ch_selected_filters_none&quot;,&quot;value&quot;:&quot;No filters selected&quot;},{&quot;key&quot;:&quot;strCourseStatusPassedCertificate&quot;,&quot;value&quot;:&quot;Finished on {{completionDate}}&quot;},{&quot;key&quot;:&quot;coursePrebookingRequestButtonText&quot;,&quot;value&quot;:&quot;Request pre-booking&quot;},{&quot;key&quot;:&quot;strCourseSubscriptionState_SUCCESSFULLY_COMPLETED&quot;,&quot;value&quot;:&quot;Completed successfully&quot;},{&quot;key&quot;:&quot;strOr&quot;,&quot;value&quot;:&quot;or&quot;},{&quot;key&quot;:&quot;bypassLandingPage&quot;,&quot;value&quot;:&quot;Skip to featured courses&quot;},{&quot;key&quot;:&quot;yourNextCourseInCatalogNote&quot;,&quot;value&quot;:&quot;Visit us again soon!&quot;},{&quot;key&quot;:&quot;strPrebookedCoursesAvailableNowWithDueDate&quot;,&quot;value&quot;:&quot;Courses available. Due on {{dueDate}}&quot;},{&quot;key&quot;:&quot;toggleJobProfile&quot;,&quot;value&quot;:&quot;Switch view&quot;},{&quot;key&quot;:&quot;qtiFeedbackCancellationBtn&quot;,&quot;value&quot;:&quot;Cancel feedback&quot;},{&quot;key&quot;:&quot;strBtnDownload&quot;,&quot;value&quot;:&quot;Download&quot;},{&quot;key&quot;:&quot;adobeRecording&quot;,&quot;value&quot;:&quot;Recordings&quot;},{&quot;key&quot;:&quot;strForTheCourse&quot;,&quot;value&quot;:&quot;for the course&quot;},{&quot;key&quot;:&quot;employeeWaitingSubline&quot;,&quot;value&quot;:&quot;Employee is on the waiting list&quot;},{&quot;key&quot;:&quot;languageCode_zh-hans&quot;,&quot;value&quot;:&quot;\u4e2d\u6587 (\u7b80\u4f53)&quot;},{&quot;key&quot;:&quot;languageCode_zh-hant&quot;,&quot;value&quot;:&quot;\u4e2d\u6587 (\u50b3\u7d71)&quot;},{&quot;key&quot;:&quot;noCoursesAvailable&quot;,&quot;value&quot;:&quot;No courses available&quot;},{&quot;key&quot;:&quot;courseConcludeESignatureError403&quot;,&quot;value&quot;:&quot;The combination of user name and password does not correspond to the user who is logged in.&quot;},{&quot;key&quot;:&quot;courseConcludeESignatureError409&quot;,&quot;value&quot;:&quot;The course status has changed in the meantime. Please close the dialogue.&quot;},{&quot;key&quot;:&quot;strExternalRecordings&quot;,&quot;value&quot;:&quot;External courses&quot;},{&quot;key&quot;:&quot;strExportBadgeErrorMessage&quot;,&quot;value&quot;:&quot;The badge could not be exported. A possible cause could be that open badges are not enabled on the system. Please contact the administrator or try again later.&quot;},{&quot;key&quot;:&quot;strCourseBtnDownloadCertificate&quot;,&quot;value&quot;:&quot;Download certificate&quot;},{&quot;key&quot;:&quot;qtiTestSaveBtn&quot;,&quot;value&quot;:&quot;Save test&quot;},{&quot;key&quot;:&quot;strExpandLevelStructure&quot;,&quot;value&quot;:&quot;Display level structure&quot;},{&quot;key&quot;:&quot;courseBookingErrorCloseTitle&quot;,&quot;value&quot;:&quot;Back to the course description&quot;},{&quot;key&quot;:&quot;ltiReturnPageTitleError&quot;,&quot;value&quot;:&quot;The external learning content has ended with an error:&quot;},{&quot;key&quot;:&quot;courseStaffPrebookingButtonText&quot;,&quot;value&quot;:&quot;Pre-book employee&quot;},{&quot;key&quot;:&quot;strEnrollmentStatusPREBOOKING_REQUESTED&quot;,&quot;value&quot;:&quot;Preregistration requested&quot;},{&quot;key&quot;:&quot;naviCatalogLinkBundle&quot;,&quot;value&quot;:&quot;Catalogue&quot;},{&quot;key&quot;:&quot;strNoTrainingModulesFiltered&quot;,&quot;value&quot;:&quot;No training modules available based on the applied filters&quot;},{&quot;key&quot;:&quot;strViewDetails&quot;,&quot;value&quot;:&quot;View details&quot;},{&quot;key&quot;:&quot;strCommonConditions&quot;,&quot;value&quot;:&quot;Conditions&quot;},{&quot;key&quot;:&quot;strErrorLoadingRatingInformations&quot;,&quot;value&quot;:&quot;Error loading rating information&quot;},{&quot;key&quot;:&quot;courseEnrolmentPrerequisiteDialogOrderBodyError&quot;,&quot;value&quot;:&quot;You do not fulfil the prerequisites for participation in this course. If you would still like to participate, please contact the administrator responsible.&quot;},{&quot;key&quot;:&quot;openCourseSyllabusItemIsUnsupported&quot;,&quot;value&quot;:&quot;Only processable in Learning Suite&quot;},{&quot;key&quot;:&quot;strSelectOneOrMoreCertificates&quot;,&quot;value&quot;:&quot;Please select one or more certificates to proceed.&quot;},{&quot;key&quot;:&quot;strLoginToPurchase&quot;,&quot;value&quot;:&quot;Login to purchase&quot;},{&quot;key&quot;:&quot;strProgrammeAvailableFromTo&quot;,&quot;value&quot;:&quot;{0} until {1}&quot;},{&quot;key&quot;:&quot;createFeedbackButton&quot;,&quot;value&quot;:&quot;Submit feedback&quot;},{&quot;key&quot;:&quot;selectDueDateMandatoryField&quot;,&quot;value&quot;:&quot;Please select a due date&quot;},{&quot;key&quot;:&quot;partners&quot;,&quot;value&quot;:&quot;Partner&quot;},{&quot;key&quot;:&quot;mediaTypeWbtScorm&quot;,&quot;value&quot;:&quot;Web-based training&quot;},{&quot;key&quot;:&quot;passwordRequestErrorMessageInvalidLogin&quot;,&quot;value&quot;:&quot;Please enter your user name&quot;},{&quot;key&quot;:&quot;courseEnrolmentBackToCourseDetailsBtnText&quot;,&quot;value&quot;:&quot;Back&quot;},{&quot;key&quot;:&quot;metaTagDescriptionPasswordRequestPage&quot;,&quot;value&quot;:&quot;Request a password reset&quot;},{&quot;key&quot;:&quot;revealTaskApprovalReasonBody&quot;,&quot;value&quot;:&quot;Do you want to approve participation on the course {{courseName}} for the user {{userName}} ?&quot;},{&quot;key&quot;:&quot;courseReservedEmployeeWaitingSubLine&quot;,&quot;value&quot;:&quot;A place on the waiting list has been reserved for the employee&quot;},{&quot;key&quot;:&quot;strCurrent&quot;,&quot;value&quot;:&quot;Current&quot;},{&quot;key&quot;:&quot;courseTemplateUserHintInProgress&quot;,&quot;value&quot;:&quot;You have already signed up for a course from this template.&quot;},{&quot;key&quot;:&quot;selectIdentificationMandatoryField&quot;,&quot;value&quot;:&quot;Please select an identification&quot;},{&quot;key&quot;:&quot;strCourseUploadExternalCertificate&quot;,&quot;value&quot;:&quot;Upload certificate&quot;},{&quot;key&quot;:&quot;strCommonDay1Short&quot;,&quot;value&quot;:&quot;Sun&quot;},{&quot;key&quot;:&quot;userprofileUsiMedicareTownCityOfBirthTitle&quot;,&quot;value&quot;:&quot;Place of birth&quot;},{&quot;key&quot;:&quot;courseEmptyText&quot;,&quot;value&quot;:&quot;This course has no content&quot;},{&quot;key&quot;:&quot;personalAreaCourseStatusStartedWithDueDate&quot;,&quot;value&quot;:&quot;Due on $DUE_DATE$&quot;},{&quot;key&quot;:&quot;strCourseStatusStarteableFrom&quot;,&quot;value&quot;:&quot;{{startDate}} to {{endDate}}&quot;},{&quot;key&quot;:&quot;shareCoursePersonalNoteButtonTitle&quot;,&quot;value&quot;:&quot;Attach a personal note&quot;},{&quot;key&quot;:&quot;strNoPointsAchievedYet&quot;,&quot;value&quot;:&quot;No points achieved yet&quot;},{&quot;key&quot;:&quot;qtiTestCancellationDialogCancelButtonTitle&quot;,&quot;value&quot;:&quot;Continue your test&quot;},{&quot;key&quot;:&quot;error403Title&quot;,&quot;value&quot;:&quot;403 Error&quot;},{&quot;key&quot;:&quot;loginErrorMessageLoginRequired&quot;,&quot;value&quot;:&quot;Please enter your login&quot;},{&quot;key&quot;:&quot;courseContentStatusNotEvaluated&quot;,&quot;value&quot;:&quot;Not yet evaluated&quot;},{&quot;key&quot;:&quot;landingPageStartsAt&quot;,&quot;value&quot;:&quot;Starts on&lt;br&gt;&quot;},{&quot;key&quot;:&quot;strCoursePrerequisitesCancellationBySupervisorDependenciesCancelBtnText&quot;,&quot;value&quot;:&quot;Cancel&quot;},{&quot;key&quot;:&quot;strMyProgrammesDetailRevealCancellationHeadline&quot;,&quot;value&quot;:&quot;Would you like to cancel the learning path?&quot;},{&quot;key&quot;:&quot;strMessage&quot;,&quot;value&quot;:&quot;Message&quot;},{&quot;key&quot;:&quot;strSelf_registration_with_confirmation&quot;,&quot;value&quot;:&quot;Self-enrolment with confirmation&quot;},{&quot;key&quot;:&quot;strTrainingCalendarFilter&quot;,&quot;value&quot;:&quot;Filters&quot;},{&quot;key&quot;:&quot;ckEditorImageUploadSelectFile&quot;,&quot;value&quot;:&quot;Select file&quot;},{&quot;key&quot;:&quot;enrollmentDeletedSubLine&quot;,&quot;value&quot;:&quot;Deletion of enrolment in progress&quot;},{&quot;key&quot;:&quot;courseContentDownloadVideoTranscript&quot;,&quot;value&quot;:&quot;Save transcript&quot;},{&quot;key&quot;:&quot;courseEmployeeReservedSubLine&quot;,&quot;value&quot;:&quot;The course has been reserved for the employee&quot;},{&quot;key&quot;:&quot;supervisor.participants.payment.status.failed&quot;,&quot;value&quot;:&quot;The payment for the staff member(s) has failed.&quot;},{&quot;key&quot;:&quot;coursePrebookingRequestedHint&quot;,&quot;value&quot;:&quot;You have requested the pre-booking for this course.&quot;},{&quot;key&quot;:&quot;strRemovePrebooking&quot;,&quot;value&quot;:&quot;Remove pre-booking&quot;},{&quot;key&quot;:&quot;strDifferentPriceMessage&quot;,&quot;value&quot;:&quot;The price of the course for the staff member selected is {{price}}. Continue?&quot;},{&quot;key&quot;:&quot;strCoursesAvailable&quot;,&quot;value&quot;:&quot;Courses available&quot;},{&quot;key&quot;:&quot;strSelfEnrolmentAvailableSoon&quot;,&quot;value&quot;:&quot;Self-registration available soon&quot;},{&quot;key&quot;:&quot;strBtnMobileAppAndroidQrCodeDownload&quot;,&quot;value&quot;:&quot;Download QR code&quot;},{&quot;key&quot;:&quot;staffEnrolmentNoMembers&quot;,&quot;value&quot;:&quot;No staff member available.&quot;},{&quot;key&quot;:&quot;ICON_MEDIATYPE_EVENT&quot;,&quot;value&quot;:&quot;Event&quot;},{&quot;key&quot;:&quot;scrollToWhatIsAMooc&quot;,&quot;value&quot;:&quot;Scroll to the section about the holistic learning environment&quot;},{&quot;key&quot;:&quot;strInShoppingCartShopifyForEmployee&quot;,&quot;value&quot;:&quot;Remove from cart for employee&quot;},{&quot;key&quot;:&quot;strSelectCoursePlaceholder&quot;,&quot;value&quot;:&quot;Select course&quot;},{&quot;key&quot;:&quot;strSupervisorCancellationRevealSubheadline&quot;,&quot;value&quot;:&quot;Cancellation is equal to non-participation in the course. Please provide a reason for cancellation.&quot;},{&quot;key&quot;:&quot;strBreadcrumbsInternalDashboardPageName&quot;,&quot;value&quot;:&quot;Dashboard&quot;},{&quot;key&quot;:&quot;sendFeedbackButtonTooltip&quot;,&quot;value&quot;:&quot;Send feedback now&quot;},{&quot;key&quot;:&quot;strCommonDecemberFullName&quot;,&quot;value&quot;:&quot;December&quot;},{&quot;key&quot;:&quot;qtiFeedbackCancellationDialogCancelButtonTitle&quot;,&quot;value&quot;:&quot;Continue your feedback&quot;},{&quot;key&quot;:&quot;declineJobProfileButton&quot;,&quot;value&quot;:&quot;Decline job profile&quot;},{&quot;key&quot;:&quot;loginErrorSAMLAuthenticationFailed&quot;,&quot;value&quot;:&quot;Either this user name does not exist in our system or it has been blocked. Please contact your system administrator.&quot;},{&quot;key&quot;:&quot;strBtnRemove&quot;,&quot;value&quot;:&quot;Remove&quot;},{&quot;key&quot;:&quot;strMyCoursesRemoveRevealCancelButton&quot;,&quot;value&quot;:&quot;No, do not remove the course template&quot;},{&quot;key&quot;:&quot;strMyProgrammesCancellationErrorMsg&quot;,&quot;value&quot;:&quot;There were problems with your request:&quot;},{&quot;key&quot;:&quot;jobProfileNumberOfSkills&quot;,&quot;value&quot;:&quot;{{ numberOfSkills }} Skills&quot;},{&quot;key&quot;:&quot;userProfileFieldFormatWrong&quot;,&quot;value&quot;:&quot;Incorrect format&quot;},{&quot;key&quot;:&quot;strGenericDelete&quot;,&quot;value&quot;:&quot;Delete&quot;},{&quot;key&quot;:&quot;staffEnrolmentStaffList&quot;,&quot;value&quot;:&quot;Staff member&quot;},{&quot;key&quot;:&quot;strCourseStatusRegisteredDueDate&quot;,&quot;value&quot;:&quot;Due since {{dueDate}}. Can be started&quot;},{&quot;key&quot;:&quot;coursesTeaserTitle&quot;,&quot;value&quot;:&quot;Courses&quot;},{&quot;key&quot;:&quot;strSelectedUsers&quot;,&quot;value&quot;:&quot;{{length}} selected users&quot;},{&quot;key&quot;:&quot;strBadgeProviderTitle&quot;,&quot;value&quot;:&quot;Provider&quot;},{&quot;key&quot;:&quot;ratingInfo__TUTOR&quot;,&quot;value&quot;:&quot;Tutor&quot;},{&quot;key&quot;:&quot;strReportSkillEditRevealCloseTooltip&quot;,&quot;value&quot;:&quot;Discard current changes to the Skills&quot;},{&quot;key&quot;:&quot;employeeOrderButtonText&quot;,&quot;value&quot;:&quot;Request for employee&quot;},{&quot;key&quot;:&quot;strCommonOf&quot;,&quot;value&quot;:&quot;of&quot;},{&quot;key&quot;:&quot;personalAreaCourseStatusPassed&quot;,&quot;value&quot;:&quot;Successfully completed&quot;},{&quot;key&quot;:&quot;scoStatusFailed&quot;,&quot;value&quot;:&quot;Failed&quot;},{&quot;key&quot;:&quot;languageCode_sl-si&quot;,&quot;value&quot;:&quot;Sloven\u0161\u010dina&quot;},{&quot;key&quot;:&quot;strTrainingPassed&quot;,&quot;value&quot;:&quot;Training passed&quot;},{&quot;key&quot;:&quot;signUpLegend&quot;,&quot;value&quot;:&quot;Please provide the following information to register yourself at {0}&quot;},{&quot;key&quot;:&quot;strAddToShopifyCart&quot;,&quot;value&quot;:&quot;Add to cart&quot;},{&quot;key&quot;:&quot;cancelProfileLogin&quot;,&quot;value&quot;:&quot;Cancel&quot;},{&quot;key&quot;:&quot;videojsYellow&quot;,&quot;value&quot;:&quot;Yellow&quot;},{&quot;key&quot;:&quot;strCanBeStarted&quot;,&quot;value&quot;:&quot;Can be started&quot;},{&quot;key&quot;:&quot;courseContentShowAll&quot;,&quot;value&quot;:&quot;Show all course content&quot;},{&quot;key&quot;:&quot;strSaveChanges&quot;,&quot;value&quot;:&quot;Save changes&quot;},{&quot;key&quot;:&quot;metaTagDescriptionFAQPage&quot;,&quot;value&quot;:&quot;FAQ for&quot;},{&quot;key&quot;:&quot;strProgrammeAlreadyFinished&quot;,&quot;value&quot;:&quot;Ended on {1}&quot;},{&quot;key&quot;:&quot;strFolderExpanded&quot;,&quot;value&quot;:&quot;Folder expanded&quot;},{&quot;key&quot;:&quot;freePlacesMany&quot;,&quot;value&quot;:&quot;%s places&quot;},{&quot;key&quot;:&quot;qtiTestTimeAlertDialogCancelButtonTitle&quot;,&quot;value&quot;:&quot;Close dialogue and proceed with test&quot;},{&quot;key&quot;:&quot;deleteRatingDialogCancelButtonText&quot;,&quot;value&quot;:&quot;Cancel&quot;},{&quot;key&quot;:&quot;strMyCoursesDetailRevealCancellationRequestProceedButton&quot;,&quot;value&quot;:&quot;Request cancellation&quot;},{&quot;key&quot;:&quot;discussionErrorEmptyText&quot;,&quot;value&quot;:&quot;Please enter your text&quot;},{&quot;key&quot;:&quot;supervisor.registration.agreed&quot;,&quot;value&quot;:&quot;Login by the staff member has been confirmed, booking will be made by the administrator.&quot;},{&quot;key&quot;:&quot;topBarBackLabel&quot;,&quot;value&quot;:&quot;Back&quot;},{&quot;key&quot;:&quot;inhouseLibTitle&quot;,&quot;value&quot;:&quot;Plug-ins&quot;},{&quot;key&quot;:&quot;languageCode_ru-ru&quot;,&quot;value&quot;:&quot;P\u0443\u0441\u0441\u043a\u0438\u0439&quot;},{&quot;key&quot;:&quot;videojsDuration&quot;,&quot;value&quot;:&quot;Duration&quot;},{&quot;key&quot;:&quot;videojsDescriptions&quot;,&quot;value&quot;:&quot;Descriptions&quot;},{&quot;key&quot;:&quot;strNoSubject&quot;,&quot;value&quot;:&quot;(No subject)&quot;},{&quot;key&quot;:&quot;strMessageSentSuccessfully&quot;,&quot;value&quot;:&quot;The message has been sent successfully&quot;},{&quot;key&quot;:&quot;copyForumCommentLinkTooltip&quot;,&quot;value&quot;:&quot;Click to copy a direct link to this comment.&quot;},{&quot;key&quot;:&quot;resultCount&quot;,&quot;value&quot;:&quot;{{count}} Results&quot;},{&quot;key&quot;:&quot;strSave&quot;,&quot;value&quot;:&quot;Save&quot;},{&quot;key&quot;:&quot;passwordChangeFormInvalid&quot;,&quot;value&quot;:&quot;Your entry for this form was not valid. Please check the fields marked &lt;span class=\&quot;icon-exclamation-circle icon-text-wrapped\&quot;&gt;&lt;\/span&gt;&quot;},{&quot;key&quot;:&quot;strCourseTabStatusAll&quot;,&quot;value&quot;:&quot;All&quot;},{&quot;key&quot;:&quot;videojsDepressed&quot;,&quot;value&quot;:&quot;Depressed&quot;},{&quot;key&quot;:&quot;strCommonLearner&quot;,&quot;value&quot;:&quot;Learner&quot;},{&quot;key&quot;:&quot;strCommonDay7Min&quot;,&quot;value&quot;:&quot;Sat&quot;},{&quot;key&quot;:&quot;loginErrorSAMLRelayState&quot;,&quot;value&quot;:&quot;\&quot;Relay State\&quot; for the external identity provider is not available or has been manipulated&quot;},{&quot;key&quot;:&quot;strAttributePrebookingPeriodName&quot;,&quot;value&quot;:&quot;Pre-booking start date \/ Pre-booking end date&quot;},{&quot;key&quot;:&quot;shareCoursePersonalNoteButton&quot;,&quot;value&quot;:&quot;Add a personal note&quot;},{&quot;key&quot;:&quot;strSelf_registration_request_with_supervisor_registration&quot;,&quot;value&quot;:&quot;Enrolment request with direct enrolment by the supervisor&quot;},{&quot;key&quot;:&quot;passwordRequestEmailPlaceholder&quot;,&quot;value&quot;:&quot;Your email&quot;},{&quot;key&quot;:&quot;strMin&quot;,&quot;value&quot;:&quot;min&quot;},{&quot;key&quot;:&quot;strDateTo&quot;,&quot;value&quot;:&quot;{name}: to {toDate}&quot;},{&quot;key&quot;:&quot;strPortalFeedback&quot;,&quot;value&quot;:&quot;Feedback&quot;},{&quot;key&quot;:&quot;strTaskLogEmpty&quot;,&quot;value&quot;:&quot;Task log is empty&quot;},{&quot;key&quot;:&quot;courseDiscussionDeletePostText&quot;,&quot;value&quot;:&quot;Do you want to delete the post?&quot;},{&quot;key&quot;:&quot;openViteroMeetingRoom&quot;,&quot;value&quot;:&quot;Enter meeting room&quot;},{&quot;key&quot;:&quot;eventTrackingCheckOutBtnText&quot;,&quot;value&quot;:&quot;Checkout&quot;},{&quot;key&quot;:&quot;strSelectUserPlaceholder&quot;,&quot;value&quot;:&quot;Select user&quot;},{&quot;key&quot;:&quot;strAccountActivatedInfoThanks&quot;,&quot;value&quot;:&quot;Many thanks for logging in!&quot;},{&quot;key&quot;:&quot;courseStartOperation&quot;,&quot;value&quot;:&quot;Start&quot;},{&quot;key&quot;:&quot;strRatingPerCategories&quot;,&quot;value&quot;:&quot;Evaluation per category&quot;},{&quot;key&quot;:&quot;strEditProfile&quot;,&quot;value&quot;:&quot;Personal details&quot;},{&quot;key&quot;:&quot;strCoursePrerequisitesCancellationDependenciesRequestError&quot;,&quot;value&quot;:&quot;The cancellation request could not be uploaded. Please contact the administrator or try again later.&quot;},{&quot;key&quot;:&quot;whatIsAMoocTeaserTitle&quot;,&quot;value&quot;:&quot;IMC Learning Portal&quot;},{&quot;key&quot;:&quot;strFavoriteGroup&quot;,&quot;value&quot;:&quot;Favourites&quot;},{&quot;key&quot;:&quot;naviLinkTakeAction&quot;,&quot;value&quot;:&quot;Actions&quot;},{&quot;key&quot;:&quot;strAttUsageForbiddenNotification&quot;,&quot;value&quot;:&quot;The attendance tracking function is usable for up to {{maxMedias}} course components. Please consider using the course instruction for the media evaluation for this course, or consider compacting the course syllabus into a more reduced number of components.&quot;},{&quot;key&quot;:&quot;firstLoginPasswordChangeErrorRepeatedPassword&quot;,&quot;value&quot;:&quot;Please repeat your password&quot;},{&quot;key&quot;:&quot;strNextLevel&quot;,&quot;value&quot;:&quot;Next level&quot;},{&quot;key&quot;:&quot;pageTitleContact&quot;,&quot;value&quot;:&quot;Contact&quot;},{&quot;key&quot;:&quot;systemInfo&quot;,&quot;value&quot;:&quot;Software Information&quot;},{&quot;key&quot;:&quot;certificateOfCompletionNotAvailableYet&quot;,&quot;value&quot;:&quot;As soon as you have successfully completed the course, you can download your personal certificate here.&quot;},{&quot;key&quot;:&quot;jobProfileResultCountMultipleSkillsMultipleJobProfilesFilteredBy&quot;,&quot;value&quot;:&quot;{{ skillCount }} Skills in {{ jobProfileCount }} Job profiles, filtered by:&quot;},{&quot;key&quot;:&quot;adobeRecordingTitle&quot;,&quot;value&quot;:&quot;Open Recording&quot;},{&quot;key&quot;:&quot;coursesTeaserText&quot;,&quot;value&quot;:&quot;Direct access to the latest catalogue of the platform.&quot;},{&quot;key&quot;:&quot;strDateFromTo&quot;,&quot;value&quot;:&quot;{name}: {fromDate} - {toDate}&quot;},{&quot;key&quot;:&quot;strBreadcrumbsMyStaffsPageName&quot;,&quot;value&quot;:&quot;Employee selection&quot;},{&quot;key&quot;:&quot;strProgrammePrerequisitesCancellationBySupervisorDependenciesInfo&quot;,&quot;value&quot;:&quot;If you\u2019d still like to cancel this learning path , please contact your administrator.&quot;},{&quot;key&quot;:&quot;strLearningPath&quot;,&quot;value&quot;:&quot;Learning path&quot;},{&quot;key&quot;:&quot;strInterestRevealBackText&quot;,&quot;value&quot;:&quot;Back&quot;},{&quot;key&quot;:&quot;strCourseSubscriptionState_RESERVED_ON_PARTICIPANT_LIST&quot;,&quot;value&quot;:&quot;Reserved&quot;},{&quot;key&quot;:&quot;programmeReservedSubLine&quot;,&quot;value&quot;:&quot;You are reserved for this learning path&quot;},{&quot;key&quot;:&quot;datetimepattern&quot;,&quot;value&quot;:&quot;d MMM yyyy HH:mm&quot;},{&quot;key&quot;:&quot;strBreadcrumbTrainingList&quot;,&quot;value&quot;:&quot;Training list&quot;},{&quot;key&quot;:&quot;courseContentDownloadDocument&quot;,&quot;value&quot;:&quot;Save {0} &lt;small&gt;({1})&lt;\/small&gt;&quot;},{&quot;key&quot;:&quot;userprofileUsiBirthCertRegistrationNumberTitle&quot;,&quot;value&quot;:&quot;Registration number&quot;},{&quot;key&quot;:&quot;strPrerequisitesDueDateNoteText&quot;,&quot;value&quot;:&quot;Due date for fulfilment of mandatory prerequisites: &lt;b&gt;{{dateText}}&lt;\/b&gt;&quot;},{&quot;key&quot;:&quot;durationOfUse&quot;,&quot;value&quot;:&quot;Available after start&quot;},{&quot;key&quot;:&quot;strSystemMetaDataAttributeLocation&quot;,&quot;value&quot;:&quot;Location&quot;},{&quot;key&quot;:&quot;strOneFreeWaitingPlace&quot;,&quot;value&quot;:&quot;1 Waiting list place&quot;},{&quot;key&quot;:&quot;strStartedOnDate&quot;,&quot;value&quot;:&quot;Started on {{date}}&quot;},{&quot;key&quot;:&quot;strMSTeamsMeeting&quot;,&quot;value&quot;:&quot;MS Teams meeting&quot;},{&quot;key&quot;:&quot;strBtnPrintPreview&quot;,&quot;value&quot;:&quot;Print preview&quot;},{&quot;key&quot;:&quot;strMyCoursesConcludeRevealCancelButton&quot;,&quot;value&quot;:&quot;Proceed with course&quot;},{&quot;key&quot;:&quot;strPrebookingActionIndividualEnrollment&quot;,&quot;value&quot;:&quot;Individual pre-booking&quot;},{&quot;key&quot;:&quot;resultCountFilteredBy&quot;,&quot;value&quot;:&quot;{{count}} Results filtered by:&quot;},{&quot;key&quot;:&quot;metaTagDescriptionTermsOfUsePage&quot;,&quot;value&quot;:&quot;Terms of use for&quot;},{&quot;key&quot;:&quot;whatIsAMoocTeaserText&quot;,&quot;value&quot;:&quot;The fast and easy access to your personal courses.&quot;},{&quot;key&quot;:&quot;ICON_GENERIC_CONTENT_IMPORTER&quot;,&quot;value&quot;:&quot;3rd-Party Content&quot;},{&quot;key&quot;:&quot;courseNoSelfRegistration&quot;,&quot;value&quot;:&quot;This course can be booked by an administrator only.&quot;},{&quot;key&quot;:&quot;strDeleteTask&quot;,&quot;value&quot;:&quot;Delete task&quot;},{&quot;key&quot;:&quot;strConditionSetFulfilled&quot;,&quot;value&quot;:&quot;Set of conditions fulfilled&quot;},{&quot;key&quot;:&quot;strCouldNotAddToCart&quot;,&quot;value&quot;:&quot;One or more of the selected enrolments could not be added to the cart. Please try again later.&quot;},{&quot;key&quot;:&quot;strReportEditSelectAllButton&quot;,&quot;value&quot;:&quot;Select all&quot;},{&quot;key&quot;:&quot;naviCatalogMenuBundle&quot;,&quot;value&quot;:&quot;Catalogues&quot;},{&quot;key&quot;:&quot;courseContentDownloadVideoAlternative&quot;,&quot;value&quot;:&quot;Save alternative content&quot;},{&quot;key&quot;:&quot;revealTaskApproveCancelBtn&quot;,&quot;value&quot;:&quot;Cancel&quot;},{&quot;key&quot;:&quot;xUsersSelected&quot;,&quot;value&quot;:&quot;{{number}} users selected&quot;},{&quot;key&quot;:&quot;strExpereinceArea&quot;,&quot;value&quot;:&quot;Experience area&quot;},{&quot;key&quot;:&quot;deleteAccountDialogCancelButtonTooltip&quot;,&quot;value&quot;:&quot;Cancel&quot;},{&quot;key&quot;:&quot;strCoursesAvailableNowWithDueDatePast&quot;,&quot;value&quot;:&quot;Courses available. Due since {{dueDate}}&quot;},{&quot;key&quot;:&quot;strLevelContent&quot;,&quot;value&quot;:&quot;Level content&quot;},{&quot;key&quot;:&quot;strCommonUnread&quot;,&quot;value&quot;:&quot;Unread&quot;},{&quot;key&quot;:&quot;strProgrammes&quot;,&quot;value&quot;:&quot;Learning paths&quot;},{&quot;key&quot;:&quot;pageTitleTwoStepsVerification&quot;,&quot;value&quot;:&quot;Two factor authentication&quot;},{&quot;key&quot;:&quot;administratorMailTitle&quot;,&quot;value&quot;:&quot;Send e-mail to: {{title}} {{firstname}} {{lastname}}&quot;},{&quot;key&quot;:&quot;certificateWishesText&quot;,&quot;value&quot;:&quot;We wish you much success!&quot;},{&quot;key&quot;:&quot;strBatchEnrolmentDisabledButton&quot;,&quot;value&quot;:&quot;Batch registration not possible due to mandatory attributes not being met. Please check \&quot;Identification\&quot; and \&quot;Due Date\&quot; settings.&quot;},{&quot;key&quot;:&quot;strQtiFeedbackPositive&quot;,&quot;value&quot;:&quot;Correctly answered.&quot;},{&quot;key&quot;:&quot;strMyLearningsDetailRevealTemplateDeletionHeadline&quot;,&quot;value&quot;:&quot;Do you want to remove the course template?&quot;},{&quot;key&quot;:&quot;ltiOpenNewWindowNote&quot;,&quot;value&quot;:&quot;The tool will launch in a new window. Please refresh the page to get the current status.&quot;},{&quot;key&quot;:&quot;strCustomNgSelectTypeToSearchText&quot;,&quot;value&quot;:&quot;Search&quot;},{&quot;key&quot;:&quot;mTypeOpenMeetingName&quot;,&quot;value&quot;:&quot;OpenMeeting&quot;},{&quot;key&quot;:&quot;strEnrollmentStatusREFUSED&quot;,&quot;value&quot;:&quot;Declined&quot;},{&quot;key&quot;:&quot;userprofileUsiBirthCertRegistrationDateTitle&quot;,&quot;value&quot;:&quot;Registration date&quot;},{&quot;key&quot;:&quot;videojsUnmute&quot;,&quot;value&quot;:&quot;Sound on&quot;},{&quot;key&quot;:&quot;strConfigGotoMeetingConferenceCallInfo&quot;,&quot;value&quot;:&quot;Conference call info&quot;},{&quot;key&quot;:&quot;strDeleteConfirmation&quot;,&quot;value&quot;:&quot;Are you sure you want to delete \&quot;{{name}}\&quot; task?&quot;},{&quot;key&quot;:&quot;strUserEditSectionRevealCancelButtonText&quot;,&quot;value&quot;:&quot;Cancel&quot;},{&quot;key&quot;:&quot;strCourseSubscriptionState_PREBOOKING_AGREED&quot;,&quot;value&quot;:&quot;Reservation approved&quot;},{&quot;key&quot;:&quot;strCourseEnrolmentPrerequisiteDialogOptional&quot;,&quot;value&quot;:&quot;You do not fulfil the recommended prerequisites for this course. Do you still want to continue the registration process?&quot;},{&quot;key&quot;:&quot;strTileLanguageDropDownTitle&quot;,&quot;value&quot;:&quot;Content available in&quot;},{&quot;key&quot;:&quot;strMarkAsUnread&quot;,&quot;value&quot;:&quot;Mark as unread&quot;},{&quot;key&quot;:&quot;shareCourseTemplateOperationSuccess&quot;,&quot;value&quot;:&quot;The course template was successfully shared.&quot;},{&quot;key&quot;:&quot;strNoEquivalenceDataFound&quot;,&quot;value&quot;:&quot;No equivalence information available&quot;},{&quot;key&quot;:&quot;strFolderCollapsed&quot;,&quot;value&quot;:&quot;Folder collapsed&quot;},{&quot;key&quot;:&quot;coursePrebookRemovalEmployeeDialogTitle&quot;,&quot;value&quot;:&quot;Remove pre-booking for the employee&quot;},{&quot;key&quot;:&quot;strCourseSubscriptionState_SELECTED&quot;,&quot;value&quot;:&quot;On wish list&quot;},{&quot;key&quot;:&quot;validateCheckBoxMandatory&quot;,&quot;value&quot;:&quot;{0}: Please mark this check box&quot;},{&quot;key&quot;:&quot;errorSystemMessageDescription&quot;,&quot;value&quot;:&quot;An error has occurred:&quot;},{&quot;key&quot;:&quot;loginErrorMessageEmailRequired&quot;,&quot;value&quot;:&quot;Please enter your login&quot;},{&quot;key&quot;:&quot;strIdpCommentEmployeeAllowed&quot;,&quot;value&quot;:&quot;Allow staff member to input feedback&quot;},{&quot;key&quot;:&quot;ratingInfo__COMPREHENSIBILITY&quot;,&quot;value&quot;:&quot;Comprehensibility&quot;},{&quot;key&quot;:&quot;strGenericEndsOn&quot;,&quot;value&quot;:&quot;Ends at {{endDate}}&quot;},{&quot;key&quot;:&quot;ckEditorImageUploadSubmitFile&quot;,&quot;value&quot;:&quot;Send file&quot;},{&quot;key&quot;:&quot;strCourseSubscriptionState_ORDERED&quot;,&quot;value&quot;:&quot;Requested&quot;},{&quot;key&quot;:&quot;mediaTypeLtiTool&quot;,&quot;value&quot;:&quot;LTI Tool&quot;},{&quot;key&quot;:&quot;ch_form_image_size_error&quot;,&quot;value&quot;:&quot;File size is too large&quot;},{&quot;key&quot;:&quot;mediaTypeLti1.1Tool&quot;,&quot;value&quot;:&quot;LTI 1.1&quot;},{&quot;key&quot;:&quot;strCourseSuccessfulConfirmationOnWaitlistMessage&quot;,&quot;value&quot;:&quot;The course is full, and the participant was placed on the waiting list.&quot;},{&quot;key&quot;:&quot;competenciesCertificationsOpenCompetencies&quot;,&quot;value&quot;:&quot;Competency profile&quot;},{&quot;key&quot;:&quot;internalPriceSubline&quot;,&quot;value&quot;:&quot;Internal price&quot;},{&quot;key&quot;:&quot;fullName&quot;,&quot;value&quot;:&quot;Full name&quot;},{&quot;key&quot;:&quot;strProgrammesDetailRevealCancellationRequestProceedButton&quot;,&quot;value&quot;:&quot;Request cancellation&quot;},{&quot;key&quot;:&quot;courseEnrolmentDialogSelfregistrationBody&quot;,&quot;value&quot;:&quot;You are enrolling in the course &lt;span class=\&quot;reveal-dialog-text-highlight\&quot;&gt;%COURSE_NAME%&lt;\/span&gt;. Proceed with the booking and begin your course now!&quot;},{&quot;key&quot;:&quot;strProgrammeStatusProgressEndsOn&quot;,&quot;value&quot;:&quot;Ends on {{endDate}}&quot;},{&quot;key&quot;:&quot;orbitNextPictureTitle&quot;,&quot;value&quot;:&quot;Next image&quot;},{&quot;key&quot;:&quot;strCourseStatusCancelled&quot;,&quot;value&quot;:&quot;Cancelled on {{cancellationDate}}&quot;},{&quot;key&quot;:&quot;strMyCoursesDetailRevealCancellationRequestText&quot;,&quot;value&quot;:&quot;The cancellation of the course &lt;span class=\&quot;reveal-dialog-text-highlight\&quot;&gt;{{courseName}}&lt;\/span&gt; must be confirmed. The course will remain in its current status until the person responsible has confirmed the cancellation.&quot;},{&quot;key&quot;:&quot;videojsStreamType&quot;,&quot;value&quot;:&quot;Stream type&quot;},{&quot;key&quot;:&quot;passwordRequestLegend&quot;,&quot;value&quot;:&quot;Please enter your user name (this may be your email address) in order to receive further instructions on how to reset your password.&quot;},{&quot;key&quot;:&quot;strSelfAssessedPoints&quot;,&quot;value&quot;:&quot;Self-assigned points&quot;},{&quot;key&quot;:&quot;strLevelProtectionDate&quot;,&quot;value&quot;:&quot;until {{endDate}}&quot;},{&quot;key&quot;:&quot;strCoursesAvailableSoon&quot;,&quot;value&quot;:&quot;Courses available soon&quot;},{&quot;key&quot;:&quot;strCommonMarchFullName&quot;,&quot;value&quot;:&quot;March&quot;},{&quot;key&quot;:&quot;strProgrammeRequestRevealCancelBtn&quot;,&quot;value&quot;:&quot;Cancel&quot;},{&quot;key&quot;:&quot;strPrerequisitesButtonOpenProgrammeCurriculum&quot;,&quot;value&quot;:&quot;Open learning path&quot;},{&quot;key&quot;:&quot;signUpFirstnameTitle&quot;,&quot;value&quot;:&quot;Your first name&quot;},{&quot;key&quot;:&quot;ICON_BADGES_COURSE&quot;,&quot;value&quot;:&quot;Badges acquired in this course&quot;},{&quot;key&quot;:&quot;naviLinkTitleSignUp&quot;,&quot;value&quot;:&quot;Create a new user account&quot;},{&quot;key&quot;:&quot;certificateYouConcludedTheCourseSuccessfullyTitle&quot;,&quot;value&quot;:&quot;You have successfully completed the course &lt;em&gt;$COURSE_NAME$&lt;\/em&gt;.&quot;},{&quot;key&quot;:&quot;strSystemMetaDataAttributeUserDefinedId&quot;,&quot;value&quot;:&quot;User-defined ID&quot;},{&quot;key&quot;:&quot;courseCancellationDialogAbortButtonText&quot;,&quot;value&quot;:&quot;No, proceed with the course&quot;},{&quot;key&quot;:&quot;strEmployeeHeaderBreadcrumbMyStaffText&quot;,&quot;value&quot;:&quot;My Staff&quot;},{&quot;key&quot;:&quot;strCommonDecember&quot;,&quot;value&quot;:&quot;Dec&quot;},{&quot;key&quot;:&quot;qtiTestRestartDialogBody&quot;,&quot;value&quot;:&quot;Do you want to restart the test? This action cannot be undone, and your entries may be lost.&quot;},{&quot;key&quot;:&quot;hasPrerequisites&quot;,&quot;value&quot;:&quot;Course has prerequisites&quot;},{&quot;key&quot;:&quot;strProgrammeRequestRevealSubtitle&quot;,&quot;value&quot;:&quot;Enrolment for this learning path requires approval. Continue in order to inform the person responsible for approval. As soon as the course has been confirmed, you can start.&quot;},{&quot;key&quot;:&quot;firstLoginPasswordChangeCancel&quot;,&quot;value&quot;:&quot;Cancel&quot;},{&quot;key&quot;:&quot;courseLibraryShowAll&quot;,&quot;value&quot;:&quot;Show all library contents&quot;},{&quot;key&quot;:&quot;strCoursePreview&quot;,&quot;value&quot;:&quot;Course preview&quot;},{&quot;key&quot;:&quot;strCommonOctoberFullName&quot;,&quot;value&quot;:&quot;October&quot;},{&quot;key&quot;:&quot;courseEnrolmentEmployeeDialogTitle&quot;,&quot;value&quot;:&quot;Enrol employee&quot;},{&quot;key&quot;:&quot;tutorMailTitle&quot;,&quot;value&quot;:&quot;Send e-mail to: {{title}} {{firstname}} {{lastname}}&quot;},{&quot;key&quot;:&quot;csUnlimitedTime&quot;,&quot;value&quot;:&quot;an unlimited time&quot;},{&quot;key&quot;:&quot;strErrorMessageCodeFalse&quot;,&quot;value&quot;:&quot;The verification code you entered is incorrect. Please try again&quot;},{&quot;key&quot;:&quot;naviLinkTitleEditAccount&quot;,&quot;value&quot;:&quot;Open account administration&quot;},{&quot;key&quot;:&quot;strProgrammeBtnOpen&quot;,&quot;value&quot;:&quot;Open details&quot;},{&quot;key&quot;:&quot;userprofileUsiCitizenAcquisitionDateTitle&quot;,&quot;value&quot;:&quot;Date of entry&quot;},{&quot;key&quot;:&quot;strCourseUploadExternalCertificateSave&quot;,&quot;value&quot;:&quot;Save certificate&quot;},{&quot;key&quot;:&quot;enrolmentformButtonAreaSubmitButtonTitle&quot;,&quot;value&quot;:&quot;Enrol&quot;},{&quot;key&quot;:&quot;strUsers&quot;,&quot;value&quot;:&quot;Users&quot;},{&quot;key&quot;:&quot;mTypeCourseName&quot;,&quot;value&quot;:&quot;Course&quot;},{&quot;key&quot;:&quot;strDeleteBulkLayerTextMessage&quot;,&quot;value&quot;:&quot;{{count}} message will be deleted. This operation cannot be undone.&quot;},{&quot;key&quot;:&quot;revealTaskApprovalReasonTitle&quot;,&quot;value&quot;:&quot;Approval Course Request&quot;},{&quot;key&quot;:&quot;mediaTypeMediaFile&quot;,&quot;value&quot;:&quot;Multimedia file&quot;},{&quot;key&quot;:&quot;strAuthenticationCode&quot;,&quot;value&quot;:&quot;Authentication code&quot;},{&quot;key&quot;:&quot;shareCourseOperationSuccess&quot;,&quot;value&quot;:&quot;The course was successfully shared.&quot;},{&quot;key&quot;:&quot;courseConcludeESignatureError&quot;,&quot;value&quot;:&quot;The e-signature entered is invalid!&quot;},{&quot;key&quot;:&quot;strLockedItemInfoText&quot;,&quot;value&quot;:&quot;This component can be unlocked by processing the following:&quot;},{&quot;key&quot;:&quot;strCommonID&quot;,&quot;value&quot;:&quot;ID&quot;},{&quot;key&quot;:&quot;strNeedToSelectValueForAssessment&quot;,&quot;value&quot;:&quot;You need to select a value for assessment.&quot;},{&quot;key&quot;:&quot;strPrebookedCoursesAvailableSoonDueDate&quot;,&quot;value&quot;:&quot;No courses available. Due on {{dueDate}}&quot;},{&quot;key&quot;:&quot;strNoMoreResultsAvailable&quot;,&quot;value&quot;:&quot;No other results are available&quot;},{&quot;key&quot;:&quot;strCommonMaxCharacters&quot;,&quot;value&quot;:&quot;{0} characters max.&quot;},{&quot;key&quot;:&quot;sessionErrorDialogHeadline&quot;,&quot;value&quot;:&quot;The current session has ended.&quot;}]}" firstLoginSession="false"></imc-dashboard> <script id="imc-dashboard-script" src="/microservices/dashboard/index.js?v=20.2.4+1462dfb15d"></script> </section> </div> </main> <!-- FOOTER BEGIN --> <div class="footer-section hide-for-print"> <div class=""> <imc-footer data-personal="false" data-language="en-GB" data-client-id="1" data-design-client-id="1" data-rest-url="/ilp/commonrestapi" data-content-url="/ils" data-log-level="INFO"></imc-footer> </div> </div> <!-- FOOTER END --> </div> <script src="/ilp/resources/javascript/custom_scripts.js"></script> <script> var analyticsScript = document.createElement("script"); analyticsScript.setAttribute("src","//assets.adobedtm.com/launch-EN4c8bea9d45114431a8bc35a4ce50e9d9.min.js"); analyticsScript.setAttribute("async", true); document.head.appendChild(analyticsScript); </script> <script> //remove FAQ //var faq_footer = document.getElementById("faq"); //var studentResources_footer = document.getElementById("student_study_resources"); var user_type_value; var isLoggedIn = 0; var BASE_URL = window.location.origin + '/' + window.location.pathname.split('/')[1]; var application = window.location.pathname.split('/')[1]; var REQUEST_HEADERS = {}; var CONTENT_TYPE = "application/json"; var DATA_TYPE = "JSON"; function getUserData() { if (application == "ilp"){ $.ajax({ type: "GET", url: BASE_URL + "/userprofileapi/lms/v2/profilepage/myprofile?language=en-gb&wt=json", contentType: CONTENT_TYPE, headers: REQUEST_HEADERS, dataType: DATA_TYPE, success: function(data) { isLoggedIn = 1; //alert("user logged in =" + isLoggedIn) transformData(data); }, error: function(data) { //User in not logged in isLoggedIn = 0; //alert("user logged in =" + isLoggedIn) removeFooterExternal(); } }); } } //Function to find membership type function transformData(data) { var NumAttributes = data.profileCategoryList[0].attributes.length; for (i=0; i<NumAttributes; i++){ var attribute_id = data.profileCategoryList[0].attributes[i].id if(attribute_id == "ACCA_MEMBERSHIP_TYPE"){ user_type_value = data.profileCategoryList[0].attributes[i].value.value; } } if(user_type_value.includes("Student")){ //do nothing }else{ removeFooterInternal(); } } //If not logged in, remove the following footer links function removeFooterExternal(){ var checkFooterExist = setInterval(function() { //if ($('#faq').length && $('#student_study_resources').length) { if ($('#student_study_resources').length) { //$('#faq').remove(); $('#student_study_resources').remove(); clearInterval(checkFooterExist); }}, 100); } //If logged in, remove the following footer links function removeFooterInternal(){ var checkFooterExist = setInterval(function() { if ($('#student_study_resources').length) { $('#student_study_resources').remove(); clearInterval(checkFooterExist); }}, 100); } //This function check if the user is logged in or NOT getUserData(); //Checks if user is a student </script> <script> //MS-9006 : [ACCA] HTML injection to control redirects, from the master system, to China or Russia //fixed values //MS-22062 : Check HTML injections for K8S move & remove russianSystem var euSystem = "learning.accaglobal.com"; var chinaSystem = "learning.accaglobal.cn"; //var russianSystem = "learning.ru.accaglobal.com"; var cName = "userLocation"; var exdays = 360;//number of days for cookie validity var redirectionMsg= "You are being redirected. Please wait..."; var chooseCountryMsg= "To ensure that we provide the best online customer experience possible and direct you to the relevant ACCA Learning site, please select from the following options based on your location:"; var Option0 = "Select your location"; var Option1 = "Canada"; var Option2 = "Ireland"; var Option3 = "Mainland China"; var Option4 = "Malaysia"; var Option5 = "Russia"; var Option6 = "Singapore"; var Option7 = "United Kingdom"; var Option8 = "United States of America"; var Option9 = "Rest of the world"; //variable and system valuesvalues var cValue; var currentSytem; var loginStatus; var BASE_URL = window.location.origin + '/' + window.location.pathname.split('/')[0]; var REQUEST_HEADERS = {}; var CONTENT_TYPE = "application/json"; var DATA_TYPE = "JSON"; function getLoginStatus() { $.ajax({ type: "GET", url: BASE_URL + "ilp/restapi/lms/users/@self", contentType: CONTENT_TYPE, headers: REQUEST_HEADERS, dataType: DATA_TYPE, success: function(data) { loginStatus="true"; //alert(loginStatus) //do nothing }, error: function(data) { loginStatus="false"; //check system getSystem(); } }); } function setCookie(cvalue) { var d = new Date(); d.setTime(d.getTime() + (exdays*24*60*60*1000)); var expires = "expires="+ d.toUTCString(); document.cookie = cName + "=" + cvalue + ";" + expires + ";path=/"; } function getCookie(cname) { var name = cname + "="; var decodedCookie = decodeURIComponent(document.cookie); var ca = decodedCookie.split(';'); for(var i = 0; i <ca.length; i++) { var c = ca[i]; while (c.charAt(0) == ' ') { c = c.substring(1); } if (c.indexOf(name) == 0) { return c.substring(name.length, c.length); } } return ""; } function getSystem(){ currentSytem = window.location.hostname; if (currentSytem == euSystem){ //check Cookie if (getCookie(cName) == ""){ //ask user for location askUserLocation(); }else{ //alert("cookie exist"+ getCookie(cName)); switch (getCookie(cName)) { case "China": //alert("redirect to china") goTo("china"); break; //case "Russia": //alert("redirect to russia"); //goTo("russia"); //break; default: //alert("do nothing") } } } } function askUserLocation(){ //alert("cookie does not exist"); showPopUp(); } //Modal box function createPopup() { var div1 = document.createElement("div"); div1.setAttribute("id","id01"); div1.setAttribute("style","z-index:9999"); div1.setAttribute("class","modal"); var div2 = document.createElement("div"); div2.setAttribute("class","modal-content"); var div3 = document.createElement("div"); div3.setAttribute("class","container"); var h2 = document.createElement("p"); h2.setAttribute("id","pop_up_msg"); h2.innerHTML= chooseCountryMsg; <!--end of buttons-> <!-- selection lists--> var selectList = document.createElement("select"); selectList.setAttribute("name","Country selection"); selectList.setAttribute("id","CountrySelect"); selectList.innerHTML= "Pick a country"; var option0 = document.createElement("option"); var option1 = document.createElement("option"); var option2 = document.createElement("option"); var option3 = document.createElement("option"); var option4 = document.createElement("option"); var option5 = document.createElement("option"); var option6 = document.createElement("option"); var option7 = document.createElement("option"); var option8 = document.createElement("option"); var option9 = document.createElement("option"); var submit = document.createElement("button"); submit.setAttribute("id","Go"); submit.setAttribute("onclick","selectCountry()"); submit.setAttribute("class","cell button-element togglable small-button"); submit.innerHTML = "Go"; option0.setAttribute("option",Option0); option0.setAttribute("id",Option0); option0.setAttribute("disabled",""); option0.setAttribute("selected",""); option0.setAttribute("value",""); option0.innerHTML = Option0; option1.setAttribute("value",Option1); option1.setAttribute("id",Option1); option1.innerHTML = Option1; option2.setAttribute("value",Option2); option2.setAttribute("id",Option2); option2.innerHTML = Option2; option3.setAttribute("value",Option3); option3.setAttribute("id",Option3); option3.innerHTML = Option3; option4.setAttribute("value",Option4); option4.setAttribute("id",Option4); option4.innerHTML = Option4; option5.setAttribute("value",Option5); option5.setAttribute("id",Option5); option5.innerHTML = Option5; option6.setAttribute("value",Option6); option6.setAttribute("id",Option6); option6.innerHTML = Option6; option7.setAttribute("value",Option7); option7.setAttribute("id",Option7); option7.innerHTML = Option7; option8.setAttribute("value",Option8); option8.setAttribute("id",Option8); option8.innerHTML = Option8; option9.setAttribute("value",Option9); option9.setAttribute("id",Option9); option9.innerHTML = Option9; var mainBody = document.getElementsByTagName("BODY")[0]; if(document.getElementById("id01") ==null) { mainBody.appendChild(div1); div1.appendChild(div2); div2.appendChild(div3); div3.appendChild(h2); div3.appendChild(selectList); selectList.appendChild(option0); selectList.appendChild(option1); selectList.appendChild(option2); selectList.appendChild(option3); selectList.appendChild(option4); selectList.appendChild(option5); selectList.appendChild(option6); selectList.appendChild(option7); selectList.appendChild(option8); selectList.appendChild(option9); div3.appendChild(submit); } getLoginStatus(); } function showPopUp() { document.getElementById('id01').style.display='block'; } function hidePopUp() { document.getElementById('id01').style.display='none'; } function selectCountry(){ var selectedCountry = document.getElementById("CountrySelect").value; //alert(selectedCountry) if ( selectedCountry != Option0){ switch (selectedCountry) { case Option3: setCookie("China"); goTo("china"); break; //case Option5: setCookie("Russia"); //goTo("russia"); //break; default: setCookie("Europe"); hidePopUp(); break; } } } //function to decide which page to redirect //function to decide which page to redirect function goTo(country){ current_page = window.location.href.split('.jsf'); first_url_part = current_page[0].split('/'); second_url_part = current_page[1]; var countryRedirect; document.getElementById("pop_up_msg").innerHTML=redirectionMsg; document.getElementById("Go").disabled = true; document.getElementById("CountrySelect").disabled = true; switch (country){ //only considers homepage. If more than 1 external page then this needs to be extended case "china": countryRedirect = chinaSystem; break; //case "russia": //countryRedirect = russianSystem; //break; } switch (first_url_part[first_url_part.length-1]){ //only considers homepage. If more than 1 external page then this needs to be extended case "new-external-dashboard": window.location = "https://"+countryRedirect+"/ilp"+ window.location.href.split('ilp')[1]; break; case "login": //alert(countryRedirect); window.location = "https://"+countryRedirect+"/ilp"+ window.location.href.split('ilp')[1]; break; default: //go to a single specific //alert(countryRedirect); //alert(countryRedirect); if(country == "china"){ window.location ="https://"+countryRedirect+"/ilp/pages/new-external-dashboard.jsf?#/?dashboardId=114621" }else{ window.location ="https://"+countryRedirect+"/ilp/pages/new-external-dashboard.jsf?#/?dashboardId=114620" } } //window.location = "https://"+country; } var modal_styles = ".modal-content { margin: auto; background-color: #fff; position: relative; padding: 0; outline: 0; width: 90%; max-width: 600px; padding: 10px 10px 10px 10px;}.container { padding: 10px 10px 10px 10px; padding-bottom: 20px;}.modal { z-index: 9999; display: none; padding-top: 100px; position: fixed; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: rgb(0,0,0); background-color: rgba(0,0,0,0.4);}"; var styleSheet = document.createElement("style") styleSheet.type = "text/css" styleSheet.innerText = modal_styles document.head.appendChild(styleSheet) createPopup(); </script> <script type="text/javascript"> (function() { function reloadFonts() { var link = document.createElement("link"); link.href = "/ilp/resources/design/css/fonts.css?dmy=" + Math.random(); link.type = "text/css"; link.rel = "stylesheet"; document.getElementsByTagName("head")[0].appendChild(link); } var isAppleDevice = navigator.platform.match(/(Mac|iPhone|iPod|iPad)/i); if (isAppleDevice) { reloadFonts(); } })(); </script><script type="text/javascript" src="/_Incapsula_Resource?SWJIYLWA=719d34d31c8e3a6e6fffd425f7e032f3&ns=1&cb=1360063254" async></script></body> </html>

Pages: 1 2 3 4 5 6 7 8 9 10