Merge pull request #41807 from nextcloud/backport/41753/stable28

[stable28] Spelling correction
This commit is contained in:
Andy Scherzinger 2023-11-29 12:01:37 +01:00 committed by GitHub
commit 8a4136dadf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 6 additions and 6 deletions

View file

@ -63,7 +63,7 @@ class SMB extends Backend {
->setType(DefinitionParameter::VALUE_BOOLEAN)
->setFlag(DefinitionParameter::FLAG_OPTIONAL)
->setDefaultValue(true)
->setTooltip($l->t('Disabling it will allow to use a case insentive file system, but comes with a performance penalty')),
->setTooltip($l->t('Disabling it will allow to use a case insensitive file system, but comes with a performance penalty')),
(new DefinitionParameter('check_acl', $l->t('Verify ACL access when listing files')))
->setType(DefinitionParameter::VALUE_BOOLEAN)
->setFlag(DefinitionParameter::FLAG_OPTIONAL)

View file

@ -52,7 +52,7 @@ describe('Open in files action conditions tests', () => {
expect(action).toBeInstanceOf(FileAction)
expect(action.id).toBe('open-in-files-external-storage')
expect(action.displayName([storage], externalStorageView)).toBe('Open in files')
expect(action.displayName([storage], externalStorageView)).toBe('Open in Files')
expect(action.iconSvgInline([storage], externalStorageView)).toBe('')
expect(action.default).toBe(DefaultType.HIDDEN)
expect(action.order).toBe(-1000)

View file

@ -35,7 +35,7 @@ export const action = new FileAction({
if (config.status !== STORAGE_STATUS.SUCCESS) {
return t('files_external', 'Examine this faulty external storage configuration')
}
return t('files', 'Open in files')
return t('files', 'Open in Files')
},
iconSvgInline: () => '',

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long