mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-11-07 01:10:09 +00:00
Update localization
This commit is contained in:
parent
16768ffb10
commit
66ea2cd0c3
@ -13975,3 +13975,7 @@ Sorry for the inconvenience.";
|
|||||||
|
|
||||||
"Privacy.Review.Invite.Title" = "Invitation Settings";
|
"Privacy.Review.Invite.Title" = "Invitation Settings";
|
||||||
"Privacy.Review.Invite.Text" = "You've restricted who can message you, but anyone can still invite you to groups and channels. Would you like to review these settings?";
|
"Privacy.Review.Invite.Text" = "You've restricted who can message you, but anyone can still invite you to groups and channels. Would you like to review these settings?";
|
||||||
|
|
||||||
|
"Conversation.VideoTimeLinkCopied" = "Link with start time at %@ copied to clipboard.";
|
||||||
|
"Share.VideoStartAt" = "Start at %@";
|
||||||
|
"SendStarReactions.SubtitleFrom" = "from %@";
|
||||||
|
|||||||
@ -1755,7 +1755,6 @@ final class ChatItemGalleryFooterContentNode: GalleryFooterContentNode, ASScroll
|
|||||||
let presentationData = self.context.sharedContext.currentPresentationData.with { $0 }
|
let presentationData = self.context.sharedContext.currentPresentationData.with { $0 }
|
||||||
let text: String
|
let text: String
|
||||||
if let timestamp {
|
if let timestamp {
|
||||||
//TODO:localize
|
|
||||||
let startTimeString: String
|
let startTimeString: String
|
||||||
let hours = timestamp / (60 * 60)
|
let hours = timestamp / (60 * 60)
|
||||||
let minutes = timestamp % (60 * 60) / 60
|
let minutes = timestamp % (60 * 60) / 60
|
||||||
@ -1765,7 +1764,7 @@ final class ChatItemGalleryFooterContentNode: GalleryFooterContentNode, ASScroll
|
|||||||
} else {
|
} else {
|
||||||
startTimeString = String(format: "%d:%02d", minutes, seconds)
|
startTimeString = String(format: "%d:%02d", minutes, seconds)
|
||||||
}
|
}
|
||||||
text = "Link with start time at \(startTimeString) copied to clipboard."
|
text = presentationData.strings.Conversation_VideoTimeLinkCopied(startTimeString).string
|
||||||
} else {
|
} else {
|
||||||
text = presentationData.strings.Conversation_LinkCopied
|
text = presentationData.strings.Conversation_LinkCopied
|
||||||
}
|
}
|
||||||
|
|||||||
@ -472,8 +472,7 @@ final class ShareControllerNode: ViewControllerTracingNode, ASScrollViewDelegate
|
|||||||
self.actionButtonNode.setBackgroundImage(highlightedHalfRoundedBackground, for: .highlighted)
|
self.actionButtonNode.setBackgroundImage(highlightedHalfRoundedBackground, for: .highlighted)
|
||||||
|
|
||||||
if let startAtTimestamp = mediaParameters?.startAtTimestamp {
|
if let startAtTimestamp = mediaParameters?.startAtTimestamp {
|
||||||
//TODO:localize
|
self.startAtTimestampNode = ShareStartAtTimestampNode(titleText: self.presentationData.strings.Share_VideoStartAt(textForTimeout(value: startAtTimestamp)).string, titleTextColor: self.presentationData.theme.actionSheet.secondaryTextColor, checkNodeTheme: CheckNodeTheme(backgroundColor: presentationData.theme.list.itemCheckColors.fillColor, strokeColor: presentationData.theme.list.itemCheckColors.foregroundColor, borderColor: presentationData.theme.list.itemCheckColors.strokeColor, overlayBorder: false, hasInset: false, hasShadow: false))
|
||||||
self.startAtTimestampNode = ShareStartAtTimestampNode(titleText: "Start at \(textForTimeout(value: startAtTimestamp))", titleTextColor: self.presentationData.theme.actionSheet.secondaryTextColor, checkNodeTheme: CheckNodeTheme(backgroundColor: presentationData.theme.list.itemCheckColors.fillColor, strokeColor: presentationData.theme.list.itemCheckColors.foregroundColor, borderColor: presentationData.theme.list.itemCheckColors.strokeColor, overlayBorder: false, hasInset: false, hasShadow: false))
|
|
||||||
} else {
|
} else {
|
||||||
self.startAtTimestampNode = nil
|
self.startAtTimestampNode = nil
|
||||||
}
|
}
|
||||||
|
|||||||
@ -264,7 +264,6 @@ private final class AvatarUploadToastScreenComponent: Component {
|
|||||||
containerSize: CGSize(width: availableContentSize.width - contentInsets.left - contentInsets.right - spacing - iconSize.width, height: availableContentSize.height)
|
containerSize: CGSize(width: availableContentSize.width - contentInsets.left - contentInsets.right - spacing - iconSize.width, height: availableContentSize.height)
|
||||||
)
|
)
|
||||||
|
|
||||||
//TODO:localize
|
|
||||||
let contentSize = self.content.update(
|
let contentSize = self.content.update(
|
||||||
transition: transition,
|
transition: transition,
|
||||||
component: AnyComponent(AnimatedTextComponent(
|
component: AnyComponent(AnimatedTextComponent(
|
||||||
|
|||||||
@ -1794,11 +1794,10 @@ private final class ChatSendStarsScreenComponent: Component {
|
|||||||
|
|
||||||
let titleSubtitleSpacing: CGFloat = 1.0
|
let titleSubtitleSpacing: CGFloat = 1.0
|
||||||
|
|
||||||
//TODO:localize
|
|
||||||
let subtitleSize = self.subtitle.update(
|
let subtitleSize = self.subtitle.update(
|
||||||
transition: .immediate,
|
transition: .immediate,
|
||||||
component: AnyComponent(MultilineTextComponent(
|
component: AnyComponent(MultilineTextComponent(
|
||||||
text: .plain(NSAttributedString(string: "from \(currentMyPeer.compactDisplayTitle)", font: Font.regular(12.0), textColor: environment.theme.list.itemSecondaryTextColor))
|
text: .plain(NSAttributedString(string: environment.strings.SendStarReactions_SubtitleFrom(currentMyPeer.compactDisplayTitle).string, font: Font.regular(12.0), textColor: environment.theme.list.itemSecondaryTextColor))
|
||||||
)),
|
)),
|
||||||
environment: {},
|
environment: {},
|
||||||
containerSize: CGSize(width: availableSize.width - leftButtonFrame.maxX * 2.0, height: 100.0)
|
containerSize: CGSize(width: availableSize.width - leftButtonFrame.maxX * 2.0, height: 100.0)
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user