Merge pull request #3032 from pangeachat/update-no-rooms-prompt

Update no room prompt
This commit is contained in:
ggurdin 2025-06-12 11:20:45 -04:00 committed by GitHub
commit 74702385f0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 4 additions and 2 deletions

View file

@ -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"
}

View file

@ -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(

View file

@ -120,6 +120,7 @@ class PangeaController {
'class_storage',
'subscription_storage',
'vocab_storage',
'onboarding_storage',
];
Future<void> clearCache() async {