Merge pull request #3032 from pangeachat/update-no-rooms-prompt
Update no room prompt
This commit is contained in:
commit
74702385f0
3 changed files with 4 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(
|
||||
|
|
|
|||
|
|
@ -120,6 +120,7 @@ class PangeaController {
|
|||
'class_storage',
|
||||
'subscription_storage',
|
||||
'vocab_storage',
|
||||
'onboarding_storage',
|
||||
];
|
||||
|
||||
Future<void> clearCache() async {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue