Skip to content

Commit 007de70

Browse files
authored
chore(i18n): Correct capitalization of 'FFmpeg'
Signed-off-by: rakekniven <[email protected]>
1 parent 16034fe commit 007de70

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/components/ViewAdmin.vue

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -331,16 +331,16 @@
331331
</NcSettingsSection>
332332
<NcSettingsSection :name="t('recognize', 'FFMPEG')">
333333
<p v-if="ffmpeg === undefined">
334-
<span class="icon-loading-small" />&nbsp;&nbsp;&nbsp;&nbsp;{{ t('recognize', 'Checking FFMPEG') }}
334+
<span class="icon-loading-small" />&nbsp;&nbsp;&nbsp;&nbsp;{{ t('recognize', 'Checking FFmpeg') }}
335335
</p>
336336
<NcNoteCard v-else-if="ffmpeg === false" type="warning">
337-
{{ t('recognize', 'Could not execute the ffmpeg binary. You may need to set the path to a working binary manually.') }}
337+
{{ t('recognize', 'Could not execute the FFmpeg binary. You may need to set the path to a working binary manually.') }}
338338
</NcNoteCard>
339339
<NcNoteCard v-else type="success">
340-
{{ t('recognize', 'ffmpeg {version} binary was installed successfully.', { version: ffmpeg }) }}
340+
{{ t('recognize', 'FFmpeg {version} binary was installed successfully.', { version: ffmpeg }) }}
341341
</NcNoteCard>
342342
<p>
343-
{{ t('recognize', 'If the shipped ffmpeg binary doesn\'t work on your system for some reason you can set the path to a custom ffmpeg binary.') }}
343+
{{ t('recognize', 'If the shipped FFmpeg binary doesn\'t work on your system for some reason you can set the path to a custom FFmpeg binary.') }}
344344
</p>
345345
<p>
346346
<NcTextField :value.sync="settings['ffmpeg_binary']" @update:value="onChange" />

0 commit comments

Comments
 (0)