Skip to content

Commit

Permalink
Make text translatable
Browse files Browse the repository at this point in the history
  • Loading branch information
tmolitor-stud-tu committed Oct 4, 2023
1 parent 547ba04 commit eb45ebf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Monal/Classes/ContactDetails.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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))) {
Expand Down

0 comments on commit eb45ebf

Please sign in to comment.