From 0d8a512ba29d3fcca62b21efd505ba37aea9ee57 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Thu, 18 Apr 2024 10:01:03 +0200 Subject: [PATCH] fix(l10n): "Connection failed" not translatable Signed-off-by: Arthur Schiwon --- src/components/Editor.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Editor.vue b/src/components/Editor.vue index 4c4d6bde990..295597cca7c 100644 --- a/src/components/Editor.vue +++ b/src/components/Editor.vue @@ -595,7 +595,7 @@ export default { } if (type === ERROR_TYPE.CONNECTION_FAILED && !this.hasConnectionIssue) { this.hasConnectionIssue = true - OC.Notification.showTemporary('Connection failed.') + OC.Notification.showTemporary(t('text', 'Connection failed.')) } if (type === ERROR_TYPE.SOURCE_NOT_FOUND) { this.hasConnectionIssue = true