Skip to content

Commit

Permalink
Merge pull request #1041 from nextcloud-libraries/rakekniven-patch-1
Browse files Browse the repository at this point in the history
fix(i18n): Fix spelling of MIME
  • Loading branch information
susnux authored Oct 6, 2023
2 parents 9546ed6 + 6e25bb5 commit 1d88612
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion l10n/messages.pot
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ msgstr ""
msgid "Home"
msgstr ""

msgid "Mime type {mime}"
msgid "MIME type {mime}"
msgstr ""

msgid "Modified"
Expand Down
2 changes: 1 addition & 1 deletion lib/components/FilePicker/FilePreview.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<div :style="canLoadPreview ? { backgroundImage: `url(${previewURL})`} : undefined"
:aria-label="t('Mime type {mime}', { mime: node.mime || t('unknown') })"
:aria-label="t('MIME type {mime}', { mime: node.mime || t('unknown') })"
:class="fileListIconStyles['file-picker__file-icon']">
<template v-if="!canLoadPreview">
<IconFile v-if="isFile" :size="20" />
Expand Down

0 comments on commit 1d88612

Please sign in to comment.