diff --git a/Telegram/Telegram-iOS/en.lproj/Localizable.strings b/Telegram/Telegram-iOS/en.lproj/Localizable.strings index beb3581936..990641f4a2 100644 --- a/Telegram/Telegram-iOS/en.lproj/Localizable.strings +++ b/Telegram/Telegram-iOS/en.lproj/Localizable.strings @@ -6891,6 +6891,7 @@ Sorry for the inconvenience."; "MemberRequests.DescriptionGroup" = "Some [additional links]() are set up to accept requests to join the group."; "MemberRequests.DescriptionChannel" = "Some [additional links]() are set up to accept requests to join the channel."; +"MemberRequests.SearchPlaceholder" = "Search Join Requests"; "MemberRequests.PeopleRequested_1" = "%@ requested to join"; "MemberRequests.PeopleRequested_2" = "%@ requested to join"; "MemberRequests.PeopleRequested_3_10" = "%@ requested to join"; diff --git a/submodules/InviteLinksUI/Sources/InviteRequestsSearchItem.swift b/submodules/InviteLinksUI/Sources/InviteRequestsSearchItem.swift index d0c374f36d..dadde64128 100644 --- a/submodules/InviteLinksUI/Sources/InviteRequestsSearchItem.swift +++ b/submodules/InviteLinksUI/Sources/InviteRequestsSearchItem.swift @@ -72,7 +72,7 @@ final class SearchNavigationContentNode: NavigationBarContentNode, ItemListContr } func updatePlaceholder() { - self.searchBar.placeholderString = NSAttributedString(string: self.strings.Conversation_SearchByName_Placeholder, font: searchBarFont, textColor: self.theme.rootController.navigationSearchBar.inputPlaceholderTextColor) + self.searchBar.placeholderString = NSAttributedString(string: self.strings.MemberRequests_SearchPlaceholder, font: searchBarFont, textColor: self.theme.rootController.navigationSearchBar.inputPlaceholderTextColor) } override var nominalHeight: CGFloat {