Skip to content

Commit 72f6c43

Browse files
authored
Merge pull request #1946 from nextcloud/bugfix/noid/translations
2 parents 1a81ddc + a0e023b commit 72f6c43

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/components/card/CardSidebarTabAttachments.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<template>
2424
<AttachmentDragAndDrop :card-id="card.id" class="drop-upload--sidebar">
2525
<button class="icon-upload" @click="clickAddNewAttachmment()">
26-
{{ t('settings', 'Upload attachment') }}
26+
{{ t('deck', 'Upload attachment') }}
2727
</button>
2828
<input ref="localAttachments"
2929
type="file"

src/components/cards/CardMenu.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
{{ t('deck', 'Assign to me') }}
2929
</ActionButton>
3030
<ActionButton icon="icon-archive" @click="archiveUnarchiveCard()">
31-
{{ t('deck', (showArchived ? 'Unarchive card' : 'Archive card')) }}
31+
{{ showArchived ? t('deck', 'Unarchive card') : t('deck', 'Archive card') }}
3232
</ActionButton>
3333
<ActionButton v-if="showArchived === false" icon="icon-delete" @click="deleteCard()">
3434
{{ t('deck', 'Delete card') }}

0 commit comments

Comments
 (0)