diff --git a/lib/Providers/OpencastConstants.php b/lib/Providers/OpencastConstants.php index 26b96f222..ea23eac61 100644 --- a/lib/Providers/OpencastConstants.php +++ b/lib/Providers/OpencastConstants.php @@ -44,7 +44,8 @@ public function register(\Pimple\Container $container) 'OPENCAST_RESOURCE_PROPERTY_ID', 'OPENCAST_SUPPORT_EMAIL', 'OPENCAST_API_TOKEN', - 'OPENCAST_DEFAULT_SERVER' + 'OPENCAST_DEFAULT_SERVER', + 'OPENCAST_CLEAR_RECYCLE_BIN_INTERVAL' ] ]; } diff --git a/vueapp/components/Config/EditServer.vue b/vueapp/components/Config/EditServer.vue index 7f089f0d0..778ff99f0 100644 --- a/vueapp/components/Config/EditServer.vue +++ b/vueapp/components/Config/EditServer.vue @@ -192,7 +192,7 @@ export default { }, deleteConfig() { - if (confirm(this.$gettext('Sind sie, dass sie diese Serverkonfiguration löschen möchten? Es werden auch alle Videos aus Stud.IP rausgelöscht, die zu diesem Server gehören!'))) { + if (confirm(this.$gettext('Sind Sie sicher, dass Sie die Serverkonfiguration löschen möchten? Die damit verbundenen Videos werden danach nicht mehr in Stud.IP zur Verfügung stehen!'))) { if (this.id == 'new') { this.currentConfig = {} } else { diff --git a/vueapp/components/Config/GlobalOptions.vue b/vueapp/components/Config/GlobalOptions.vue index c430532ad..857b2dac2 100644 --- a/vueapp/components/Config/GlobalOptions.vue +++ b/vueapp/components/Config/GlobalOptions.vue @@ -107,7 +107,7 @@ export default { this.config_list.server.forEach(server => { options.push({ - value: server.id, + value: Number(server.id), description: '[#' + server.id + '] ' + server.service_url + '' }) }); diff --git a/vueapp/components/MessageBox.vue b/vueapp/components/MessageBox.vue index 89f4092ec..deb7bf027 100644 --- a/vueapp/components/MessageBox.vue +++ b/vueapp/components/MessageBox.vue @@ -2,7 +2,7 @@
- + Nachrichtenbox schliessen
diff --git a/vueapp/components/Playlists/PlaylistAddCard.vue b/vueapp/components/Playlists/PlaylistAddCard.vue index 3d075c245..c14e80dc7 100644 --- a/vueapp/components/Playlists/PlaylistAddCard.vue +++ b/vueapp/components/Playlists/PlaylistAddCard.vue @@ -16,6 +16,7 @@