using System.Collections.Generic; namespace xAPI.Registry { /// /// Provides 8 items of the xAPI_Verbs of the context studybuddy as public properties. /// public sealed class xAPI_Verbs_Studybuddy : xAPI_Verbs { /// /// Actor clicked a link, button, ... /// URI: https://xapi.elearn.rwth-aachen.de/definitions/studybuddy/verbs/clicked /// public readonly xAPI_Verb clicked = new xAPI_Verb( context: "studybuddy", key: "clicked", names: new Dictionary { ["en-US"] = "clicked", ["de-DE"] = "klickte" }, descriptions: new Dictionary { ["en-US"] = "Actor clicked a link, button, ...", ["de-DE"] = "Akteur klickte auf/an einen Link, Button, ..." }); /// /// Actor created an object /// URI: https://xapi.elearn.rwth-aachen.de/definitions/studybuddy/verbs/created /// public readonly xAPI_Verb created = new xAPI_Verb( context: "studybuddy", key: "created", names: new Dictionary { ["en-US"] = "created", ["de-DE"] = "erstellte" }, descriptions: new Dictionary { ["en-US"] = "Actor created an object", ["de-DE"] = "Akteur hat ein Objekt erstellt/angelegt" }); /// /// Actor deleted an object /// URI: https://xapi.elearn.rwth-aachen.de/definitions/studybuddy/verbs/deleted /// public readonly xAPI_Verb deleted = new xAPI_Verb( context: "studybuddy", key: "deleted", names: new Dictionary { ["en-US"] = "deleted", ["de-DE"] = "löschte" }, descriptions: new Dictionary { ["en-US"] = "Actor deleted an object", ["de-DE"] = "Akteur hat ein Objekt gelöscht" }); /// /// Actor logged in to a system /// URI: https://xapi.elearn.rwth-aachen.de/definitions/studybuddy/verbs/loggedInTo /// public readonly xAPI_Verb loggedInTo = new xAPI_Verb( context: "studybuddy", key: "loggedInTo", names: new Dictionary { ["en-US"] = "logged in to", ["de-DE"] = "meldete sich an in" }, descriptions: new Dictionary { ["en-US"] = "Actor logged in to a system", ["de-DE"] = "Akteur hat sich in einem System angemeldet" }); /// /// Actor logged out from a system /// URI: https://xapi.elearn.rwth-aachen.de/definitions/studybuddy/verbs/loggedOutFrom /// public readonly xAPI_Verb loggedOutFrom = new xAPI_Verb( context: "studybuddy", key: "loggedOutFrom", names: new Dictionary { ["en-US"] = "logged out from", ["de-DE"] = "meldete sich ab von" }, descriptions: new Dictionary { ["en-US"] = "Actor logged out from a system", ["de-DE"] = "Akteur hat sich von einem System abgemeldet" }); /// /// Actor paused an activity /// URI: https://xapi.elearn.rwth-aachen.de/definitions/studybuddy/verbs/paused /// public readonly xAPI_Verb paused = new xAPI_Verb( context: "studybuddy", key: "paused", names: new Dictionary { ["en-US"] = "paused", ["de-DE"] = "pausierte" }, descriptions: new Dictionary { ["en-US"] = "Actor paused an activity", ["de-DE"] = "Akteur pausierte eine Aktivität" }); /// /// Actor triggered a process /// URI: https://xapi.elearn.rwth-aachen.de/definitions/studybuddy/verbs/triggered /// public readonly xAPI_Verb triggered = new xAPI_Verb( context: "studybuddy", key: "triggered", names: new Dictionary { ["en-US"] = "triggered", ["de-DE"] = "löste aus" }, descriptions: new Dictionary { ["en-US"] = "Actor triggered a process", ["de-DE"] = "Akteur hat einen Prozess ausgelöst" }); /// /// Actor updated an object /// URI: https://xapi.elearn.rwth-aachen.de/definitions/studybuddy/verbs/updated /// public readonly xAPI_Verb updated = new xAPI_Verb( context: "studybuddy", key: "updated", names: new Dictionary { ["en-US"] = "updated", ["de-DE"] = "aktualisierte" }, descriptions: new Dictionary { ["en-US"] = "Actor updated an object", ["de-DE"] = "Akteur hat ein Objekt aktualisiert" }); public xAPI_Verbs_Studybuddy() : base("studybuddy") { } } }