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

Spelling standardization #50987

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
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
4 changes: 2 additions & 2 deletions apps/files/src/actions/convertUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down Expand Up @@ -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>>
Expand Down
2 changes: 1 addition & 1 deletion apps/files/src/components/TemplateFiller.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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">
Expand Down
2 changes: 1 addition & 1 deletion apps/files/src/views/Navigation.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
Loading