feat(client): keep line breaks of translated text to improve readability

This commit is contained in:
syuilo 2021-11-19 19:03:25 +09:00
parent a902576334
commit cb4d65b5c9
3 changed files with 5 additions and 4 deletions

View file

@ -12,6 +12,7 @@
### Improvements
- クライアント: 返信先やRenoteに対しても自動折りたたみされるように
- クライアント: 長いスレッドの表示を改善
- クライアント: 翻訳にもMFMを適用し、元の文章の改行などを保持するように
- クライアント: アカウント削除に確認ダイアログを出すように
### Bugfixes

View file

@ -71,7 +71,7 @@
<MkLoading v-if="translating" mini/>
<div class="translated" v-else>
<b>{{ $t('translatedFrom', { x: translation.sourceLang }) }}: </b>
{{ translation.text }}
<Mfm :text="translation.text" :author="appearNote.user" :i="$i" :custom-emojis="appearNote.emojis"/>
</div>
</div>
</div>

View file

@ -55,7 +55,7 @@
<MkLoading v-if="translating" mini/>
<div class="translated" v-else>
<b>{{ $t('translatedFrom', { x: translation.sourceLang }) }}: </b>
{{ translation.text }}
<Mfm :text="translation.text" :author="appearNote.user" :i="$i" :custom-emojis="appearNote.emojis"/>
</div>
</div>
</div>