Clarify public key sub-text in security settings (#1412)

* Clarify public key sub-text in settings

* Trigger lint
This commit is contained in:
Spencer Smith 2025-09-24 23:34:30 -06:00 committed by GitHub
parent 0ed9d8a430
commit 9b27f28beb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 5 additions and 5 deletions

View file

@ -15976,18 +15976,18 @@
}
}
},
"Generated from your public key and sent out to other nodes on the mesh to allow them to compute a shared secret key." : {
"Generated from your private key and sent to other nodes on the mesh so they can compute a shared secret key." : {
"localizations" : {
"ja" : {
"stringUnit" : {
"state" : "translated",
"value" : "パブリックキーから生成され、メッシュ上の他のノードに送信されて、共有秘密キーの計算を可能にします。"
"value" : "秘密キーから生成され、メッシュ上の他のノードに送信されて、共有秘密キーの計算を可能にします。"
}
},
"sr" : {
"stringUnit" : {
"state" : "translated",
"value" : "Генерисано из твог јавног кључа и послато другим чворовима на мрежи како би им омогућило да израчунају заједнички тајни кључ.\n"
"value" : "Генерисано из твог приватног кључа и послато другим чворовима на мрежи како би им омогућило да израчунају заједнички тајни кључ.\n"
}
}
}
@ -42428,4 +42428,4 @@
}
},
"version" : "1.1"
}
}

View file

@ -68,7 +68,7 @@ struct SecurityConfig: View {
RoundedRectangle(cornerRadius: 10.0)
.stroke(isValidKeyPair ? Color.clear : Color.red, lineWidth: 2.0)
)
Text("Generated from your public key and sent out to other nodes on the mesh to allow them to compute a shared secret key.")
Text("Generated from your private key and sent to other nodes on the mesh so they can compute a shared secret key.")
.foregroundStyle(.secondary)
.font(idiom == .phone ? .caption : .callout)
Divider()