-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.yaml
104 lines (102 loc) · 3.36 KB
/
config.yaml
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
questions:
-
# This question type will only display a title & optional subtitle
type: "info"
# Internationalization is supported, but optional!
i18n:
en-US:
title: "Thanks for giving us some feedback!"
subtitle: "Click 'next' to continue"
fr-FR:
title: "Bonjour"
de-DE:
title: "Hallo"
-
# This question type provides a textbox
type: "textarea"
# This is an example of a non-internationalized question
title: "What do you think of this survey?"
-
# This question type provides a slider and a corresponding emoji-based
# satisfaction display
type: "satisfaction"
# initial, min, max, and step are supported and map directly onto the HTML range input
# https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/range
initial: 0
title: "What's your face when you see this slider?"
-
# This question type renders multiple options the user can select between
type: "radio"
i18n:
en-US:
title: "How often do you see yourself taking this awesome survey?"
# This question type can also be internationalized!
options:
- "Once in my lifetime"
- "Once a week"
- "Once I find the time"
- "Once I get my act together"
- "Once upon a time"
fr-FR:
title: "test french string"
# Careful: it's easy to include the wrong number of strings!
options:
- "option 1"
- "option 2"
- "option 3"
- "option 4"
- "option 5"
de-DE:
title: "Deutscher Text"
options:
- "option 1"
- "this is an example of making a mistake and mismatching the number of options in each language. Things will render properly, but users of this langauge will not be able to select all options!"
-
# Example of stars question
type: stars
title: "How many stars do you see?"
number: 5
-
# This is an example of a textarea question with placeholder content
type: "textarea"
placeholder: "Talk about how sad you are here..."
title: "The survey is almost over"
# This section of the config contains internationalization strings for
# the non-question parts of the UI
i18n:
en-US:
index:
next: "Next 〉"
prev: "〈 Previous"
submitFeedback: "Submit"
completion: "Thanks!"
completionSubtitle: "Your response has been submitted."
alert:
noConnection: "Disconnected from the internet."
TextResponse:
enterText: "Enter text..."
Slider:
valueDescription: "The slider goes from a lower rating to a higher rating."
fr-FR:
index:
next: "Suivant"
prev: "Précédent"
completion: "Votre réponse a été reçue."
completionSubtitle: "This is French."
TextResponse:
enterText: "Entrez du texte..."
alert:
noConnection: "Déconnecté d'internet."
de-DE:
index:
next: "Weiter"
prev: "Zurück"
completion: "Danke! Deine Antworten wurden gespeichert"
completionSubtitle: "Sie lesen Deutsch"
TextResponse:
enterText: "Text eingeben..."
alert:
noConnection: "Internetverbindung verloren."
## Custom background color for application window. If no background color is selected, it will default to white.
customStyles:
# backgroundColor: '#ffffff'