diff --git a/lib/screens/channels_screen.dart b/lib/screens/channels_screen.dart index 30a99f0..c302fb3 100644 --- a/lib/screens/channels_screen.dart +++ b/lib/screens/channels_screen.dart @@ -312,6 +312,7 @@ class _ChannelsScreenState extends State ), floatingActionButton: FloatingActionButton( onPressed: () => _showAddChannelDialog(context), + tooltip: context.l10n.channels_addChannel, child: const Icon(Icons.add), ), bottomNavigationBar: SafeArea( diff --git a/lib/screens/map_screen.dart b/lib/screens/map_screen.dart index 5b804eb..74e5cf9 100644 --- a/lib/screens/map_screen.dart +++ b/lib/screens/map_screen.dart @@ -354,6 +354,7 @@ class _MapScreenState extends State { ), floatingActionButton: FloatingActionButton( onPressed: () => _showFilterDialog(context, settingsService), + tooltip: context.l10n.map_filterNodes, child: const Icon(Icons.filter_list), ), ),