using System.Collections.Generic;
namespace xAPI.Registry {
///
/// Provides 8 items of the xAPI_Verbs of the context media as public properties.
///
public sealed class xAPI_Verbs_Media : xAPI_Verbs {
///
/// An actor reached the end of a media element and its playing was stopped by the player itself.
/// URI: https://xapi.elearn.rwth-aachen.de/definitions/media/verbs/finished
///
public readonly xAPI_Verb finished = new xAPI_Verb(
context: "media",
key: "finished",
names: new Dictionary {
["en-US"] = "finished",
["de-DE"] = "beendete" },
descriptions: new Dictionary {
["en-US"] = "An actor reached the end of a media element and its playing was stopped by the player itself.",
["de-DE"] = "Ein Akteur erreichte das Ende eines Medienelements und der Player beendete die Wiedergabe." });
///
/// An actor interacted with a media element. This might have changed the elements volume or playback rate.
/// URI: https://xapi.elearn.rwth-aachen.de/definitions/media/verbs/interacted
///
public readonly xAPI_Verb interacted = new xAPI_Verb(
context: "media",
key: "interacted",
names: new Dictionary {
["en-US"] = "interacted",
["de-DE"] = "interagierte" },
descriptions: new Dictionary {
["en-US"] = "An actor interacted with a media element. This might have changed the elements volume or playback rate.",
["de-DE"] = "Ein Akteur interagierte mit einem Medienelement. Das kann z. B. die Anpassung der Lautstärke oder Wiedergabegeschwindigkeit bedeuten." });
///
/// An actor paused a playing media element.
/// URI: https://xapi.elearn.rwth-aachen.de/definitions/media/verbs/paused
///
public readonly xAPI_Verb paused = new xAPI_Verb(
context: "media",
key: "paused",
names: new Dictionary {
["en-US"] = "paused",
["de-DE"] = "pausierte" },
descriptions: new Dictionary {
["en-US"] = "An actor paused a playing media element.",
["de-DE"] = "Ein Akteur pausierte die Wiedergabe eines Medienelements." });
///
/// An actor restarted playing a media element after finishing it.
/// URI: https://xapi.elearn.rwth-aachen.de/definitions/media/verbs/restarted
///
public readonly xAPI_Verb restarted = new xAPI_Verb(
context: "media",
key: "restarted",
names: new Dictionary {
["en-US"] = "restarted",
["de-DE"] = "startete neu" },
descriptions: new Dictionary {
["en-US"] = "An actor restarted playing a media element after finishing it.",
["de-DE"] = "Ein Akteur startete die Wiedergabe eines Medienelements erneut, nachdem diese zuvor beendet wurde." });
///
/// An actor continued playing a media element.
/// URI: https://xapi.elearn.rwth-aachen.de/definitions/media/verbs/resumed
///
public readonly xAPI_Verb resumed = new xAPI_Verb(
context: "media",
key: "resumed",
names: new Dictionary {
["en-US"] = "resumed",
["de-DE"] = "fortgesetzt" },
descriptions: new Dictionary {
["en-US"] = "An actor continued playing a media element.",
["de-DE"] = "Ein Akteur setzte die Wiedergabe eines Medienelements fort." });
///
/// An actor seeked to a part of the media element either forward or backward.
/// URI: https://xapi.elearn.rwth-aachen.de/definitions/media/verbs/seeked
///
public readonly xAPI_Verb seeked = new xAPI_Verb(
context: "media",
key: "seeked",
names: new Dictionary {
["en-US"] = "seeked",
["de-DE"] = "sprang" },
descriptions: new Dictionary {
["en-US"] = "An actor seeked to a part of the media element either forward or backward.",
["de-DE"] = "Ein Akteur sprang zu einem Teil eines Medienelements. Entweder einen vorausligenden Teil oder durch einen Sprung zurück, einen zurückliegenden." });
///
/// An actor skipped a part of the media element either forward or backward. LEGACY! Use seeked instead.
/// URI: https://xapi.elearn.rwth-aachen.de/definitions/media/verbs/skipped
///
public readonly xAPI_Verb skipped = new xAPI_Verb(
context: "media",
key: "skipped",
names: new Dictionary {
["en-US"] = "skipped",
["de-DE"] = "übersprang" },
descriptions: new Dictionary {
["en-US"] = "An actor skipped a part of the media element either forward or backward. LEGACY! Use seeked instead.",
["de-DE"] = "Ein Akteur übersprang einen Teil eines Medienelements. Entweder einen vorausligenden Teil oder durch einen Sprung zurück, einen zurückliegenden. VERALTET! Nutze stattdessen sprang (seeked)." });
///
/// An actor started playing a media element.
/// URI: https://xapi.elearn.rwth-aachen.de/definitions/media/verbs/started
///
public readonly xAPI_Verb started = new xAPI_Verb(
context: "media",
key: "started",
names: new Dictionary {
["en-US"] = "started",
["de-DE"] = "startete" },
descriptions: new Dictionary {
["en-US"] = "An actor started playing a media element.",
["de-DE"] = "Ein Akteur startete die Wiedergabe eines Medienelements." });
public xAPI_Verbs_Media()
: base("media") {
}
}
}