diff options
author | Jérôme Herbinet <33763786+Jerome-Herbinet@users.noreply.github.com> | 2023-02-23 13:35:31 +0100 |
---|---|---|
committer | Ferdinand Thiessen <opensource@fthiessen.de> | 2025-02-21 16:42:00 +0100 |
commit | e3d8edb7fc338ff4e060fe9b3bba8953ebde206e (patch) | |
tree | 99c4a46c679f2849c67b4429a588342ee3fe2853 /apps/files/src/init.ts | |
parent | 6cd30463699fda1dc0b9c2e99f497bdef56a293e (diff) | |
download | nextcloud-server-e3d8edb7fc338ff4e060fe9b3bba8953ebde206e.tar.gz nextcloud-server-e3d8edb7fc338ff4e060fe9b3bba8953ebde206e.zip |
fix: rename 'edit locally' to 'open locally'
Replace "Edit" by "Open"
Signed-off-by: Jérôme Herbinet <33763786+Jerome-Herbinet@users.noreply.github.com>
Diffstat (limited to 'apps/files/src/init.ts')
-rw-r--r-- | apps/files/src/init.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/src/init.ts b/apps/files/src/init.ts index fd6533c6c23..492ffbb1915 100644 --- a/apps/files/src/init.ts +++ b/apps/files/src/init.ts @@ -6,7 +6,7 @@ import { addNewFileMenuEntry, registerDavProperty, registerFileAction } from '@n import { action as deleteAction } from './actions/deleteAction' import { action as downloadAction } from './actions/downloadAction' -import { action as editLocallyAction } from './actions/editLocallyAction' +import { action as editLocallyAction } from './actions/openLocallyAction.ts' import { action as favoriteAction } from './actions/favoriteAction' import { action as moveOrCopyAction } from './actions/moveOrCopyAction' import { action as openFolderAction } from './actions/openFolderAction' |