forked from jithin-space/h5p-find-the-words
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.en.json
105 lines (105 loc) · 3.34 KB
/
.en.json
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"semantics": [
{
"label": "Task description",
"description": "Description of the Game",
"default": "Find the words from the grid"
},
{
"label": "Word list",
"description": "Comma Separated list of words. Special Characters, White Spaces and Numbers Not allowed",
"default": "one,two,three",
"regexp": {}
},
{
"label": "Behavioural settings",
"description": "These options will let you control how the game behaves.",
"fields": [
{
"label": "Orientations",
"description": "An array containing the names of the word directions that should be used when creating the puzzle",
"fields": [
{
"label": "Horizontal- left to right"
},
{
"label": "Horizontal- right to left"
},
{
"label": "Vertical downwards"
},
{
"label": "Vertical upwards"
},
{
"label": "Diagonal downwards- left to right"
},
{
"label": "Diagonal downwards- right to left"
},
{
"label": "Diagonal upwards- left to right"
},
{
"label": "Diagonal upwards- right to left"
}
]
},
{
"label": "Vertical downwards",
"description": "pool of letters from which the blanks to be filled",
"default": "abcdefghijklmnopqrstuvwxy",
"regexp": {}
},
{
"label": "Prefer overlap",
"description": "Determines how wordfind decides where to place a word within the puzzle. When true, it randomly selects amongst the positions the highest number of letters that overlap creating a more compact puzzle. When false, it randomly selects amongst all valid positions creating a less compact puzzle."
},
{
"label": "Show vocabulary",
"description": "Determines whether to show vocabularies to the player"
},
{
"label": "Enable show solution",
"description": "Add a show solution button for the game"
},
{
"label": "Enable retry",
"description": "Add a retry button for the game"
}
]
},
{
"label": "Localization",
"fields": [
{
"label": "Text for \"Check\" button",
"default": "Check"
},
{
"label": "Text for \"Retry\" button",
"default": "Retry"
},
{
"label": "Text for \"Show Solution\" button",
"default": "Show Solution"
},
{
"label": "Counter text",
"default": "@found of @totalWords found",
"description": "Feedback text, variables available: @found and @totalWords. Example: '@found of @totalWords found'"
},
{
"label": "Time spent text",
"default": "Time Spent",
"description": "label for showing the time spent while playing the game"
},
{
"label": "Feedback text",
"default": "You got @score of @total points",
"description": "Feedback text, variables available: @score and @total. Example: 'You got @score of @total possible points'"
}
]
}
]
}