From 61d85340de71ed9c5e3c65e4466982a9de8f28e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C5=82=20Adasiewicz?= Date: Thu, 26 Jan 2023 14:09:26 +0100 Subject: [PATCH] Fix analyze --- .../stream_chat_localizations/example/lib/add_new_lang.dart | 3 +++ .../lib/src/stream_chat_localizations_hi.dart | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/packages/stream_chat_localizations/example/lib/add_new_lang.dart b/packages/stream_chat_localizations/example/lib/add_new_lang.dart index c52761a8..f71d4e1b 100644 --- a/packages/stream_chat_localizations/example/lib/add_new_lang.dart +++ b/packages/stream_chat_localizations/example/lib/add_new_lang.dart @@ -38,6 +38,9 @@ class NnStreamChatLocalizations extends GlobalStreamChatLocalizations { @override String get noUsersLabel => 'There are no users currently'; + @override + String get noPhotoOrVideoLabel => 'There is no photo or video'; + @override String get retryLabel => 'Retry'; diff --git a/packages/stream_chat_localizations/lib/src/stream_chat_localizations_hi.dart b/packages/stream_chat_localizations/lib/src/stream_chat_localizations_hi.dart index 4963c5b6..c00ab269 100644 --- a/packages/stream_chat_localizations/lib/src/stream_chat_localizations_hi.dart +++ b/packages/stream_chat_localizations/lib/src/stream_chat_localizations_hi.dart @@ -15,7 +15,7 @@ class StreamChatLocalizationsHi extends GlobalStreamChatLocalizations { String get noUsersLabel => 'वर्तमान में कोई यूजर नहीं हैं'; @override - String get noPhotoOrVideoLabel => "कोई फोटो या वीडियो नहीं है।"; + String get noPhotoOrVideoLabel => 'कोई फोटो या वीडियो नहीं है।'; @override String get retryLabel => 'पुन: प्रयास करे';