We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 48bc6ab commit d5f8afeCopy full SHA for d5f8afe
lib/widgets/profile.dart
@@ -290,8 +290,9 @@ class _UserWidget extends StatelessWidget {
290
@override
291
Widget build(BuildContext context) {
292
final store = PerAccountStoreWidget.of(context);
293
+ final zulipLocalizations = ZulipLocalizations.of(context);
294
final user = store.users[userId];
- final fullName = user?.fullName ?? '(unknown user)';
295
+ final fullName = user?.fullName ?? zulipLocalizations.unknownUserName;
296
return InkWell(
297
onTap: () => Navigator.push(context,
298
ProfilePage.buildRoute(context: context,
0 commit comments