Skip to content

Commit

Permalink
fix: move 'settings' translations to 'spreed' repo
Browse files Browse the repository at this point in the history
Signed-off-by: Jérôme Herbinet <33763786+Jerome-Herbinet@users.noreply.github.com>
  • Loading branch information
Jerome-Herbinet authored and backportbot[bot] committed Sep 27, 2024
1 parent 6c39f8d commit 5e48c1a
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 @@ -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

0 comments on commit 5e48c1a

Please sign in to comment.