mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
Update localization
This commit is contained in:
parent
09dd6149a1
commit
75e02e4f28
@ -8097,3 +8097,8 @@ Sorry for the inconvenience.";
|
||||
"Username.LinksOrderInfo" = "Drag and drop links to change the order in which they will be displayed on your info page.";
|
||||
|
||||
"Profile.AdditionalUsernames" = "also %@";
|
||||
|
||||
"EmojiSearch.SearchReactionsPlaceholder" = "Search Reactions";
|
||||
"EmojiSearch.SearchReactionsEmptyResult" = "No emoji found";
|
||||
"EmojiSearch.SearchStatusesPlaceholder" = "Search Statuses";
|
||||
"EmojiSearch.SearchStatusesEmptyResult" = "No emoji found";
|
||||
|
@ -453,9 +453,8 @@ public final class ReactionContextNode: ASDisplayNode, UIScrollViewDelegate {
|
||||
if strongSelf.stableEmptyResultEmoji == nil {
|
||||
strongSelf.stableEmptyResultEmoji = strongSelf.emptyResultEmojis.randomElement()
|
||||
}
|
||||
//TODO:localize
|
||||
emptySearchResults = EmojiPagerContentComponent.EmptySearchResults(
|
||||
text: "No emoji found",
|
||||
text: strongSelf.presentationData.strings.EmojiSearch_SearchReactionsEmptyResult,
|
||||
iconFile: strongSelf.stableEmptyResultEmoji
|
||||
)
|
||||
} else {
|
||||
|
@ -358,9 +358,8 @@ public final class EmojiStatusSelectionController: ViewController {
|
||||
if strongSelf.stableEmptyResultEmoji == nil {
|
||||
strongSelf.stableEmptyResultEmoji = strongSelf.emptyResultEmojis.randomElement()
|
||||
}
|
||||
//TODO:localize
|
||||
emptySearchResults = EmojiPagerContentComponent.EmptySearchResults(
|
||||
text: "No emoji found",
|
||||
text: strongSelf.presentationData.strings.EmojiSearch_SearchStatusesEmptyResult,
|
||||
iconFile: strongSelf.stableEmptyResultEmoji
|
||||
)
|
||||
} else {
|
||||
|
@ -6790,9 +6790,9 @@ public final class EmojiPagerContentComponent: Component {
|
||||
|
||||
var displaySearchWithPlaceholder: String?
|
||||
if isReactionSelection {
|
||||
displaySearchWithPlaceholder = "Search Reactions"
|
||||
displaySearchWithPlaceholder = strings.EmojiSearch_SearchReactionsPlaceholder
|
||||
} else if isStatusSelection {
|
||||
displaySearchWithPlaceholder = "Search Statuses"
|
||||
displaySearchWithPlaceholder = strings.EmojiSearch_SearchStatusesPlaceholder
|
||||
}
|
||||
|
||||
return EmojiPagerContentComponent(
|
||||
|
Loading…
x
Reference in New Issue
Block a user