Skip to content

Commit 97fd700

Browse files
fix: rename 'edit locally' to 'open locally'
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>
1 parent a6bd34e commit 97fd700

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

apps/files/js/fileactions.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -728,7 +728,7 @@
728728
displayName: function(context) {
729729
var locked = context.$file.data('locked');
730730
if (!locked) {
731-
return t('files', 'Edit locally');
731+
return t('files', 'Open locally');
732732
}
733733
},
734734
mime: 'all',

apps/files/src/actions/editLocallyAction.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ const openLocalClient = async function(path: string) {
8181

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

8787
// Only works on single files

0 commit comments

Comments
 (0)