Skip to content
Snippets Groups Projects
Commit 43990fc0 authored by Michaela Brückner's avatar Michaela Brückner :unicorn:
Browse files

fixes !628 #1061

parent d347a08b
No related branches found
No related tags found
No related merge requests found
...@@ -527,8 +527,8 @@ ...@@ -527,8 +527,8 @@
@confirm="sendOerSuggestion" @confirm="sendOerSuggestion"
> >
<template v-slot:dialogContent> <template v-slot:dialogContent>
<p><translate>Das folgende Courseware-Material wird {{ ownerName }} <p><translate>Das folgende Courseware-Material wird %{ ownerName }
zur Veröffentlichung im OER Campus vorgeschlagen:</translate></p> zur Veröffentlichung im %{ oerTitle } vorgeschlagen:</translate></p>
<table class="cw-structural-element-info"> <table class="cw-structural-element-info">
<tr> <tr>
<td><translate>Titel</translate>:</td> <td><translate>Titel</translate>:</td>
...@@ -749,7 +749,7 @@ export default { ...@@ -749,7 +749,7 @@ export default {
textSuggestOer() { textSuggestOer() {
return { return {
title: this.$gettext('Material für OER Campus vorschlagen'), title: this.$gettextInterpolate('Material für %{ oerTitle } vorschlagen', {oerTitle: this.oerTitle}),
confirm: this.$gettext('Material vorschlagen'), confirm: this.$gettext('Material vorschlagen'),
close: this.$gettext('Schließen'), close: this.$gettext('Schließen'),
}; };
...@@ -1539,7 +1539,7 @@ export default { ...@@ -1539,7 +1539,7 @@ export default {
this.closeLinkDialog(); this.closeLinkDialog();
}, },
closeLinkDialog() { closeLinkDialog() {
this.publicLink = { this.publicLink = {
passsword: '', passsword: '',
'expire-date': '' 'expire-date': ''
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment