Skip to content

Commit

Permalink
fix(i18n): Fix spelling of MIME
Browse files Browse the repository at this point in the history
Co-authored-by: Ferdinand Thiessen <[email protected]>
Signed-off-by: rakekniven <[email protected]>
  • Loading branch information
rakekniven and susnux committed Oct 6, 2023
1 parent 783eef3 commit 92fb28c
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 @@ -59,7 +59,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="file-picker__file-icon">
<template v-if="!canLoadPreview">
<IconFile v-if="isFile" :size="20" />
Expand Down

0 comments on commit 92fb28c

Please sign in to comment.