develop-groupedParticipants #89

Merged
MineTec merged 7 commits from develop-groupedParticipants into develop 2025-09-06 14:12:10 +00:00
4 changed files with 36 additions and 18 deletions
Showing only changes of commit 22d3d18a17 - Show all commits

View File

@@ -57,9 +57,9 @@ class GetParticipantsResponseObject {
enum GetParticipantsResponseObjectParticipantType {
@JsonValue(1) owner('Besitzer'),
@JsonValue(2) moderator('Moderator'),
@JsonValue(3) user('Benutzer'),
@JsonValue(3) user('Teilnehmer'),
MineTec marked this conversation as resolved Outdated

Teilnehmer erscheint mir ein besserer Begriff in dem Kontext

Teilnehmer erscheint mir ein besserer Begriff in dem Kontext
@JsonValue(4) guest('Gast'),
@JsonValue(5) userFollowingPublicLink('Link Nutzer'),
@JsonValue(5) userFollowingPublicLink('Teilnehmer über Link'),
MineTec marked this conversation as resolved Outdated

hier ebenfalls

hier ebenfalls
@JsonValue(6) guestWithModeratorPermissions('Gast Moderator');
const GetParticipantsResponseObjectParticipantType(this.prettyName);

View File

@@ -66,7 +66,7 @@ class _ChatInfoState extends State<ChatInfo> {
if(participants != null) ...[
ListTile(
leading: const Icon(Icons.supervised_user_circle),
title: Text('${participants!.data.length} Teilnehmer'),
title: Text('${participants!.data.length} Mitglieder'),
trailing: const Icon(Icons.arrow_right),
onTap: () => TalkNavigator.pushSplitView(context, ParticipantsListView(participants!)),
),

View File

@@ -19,7 +19,7 @@ class ParticipantsListView extends StatelessWidget {
return Scaffold(
appBar: AppBar(
title: const Text('Teilnehmende'),
title: const Text('Mitglieder'),
),
body: ListView(
children: [