From 2cae697f65240d8168cd65098d496cd12762975c Mon Sep 17 00:00:00 2001 From: Randell Dawson Date: Thu, 17 Sep 2020 13:53:59 -0700 Subject: [PATCH] fix: change variables to match exported names --- curriculum/getChallenges.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/curriculum/getChallenges.js b/curriculum/getChallenges.js index 1dc786dc63..cff04f85f8 100644 --- a/curriculum/getChallenges.js +++ b/curriculum/getChallenges.js @@ -10,7 +10,10 @@ const { translateCommentsInChallenge } = require('../tools/challenge-md-parser/translation-parser/translation-parser'); /* eslint-enable max-len*/ -const { COMMENT_TRANSLATIONS } = require('./dictionaries/english/comments'); +const { + COMMENTS_TO_TRANSLATE, + COMMENTS_TO_NOT_TRANSLATE +} = require('./dictionaries/english/comments'); const { isAuditedCert } = require('../utils/is-audited'); const { dasherize, nameify } = require('../utils/slugs');