Nutze informelles Deutsch, also "Du" statt "Sie".

This commit is contained in:
Quests Agent
2025-09-29 18:13:22 +02:00
parent 11d17213c1
commit afb24220c7
4 changed files with 16 additions and 16 deletions

View File

@@ -245,7 +245,7 @@ export function AdminTreatments() {
</button>
<button
onClick={() => {
if (confirm("Are you sure you want to delete this treatment?")) {
if (confirm("Bist du sicher, dass du diese Behandlung löschen möchtest?")) {
deleteTreatment(treatment.id);
}
}}
@@ -261,7 +261,7 @@ export function AdminTreatments() {
{!treatments?.length && (
<div className="text-center py-8 text-gray-500">
No treatments available. Add your first treatment to get started.
Keine Behandlungen verfügbar. Füge deine erste Behandlung hinzu, um zu starten.
</div>
)}
</div>