UX: KI-Analyse → KI Insights zu [Name] in PersonDetailView
Sektionsüberschrift und Sheet-Titel enthalten jetzt den Vornamen der Person für mehr Kontext. Englische Format-Keys in xcstrings ergänzt. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -5681,7 +5681,8 @@
|
||||
}
|
||||
},
|
||||
"Verlauf & KI-Analyse" : {
|
||||
"comment" : "PersonDetailView – logbuch section header",
|
||||
"comment" : "PersonDetailView – logbuch section header (legacy, nicht mehr in Verwendung)",
|
||||
"extractionState" : "stale",
|
||||
"localizations" : {
|
||||
"en" : {
|
||||
"stringUnit" : {
|
||||
@@ -5691,6 +5692,28 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"Verlauf & KI Insights zu %@" : {
|
||||
"comment" : "PersonDetailView – logbuch section header mit Personenname",
|
||||
"localizations" : {
|
||||
"en" : {
|
||||
"stringUnit" : {
|
||||
"state" : "translated",
|
||||
"value" : "History & AI Insights on %@"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"KI Insights zu %@" : {
|
||||
"comment" : "AIAnalysisSheet – navigation title mit Personenname",
|
||||
"localizations" : {
|
||||
"en" : {
|
||||
"stringUnit" : {
|
||||
"state" : "translated",
|
||||
"value" : "AI Insights on %@"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"Version" : {
|
||||
"comment" : "SettingsView – version info row label",
|
||||
"extractionState" : "stale",
|
||||
|
||||
@@ -542,7 +542,7 @@ struct PersonDetailView: View {
|
||||
|
||||
return VStack(alignment: .leading, spacing: 10) {
|
||||
HStack {
|
||||
SectionHeader(title: "Verlauf & KI-Analyse", icon: "sparkles")
|
||||
SectionHeader(title: "Verlauf & KI Insights zu \(person.firstName)", icon: "sparkles")
|
||||
Spacer()
|
||||
NavigationLink(destination: LogbuchView(person: person)) {
|
||||
Text("Alle")
|
||||
@@ -1674,7 +1674,7 @@ private struct AIAnalysisSheet: View {
|
||||
.padding(20)
|
||||
}
|
||||
.background(theme.backgroundPrimary.ignoresSafeArea())
|
||||
.navigationTitle("KI-Analyse")
|
||||
.navigationTitle("KI Insights zu \(person.firstName)")
|
||||
.navigationBarTitleDisplayMode(.inline)
|
||||
.themedNavBar()
|
||||
.toolbar {
|
||||
|
||||
Reference in New Issue
Block a user