|
10 | 10 | { |
11 | 11 | "type": "text", |
12 | 12 | "name": "firstName", |
13 | | - "title": "First Name", |
| 13 | + "title": { |
| 14 | + "default": "First Name", |
| 15 | + "nl": "Voornaam" |
| 16 | + }, |
14 | 17 | "description": "Enter your first name", |
15 | 18 | "isRequired": true, |
16 | 19 | "placeholder": "John" |
|
19 | 22 | "type": "text", |
20 | 23 | "name": "lastName", |
21 | 24 | "startWithNewLine": false, |
22 | | - "title": "Last Name", |
| 25 | + "title": { |
| 26 | + "default": "Last Name", |
| 27 | + "nl": "Achternaam" |
| 28 | + }, |
23 | 29 | "description": "Enter your last name", |
24 | 30 | "isRequired": true, |
25 | 31 | "placeholder": "Doe" |
26 | 32 | }, |
27 | 33 | { |
28 | 34 | "type": "text", |
29 | 35 | "name": "birthDate", |
30 | | - "title": "Birth Date", |
| 36 | + "title": { |
| 37 | + "default": "Birth Date", |
| 38 | + "nl": "Geboortedatum" |
| 39 | + }, |
31 | 40 | "inputType": "date" |
32 | 41 | }, |
33 | 42 | { |
34 | 43 | "type": "text", |
35 | 44 | "name": "age", |
36 | 45 | "startWithNewLine": false, |
37 | | - "title": "Age", |
| 46 | + "title": { |
| 47 | + "default": "Age", |
| 48 | + "nl": "Leeftijd" |
| 49 | + }, |
38 | 50 | "inputType": "number", |
39 | 51 | "min": 0, |
40 | 52 | "max": 150, |
|
53 | 65 | { |
54 | 66 | "type": "text", |
55 | 67 | "name": "email", |
56 | | - "title": "Email", |
| 68 | + "title": { |
| 69 | + "default": "Email", |
| 70 | + "nl": "E-mail" |
| 71 | + }, |
57 | 72 | "inputType": "email", |
58 | 73 | "maxLength": 100, |
59 | 74 | "validators": [ |
|
66 | 81 | "type": "text", |
67 | 82 | "name": "appointmentTime", |
68 | 83 | "startWithNewLine": true, |
69 | | - "title": "Appointment Time", |
| 84 | + "title": { |
| 85 | + "default": "Appointment Time", |
| 86 | + "nl": "Afspraaktijd" |
| 87 | + }, |
70 | 88 | "inputType": "datetime-local" |
71 | 89 | }, |
72 | 90 | { |
73 | 91 | "type": "comment", |
74 | 92 | "name": "bio", |
75 | | - "title": "Biography", |
| 93 | + "title": { |
| 94 | + "default": "Biography", |
| 95 | + "nl": "Biografie" |
| 96 | + }, |
76 | 97 | "description": "Tell us about yourself", |
77 | 98 | "maxLength": 500, |
78 | 99 | "rows": 4, |
|
88 | 109 | { |
89 | 110 | "type": "radiogroup", |
90 | 111 | "name": "favoriteColor", |
91 | | - "title": "Favorite Color", |
| 112 | + "title": { |
| 113 | + "default": "Favorite Color", |
| 114 | + "nl": "Favoriete kleur" |
| 115 | + }, |
92 | 116 | "isRequired": true, |
93 | 117 | "choices": [ |
94 | 118 | {"value": "red", "text": "Red"}, |
|
104 | 128 | { |
105 | 129 | "type": "checkbox", |
106 | 130 | "name": "hobbies", |
107 | | - "title": "Hobbies", |
| 131 | + "title": { |
| 132 | + "default": "Hobbies", |
| 133 | + "nl": "Hobby's" |
| 134 | + }, |
108 | 135 | "choices": [ |
109 | 136 | {"value": "reading", "text": "Reading"}, |
110 | 137 | {"value": "sports", "text": "Sports"}, |
|
122 | 149 | { |
123 | 150 | "type": "dropdown", |
124 | 151 | "name": "country", |
125 | | - "title": "Country", |
| 152 | + "title": { |
| 153 | + "default": "Country", |
| 154 | + "nl": "Land" |
| 155 | + }, |
126 | 156 | "choices": [ |
127 | 157 | {"value": "us", "text": "United States"}, |
128 | 158 | {"value": "uk", "text": "United Kingdom"}, |
|
136 | 166 | { |
137 | 167 | "type": "tagbox", |
138 | 168 | "name": "skills", |
139 | | - "title": "Skills", |
| 169 | + "title": { |
| 170 | + "default": "Skills", |
| 171 | + "nl": "Vaardigheden" |
| 172 | + }, |
140 | 173 | "choices": [ |
141 | 174 | {"value": "python", "text": "Python"}, |
142 | 175 | {"value": "javascript", "text": "JavaScript"}, |
|
151 | 184 | { |
152 | 185 | "type": "imagepicker", |
153 | 186 | "name": "favoritePet", |
154 | | - "title": "Favorite Pet", |
| 187 | + "title": { |
| 188 | + "default": "Favorite Pet", |
| 189 | + "nl": "Favoriet huisdier" |
| 190 | + }, |
155 | 191 | "choices": [ |
156 | 192 | {"value": "dog", "text": "Dog", "imageLink": "https://example.com/dog.png"}, |
157 | 193 | {"value": "cat", "text": "Cat", "imageLink": "https://example.com/cat.png"}, |
|
167 | 203 | { |
168 | 204 | "type": "ranking", |
169 | 205 | "name": "priorityItems", |
170 | | - "title": "Prioritize Items", |
| 206 | + "title": { |
| 207 | + "default": "Prioritize Items", |
| 208 | + "nl": "Items prioriteren" |
| 209 | + }, |
171 | 210 | "choices": [ |
172 | 211 | {"value": "price", "text": "Price"}, |
173 | 212 | {"value": "quality", "text": "Quality"}, |
|
186 | 225 | { |
187 | 226 | "type": "boolean", |
188 | 227 | "name": "agreeTerms", |
189 | | - "title": "I agree to the Terms of Service", |
| 228 | + "title": { |
| 229 | + "default": "I agree to the Terms of Service", |
| 230 | + "nl": "Ik ga akkoord met de servicevoorwaarden" |
| 231 | + }, |
190 | 232 | "labelTrue": "Yes", |
191 | 233 | "labelFalse": "No", |
192 | 234 | "valueTrue": "agreed", |
|
196 | 238 | { |
197 | 239 | "type": "rating", |
198 | 240 | "name": "satisfaction", |
199 | | - "title": "Overall Satisfaction", |
| 241 | + "title": { |
| 242 | + "default": "Overall Satisfaction", |
| 243 | + "nl": "Algemene tevredenheid" |
| 244 | + }, |
200 | 245 | "rateMin": 1, |
201 | 246 | "rateMax": 10, |
202 | 247 | "rateStep": 1, |
|
208 | 253 | { |
209 | 254 | "type": "signaturepad", |
210 | 255 | "name": "signature", |
211 | | - "title": "Your Signature", |
| 256 | + "title": { |
| 257 | + "default": "Your Signature", |
| 258 | + "nl": "Uw handtekening" |
| 259 | + }, |
212 | 260 | "signatureWidth": 500, |
213 | 261 | "signatureHeight": 200, |
214 | 262 | "penColor": "#000000", |
|
219 | 267 | { |
220 | 268 | "type": "expression", |
221 | 269 | "name": "fullName", |
222 | | - "title": "Full Name", |
| 270 | + "title": { |
| 271 | + "default": "Full Name", |
| 272 | + "nl": "Volledige naam" |
| 273 | + }, |
223 | 274 | "expression": "{firstName} + ' Smith'", |
224 | 275 | "displayStyle": "none" |
225 | 276 | }, |
226 | 277 | { |
227 | 278 | "type": "file", |
228 | 279 | "name": "resume", |
229 | | - "title": "Upload Resume", |
| 280 | + "title": { |
| 281 | + "default": "Upload Resume", |
| 282 | + "nl": "CV uploaden" |
| 283 | + }, |
230 | 284 | "storeDataAsText": true, |
231 | 285 | "allowMultiple": true, |
232 | 286 | "maxSize": 5242880, |
|
241 | 295 | { |
242 | 296 | "type": "matrix", |
243 | 297 | "name": "qualityMatrix", |
244 | | - "title": "Rate the quality", |
| 298 | + "title": { |
| 299 | + "default": "Rate the quality", |
| 300 | + "nl": "Beoordeel de kwaliteit" |
| 301 | + }, |
245 | 302 | "columns": [ |
246 | 303 | {"value": "poor", "text": "Poor"}, |
247 | 304 | {"value": "fair", "text": "Fair"}, |
|
258 | 315 | { |
259 | 316 | "type": "matrixdropdown", |
260 | 317 | "name": "budgetMatrix", |
261 | | - "title": "Annual Budget", |
| 318 | + "title": { |
| 319 | + "default": "Annual Budget", |
| 320 | + "nl": "Jaarlijks budget" |
| 321 | + }, |
262 | 322 | "columns": [ |
263 | 323 | {"name": "q1", "title": "Q1", "cellType": "text"}, |
264 | 324 | {"name": "q2", "title": "Q2", "cellType": "text"}, |
|
274 | 334 | { |
275 | 335 | "type": "matrixdynamic", |
276 | 336 | "name": "employeeList", |
277 | | - "title": "Employee List", |
| 337 | + "title": { |
| 338 | + "default": "Employee List", |
| 339 | + "nl": "Werknemerslijst" |
| 340 | + }, |
278 | 341 | "columns": [ |
279 | 342 | {"name": "name", "title": "Name", "cellType": "text"}, |
280 | 343 | {"name": "role", "title": "Role", "cellType": "dropdown", "choices": ["developer", "designer", "manager"]}, |
|
288 | 351 | { |
289 | 352 | "type": "multipletext", |
290 | 353 | "name": "address", |
291 | | - "title": "Address", |
| 354 | + "title": { |
| 355 | + "default": "Address", |
| 356 | + "nl": "Adres" |
| 357 | + }, |
292 | 358 | "items": [ |
293 | 359 | {"name": "street", "title": "Street"}, |
294 | 360 | {"name": "city", "title": "City"}, |
|
306 | 372 | { |
307 | 373 | "type": "panel", |
308 | 374 | "name": "contactPanel", |
309 | | - "title": "Contact Information", |
| 375 | + "title": { |
| 376 | + "default": "Contact Information", |
| 377 | + "nl": "Contactgegevens" |
| 378 | + }, |
310 | 379 | "state": "expanded", |
311 | 380 | "innerIndent": 1, |
312 | 381 | "elements": [ |
313 | 382 | { |
314 | 383 | "type": "text", |
315 | 384 | "name": "phone", |
316 | | - "title": "Phone Number" |
| 385 | + "title": { |
| 386 | + "default": "Phone Number", |
| 387 | + "nl": "Telefoonnummer" |
| 388 | + } |
317 | 389 | }, |
318 | 390 | { |
319 | 391 | "type": "text", |
320 | 392 | "name": "website", |
321 | | - "title": "Website", |
| 393 | + "title": { |
| 394 | + "default": "Website", |
| 395 | + "nl": "Website" |
| 396 | + }, |
322 | 397 | "inputType": "url" |
323 | 398 | } |
324 | 399 | ] |
325 | 400 | }, |
326 | 401 | { |
327 | 402 | "type": "paneldynamic", |
328 | 403 | "name": "education", |
329 | | - "title": "Education History", |
| 404 | + "title": { |
| 405 | + "default": "Education History", |
| 406 | + "nl": "Opleidingsgeschiedenis" |
| 407 | + }, |
330 | 408 | "templateTitle": "Education #{panelIndex}", |
331 | 409 | "panelCount": 1, |
332 | 410 | "minPanelCount": 0, |
|
339 | 417 | { |
340 | 418 | "type": "text", |
341 | 419 | "name": "institution", |
342 | | - "title": "Institution" |
| 420 | + "title": { |
| 421 | + "default": "Institution", |
| 422 | + "nl": "Instelling" |
| 423 | + } |
343 | 424 | }, |
344 | 425 | { |
345 | 426 | "type": "text", |
346 | 427 | "name": "degree", |
347 | | - "title": "Degree" |
| 428 | + "title": { |
| 429 | + "default": "Degree", |
| 430 | + "nl": "Diploma" |
| 431 | + } |
348 | 432 | }, |
349 | 433 | { |
350 | 434 | "type": "text", |
351 | 435 | "name": "year", |
352 | | - "title": "Year", |
| 436 | + "title": { |
| 437 | + "default": "Year", |
| 438 | + "nl": "Jaar" |
| 439 | + }, |
353 | 440 | "inputType": "number" |
354 | 441 | } |
355 | 442 | ] |
|
0 commit comments