Removed reference to button that no longer shows in prompt when user is not in any rooms
This commit is contained in:
parent
d647e3427a
commit
38dd8522a5
2 changed files with 3 additions and 2 deletions
|
|
@ -5015,5 +5015,6 @@
|
|||
"groupChat": "Group Chat",
|
||||
"directMessage": "Direct Message",
|
||||
"newDirectMessage": "New direct message",
|
||||
"speakingExercisesTooltip": "Speaking practice"
|
||||
"speakingExercisesTooltip": "Speaking practice",
|
||||
"noChatsFoundHereYet": "No chats found here yet"
|
||||
}
|
||||
|
|
@ -246,7 +246,7 @@ class ChatListViewBody extends StatelessWidget {
|
|||
padding: const EdgeInsets.all(16.0),
|
||||
child: Text(
|
||||
client.rooms.isEmpty
|
||||
? L10n.of(context).noChatsFoundHere
|
||||
? L10n.of(context).noChatsFoundHereYet
|
||||
: L10n.of(context).noMoreChatsFound,
|
||||
textAlign: TextAlign.center,
|
||||
style: TextStyle(
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue