Merge pull request #6563 from Ocelot-Social-Community/6545-add-headline-to-chat-page

feat(webapp): add headline to chat page
This commit is contained in:
Ulf Gebhardt 2023-07-18 12:53:03 +02:00 committed by GitHub
commit eabef4c56c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 1 deletions

View File

@ -86,6 +86,9 @@
"messageDeleted": "Diese Nachricht wuerde gelöscht",
"messagesEmpty": "Keine Nachrichten",
"newMessages": "Neue Nachrichten",
"page": {
"headline": "Chat"
},
"roomEmpty": "Keinen Raum selektiert",
"roomsEmpty": "Keine Räume",
"search": "Suche",

View File

@ -86,6 +86,9 @@
"messageDeleted": "This message was deleted",
"messagesEmpty": "No messages",
"newMessages": "New Messages",
"page": {
"headline": "Chat"
},
"roomEmpty": "No room selected",
"roomsEmpty": "No rooms",
"search": "Search",

View File

@ -1,5 +1,8 @@
<template>
<chat />
<div>
<ds-heading tag="h1">{{ $t('chat.page.headline') }}</ds-heading>
<chat />
</div>
</template>
<script>