chore: Follow up chat settings

This commit is contained in:
Krille 2023-08-13 16:25:56 +02:00
commit f36d5f8a89
No known key found for this signature in database
4 changed files with 22 additions and 14 deletions

View file

@ -19,7 +19,7 @@ class ChatPermissionsSettingsView extends StatelessWidget {
return Scaffold(
appBar: AppBar(
leading: const Center(child: BackButton()),
title: Text(L10n.of(context)!.editChatPermissions),
title: Text(L10n.of(context)!.chatPermissions),
),
body: MaxWidthBody(
child: StreamBuilder(

View file

@ -45,7 +45,7 @@ class PermissionsListTile extends StatelessWidget {
case EventTypes.RoomName:
return L10n.of(context)!.changeTheNameOfTheGroup;
case EventTypes.RoomPowerLevels:
return L10n.of(context)!.editChatPermissions;
return L10n.of(context)!.chatPermissions;
case EventTypes.HistoryVisibility:
return L10n.of(context)!.visibilityOfTheChatHistory;
case EventTypes.RoomCanonicalAlias: