Fix issue of string splitting for translations

Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
Joas Schilling 2021-10-14 10:32:19 +02:00 коммит произвёл marco
Родитель 3daf0aefb0
Коммит eed1032291
1 изменённых файлов: 8 добавлений и 3 удалений

Просмотреть файл

@ -22,9 +22,8 @@
<template>
<Modal v-on="$listeners">
<div class="wrapper">
<p class="title">
{{ t('spreed', 'In this conversation, ') }}<strong>{{ displayName }}</strong>{{ t('spreed', ' can:') }}
</p>
<!-- eslint-disable-next-line vue/no-v-html -->
<p class="title" v-html="modalTitle" />
<form @submit.prevent="handleSubmitPermissions">
<CheckboxRadioSwitch
ref="callStart"
@ -124,6 +123,12 @@ export default {
return this.participant.displayName
},
modalTitle() {
return t('spreed', 'In this conversation <strong>{user}</strong> can:', {
user: this.displayName,
})
},
/**
* The participant's attendeeId: a unique number that identifies the
* participant.