using System.Collections.Generic; namespace xAPI.Registry { /// /// Provides 5 items of the xAPI_Verbs of the context voice as public properties. /// public sealed class xAPI_Verbs_Voice : xAPI_Verbs { /// /// An actor asked something. /// URI: https://xapi.elearn.rwth-aachen.de/definitions/voice/verbs/asked /// public readonly xAPI_Verb asked = new xAPI_Verb( context: "voice", key: "asked", names: new Dictionary { ["en-US"] = "asked", ["de-DE"] = "fragte" }, descriptions: new Dictionary { ["en-US"] = "An actor asked something.", ["de-DE"] = "Eine Akteurin hat etwas gefragt." }); /// /// An actor has commanded with his or her voice, which was recorded with speech recognition or annotated by hand. /// URI: https://xapi.elearn.rwth-aachen.de/definitions/voice/verbs/commanded /// public readonly xAPI_Verb commanded = new xAPI_Verb( context: "voice", key: "commanded", names: new Dictionary { ["en-US"] = "commanded", ["de-DE"] = "befahl" }, descriptions: new Dictionary { ["en-US"] = "An actor has commanded with his or her voice, which was recorded with speech recognition or annotated by hand.", ["de-DE"] = "Eine Akteurin hat ein verbales Kommando gegeben, das von der Spracherkennung oder durch händische Bearbeitung von Daten erfasst wurde." }); /// /// An actor has interrupted someone/ cut someone off. /// URI: https://xapi.elearn.rwth-aachen.de/definitions/voice/verbs/interrupted /// public readonly xAPI_Verb interrupted = new xAPI_Verb( context: "voice", key: "interrupted", names: new Dictionary { ["en-US"] = "interrupted", ["de-DE"] = "unterbrach" }, descriptions: new Dictionary { ["en-US"] = "An actor has interrupted someone/ cut someone off.", ["de-DE"] = "Eine Akteurin hat jemanden unterbrochen/ ist jemandem ins Wort gefallen." }); /// /// An actor has mumbled something, which was not recognizable. /// URI: https://xapi.elearn.rwth-aachen.de/definitions/voice/verbs/mumbled /// public readonly xAPI_Verb mumbled = new xAPI_Verb( context: "voice", key: "mumbled", names: new Dictionary { ["en-US"] = "mumbled", ["de-DE"] = "nuschelte" }, descriptions: new Dictionary { ["en-US"] = "An actor has mumbled something, which was not recognizable.", ["de-DE"] = "Eine Akteurin hat etwas genuschelt, was nicht näher beschrieben werden kann." }); /// /// An actor said something. /// URI: https://xapi.elearn.rwth-aachen.de/definitions/voice/verbs/said /// public readonly xAPI_Verb said = new xAPI_Verb( context: "voice", key: "said", names: new Dictionary { ["en-US"] = "said", ["de-DE"] = "sagte" }, descriptions: new Dictionary { ["en-US"] = "An actor said something.", ["de-DE"] = "Eine Akteurin hat etwas gesagt." }); public xAPI_Verbs_Voice() : base("voice") { } } }