Skip to content

Commit

Permalink
Merge pull request #13411 from nextcloud/backport/13408/stable28
Browse files Browse the repository at this point in the history
[stable28] Fix some translation calls
  • Loading branch information
DorraJaouad authored Sep 27, 2024
2 parents 66fb715 + 324c48a commit f0d771b
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 @@ -63,15 +63,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 @@ -80,8 +80,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 f0d771b

Please sign in to comment.