using System.Collections.Generic; namespace xAPI.Registry { /// /// Provides 12 items of the xAPI_Verbs of the context systemControl as public properties. /// public sealed class xAPI_Verbs_SystemControl : xAPI_Verbs { /// /// An actor ended a session, game or level without completing it. /// URI: https://xapi.elearn.rwth-aachen.de/definitions/systemControl/verbs/canceled /// public readonly xAPI_Verb canceled = new xAPI_Verb( context: "systemControl", key: "canceled", names: new Dictionary { ["en-US"] = "canceled", ["de-DE"] = "brach ab" }, descriptions: new Dictionary { ["en-US"] = "An actor ended a session, game or level without completing it.", ["de-DE"] = "Ein Akteur brach eine Spiel Instanz, ein Spiel oder ein Level ab ohne es zu vollenden." }); /// /// An actor ended a game session. This verb is only used with the gamesession activity for better session tracking. /// URI: https://xapi.elearn.rwth-aachen.de/definitions/systemControl/verbs/ended /// public readonly xAPI_Verb ended = new xAPI_Verb( context: "systemControl", key: "ended", names: new Dictionary { ["en-US"] = "ended", ["de-DE"] = "beendete" }, descriptions: new Dictionary { ["en-US"] = "An actor ended a game session. This verb is only used with the gamesession activity for better session tracking.", ["de-DE"] = "Ein Akteur beendete eine Spiel Instanz. Dieses Verb wird nur mit der gamesession Aktivität verwendet, um Spiel Instanzen besser verfolgen zu können." }); /// /// A player finished an activity in a game session. This could be the game itself, a level or stage for example. /// URI: https://xapi.elearn.rwth-aachen.de/definitions/systemControl/verbs/finished /// public readonly xAPI_Verb finished = new xAPI_Verb( context: "systemControl", key: "finished", names: new Dictionary { ["en-US"] = "finished", ["de-DE"] = "schloss ab" }, descriptions: new Dictionary { ["en-US"] = "A player finished an activity in a game session. This could be the game itself, a level or stage for example.", ["de-DE"] = "Ein Spieler schloss eine Aktivität in einer Spielinstanz ab. Dies könnte zum Beispiel ein Spiel, ein Level oder ein Spielabschnitt sein." }); /// /// The user changes a component, so that it's focussed. The user selects the component to receive input from the user by an event such as a mouse button click or keypress. /// URI: https://xapi.elearn.rwth-aachen.de/definitions/systemControl/verbs/focused /// public readonly xAPI_Verb focused = new xAPI_Verb( context: "systemControl", key: "focused", names: new Dictionary { ["en-US"] = "focused", ["de-DE"] = "fokussierte" }, descriptions: new Dictionary { ["en-US"] = "The user changes a component, so that it's focussed. The user selects the component to receive input from the user by an event such as a mouse button click or keypress.", ["de-DE"] = "Der Nutzende verändert ein Element einer grafischen Benutzeroberflächen, sodass es im Fokus ist und zum Beispiel Tastatureingaben oder Mausevents aufnimmt." }); /// /// An actor initialized a game session. This verb is only used with the gamesession activity for better session tracking. /// URI: https://xapi.elearn.rwth-aachen.de/definitions/systemControl/verbs/initialized /// public readonly xAPI_Verb initialized = new xAPI_Verb( context: "systemControl", key: "initialized", names: new Dictionary { ["en-US"] = "initialized", ["de-DE"] = "initialisierte" }, descriptions: new Dictionary { ["en-US"] = "An actor initialized a game session. This verb is only used with the gamesession activity for better session tracking.", ["de-DE"] = "Ein Akteur initialisierte eine Spielinstanz. Dieses Verb wird nur mit der gamesession Aktivität verwendet, um Spielinstanzen besser verfolgen zu können." }); /// /// An actor loaded something in the game (a level or menu for example). /// URI: https://xapi.elearn.rwth-aachen.de/definitions/systemControl/verbs/loaded /// public readonly xAPI_Verb loaded = new xAPI_Verb( context: "systemControl", key: "loaded", names: new Dictionary { ["en-US"] = "loaded", ["de-DE"] = "lud" }, descriptions: new Dictionary { ["en-US"] = "An actor loaded something in the game (a level or menu for example).", ["de-DE"] = "Ein Akteur hat etwas im Spiel geladen. Dies kann zum Beispiel ein Menü oder Level sein." }); /// /// A player logged into a session. /// URI: https://xapi.elearn.rwth-aachen.de/definitions/systemControl/verbs/loggedIn /// public readonly xAPI_Verb loggedIn = new xAPI_Verb( context: "systemControl", key: "loggedIn", names: new Dictionary { ["en-US"] = "logged In", ["de-DE"] = "loggte sich ein" }, descriptions: new Dictionary { ["en-US"] = "A player logged into a session.", ["de-DE"] = "Ein Spieler loggte sich in eine Spiel Instanz ein." }); /// /// A player logged out of a session. /// URI: https://xapi.elearn.rwth-aachen.de/definitions/systemControl/verbs/loggedOut /// public readonly xAPI_Verb loggedOut = new xAPI_Verb( context: "systemControl", key: "loggedOut", names: new Dictionary { ["en-US"] = "logged out", ["de-DE"] = "loggte sich aus" }, descriptions: new Dictionary { ["en-US"] = "A player logged out of a session.", ["de-DE"] = "Ein Spieler loggte sich aus einer Spiel Instanz aus." }); /// /// An actor paused an activity in a game session. /// URI: https://xapi.elearn.rwth-aachen.de/definitions/systemControl/verbs/paused /// public readonly xAPI_Verb paused = new xAPI_Verb( context: "systemControl", key: "paused", names: new Dictionary { ["en-US"] = "paused", ["de-DE"] = "pausierte" }, descriptions: new Dictionary { ["en-US"] = "An actor paused an activity in a game session.", ["de-DE"] = "Ein Akteur pausierte eine Aktivität in einer Spiel Instanz." }); /// /// An actor resumed an activity in a game session. /// URI: https://xapi.elearn.rwth-aachen.de/definitions/systemControl/verbs/resumed /// public readonly xAPI_Verb resumed = new xAPI_Verb( context: "systemControl", key: "resumed", names: new Dictionary { ["en-US"] = "resumed", ["de-DE"] = "setzte fort" }, descriptions: new Dictionary { ["en-US"] = "An actor resumed an activity in a game session.", ["de-DE"] = "Ein Akteur setzte eine Aktivität in einer Spiel Instanz fort." }); /// /// A player started an activity in a game session. This could be the game itself, a level or a stage for example. /// URI: https://xapi.elearn.rwth-aachen.de/definitions/systemControl/verbs/started /// public readonly xAPI_Verb started = new xAPI_Verb( context: "systemControl", key: "started", names: new Dictionary { ["en-US"] = "started", ["de-DE"] = "startete" }, descriptions: new Dictionary { ["en-US"] = "A player started an activity in a game session. This could be the game itself, a level or a stage for example.", ["de-DE"] = "Ein Spieler startete eine Aktivität in einer Spielinstanz. Dies könnte zum Beispiel ein Spiel selber sein, ein Level oder ein Spielabschnitt." }); /// /// The user changes a component, so that it's unfocused. The user selects another component to receive input from the user by an event such as a mouse button click or keypress. /// URI: https://xapi.elearn.rwth-aachen.de/definitions/systemControl/verbs/unfocused /// public readonly xAPI_Verb unfocused = new xAPI_Verb( context: "systemControl", key: "unfocused", names: new Dictionary { ["en-US"] = "unfocused", ["de-DE"] = "entfokussierte" }, descriptions: new Dictionary { ["en-US"] = "The user changes a component, so that it's unfocused. The user selects another component to receive input from the user by an event such as a mouse button click or keypress.", ["de-DE"] = "Der Nutzende verändert ein Element einer grafischen Benutzeroberflächen, sodass es im nicht im Fokus ist, sodass es keine (zum Beispiel) Tastatureingaben oder Mausevents aufnimmt." }); public xAPI_Verbs_SystemControl() : base("systemControl") { } } }