Skip to content

Commit

Permalink
Merge pull request #1042 from nextcloud-libraries/fix/spelling-stable4
Browse files Browse the repository at this point in the history
fix(i18n): Fix spelling of MIME
  • Loading branch information
rakekniven committed Oct 6, 2023
2 parents 783eef3 + 92fb28c commit f475df9
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 f475df9

Please sign in to comment.