feat: allow challenges to be hidden by language (#40833)
This commit is contained in:
committed by
GitHub
parent
8c22432b17
commit
81e55605a2
@ -1,15 +1,23 @@
|
|||||||
// this can go once all certs have been audited.
|
// this can go once all certs have been audited.
|
||||||
|
|
||||||
|
// Currently the auditing is going through Crowdin, so once a cert has been 100%
|
||||||
|
// proofread, we can add it in here. That means that translations can come
|
||||||
|
// through from Crowdin whenever they are done, but we don't show them on the
|
||||||
|
// client until we decide the entire cert is ready.
|
||||||
|
|
||||||
|
// NOTE: certificates themselves (.markdown files) are not currently being
|
||||||
|
// translated, but when they are they can be included by adding 'certificates'
|
||||||
|
// to the arrays below
|
||||||
|
|
||||||
|
const auditedCerts = {
|
||||||
|
espanol: [],
|
||||||
|
chinese: []
|
||||||
|
};
|
||||||
|
|
||||||
function isAuditedCert(lang, cert) {
|
function isAuditedCert(lang, cert) {
|
||||||
if (!lang || !cert)
|
if (!lang || !cert)
|
||||||
throw Error('Both arguments must be provided for auditing');
|
throw Error('Both arguments must be provided for auditing');
|
||||||
// in order to see the challenges in the client, add the certification that
|
return lang === 'english' || auditedCerts[lang].includes(cert);
|
||||||
// contains those challenges to this array:
|
|
||||||
const auditedCerts = [
|
|
||||||
'responsive-web-design',
|
|
||||||
'javascript-algorithms-and-data-structures',
|
|
||||||
'certificates'
|
|
||||||
];
|
|
||||||
return lang === 'english' || auditedCerts.includes(cert);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
exports.isAuditedCert = isAuditedCert;
|
exports.isAuditedCert = isAuditedCert;
|
||||||
|
Reference in New Issue
Block a user