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: 4b59746082502ffd62fcd50d6ecf6166e9b07684 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<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',
}
</script>