From 28c4ab8da9cba1a3ba14661e4b6aabeef280b0eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Herbinet?= <33763786+jerome-herbinet@users.noreply.github.com> Date: Mon, 21 Oct 2024 15:49:16 +0200 Subject: [PATCH] fix: 'Share from Files' wording fix MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Herbinet <33763786+Jerome-Herbinet@users.noreply.github.com> --- src/components/NewMessage/NewMessageAttachments.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/components/NewMessage/NewMessageAttachments.vue b/src/components/NewMessage/NewMessageAttachments.vue index 401096014fa..a5543a21992 100644 --- a/src/components/NewMessage/NewMessageAttachments.vue +++ b/src/components/NewMessage/NewMessageAttachments.vue @@ -127,7 +127,9 @@ export default { }, shareFromNextcloudLabel() { - return t('spreed', 'Share from {nextcloud}', { nextcloud: OC.theme.productName }) + return IS_DESKTOP + ? t('spreed', 'Share from {nextcloud}', { nextcloud: OC.theme.productName }) + : t('spreed', 'Share from Files') }, },