Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(i18n): Fix spelling of MIME #1041

Merged
merged 1 commit into from
Oct 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
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
fix(i18n): Fix spelling of MIME
Co-authored-by: Ferdinand Thiessen <opensource@fthiessen.de>
Signed-off-by: rakekniven <2069590+rakekniven@users.noreply.github.com>
  • Loading branch information
rakekniven and susnux committed Oct 6, 2023
commit 6e25bb561d5554788b35cdbebfb4d56f113ba81e
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
Loading