using System.Collections.Generic;
namespace xAPI.Registry {
///
/// Provides 17 items of the xAPI_Verbs of the context ide as public properties.
///
public sealed class xAPI_Verbs_Ide : xAPI_Verbs {
///
/// An actor changed something in the IDE (an asset for example).
/// URI: https://xapi.elearn.rwth-aachen.de/definitions/ide/verbs/changed
///
public readonly xAPI_Verb changed = new xAPI_Verb(
context: "ide",
key: "changed",
names: new Dictionary {
["en-US"] = "changed",
["de-DE"] = "änderte" },
descriptions: new Dictionary {
["en-US"] = "An actor changed something in the IDE (an asset for example).",
["de-DE"] = "Ein Akteur änderte etwas in der IDE (ein Asset zum Beispiel)." });
///
/// An actor has clicked a button.
/// URI: https://xapi.elearn.rwth-aachen.de/definitions/ide/verbs/clicked
///
public readonly xAPI_Verb clicked = new xAPI_Verb(
context: "ide",
key: "clicked",
names: new Dictionary {
["en-US"] = "clicked",
["de-DE"] = "klickte" },
descriptions: new Dictionary {
["en-US"] = "An actor has clicked a button.",
["de-DE"] = "Ein Akteur klickte einen Knopf." });
///
/// Actor closed a application, asset, video, ...
/// URI: https://xapi.elearn.rwth-aachen.de/definitions/ide/verbs/closed
///
public readonly xAPI_Verb closed = new xAPI_Verb(
context: "ide",
key: "closed",
names: new Dictionary {
["en-US"] = "closed",
["de-DE"] = "schloss" },
descriptions: new Dictionary {
["en-US"] = "Actor closed a application, asset, video, ...",
["de-DE"] = "Akteur hat eine Applikation, ein Asset, ein Video, ... geschlossen." });
///
/// An actor has created a component or asset.
/// URI: https://xapi.elearn.rwth-aachen.de/definitions/ide/verbs/created
///
public readonly xAPI_Verb created = new xAPI_Verb(
context: "ide",
key: "created",
names: new Dictionary {
["en-US"] = "created",
["de-DE"] = "erstellte" },
descriptions: new Dictionary {
["en-US"] = "An actor has created a component or asset.",
["de-DE"] = "Ein Akteur erstellte eine Komponente oder Asset." });
///
/// An actor has entered a window with the mouse.
/// URI: https://xapi.elearn.rwth-aachen.de/definitions/ide/verbs/entered
///
public readonly xAPI_Verb entered = new xAPI_Verb(
context: "ide",
key: "entered",
names: new Dictionary {
["en-US"] = "entered",
["de-DE"] = "betrat" },
descriptions: new Dictionary {
["en-US"] = "An actor has entered a window with the mouse.",
["de-DE"] = "Ein Akteur betrat ein Fenster mit der Maus." });
///
/// An actor has focused a control element or window.
/// URI: https://xapi.elearn.rwth-aachen.de/definitions/ide/verbs/focused
///
public readonly xAPI_Verb focused = new xAPI_Verb(
context: "ide",
key: "focused",
names: new Dictionary {
["en-US"] = "focused",
["de-DE"] = "fokussierte" },
descriptions: new Dictionary {
["en-US"] = "An actor has focused a control element or window.",
["de-DE"] = "Ein Akteur fokussierte ein Kontrollelement oder ein Fenster." });
///
/// 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/ide/verbs/initialized
///
public readonly xAPI_Verb initialized = new xAPI_Verb(
context: "ide",
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 Spiel Instanz. Dieses Verb wird nur mit der gamesession Aktivität verwendet, um Spiel Instanzen besser verfolgen zu können." });
///
/// An actor has left a window with the mouse.
/// URI: https://xapi.elearn.rwth-aachen.de/definitions/ide/verbs/left
///
public readonly xAPI_Verb left = new xAPI_Verb(
context: "ide",
key: "left",
names: new Dictionary {
["en-US"] = "left",
["de-DE"] = "verließ" },
descriptions: new Dictionary {
["en-US"] = "An actor has left a window with the mouse.",
["de-DE"] = "Ein Akteur verließ ein Fenster mit der Maus." });
///
/// An actor loaded something in the IDE (an asset for example).
/// URI: https://xapi.elearn.rwth-aachen.de/definitions/ide/verbs/loaded
///
public readonly xAPI_Verb loaded = new xAPI_Verb(
context: "ide",
key: "loaded",
names: new Dictionary {
["en-US"] = "loaded",
["de-DE"] = "lud" },
descriptions: new Dictionary {
["en-US"] = "An actor loaded something in the IDE (an asset for example).",
["de-DE"] = "Ein Akteur lud etwas in der IDE (ein Asset zum Beispiel)." });
///
/// Actor accessed/viewed a application, asset, video, ...
/// URI: https://xapi.elearn.rwth-aachen.de/definitions/ide/verbs/opened
///
public readonly xAPI_Verb opened = new xAPI_Verb(
context: "ide",
key: "opened",
names: new Dictionary {
["en-US"] = "opened",
["de-DE"] = "öffnete" },
descriptions: new Dictionary {
["en-US"] = "Actor accessed/viewed a application, asset, video, ...",
["de-DE"] = "Akteur hat eine Applikation, ein Asset, ein Video, ... geöffnet." });
///
/// An actor has removed a component or asset.
/// URI: https://xapi.elearn.rwth-aachen.de/definitions/ide/verbs/removed
///
public readonly xAPI_Verb removed = new xAPI_Verb(
context: "ide",
key: "removed",
names: new Dictionary {
["en-US"] = "removed",
["de-DE"] = "entfernte" },
descriptions: new Dictionary {
["en-US"] = "An actor has removed a component or asset.",
["de-DE"] = "Ein Akteur entfernte eine Komponente oder Asset." });
///
/// An actor saved something in the IDE (an asset for example).
/// URI: https://xapi.elearn.rwth-aachen.de/definitions/ide/verbs/saved
///
public readonly xAPI_Verb saved = new xAPI_Verb(
context: "ide",
key: "saved",
names: new Dictionary {
["en-US"] = "saved",
["de-DE"] = "speicherte" },
descriptions: new Dictionary {
["en-US"] = "An actor saved something in the IDE (an asset for example).",
["de-DE"] = "Ein Akteur speicherte etwas in der IDE (ein Asset zum Beispiel)." });
///
/// An actor has searched in a search field.
/// URI: https://xapi.elearn.rwth-aachen.de/definitions/ide/verbs/searched
///
public readonly xAPI_Verb searched = new xAPI_Verb(
context: "ide",
key: "searched",
names: new Dictionary {
["en-US"] = "searched",
["de-DE"] = "searched" },
descriptions: new Dictionary {
["en-US"] = "An actor has searched in a search field.",
["de-DE"] = "Ein Akteur suchte in einem Suchfeld." });
///
/// An actor has selected a control element or window.
/// URI: https://xapi.elearn.rwth-aachen.de/definitions/ide/verbs/selected
///
public readonly xAPI_Verb selected = new xAPI_Verb(
context: "ide",
key: "selected",
names: new Dictionary {
["en-US"] = "selected",
["de-DE"] = "selektierte" },
descriptions: new Dictionary {
["en-US"] = "An actor has selected a control element or window.",
["de-DE"] = "Ein Akteur selektierte ein Kontrollelement oder ein Fenster." });
///
/// An actor started a plugin or application.
/// URI: https://xapi.elearn.rwth-aachen.de/definitions/ide/verbs/started
///
public readonly xAPI_Verb started = new xAPI_Verb(
context: "ide",
key: "started",
names: new Dictionary {
["en-US"] = "started",
["de-DE"] = "startete" },
descriptions: new Dictionary {
["en-US"] = "An actor started a plugin or application.",
["de-DE"] = "Ein Akteur startete ein Plugin oder eine Applikation." });
///
/// An actor has unfocused a control element or window.
/// URI: https://xapi.elearn.rwth-aachen.de/definitions/ide/verbs/unfocused
///
public readonly xAPI_Verb unfocused = new xAPI_Verb(
context: "ide",
key: "unfocused",
names: new Dictionary {
["en-US"] = "unfocused",
["de-DE"] = "entfokussierte" },
descriptions: new Dictionary {
["en-US"] = "An actor has unfocused a control element or window.",
["de-DE"] = "Ein Akteur entfokussierte ein Kontrollelement oder ein Fenster." });
///
/// An actor has unselected a control element or window.
/// URI: https://xapi.elearn.rwth-aachen.de/definitions/ide/verbs/unselected
///
public readonly xAPI_Verb unselected = new xAPI_Verb(
context: "ide",
key: "unselected",
names: new Dictionary {
["en-US"] = "unselected",
["de-DE"] = "entselektierte" },
descriptions: new Dictionary {
["en-US"] = "An actor has unselected a control element or window.",
["de-DE"] = "Ein Akteur entselektierte ein Kontrollelement oder ein Fenster." });
public xAPI_Verbs_Ide()
: base("ide") {
}
}
}