395 |
396 |
397 |
Language (JSON)
398 |
The keysJsonUrl option has to be set if custom keys are not defined with the keysArrayOfObjects option. JSON format has to be: [{"key":"value", "key":"value"}, ...]. Each object in that array creates a row element (HTML) on the keyboard. The "key" in the objects is used as an "index" for each Keyboard Keys. The "value" is each key's value and inner text.
399 |
400 | Additionally, KioskBoard includes 9 different language packages:
401 | Arabic
402 | ,
403 | English
404 | ,
405 | French
406 | ,
407 | German
408 | ,
409 | Hungarian
410 | ,
411 | Persian
412 | ,
413 | Russian
414 | ,
415 | Spanish
416 | , and
417 | Turkish
418 | .
419 |
420 |
421 |
422 |
423 | JSON Custom Keys example in English
424 |
425 | [
426 | {
427 | "0": "Q",
428 | "1": "W",
429 | "2": "E",
430 | "3": "R",
431 | "4": "T",
432 | "5": "Y",
433 | "6": "U",
434 | "7": "I",
435 | "8": "O",
436 | "9": "P"
437 | },
438 | {
439 | "0": "A",
440 | "1": "S",
441 | "2": "D",
442 | "3": "F",
443 | "4": "G",
444 | "5": "H",
445 | "6": "J",
446 | "7": "K",
447 | "8": "L"
448 | },
449 | {
450 | "0": "Z",
451 | "1": "X",
452 | "2": "C",
453 | "3": "V",
454 | "4": "B",
455 | "5": "N",
456 | "6": "M"
457 | }
458 | ]
459 |
460 |
461 |
462 |
463 |