Welcome to mirror list, hosted at ThFree Co, Russian Federation.

SessionConflictView.vue « views « src - github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b4b1c1299245ff0f204c3a1e9f6c32b7388ca1b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<template>
	<div id="emptycontent">
		<div id="emptycontent-icon" class="icon-info" />
		<h2>{{ t('spreed', 'Duplicate session') }}</h2>
		<p class="emptycontent-additional">
			{{ t('spreed', 'You joined the conversation in another window or device. This is currently not supported by Nextcloud Talk so this session was closed.') }}
		</p>
	</div>
</template>

<script>
export default {
	name: 'SessionConflictView',

	mounted() {
		this.setPageTitle()
	},

	methods: {
		setPageTitle() {
			window.document.title = t('spreed', 'Duplicate session') + ' - ' + window.document.title
		},
	},
}
</script>