Skip to content

Commit

Permalink
Merge pull request #13408 from nextcloud/Jerome-Herbinet-fix-some-tra…
Browse files Browse the repository at this point in the history
…nslation-calls
  • Loading branch information
Antreesy authored Sep 27, 2024
2 parents 9c4d9e5 + ed0dc66 commit ab396ab
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/components/ConversationSettings/ConversationAvatarEditor.vue
Original file line number Diff line number Diff line change
Expand Up @@ -48,15 +48,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 @@ -65,8 +65,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

0 comments on commit ab396ab

Please sign in to comment.