summaryrefslogtreecommitdiff
path: root/js/codeq/problem.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/codeq/problem.js')
-rw-r--r--js/codeq/problem.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/js/codeq/problem.js b/js/codeq/problem.js
index a875c45..e430b21 100644
--- a/js/codeq/problem.js
+++ b/js/codeq/problem.js
@@ -204,16 +204,16 @@
var langDict = convertTranslations(rawTranslations, 'name', 'description'), // this will be the resulting dictionary: multi-level keys that lead up to the lang-dict
groupDict, problemDict;
// title: HTML structure for "name" and "desc"
- html.push('<h1 class="language-title translatable" ', ta(langDict.name), '></h1><hr>');
- html.push('<div class="language-description translatable" ', ta(langDict.description), '></div>');
+ html.push('<h1 class="language-title" ', ta(langDict.name), '></h1><hr>');
+ html.push('<div class="language-description" ', ta(langDict.description), '></div>');
// content: problem directory
html.push('<ul class="language-problems">');
for (i = 0; i < Ngroups; i++) {
group = groups[i] || {};
groupDict = convertTranslations(group.translations, 'name', 'description'); // the group-level translations, added will
// group content
- html.push('<li><div class="group-title translatable" ', ta(groupDict.name), '></div>');
- html.push('<div class="group-description translatable" ', ta(groupDict.description), '></div>');
+ html.push('<li><div class="group-title" ', ta(groupDict.name), '></div>');
+ html.push('<div class="group-description" ', ta(groupDict.description), '></div>');
html.push('<ul class="group-problems">');
// problem content
problems = group.problems || [];
@@ -221,7 +221,7 @@
for (j = 0; j < Nproblems; j++) {
problem = problems[j] || {};
problemDict = convertTranslations(problem.translations, 'name');
- html.push('<li><a class="problem-', '' + problemReferences.length, ' translatable" ', ta(problemDict.name), '></a></li>');
+ html.push('<li><a class="problem-', '' + problemReferences.length, '" ', ta(problemDict.name), '></a></li>');
problemReferences.push({'g': group.identifier || 'nogroup', 'p': problem.identifier || 'noproblem', 'id': problem.id});
}
html.push('</ul></li>');