From 7a8f01536ac5ff5b53db28900de6b89297dbfaac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Elias=20M=C3=BCller?= Date: Mon, 31 Jul 2023 20:06:05 +0200 Subject: [PATCH] Fixed typos --- lib/view/pages/talk/chatList.dart | 2 +- lib/view/pages/talk/chatTile.dart | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/view/pages/talk/chatList.dart b/lib/view/pages/talk/chatList.dart index 86fd903..0760f9f 100644 --- a/lib/view/pages/talk/chatList.dart +++ b/lib/view/pages/talk/chatList.dart @@ -61,7 +61,7 @@ class _ChatListState extends State { ConfirmDialog( title: "Chat starten", - content: "Möchtest du einen Chat mit nutzer '$username' starten?", + content: "Möchtest du einen Chat mit Nutzer '$username' starten?", confirmButton: "Chat starten", onConfirm: () { CreateRoom(CreateRoomParams( diff --git a/lib/view/pages/talk/chatTile.dart b/lib/view/pages/talk/chatTile.dart index e724d87..9b09413 100644 --- a/lib/view/pages/talk/chatTile.dart +++ b/lib/view/pages/talk/chatTile.dart @@ -140,7 +140,7 @@ class _ChatTileState extends State { visible: widget.data.isFavorite, replacement: ListTile( leading: const Icon(Icons.star_outline), - title: const Text("Zu favoriten hinzufügen"), + title: const Text("Zu Favoriten hinzufügen"), onTap: () { SetFavorite(widget.data.token, true).run().then((value) => widget.query(renew: true)); Navigator.of(context).pop(); @@ -148,7 +148,7 @@ class _ChatTileState extends State { ), child: ListTile( leading: const Icon(Icons.stars_outlined), - title: const Text("Von favoriten entfernen"), + title: const Text("Von Favoriten entfernen"), onTap: () { SetFavorite(widget.data.token, false).run().then((value) => widget.query(renew: true)); Navigator.of(context).pop();