-
Notifications
You must be signed in to change notification settings - Fork 1
/
semantics.json
998 lines (998 loc) · 26.5 KB
/
semantics.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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
[
{
"name": "info",
"type": "boolean",
"label": "Tutorial and Examples: <a href=\"http://www.h5p.rezeau.org\" target=\"_blank\" rel=\"noopener\">Papi Jo's H5P Moodle site</a></span>",
"description": "<span style=\"color: white;margin-top: -20px;display: table-caption;font-size: large;\">█</span>"
},
{
"name": "description",
"type": "text",
"widget": "html",
"label": "Task description",
"importance": "medium",
"default": "Try to guess the mysterious sentence/word",
"description": "A guide telling the user how to do this task.",
"optional": true,
"tags": [
"strong",
"em",
"u",
"a",
"ul",
"ol",
"h2",
"h3",
"h4",
"h5",
"hr"
],
"font": {
"size": true,
"family": true,
"color": true,
"background": true
}
},
{
"name": "wordle",
"label": "Wordle Option: Guess a word",
"type": "boolean",
"importance": "low",
"default": false,
"description": "Check this option if you want the player to have to guess single words of 4 to 8 letters instead of sentences.",
"optional": true
},
{
"name": "playMode",
"type": "select",
"label": "Play Mode",
"importance": "low",
"description": "Select your play mode",
"default": "availableSentences",
"options": [
{
"value": "availableSentences",
"label": "Use available sentences (below)"
},
{
"value": "userSentence",
"label": "Allow user to enter their own sentence"
}
],
"widget": "showWhen",
"showWhen": {
"rules": [
{
"field": "wordle",
"equals": false
}
]
}
},
{
"name": "playModeW",
"type": "select",
"label": "Play Mode Wordle",
"importance": "low",
"description": "Select your play mode",
"default": "availableSentences",
"options": [
{
"value": "availableSentences",
"label": "Use available words (below)"
},
{
"value": "userSentence",
"label": "Allow user to enter their own word"
}
],
"widget": "showWhen",
"showWhen": {
"rules": [
{
"field": "wordle",
"equals": true
}
]
}
},
{
"name": "enableAudio",
"label": "Enable \"Audio\"",
"type": "boolean",
"importance": "low",
"default": false,
"description": "Enable \"Audio\" for the sentences to be guessed?",
"optional": true,
"widget": "showWhen",
"showWhen": {
"type": "and",
"rules": [
{
"field": "playMode",
"equals": "availableSentences"
}
]
}
},
{
"name": "questions",
"type": "list",
"label": "Sentences",
"entity": "sentence",
"importance": "high",
"description": "Simply type the sentences/phrases/words to be guessed by the students. You may split word parts with a forward slash e.g. \"An anti/constitut/ion/al act\"",
"widget": "showWhen",
"showWhen": {
"type": "and",
"rules": [
{
"field": "playMode",
"equals": "availableSentences"
},
{
"field": "wordle",
"equals": false
}
]
},
"widgets": [
{
"name": "VerticalTabs",
"label": "Default"
}
],
"min": 1,
"defaultNum": 1,
"field": {
"name": "question",
"type": "group",
"label": "Question",
"importance": "high",
"fields": [
{
"name": "sentence",
"type": "text",
"label": "Sentence",
"importance": "high"
},
{
"name": "audio",
"type": "audio",
"label": "Audio",
"description": "Audio for this sentence (optional)",
"importance": "low",
"optional": true,
"widgetExtensions": ["AudioRecorder"],
"widget": "showWhen",
"showWhen": {
"type": "and",
"rules": [
{
"field": "../../playMode",
"equals": "availableSentences"
},
{
"field": "../../enableAudio",
"equals": true
}
]
}
},
{
"name": "tip",
"label": "Tip",
"type": "text",
"importance": "low",
"description": "Tip text for this sentence (optional)",
"optional": true
}
]
}
},
{
"name": "questionsW",
"type": "list",
"label": "Words",
"entity": "word",
"importance": "high",
"description": "Type the words of 4 to 8 letters to be guessed by the students.",
"widget": "showWhen",
"showWhen": {
"type": "and",
"rules": [
{
"field": "playModeW",
"equals": "availableSentences"
},
{
"field": "wordle",
"equals": true
}
]
},
"widgets": [
{
"name": "VerticalTabs",
"label": "Default"
}
],
"min": 1,
"defaultNum": 1,
"field": {
"name": "question",
"type": "group",
"label": "Word",
"importance": "high",
"fields": [
{
"name": "sentence",
"type": "text",
"maxLength": 8,
"label": "Word",
"importance": "high",
"description": "Type ONE UPPER-CASE word of 4 to 8 letters. No accents!",
"regexp": {
"pattern": "^[A-Z]{4,8}$"
}
},
{
"name": "audio",
"type": "audio",
"label": "Audio",
"description": "Audio for this word (optional)",
"importance": "low",
"optional": true,
"widgetExtensions": ["AudioRecorder"],
"widget": "showWhen",
"showWhen": {
"type": "and",
"rules": [
{
"field": "../../playModeW",
"equals": "availableSentences"
},
{
"field": "../../enableAudio",
"equals": true
}
]
}
},
{
"name": "tip",
"label": "Tip",
"type": "text",
"optional": true,
"widget": "showWhen",
"showWhen": {
"rules": [
{
"field": "../../wordle",
"equals": true
}
]
}
}
]
}
},
{
"name": "behaviour",
"type": "group",
"label": "Behavioural settings.",
"importance": "low",
"description": "These options will let you control how the task behaves.",
"optional": true,
"fields": [
{
"name": "enableRetry",
"label": "Enable \"Retry\"",
"type": "boolean",
"importance": "low",
"default": false,
"description": "Add a \"Retry\" button when the game is over. This will simply refresh the current URL. It may not work in some environments, so please check on your platform before enabling it!",
"optional": true
},
{
"name": "caseSensitive",
"importance": "low",
"type": "boolean",
"default": false,
"label": "Case sensitive",
"description": "Makes sure the user input has to be exactly the same as the answer.",
"widget": "showWhen",
"showWhen": {
"rules": [
{
"field": "../wordle",
"equals": false
}
]
}
},
{
"label": "Enable Number of words Choice",
"importance": "low",
"description": "Check this option to allow the user to select the number of words (per sentence) to guess. Do NOT check this option if your sentences make up a story!",
"name": "enableNumChoice",
"type": "boolean",
"default": false,
"optional": true,
"widget": "showWhen",
"showWhen": {
"type": "and",
"rules": [
{
"field": "../wordle",
"equals": false
},
{
"field": "../playMode",
"equals": "availableSentences"
}
]
}
},
{
"label": "Enable \"Show solution\" button",
"importance": "low",
"name": "enableSolutionsButton",
"type": "boolean",
"default": false,
"optional": true,
"widget": "showWhen",
"showWhen": {
"type": "and",
"rules": [
{
"field": "../wordle",
"equals": false
},
{
"field": "../playMode",
"equals": "availableSentences"
}
]
}
},
{
"label": "Enable \"End Game\" button",
"importance": "low",
"name": "enableEndGameButton",
"type": "boolean",
"default": false,
"description": "Check this if you want to allow the player to quit the game without having guessed the current sentence",
"optional": true,
"widget": "showWhen",
"showWhen": {
"type": "and",
"rules": [
{
"field": "../playMode",
"equals": "availableSentences"
},
{
"field": "enableSolutionsButton",
"equals": false
},
{
"field": "../wordle",
"equals":false
}
]
}
},
{
"name": "numRounds",
"type": "number",
"label": "Number of rounds before Solutions or End Game",
"description": "Minimum number of rounds before the \"Solutions\" or \"End Game\" buttons can be displayed:",
"importance": "low",
"optional": true,
"default": 1,
"min": 1,
"widget": "showWhen",
"showWhen": {
"type": "or",
"rules": [
{
"field": "enableSolutionsButton",
"equals": true
},
{
"field": "enableEndGameButton",
"equals": true
}
]
}
},
{
"name": "maxTries",
"type": "number",
"label": "Maximum number of tries to guess the word (Wordle option)",
"description": "Maximum number of tries before Game is over and Solution is displayed:",
"importance": "low",
"optional": true,
"default": 6,
"min": 6,
"step": 2,
"widget": "showWhen",
"showWhen": {
"type": "and",
"rules": [
{
"field": "../playMode",
"equals": "availableSentences",
"field": "../wordle",
"equals":true
}
]
}
},
{
"name": "displayAudio",
"type": "select",
"label": "When to display the audio buttons",
"importance": "low",
"description": "If a sentence has an audio attached to it, select WHEN you want to display the audio buttons.",
"default": "correct",
"widget": "showWhen",
"showWhen": {
"rules": [
{
"field": "../enableAudio",
"equals": true
}
]
},
"options": [
{
"value": "correct",
"label": "Only when the blanks have been correctly filled in"
},
{
"value": "always",
"label": "Always"
}
]
},
{
"label": "Display Guessed Sentences",
"importance": "low",
"name": "listGuessedSentences",
"description": "Check this to add each guessed sentence to a display list after each successful attempt. This option is useful if your sentences make up a story.",
"type": "boolean",
"default": false,
"widget": "showWhen",
"showWhen": {
"rules": [
{
"field": "../wordle",
"equals": false
}
]
}
},
{
"label": "Display audio and tip buttons in Guessed Sentences",
"importance": "low",
"name": "listGuessedAudioAndTips",
"description": "Select how you want to display the audio and tip buttons in front of each sentence in the list of guessed sentences.",
"type": "select",
"default": "none",
"widget": "showWhen",
"showWhen": {
"type": "and",
"rules": [
{
"field": "../playMode",
"equals": "availableSentences"
},
{
"field": "listGuessedSentences",
"equals": true
},
{
"field": "../enableAudio",
"equals": true
}
]
},
"options": [
{
"value": "none",
"label": "None"
},
{
"value": "audioAndTip",
"label": "Both audio and tip buttons"
},
{
"value": "tipOnly",
"label": "Tip button only"
},
{
"value": "audioOnly",
"label": "Audio button only"
}
]
},
{
"name": "sentencesOrder",
"type": "select",
"label": "Sentences Order",
"importance": "low",
"description": "Select the order in which the sentences will be displayed to the user. Do NOT check this option if your sentences make up a story!",
"default": "normal",
"widget": "showWhen",
"showWhen": {
"rules": [
{
"field": "../wordle",
"equals":false
}
]
},
"options": [
{
"value": "normal",
"label": "Normal order"
},
{
"value": "random",
"label": "Random order"
}
]
}
]
},
{
"label": "Text for \"Show solutions\" button",
"name": "showSolutions",
"type": "text",
"default": "Show solution",
"common": true
},
{
"label": "Text for \"New sentence\" button",
"importance": "low",
"name": "newSentence",
"type": "text",
"default": "Guess another sentence",
"common": true,
"optional": true
},
{
"label": "Text for \"New word\" button",
"importance": "low",
"name": "newWord",
"type": "text",
"default": "Guess another word",
"common": true,
"optional": true
},
{
"label": "Text for \"End Game\" button",
"importance": "low",
"name": "endGame",
"type": "text",
"default": "End Game",
"common": true,
"optional": true
},
{
"label": "Text for \"Check\" button",
"importance": "low",
"name": "checkAnswer",
"type": "text",
"default": "Check",
"common": true,
"optional": true
},
{
"label": "Text for \"Try again\" button",
"importance": "low",
"name": "tryAgain",
"type": "text",
"default": "Try again",
"common": true,
"optional": true
},
{
"label": "Text for \"Not enough rounds\" message",
"importance": "low",
"name": "notEnoughRounds",
"type": "text",
"default": "This option won't be available before round @round",
"description": "@round will be replaced by the minimum number of rounds needed before displaying solutions or ending the game",
"common": true,
"optional": true
},
{
"label": "Text for \"Fill in all the blanks\" message",
"importance": "low",
"name": "notFilledOut",
"type": "text",
"default": "Please fill in all the blanks before checking your answer!",
"common": true,
"optional": true
},
{
"label": "Text for \"How many words do you want in your mystery sentence?\" message",
"importance": "low",
"name": "numWords",
"type": "text",
"default": "How many words do you want in your mystery sentence?",
"common": true,
"optional": true,
"description": "Only used if \"Enable Number of words Choice\" is enabled"
},
{
"label": "Text for \"Any number of words\"",
"importance": "low",
"name": "anyNumber",
"type": "text",
"default": "Any number",
"common": true,
"optional": true,
"description": "Only used if \"Enable Number of words Choice\" is enabled"
},
{
"label": "Text for \"Type a sentence to be guessed by your friends\" message",
"importance": "low",
"name": "userSentenceDescriptionLabel",
"type": "text",
"default": "Type a sentence to be guessed by your friends",
"common": true,
"optional": true,
"description": "Only used if playmode is set to \"Allow users to enter their own sentence\""
},
{
"label": "Text for \"Type ONE UPPER-CASE word of 4 to 8 letters to be guessed by your friends. No accents!\" message",
"importance": "low",
"name": "userWordDescriptionLabel",
"type": "text",
"default": "Type ONE UPPER-CASE word of 4 to 8 letters to be guessed by your friends. No accents!",
"common": true,
"optional": true,
"description": "Only used if playmode is set to \"Allow user to enter their own word\""
},
{
"label": "Text for \"Type a Tip for this sentence (optional)\" message",
"importance": "low",
"name": "userSentenceTipLabel",
"type": "text",
"default": "Type a Tip for this sentence (optional)",
"common": true,
"optional": true,
"description": "Only used if playmode is set to \"Allow users to enter their own sentence\""
},
{
"label": "Text for \"Minimum number of rounds before Solutions can be displayed:\" message",
"importance": "low",
"name": "userSentencenumRoundsLabel",
"type": "text",
"default": "Minimum number of rounds before Solutions can be displayed:",
"common": true,
"optional": true,
"description": "Only used if playmode is set to \"Allow users to enter their own sentence\""
},
{
"label": "Text for \"Maximum number of tries before Game is over and Solution is displayed:\" message",
"importance": "low",
"name": "userWordnumRoundsLabel",
"type": "text",
"default": "Maximum number of tries before Game is over and Solution is displayed:",
"common": true,
"optional": true,
"description": "Only used if playmode is set to \"Allow users to enter their own sentence\" and Wordle option selected."
},
{
"label": "Text for the \"Never show\" radio button choice",
"importance": "low",
"name": "userSentenceNeverShow",
"type": "text",
"default": "Never show",
"common": true,
"optional": true,
"description": "Only used if playmode is set to \"Allow users to enter their own sentence\""
},
{
"label": "Text for the \"No limit\" radio button choice",
"importance": "low",
"name": "userWordNoLimit",
"type": "text",
"default": "No limit",
"common": true,
"optional": true,
"description": "Only used if playmode is set to \"Allow users to enter their own sentence\" and Wordle option selected."
},
{
"name": "sentence",
"type": "text",
"label": "Text for \"sentence\" singular word",
"description": "This word will be used in various parts of the activity",
"importance": "low",
"default": "sentence",
"common": true,
"optional": true
},
{
"name": "sentences",
"type": "text",
"label": "Text for \"sentence\" plural word",
"description": "This word will be used in various parts of the activity",
"importance": "low",
"default": "sentences",
"common": true,
"optional": true
},
{
"name": "round",
"type": "text",
"label": "Text for \"Round\" message below sentences to be guessed",
"description": "@round will be replaced by the number of the current round",
"importance": "low",
"default": "Round @round",
"common": true,
"optional": true
},
{
"name": "timeSpent",
"label": "Time spent text",
"importance": "low",
"type": "text",
"default": "Time Spent",
"description": "Label for showing the time spent while guessing one sentence",
"common": true,
"optional": true
},
{
"name": "scoreExplanationButtonLabel",
"label": "Score Explanation Button Label",
"importance": "low",
"type": "text",
"default": "Show score explanation",
"description": "Label for the 'Show score explanation' feedback text",
"common": true,
"optional": true
},
{
"name": "scoreExplanationforSinglePoint",
"label": "Score Explanation for the Single Point score",
"importance": "low",
"type": "text",
"default": "The maximum score for this activity is 1 and you got the point for any number of sentences guessed.",
"common": true,
"optional": true
},
{
"name": "scoreExplanationforAllSentences",
"label": "Score Explanation for All Sentences",
"importance": "low",
"type": "text",
"default": "Score = number of guessed sentences / number of sentences in this activity.",
"common": true,
"optional": true
},
{
"name": "scoreExplanationforAllWords",
"label": "Score Explanation for All Words (Wordle option)",
"importance": "low",
"type": "text",
"default": "Score = number of words found / number of words tried.",
"common": true,
"optional": true
},
{
"name": "scoreExplanationforSentencesWithNumberWords",
"label": "Score Explanation for All Sentences with selected number of words",
"importance": "low",
"type": "text",
"default": "Score = number of guessed sentences / number of sentences containing @words words.",
"description": "@words will be replaced by the number of words per sentence selected by the user on the initial screen",
"common": true,
"optional": true
},
{
"name": "summary",
"label": "Text for the Summary page header",
"importance": "low",
"type": "text",
"default": "Summary",
"common": true,
"optional": true
},
{
"name": "sentencesGuessed",
"label": "Text for the number of Sentences guessed (on the summary page)",
"importance": "low",
"type": "text",
"default": "Sentences guessed",
"common": true,
"optional": true
},
{
"name": "wordsFound",
"label": "Text for the number of Words guessed (on the summary page)",
"importance": "low",
"type": "text",
"default": "Words found: ",
"common": true,
"optional": true
},
{
"name": "wordFound",
"label": "Text for Word Found (Wordle Option)",
"importance": "low",
"type": "text",
"default": "Word found: ",
"common": true,
"optional": true
},
{
"name": "wordNotFound",
"label": "Text for Word not found (Wordle option)",
"importance": "low",
"type": "text",
"default": "Word not found: ",
"common": true,
"optional": true
},
{
"name": "solutionsViewed",
"label": "Text for the number of Solutions viewed (on the summary page)",
"importance": "low",
"type": "text",
"default": "Solutions viewed",
"common": true,
"optional": true
},
{
"name": "totalTimeSpent",
"label": "Text for the total time spent (on the summary page)",
"importance": "low",
"type": "text",
"default": "Total Time Spent",
"common": true,
"optional": true
},
{
"name": "totalRounds",
"label": "Text for the total number of rounds used (on the summary page)",
"importance": "low",
"type": "text",
"default": "Total Rounds",
"common": true,
"optional": true
},
{
"label": "Text for \"':ans' is correct\" message",
"importance": "low",
"name": "answerIsCorrect",
"type": "text",
"default": "':ans' is correct",
"common": true,
"optional": true
},
{
"label": "Text for \"':ans' is wrong\" message",
"importance": "low",
"name": "answerIsWrong",
"type": "text",
"default": "':ans' is wrong",
"common": true,
"optional": true
},
{
"label": "Text for \"Answered correctly\" message",
"importance": "low",
"name": "answeredCorrectly",
"type": "text",
"default": "Answered correctly",
"common": true,
"optional": true
},
{
"label": "Text for \"Answered incorrectly\" message",
"importance": "low",
"name": "answeredIncorrectly",
"type": "text",
"default": "Answered incorrectly",
"common": true,
"optional": true
},
{
"label": "Assistive technology label for solution",
"importance": "low",
"name": "solutionLabel",
"type": "text",
"default": "Correct answer:",
"common": true,
"optional": true
},
{
"label": "Assistive technology label for input field",
"importance": "low",
"name": "inputLabel",
"type": "text",
"description": "Use @num and @total to replace current cloze number and total cloze number",
"default": "Blank input @num of @total",
"common": true,
"optional": true
},
{
"label": "Assistive technology label for saying an input has a tip tied to it",
"importance": "low",
"name": "inputHasTipLabel",
"type": "text",
"default": "Tip available",
"common": true,
"optional": true
},
{
"label": "Tip icon label",
"importance": "low",
"name": "tipLabel",
"type": "text",
"default": "Tip",
"common": true,
"optional": true
},
{
"name": "retry",
"type": "text",
"label": "Text for the retry button",
"importance": "low",
"default": "Retry",
"common": true
},
{
"label": "End Game confirmation dialog",
"importance": "low",
"name": "confirmEndGame",
"type": "group",
"common": true,
"fields": [
{
"label": "Header text",
"importance": "low",
"name": "header",
"type": "text",
"default": "End Game?"
},
{
"label": "Body text",
"importance": "low",
"name": "body",
"type": "text",
"default": "Are you sure you wish to End this Game?",
"widget": "html",
"enterMode": "p",
"tags": [
"strong",
"em",
"del",
"u",
"code"
]
},
{
"label": "Cancel button label",
"importance": "low",
"name": "cancelLabel",
"type": "text",
"default": "Cancel"
},
{
"label": "Confirm button label",
"importance": "low",
"name": "confirmLabel",
"type": "text",
"default": "OK"
}
]
}
]