diff --git a/Telegram/Telegram-iOS/en.lproj/Localizable.strings b/Telegram/Telegram-iOS/en.lproj/Localizable.strings index 8354aa0a2c..393a1b7eb5 100644 --- a/Telegram/Telegram-iOS/en.lproj/Localizable.strings +++ b/Telegram/Telegram-iOS/en.lproj/Localizable.strings @@ -13442,3 +13442,5 @@ Sorry for the inconvenience."; "StarsTransaction.StarRefReason.Miniapp" = "Mini App"; "StarsTransaction.StarRefReason.Affiliate" = "Affiliate"; "StarsTransaction.StarRefReason.Referred" = "Referred User"; + +"Gallery.SaveToGallery.cached" = "cached"; diff --git a/submodules/GalleryUI/Sources/Items/UniversalVideoGalleryItem.swift b/submodules/GalleryUI/Sources/Items/UniversalVideoGalleryItem.swift index 27ccf575f8..40c8ed7a7e 100644 --- a/submodules/GalleryUI/Sources/Items/UniversalVideoGalleryItem.swift +++ b/submodules/GalleryUI/Sources/Items/UniversalVideoGalleryItem.swift @@ -3696,7 +3696,7 @@ final class UniversalVideoGalleryItemNode: ZoomableContentGalleryItemNode { } if let statusValue = fileStatuses.first(where: { $0.fileId == qualityFile.media.fileId }), statusValue.isCached { - fileSizeString.append(" • cached") + fileSizeString.append(" • \(self.presentationData.strings.Gallery_SaveToGallery_cached)") } else { fileSizeString.insert(contentsOf: "↓ ", at: fileSizeString.startIndex) }