keanu-weblite/src/components/messages/RoomTopicChanged.vue
N-Pex a78659b206 Externalize strings
Also some cleanup. Work on issue #41.
2021-05-20 12:33:59 +02:00

18 lines
No EOL
382 B
Vue

<template>
<!-- ROOM TOPIC CHANGED -->
<div class="statusEvent">
{{ $t('message.user_changed_room_topic', {user: stateEventDisplayName(event), topic: event.getContent().topic}) }}
</div>
</template>
<script>
import messageMixin from "./messageMixin";
export default {
mixins: [messageMixin],
};
</script>
<style lang="scss">
@import "@/assets/css/chat.scss";
</style>