From eb45ebf5402bca993a22e712031d9867c60f350e Mon Sep 17 00:00:00 2001 From: Thilo Molitor Date: Wed, 4 Oct 2023 19:04:17 +0200 Subject: [PATCH] Make text translatable --- Monal/Classes/ContactDetails.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Monal/Classes/ContactDetails.swift b/Monal/Classes/ContactDetails.swift index a9aea13585..31a3685489 100644 --- a/Monal/Classes/ContactDetails.swift +++ b/Monal/Classes/ContactDetails.swift @@ -132,7 +132,7 @@ struct ContactDetails: View { #if !DISABLE_OMEMO if(!contact.isGroup) { NavigationLink(destination: LazyClosureView(OmemoKeys(contact: contact))) { - Text(contact.isSelfChat ? "Own Encryption Keys" : "Encryption Keys") + contact.isSelfChat ? Text("Own Encryption Keys") : Text("Encryption Keys") } } else if(contact.mucType == "group") { NavigationLink(destination: LazyClosureView(OmemoKeys(contact: contact))) {