Judge's Dictation Tool
When judges are providing their feedback, it is possible for them to use the dictation tool to record their comments.
Comments can be recorded in the judge's chosen language, and the output language will be determined by the event.
By default, the judge dictation tool is active.
To make amendments to the configuration of the dictation tool, JavaScript can be added to your event.
To add JavaScript to your event, go to Website > Themes > Theme Settings, and scroll to the end of the page until you see the JavaScript section.
Using JavaScript, you can
- Disable the dictation tool
- Include additional source languages (i.e. the language the judge will dictate their comments in)
- Modify the output language that the comments will be saved in
- Modify button texts and other text fields
The example below shows how to add French translation to the functions within the dictation tool:
var judgesSpeechToTextConfig = { activateSpeech: true, targetLanguage: { code: "en-GB", label: "English" }, sourceLanguages: [ { code: "af", label: "Afrikaans" }, { code: "en", label: "English" }, { code: "fr", label: "French" }, { code: "de", label: "German" }, { code: "it", label: "Italian" }, { code: "es", label: "Spanish" }, { code: "pt", label: "Portuguese" }, { code: "zh", label: "Chinese" }, { code: "ar", label: "Arabic" } ], feedbackText: { 'en': { labelFeedback: "Feedback", toggleLabel: "Dictation", toggleDisable: "disable", toggleEnable: "enable", textLabel: "Text will be ", speechLabel: "You speak ", button: { start: "Start dictation", listening: "Listening", stop: "Stop dictation" } }, 'fr': { labelFeedback: "Retour d'information", toggleLabel: "Dictée", toggleDisable: "désactiver", toggleEnable: "activer", textLabel: "Le texte sera ", speechLabel: "Vous parlez ", button: { start: "Commencer la dictée", listening: "Écoute", stop: "Arrêter la dictée" } }, } };
Here are some example of options for targetLanguage values (this is the language in which the text will be returned.
Note 🗒️
You can only set a single targetlanguage value
{ "code": "en-GB", "label": "English (United Kingdom)" }, { "code": "en-US", "label": "English (United States)" }, { "code": "af-ZA", "label": "Afrikaans (South Africa)" }, { "code": "ar-SA", "label": "العربية (Arabic - Saudi Arabia)" }, { "code": "ar-AE", "label": "العربية (Arabic - United Arab Emirates)" }, { "code": "zh-CN", "label": "中文 (Chinese - Simplified, China)" }, { "code": "zh-TW", "label": "中文 (Chinese - Traditional, Taiwan)" }, { "code": "de-DE", "label": "Deutsch (German - Germany)" }, { "code": "de-AT", "label": "Deutsch (German - Austria)" }, { "code": "de-CH", "label": "Deutsch (German - Switzerland)" }, { "code": "fr-FR", "label": "Français (French - France)" }, { "code": "fr-CA", "label": "Français (French - Canada)" }, { "code": "hi-IN", "label": "हिन्दी (Hindi - India)" }, { "code": "it-IT", "label": "Italiano (Italian - Italy)" }, { "code": "ja-JP", "label": "日本語 (Japanese - Japan)" }, { "code": "pt-PT", "label": "Português (Portuguese - Portugal)" }, { "code": "pt-BR", "label": "Português (Portuguese - Brazil)" }, { "code": "es-ES", "label": "Español (Spanish - Spain)" }, { "code": "es-MX", "label": "Español (Spanish - Mexico)" }, { "code": "es-AR", "label": "Español (Spanish - Argentina)" }, { "code": "ru-RU", "label": "Русский (Russian - Russia)" }, { "code": "pa-IN", "label": "ਪੰਜਾਬੀ (Punjabi - India)" }, { "code": "jv-ID", "label": "Javanese (Indonesia)" }, { "code": "te-IN", "label": "తెలుగు (Telugu - India)" }, { "code": "mr-IN", "label": "मराठी (Marathi - India)" }, { "code": "ta-IN", "label": "தமிழ் (Tamil - India)" }, { "code": "ur-PK", "label": "اردو (Urdu - Pakistan)" }, { "code": "tr-TR", "label": "Türkçe (Turkish - Turkey)" }, { "code": "ko-KR", "label": "한국어 (Korean - South Korea)" }, { "code": "vi-VN", "label": "Tiếng Việt (Vietnamese - Vietnam)" }, { "code": "th-TH", "label": "ไทย (Thai - Thailand)" }, { "code": "pl-PL", "label": "Polski (Polish - Poland)" }, { "code": "uk-UA", "label": "Українська (Ukrainian - Ukraine)" }, { "code": "nl-NL", "label": "Nederlands (Dutch - Netherlands)" }, { "code": "fa-IR", "label": "فارسی (Persian - Iran)" }, { "code": "ro-RO", "label": "Română (Romanian - Romania)" }, { "code": "hu-HU", "label": "Magyar (Hungarian - Hungary)" }, { "code": "sv-SE", "label": "Svenska (Swedish - Sweden)" }, { "code": "fi-FI", "label": "Suomi (Finnish - Finland)" }, { "code": "he-IL", "label": "עברית (Hebrew - Israel)" }, { "code": "id-ID", "label": "Bahasa Indonesia (Indonesian - Indonesia)" }