Skip to content

Commit

Permalink
fix: rename 'edit locally' to 'open locally'
Browse files Browse the repository at this point in the history
Signed-off-by: Jérôme Herbinet <33763786+Jerome-Herbinet@users.noreply.github.com>

Replace "Edit" by "Open"

Signed-off-by: Jérôme Herbinet <33763786+Jerome-Herbinet@users.noreply.github.com>

Signed-off-by: Jérôme Herbinet <33763786+Jerome-Herbinet@users.noreply.github.com>
  • Loading branch information
Jerome-Herbinet committed Sep 16, 2024
1 parent a6bd34e commit 97fd700
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/files/js/fileactions.js
Original file line number Diff line number Diff line change
Expand Up @@ -728,7 +728,7 @@
displayName: function(context) {
var locked = context.$file.data('locked');
if (!locked) {
return t('files', 'Edit locally');
return t('files', 'Open locally');
}
},
mime: 'all',
Expand Down
2 changes: 1 addition & 1 deletion apps/files/src/actions/editLocallyAction.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ const openLocalClient = async function(path: string) {

export const action = new FileAction({
id: 'edit-locally',
displayName: () => t('files', 'Edit locally'),
displayName: () => t('files', 'Open locally'),
iconSvgInline: () => LaptopSvg,

// Only works on single files
Expand Down

0 comments on commit 97fd700

Please sign in to comment.