Skip to content
Merged
Changes from 1 commit
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
Next Next commit
fix(file_sharing): Remove string concatenated translation
Signed-off-by: nfebe <[email protected]>
  • Loading branch information
nfebe authored and susnux committed Jun 17, 2025
commit 2131b16ced3d09d0b768537c00be0c6fe98d7b66
2 changes: 1 addition & 1 deletion apps/files_sharing/src/components/ShareExpiryTime.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<NcButton v-if="expiryTime"
class="hint-icon"
type="tertiary"
:aria-label="t('files_sharing', 'Share expiration: ') + new Date(expiryTime).toLocaleString()">
:aria-label="t('files_sharing', 'Share expiration: {date}', { date: new Date(expiryTime).toLocaleString() })">
<template #icon>
<ClockIcon :size="20" />
</template>
Expand Down
Loading