From f41b47ee258f6ebba66512578be1e6c0e11d48fd Mon Sep 17 00:00:00 2001 From: Ilya Laktyushin Date: Mon, 15 Apr 2024 01:31:27 +0400 Subject: [PATCH] Fix typo --- .../TelegramUI/Sources/ContactMultiselectionController.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/submodules/TelegramUI/Sources/ContactMultiselectionController.swift b/submodules/TelegramUI/Sources/ContactMultiselectionController.swift index bc4fa72e14..118bb3bc37 100644 --- a/submodules/TelegramUI/Sources/ContactMultiselectionController.swift +++ b/submodules/TelegramUI/Sources/ContactMultiselectionController.swift @@ -424,7 +424,7 @@ class ContactMultiselectionControllerImpl: ViewController, ContactMultiselection let presentationData = self.presentationData var items: [ContextMenuItem] = [] - items.append(.action(ContextMenuActionItem(text: presentationData.stings.Premium_Gift_ContactSelection_SendMessage, icon: { theme in + items.append(.action(ContextMenuActionItem(text: presentationData.strings.Premium_Gift_ContactSelection_SendMessage, icon: { theme in return generateTintedImage(image: UIImage(bundleImageName: "Chat/Context Menu/MessageBubble"), color: theme.contextMenu.primaryColor) }, iconPosition: .left, action: { [weak self] _, a in a(.default) @@ -434,7 +434,7 @@ class ContactMultiselectionControllerImpl: ViewController, ContactMultiselection } }))) - items.append(.action(ContextMenuActionItem(text: presentationData.stings.Premium_Gift_ContactSelection_OpenProfile, icon: { theme in + items.append(.action(ContextMenuActionItem(text: presentationData.strings.Premium_Gift_ContactSelection_OpenProfile, icon: { theme in return generateTintedImage(image: UIImage(bundleImageName: "Chat/Context Menu/User"), color: theme.contextMenu.primaryColor) }, iconPosition: .left, action: { [weak self] _, a in a(.default)