From efc5b19f5de11303271df274bdabf13278651e2b Mon Sep 17 00:00:00 2001 From: Krille Fear Date: Thu, 20 Jan 2022 15:49:07 +0100 Subject: [PATCH] chore: Add missing localization --- lib/pages/chat_list/stories_header.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/pages/chat_list/stories_header.dart b/lib/pages/chat_list/stories_header.dart index 5bad96c2..2f2b0526 100644 --- a/lib/pages/chat_list/stories_header.dart +++ b/lib/pages/chat_list/stories_header.dart @@ -105,7 +105,7 @@ class StoriesHeader extends StatelessWidget { foregroundColor: Theme.of(context).textTheme.bodyText1?.color, child: const Icon(Icons.add), ), - title: const Text('Add to story'), + title: Text(L10n.of(context)!.addToStory), onTap: () => _addToStoryAction(context), ); }