-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsettings.js
87 lines (86 loc) · 4.78 KB
/
settings.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
const settings = {
'descriptions':
[
{
'language': 'en',
'info': {
'surveyPane': {
'age': 'Age',
'gender': 'Gender',
'experience': 'Program experience',
'country': 'Country',
'years': 'Full years',
'months': 'Months',
'startSession': 'Start the session',
'programmingLanguage': 'Programming language'
},
'taskChoosingPane': {
'chooseTask': 'Choose the task',
'finishSession': 'Finish the session',
'startSolving': 'Start solving',
'description': 'After you choose the task and press %s, a file will be created in the codding-assistant folder in the root of the project where you should write the code. When you are finished, press %s to submit your solution.\n' +
'\n' +
'Note: we only track the changes in the files created by the plugin, other files are not considered. The data will not be sent until you press %s.'
},
'taskSolvingPane': {
'inputData': 'Input data',
'outputData': 'Output data',
'submit': 'Submit',
'hint': 'Get a hint'
},
'finalPane': {
'praise': 'Nicely done!',
'backToSurvey': 'Back to the survey',
'finalMessage': 'Do not forget to uninstall the Codetracker plugin',
},
'commonText': {
'backToTasks': 'Back to the tasks'
},
'successPane': {
'successMessage': 'The solution for the %s task has been submitted successfully'
}
}
},
{
'language': 'ru',
'info': {
'surveyPane': {
'age': 'Возраст',
'gender': 'Пол',
'experience': 'Опыт программирования',
'country': 'Страна',
'years': 'Полных лет',
'months': 'Месяцев',
'startSession': 'Начать работу',
'programmingLanguage': 'Язык программирования'
},
'taskChoosingPane': {
'chooseTask': 'Выберите задачу',
'finishSession': 'Закончить работу',
'startSolving': 'Начать решение',
'description': 'После выбора задачи и нажатия на кнопку %s будет создан файл в папке codding-assistant в корне вашего проекта, в котором необходимо написать ее решение. После окончания решения для отправки данных нажмите кнопку %s.\n' +
'\n' +
'Важно: во время решения будут записываться изменения только в созданных плагином файлах. Остальные файлы не отслеживаются. Без нажатия на кнопку %s данные не отправляются.',
},
'taskSolvingPane': {
'inputData': 'Входные данные',
'outputData': 'Выходные данные',
'submit': 'Отправить решение',
'hint': 'Получить подсказку'
},
'finalPane': {
'praise': 'Отличная работа!',
'backToSurvey': 'Вернуться к анкете',
'finalMessage': 'Не забудьте удалить плагин Codetracker',
},
'commonText': {
'backToTasks': 'Вернуться к задачам'
},
'successPane': {
'successMessage': 'Решение задачи %s было успешно отправлено'
}
}
}
]
};
module.exports = settings;