Skip to content

Commit

Permalink
Merge pull request #39400 from nextcloud/rakekniven-patch-1
Browse files Browse the repository at this point in the history
fix(i18n) Changed case of "Files"
  • Loading branch information
nickvergessen committed Aug 1, 2023
2 parents 4c9d589 + 4c3aad8 commit 385f987
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion apps/files_sharing/src/actions/openInFilesAction.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ describe('Open in files action conditions tests', () => {
test('Default values', () => {
expect(action).toBeInstanceOf(FileAction)
expect(action.id).toBe('open-in-files')
expect(action.displayName([], validViews[0])).toBe('Open in files')
expect(action.displayName([], validViews[0])).toBe('Open in Files')
expect(action.iconSvgInline([], validViews[0])).toBe('')
expect(action.default).toBe(DefaultType.HIDDEN)
expect(action.order).toBe(-1000)
Expand Down
2 changes: 1 addition & 1 deletion apps/files_sharing/src/actions/openInFilesAction.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import { sharesViewId, sharedWithYouViewId, sharedWithOthersViewId, sharingByLin

export const action = new FileAction({
id: 'open-in-files',
displayName: () => t('files', 'Open in files'),
displayName: () => t('files', 'Open in Files'),
iconSvgInline: () => '',

enabled: (nodes, view) => [
Expand Down
4 changes: 2 additions & 2 deletions dist/files_sharing-files_sharing.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/files_sharing-files_sharing.js.map

Large diffs are not rendered by default.

0 comments on commit 385f987

Please sign in to comment.