From 21496be4298ce953a8f61ebd840e9e9b05c66e53 Mon Sep 17 00:00:00 2001 From: Ilya Laktyushin Date: Mon, 30 Aug 2021 17:22:26 +0300 Subject: [PATCH] Fix choosing sticker activity for groups --- Telegram/Telegram-iOS/en.lproj/Localizable.strings | 2 ++ submodules/ChatListUI/Sources/Node/ChatListTypingNode.swift | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Telegram/Telegram-iOS/en.lproj/Localizable.strings b/Telegram/Telegram-iOS/en.lproj/Localizable.strings index b997b6cd41..9f8ed0d82c 100644 --- a/Telegram/Telegram-iOS/en.lproj/Localizable.strings +++ b/Telegram/Telegram-iOS/en.lproj/Localizable.strings @@ -6650,6 +6650,8 @@ Sorry for the inconvenience."; "Conversation.ForwardOptions.Messages_0" = "%@ messages"; "Activity.ChoosingSticker" = "choosing sticker"; +"DialogList.SingleChoosingStickerSuffix" = "%@ is choosing sticker"; + "WallpaperPreview.Animate" = "Animate"; "WallpaperPreview.AnimateDescription" = "Colors will move when you send messages"; diff --git a/submodules/ChatListUI/Sources/Node/ChatListTypingNode.swift b/submodules/ChatListUI/Sources/Node/ChatListTypingNode.swift index 3c93404932..0e90676cc3 100644 --- a/submodules/ChatListUI/Sources/Node/ChatListTypingNode.swift +++ b/submodules/ChatListUI/Sources/Node/ChatListTypingNode.swift @@ -104,7 +104,7 @@ final class ChatListInputActivitiesNode: ASDisplayNode { case .typingText: text = strings.DialogList_SingleTypingSuffix(peerTitle).string case .choosingSticker: - text = "" + text = strings.DialogList_SingleChoosingStickerSuffix(peerTitle).string case .speakingInGroupCall: text = "" }