Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions src/components/ConversationSettings/ConversationAvatarEditor.vue
Original file line number Diff line number Diff line change
Expand Up @@ -66,15 +66,15 @@
</template>

<!-- Set picture as avatar -->
<NcButton :title="t('settings', 'Upload conversation picture')"
:aria-label="t('settings', 'Upload conversation picture')"
<NcButton :title="t('spreed', 'Upload conversation picture')"
:aria-label="t('spreed', 'Upload conversation picture')"
@click="activateLocalFilePicker">
<template #icon>
<Upload :size="20" />
</template>
</NcButton>
<NcButton :title="t('settings', 'Choose conversation picture from files')"
:aria-label="t('settings', 'Choose conversation picture from files')"
<NcButton :title="t('spreed', 'Choose conversation picture from files')"
:aria-label="t('spreed', 'Choose conversation picture from files')"
@click="showFilePicker = true">
<template #icon>
<Folder :size="20" />
Expand All @@ -83,8 +83,8 @@

<!-- Remove existing avatar -->
<NcButton v-if="hasAvatar"
:title="t('settings', 'Remove conversation picture')"
:aria-label="t('settings', 'Remove conversation picture')"
:title="t('spreed', 'Remove conversation picture')"
:aria-label="t('spreed', 'Remove conversation picture')"
@click="removeAvatar">
<template #icon>
<Delete :size="20" />
Expand Down