diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2019-03-16 15:04:20 +0100 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2019-03-16 15:04:20 +0100 |
commit | 9dd7bc1919c59cc9609a59fdf3875fd3aa2b0154 (patch) | |
tree | a99d2ecd25118c17c6eab67352a28a591f27b2da /apps/files_trashbin/src | |
parent | c01019b5368d786e0603fc20ac240306a74ae9cb (diff) | |
download | nextcloud-server-9dd7bc1919c59cc9609a59fdf3875fd3aa2b0154.tar.gz nextcloud-server-9dd7bc1919c59cc9609a59fdf3875fd3aa2b0154.zip |
Trashbin: Delete => Delete permanently
For #14639
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'apps/files_trashbin/src')
-rw-r--r-- | apps/files_trashbin/src/app.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files_trashbin/src/app.js b/apps/files_trashbin/src/app.js index 3f6fd011238..2bc8e08b812 100644 --- a/apps/files_trashbin/src/app.js +++ b/apps/files_trashbin/src/app.js @@ -47,7 +47,7 @@ OCA.Trashbin.App = { }, { name: 'delete', - displayName: t('files', 'Delete'), + displayName: t('files_trashbin', 'Delete permanently'), iconClass: 'icon-delete', } ], @@ -95,7 +95,7 @@ OCA.Trashbin.App = { fileActions.registerAction({ name: 'Delete', - displayName: t('files', 'Delete'), + displayName: t('files_trashbin', 'Delete permanently'), mime: 'all', permissions: OC.PERMISSION_READ, iconClass: 'icon-delete', |