mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
fix(l10n): Spelling standardization
Signed-off-by: Valdnet <47037905+Valdnet@users.noreply.github.com>
This commit is contained in:
parent
55b8a6ba13
commit
fc0b59bb8f
3 changed files with 4 additions and 4 deletions
|
|
@ -41,7 +41,7 @@ export const convertFiles = async function(fileIds: number[], targetMimeType: st
|
|||
const conversions = fileIds.map(fileId => queue.add(() => requestConversion(fileId, targetMimeType)))
|
||||
|
||||
// Start conversion
|
||||
const toast = showLoading(t('files', 'Converting files…'))
|
||||
const toast = showLoading(t('files', 'Converting files …'))
|
||||
|
||||
// Handle results
|
||||
try {
|
||||
|
|
@ -117,7 +117,7 @@ export const convertFiles = async function(fileIds: number[], targetMimeType: st
|
|||
}
|
||||
|
||||
export const convertFile = async function(fileId: number, targetMimeType: string) {
|
||||
const toast = showLoading(t('files', 'Converting file…'))
|
||||
const toast = showLoading(t('files', 'Converting file …'))
|
||||
|
||||
try {
|
||||
const result = await queue.add(() => requestConversion(fileId, targetMimeType)) as AxiosResponse<OCSResponse<ConversionResponse>>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
</div>
|
||||
|
||||
<div class="template-field-modal__buttons">
|
||||
<NcLoadingIcon v-if="loading" :name="t('files', 'Submitting fields…')" />
|
||||
<NcLoadingIcon v-if="loading" :name="t('files', 'Submitting fields …')" />
|
||||
<NcButton aria-label="Submit button"
|
||||
type="primary"
|
||||
@click="submit">
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@
|
|||
class="files-navigation"
|
||||
:aria-label="t('files', 'Files')">
|
||||
<template #search>
|
||||
<NcAppNavigationSearch v-model="searchQuery" :label="t('files', 'Filter file names…')" />
|
||||
<NcAppNavigationSearch v-model="searchQuery" :label="t('files', 'Filter file names …')" />
|
||||
</template>
|
||||
<template #default>
|
||||
<NcAppNavigationList class="files-navigation__list"
|
||||
|
|
|
|||
Loading…
Reference in a new issue