diff --git a/Telegram/Telegram-iOS/en.lproj/Localizable.strings b/Telegram/Telegram-iOS/en.lproj/Localizable.strings index 3602be9e48..5b33140870 100644 --- a/Telegram/Telegram-iOS/en.lproj/Localizable.strings +++ b/Telegram/Telegram-iOS/en.lproj/Localizable.strings @@ -6821,3 +6821,5 @@ Ads should no longer be synonymous with abuse of user privacy. Let us redefine h "LiveStream.RecordingSaved" = "Live stream recording saved to **Saved Messages**."; "ChatContextMenu.MessageViewsPrivacyTip" = "To protect privacy, views are only stored for 7 days."; + +"Activity.EnjoyingAnimations" = "enjoying %@ animations"; diff --git a/submodules/TelegramUI/Sources/ChatTitleView.swift b/submodules/TelegramUI/Sources/ChatTitleView.swift index f844e2f04a..9bd9fe4cdf 100644 --- a/submodules/TelegramUI/Sources/ChatTitleView.swift +++ b/submodules/TelegramUI/Sources/ChatTitleView.swift @@ -344,7 +344,7 @@ final class ChatTitleView: UIView, NavigationBarTitleView { case .choosingSticker: stringValue = strings.Activity_ChoosingSticker case let .seeingEmojiInteraction(emoticon): - stringValue = "enjoying \(emoticon) animations" + stringValue = strings.Activity_EnjoyingAnimations(emoticon).string case .speakingInGroupCall, .interactingWithEmoji: stringValue = "" }