diff options
author | skjnldsv <skjnldsv@protonmail.com> | 2024-07-16 18:40:20 +0200 |
---|---|---|
committer | skjnldsv <skjnldsv@protonmail.com> | 2024-07-18 19:47:11 +0200 |
commit | 55d41941bcc06bfe80ef3f11ef9d97a79b1873c3 (patch) | |
tree | 792aaf9151b740b3d37a2b828afb7c84c2d04cbc /apps/files_sharing/src/components/NewFileRequestDialog.vue | |
parent | eb2cda13c839f3e4fcb31fdb176e248ac2c73a38 (diff) | |
download | nextcloud-server-55d41941bcc06bfe80ef3f11ef9d97a79b1873c3.tar.gz nextcloud-server-55d41941bcc06bfe80ef3f11ef9d97a79b1873c3.zip |
fix(files_sharing): improve file request email handling
Signed-off-by: skjnldsv <skjnldsv@protonmail.com>
Diffstat (limited to 'apps/files_sharing/src/components/NewFileRequestDialog.vue')
-rw-r--r-- | apps/files_sharing/src/components/NewFileRequestDialog.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_sharing/src/components/NewFileRequestDialog.vue b/apps/files_sharing/src/components/NewFileRequestDialog.vue index 1b29457a677..398fd976f02 100644 --- a/apps/files_sharing/src/components/NewFileRequestDialog.vue +++ b/apps/files_sharing/src/components/NewFileRequestDialog.vue @@ -212,7 +212,7 @@ export default defineComponent({ if (this.emails.length === 0) { return t('files_sharing', 'Close') } - return n('files_sharing', 'Close and send email', 'Close and send {count} emails', this.emails.length, { count: this.emails.length }) + return n('files_sharing', 'Send email and close', 'Send {count} emails and close', this.emails.length, { count: this.emails.length }) }, }, |