-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathlang_en.m
More file actions
20 lines (17 loc) · 806 Bytes
/
lang_en.m
File metadata and controls
20 lines (17 loc) · 806 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
% English localization
lang = struct();
lang.instructions = {['You will be shown words, one at a time, printed in different colors.',...
' Press r for word printed in red, g for green, b for blue and m for',...
' magenta. Try to be as fast as possible but correct.'], ['[now press space',...
' to start the experiment]']};
lang.correct = {'correct'};
lang.incorrect = {'incorrect'};
lang.words = {'red', 'green', 'blue', 'magenta'};
lang.colors = lang.words;
lang.keys = 'rgbm';
lang.label_agree = 'Agreeing stimulus';
lang.label_differ = 'Differing stimulus';
lang.xlabel = 'Reaction time (s)';
lang.ylabel = 'Normalized frequency';
lang.current_results = 'Current results';
lang.overall_results = 'Overall results of %d experiments';