Skip to content

Commit

Permalink
fixes 717
Browse files Browse the repository at this point in the history
  • Loading branch information
tgloeggl committed Aug 9, 2023
1 parent 17f688c commit 0bd97f9
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions vueapp/components/Courses/CoursesSidebar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -81,12 +81,12 @@
<ul class="widget-list oc--sidebar-links widget-links">
<li @click="$emit('uploadVideo')" v-if="canUpload">
<studip-icon style="margin-left: -20px;" shape="upload" role="clickable"/>
Medien Hochladen
Medien hochladen
</li>
<li>
<a :href="recordingLink" target="_blank" v-if="canUpload">
<studip-icon style="margin-left: -20px;" shape="video" role="clickable"/>
Video Aufnehmen
Video aufnehmen
</a>
</li>
<li v-if="canToggleVisibility">
Expand Down
2 changes: 1 addition & 1 deletion vueapp/components/Videos/VideoUpload.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<div>
<StudipDialog
:title="$gettext('Video hinzufügen')"
:title="$gettext('Medien hochladen')"
:confirmText="$gettext('Hochladen')"
:confirmClass="uploadButtonClasses"
:closeText="$gettext('Abbrechen')"
Expand Down
10 changes: 5 additions & 5 deletions vueapp/components/Videos/VideosSidebar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
<ul class="widget-list oc--sidebar-links widget-links">
<li @click="$emit('uploadVideo')" v-if="fragment == 'videos'">
<studip-icon style="margin-left: -20px;" shape="upload" role="clickable"/>
{{ $gettext('Medien Hochladen') }}
{{ $gettext('Medien hochladen') }}
</li>
<!--
<li @click="$emit('recordVideo')" v-if="fragment == 'videos'">
Expand All @@ -49,7 +49,7 @@
<li>
<a :href="recordingLink" v-if="fragment == 'videos' && currentUserSeries" target="_blank">
<studip-icon style="margin-left: -20px;" shape="video" role="clickable"/>
Video Aufnehmen
Video aufnehmen
</a>
</li>

Expand All @@ -72,15 +72,15 @@

<li @click="$emit('sortVideo')" v-if="fragment == 'playlist_edit' && !videoSortMode">
<studip-icon style="margin-left: -20px;" shape="hamburger" role="clickable"/>
{{ $gettext('Videos Sortieren') }}
{{ $gettext('Videos sortieren') }}
</li>
<li @click="$emit('saveSortVideo')" v-if="fragment == 'playlist_edit' && videoSortMode">
<studip-icon style="margin-left: -20px;" shape="accept" role="clickable"/>
{{ $gettext('Sortierung Speichern') }}
{{ $gettext('Sortierung speichern') }}
</li>
<li @click="$emit('cancelSortVideo')" v-if="fragment == 'playlist_edit' && videoSortMode">
<studip-icon style="margin-left: -20px;" shape="decline" role="clickable"/>
{{ $gettext('Sortierung Abbrechen') }}
{{ $gettext('Sortierung abbrechen') }}
</li>
<li @click="true" v-if="fragment == 'edit'">
</li>
Expand Down

0 comments on commit 0bd97f9

Please sign in to comment.