From c45815d47e356ce239094135075f0a3a238c2c1f Mon Sep 17 00:00:00 2001 From: Ilya Laktyushin Date: Mon, 30 Aug 2021 20:12:59 +0300 Subject: [PATCH] Fix localization --- Telegram/Telegram-iOS/en.lproj/Localizable.strings | 2 ++ submodules/TelegramUI/Sources/ForwardAccessoryPanelNode.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 e44bef9542..236b64105b 100644 --- a/Telegram/Telegram-iOS/en.lproj/Localizable.strings +++ b/Telegram/Telegram-iOS/en.lproj/Localizable.strings @@ -6791,3 +6791,5 @@ Sorry for the inconvenience."; "Gif.Emotion.RollEyes" = "Roll-Eyes"; "Gif.Emotion.Cool" = "Cool"; "Gif.Emotion.Party" = "Party"; + +"Conversation.ForwardFrom" = "From: %@"; diff --git a/submodules/TelegramUI/Sources/ForwardAccessoryPanelNode.swift b/submodules/TelegramUI/Sources/ForwardAccessoryPanelNode.swift index dc0ff8cc30..cd4726401e 100644 --- a/submodules/TelegramUI/Sources/ForwardAccessoryPanelNode.swift +++ b/submodules/TelegramUI/Sources/ForwardAccessoryPanelNode.swift @@ -178,7 +178,7 @@ final class ForwardAccessoryPanelNode: AccessoryPanelNode { text = "\(authors): \(string)" } else { title = strongSelf.strings.Conversation_ForwardOptions_ForwardTitle(Int32(messages.count)) - text = "From \(authors)" + text = strongSelf.strings.Conversation_ForwardFrom(authors) } strongSelf.messages = messages