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

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/components/ChatView.vue6
-rw-r--r--src/components/LeftSidebar/LeftSidebar.vue4
2 files changed, 8 insertions, 2 deletions
diff --git a/src/components/ChatView.vue b/src/components/ChatView.vue
index c25c92713..299bc7916 100644
--- a/src/components/ChatView.vue
+++ b/src/components/ChatView.vue
@@ -43,8 +43,12 @@
</div>
</transition>
<MessagesList
+ role="region"
+ :aria-label="t('spreed', 'Conversation messages')"
:token="token" />
- <NewMessageForm />
+ <NewMessageForm
+ role="region"
+ :aria-label="t('spreed', 'Post message')" />
</div>
</template>
diff --git a/src/components/LeftSidebar/LeftSidebar.vue b/src/components/LeftSidebar/LeftSidebar.vue
index 1bbdb5420..8f4aee746 100644
--- a/src/components/LeftSidebar/LeftSidebar.vue
+++ b/src/components/LeftSidebar/LeftSidebar.vue
@@ -20,7 +20,9 @@
-->
<template>
- <AppNavigation>
+ <AppNavigation
+ :aria-label="t('spreed', 'Conversation list')"
+ :toggle-aria-label="t('spreed', 'Toggle conversations list')">
<div class="new-conversation">
<SearchBox
v-model="searchText"