mirror of
https://github.com/TelegramMessenger/Telegram-iOS.git
synced 2026-07-05 19:28:46 +02:00
Merge commit '73d5152aec'
This commit is contained in:
commit
babf5cc9d7
2 changed files with 3 additions and 3 deletions
|
|
@ -14973,7 +14973,6 @@ Sorry for the inconvenience.";
|
|||
"Gift.Value.MinimumPriceInfo" = "**%1$@** is the floor price for %2$@ gifts listed on Telegram and Fragment.";
|
||||
"Gift.Value.AveragePriceInfo" = "**%1$@** is the average sale price for %2$@ gifts listed on Telegram and Fragment over the past month.";
|
||||
|
||||
"Gift.Value.AveragePrice" = "Last Sale";
|
||||
"Gift.Value.InitialSale" = "Initial Sale";
|
||||
"Gift.Value.InitialPrice" = "Initial Price";
|
||||
"Gift.Value.LastSale" = "Last Sale";
|
||||
|
|
|
|||
|
|
@ -4561,11 +4561,12 @@ private final class GiftViewSheetContent: CombinedComponent {
|
|||
while j < suffix.endIndex, suffix[j].isNumber {
|
||||
j = suffix.index(after: j)
|
||||
}
|
||||
if let value = Int(suffix[i..<j]) {
|
||||
let string = suffix[i..<j]
|
||||
if let value = Int(string) {
|
||||
buttonAnimatedTitleItems.append(
|
||||
AnimatedTextComponent.Item(
|
||||
id: AnyHashable(buttonAnimatedTitleItems.count),
|
||||
content: .number(value, minDigits: 1)
|
||||
content: .number(value, minDigits: string.count)
|
||||
)
|
||||
)
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue