Add localization for 'Received a GIF' in multiple languages and update chat UI

This commit is contained in:
Zach
2026-07-08 20:38:06 -07:00
parent c683dbd8f1
commit 8765d0f4cc
26 changed files with 107 additions and 12 deletions
+3 -1
View File
@@ -1579,9 +1579,11 @@ class _ChannelChatScreenState extends State<ChannelChatScreen> {
}
String _formatPathPrefixes(Uint8List pathBytes) {
// Join with ", " (not bare ",") so long paths have soft-wrap break points
// and stay confined to the message bubble instead of overflowing right.
return pathBytes
.map((b) => b.toRadixString(16).padLeft(2, '0').toUpperCase())
.join(',');
.join(', ');
}
Future<void> openRegionSelectDialog(Channel channel) async {