Update text resources and enhance interaction dialog headers

Adjusted the header text in ProspectContainer to include the prospect's name for better context. Refined translation terms for interaction types in TermHelper to improve clarity and consistency.
This commit is contained in:
Andre Beging
2025-04-01 09:15:45 +02:00
parent 8601fd4b53
commit 265d648473
2 changed files with 5 additions and 5 deletions

View File

@@ -22,13 +22,13 @@ namespace FoodsharingSiegen.Shared.Helper
{
InteractionType.EinAb => "Einführung",
InteractionType.Welcome => "Begrüßung",
InteractionType.IdCheck => "Perso prüfen",
InteractionType.PrintPass => "FS-Ausweis (Print)",
InteractionType.IdCheck => "Perso-Check",
InteractionType.PrintPass => "FS-Ausweis",
InteractionType.PdfPass => "FS-Ausweis (PDF)",
InteractionType.Verify => "Verifizieren",
InteractionType.Verify => "Verifizierung",
InteractionType.Complete => "Fertig",
InteractionType.StepInBriefing => appSettings.Terms.StepInName ?? "StepIn",
InteractionType.ReleasedForVerification => "Freigabe zur Verifizierung",
InteractionType.ReleasedForVerification => "Freigabe zum Freischalten",
_ => type.ToString()
};
}