2021-01-22 07:27:37 +01:00
|
|
|
|
// swiftlint:disable all
|
|
|
|
|
// Generated using SwiftGen — https://github.com/SwiftGen/SwiftGen
|
|
|
|
|
|
|
|
|
|
import Foundation
|
|
|
|
|
|
|
|
|
|
// swiftlint:disable superfluous_disable_command file_length implicit_return
|
|
|
|
|
|
|
|
|
|
// MARK: - Strings
|
|
|
|
|
|
|
|
|
|
// swiftlint:disable explicit_type_interface function_parameter_count identifier_name line_length
|
|
|
|
|
// swiftlint:disable nesting type_body_length type_name vertical_whitespace_opening_braces
|
|
|
|
|
internal enum L10n {
|
2021-02-03 06:01:50 +01:00
|
|
|
|
|
|
|
|
|
internal enum Common {
|
2021-02-24 12:08:30 +01:00
|
|
|
|
internal enum Alerts {
|
2021-04-29 09:51:52 +02:00
|
|
|
|
internal enum BlockDomain {
|
2021-07-15 15:01:47 +02:00
|
|
|
|
/// Block Domain
|
2021-04-29 09:51:52 +02:00
|
|
|
|
internal static let blockEntireDomain = L10n.tr("Localizable", "Common.Alerts.BlockDomain.BlockEntireDomain")
|
2021-07-15 15:01:47 +02:00
|
|
|
|
/// Are you really, really sure you want to block the entire %@? In most cases a few targeted blocks or mutes are sufficient and preferable. You will not see content from that domain and any of your followers from that domain will be removed.
|
2021-05-10 09:40:46 +02:00
|
|
|
|
internal static func title(_ p1: Any) -> String {
|
|
|
|
|
return L10n.tr("Localizable", "Common.Alerts.BlockDomain.Title", String(describing: p1))
|
2021-04-29 09:51:52 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
2021-06-01 08:07:44 +02:00
|
|
|
|
internal enum CleanCache {
|
2021-07-15 15:01:47 +02:00
|
|
|
|
/// Successfully cleaned %@ cache.
|
2021-06-01 08:07:44 +02:00
|
|
|
|
internal static func message(_ p1: Any) -> String {
|
|
|
|
|
return L10n.tr("Localizable", "Common.Alerts.CleanCache.Message", String(describing: p1))
|
|
|
|
|
}
|
|
|
|
|
/// Clean Cache
|
|
|
|
|
internal static let title = L10n.tr("Localizable", "Common.Alerts.CleanCache.Title")
|
|
|
|
|
}
|
2021-03-04 11:53:29 +01:00
|
|
|
|
internal enum Common {
|
|
|
|
|
/// Please try again.
|
|
|
|
|
internal static let pleaseTryAgain = L10n.tr("Localizable", "Common.Alerts.Common.PleaseTryAgain")
|
|
|
|
|
/// Please try again later.
|
|
|
|
|
internal static let pleaseTryAgainLater = L10n.tr("Localizable", "Common.Alerts.Common.PleaseTryAgainLater")
|
|
|
|
|
}
|
2021-05-07 10:08:07 +02:00
|
|
|
|
internal enum DeletePost {
|
2021-05-07 14:36:31 +02:00
|
|
|
|
/// Delete
|
2021-05-07 10:08:07 +02:00
|
|
|
|
internal static let delete = L10n.tr("Localizable", "Common.Alerts.DeletePost.Delete")
|
|
|
|
|
/// Are you sure you want to delete this post?
|
2021-05-10 09:40:46 +02:00
|
|
|
|
internal static let title = L10n.tr("Localizable", "Common.Alerts.DeletePost.Title")
|
2021-05-07 10:08:07 +02:00
|
|
|
|
}
|
2021-03-15 06:42:46 +01:00
|
|
|
|
internal enum DiscardPostContent {
|
2021-07-15 15:01:47 +02:00
|
|
|
|
/// Confirm to discard composed post content.
|
2021-03-15 06:42:46 +01:00
|
|
|
|
internal static let message = L10n.tr("Localizable", "Common.Alerts.DiscardPostContent.Message")
|
2021-07-15 15:01:47 +02:00
|
|
|
|
/// Discard Draft
|
2021-03-15 06:42:46 +01:00
|
|
|
|
internal static let title = L10n.tr("Localizable", "Common.Alerts.DiscardPostContent.Title")
|
2021-03-12 08:57:58 +01:00
|
|
|
|
}
|
2021-06-24 13:20:41 +02:00
|
|
|
|
internal enum EditProfileFailure {
|
|
|
|
|
/// Cannot edit profile. Please try again.
|
|
|
|
|
internal static let message = L10n.tr("Localizable", "Common.Alerts.EditProfileFailure.Message")
|
|
|
|
|
/// Edit Profile Error
|
|
|
|
|
internal static let title = L10n.tr("Localizable", "Common.Alerts.EditProfileFailure.Title")
|
|
|
|
|
}
|
2021-03-29 11:44:52 +02:00
|
|
|
|
internal enum PublishPostFailure {
|
|
|
|
|
/// Failed to publish the post.\nPlease check your internet connection.
|
|
|
|
|
internal static let message = L10n.tr("Localizable", "Common.Alerts.PublishPostFailure.Message")
|
|
|
|
|
/// Publish Failure
|
|
|
|
|
internal static let title = L10n.tr("Localizable", "Common.Alerts.PublishPostFailure.Title")
|
2021-07-20 10:40:04 +02:00
|
|
|
|
internal enum AttachmentsMessage {
|
2021-05-31 10:42:49 +02:00
|
|
|
|
/// Cannot attach more than one video.
|
2021-07-20 10:40:04 +02:00
|
|
|
|
internal static let moreThanOneVideo = L10n.tr("Localizable", "Common.Alerts.PublishPostFailure.AttachmentsMessage.MoreThanOneVideo")
|
2021-07-15 15:01:47 +02:00
|
|
|
|
/// Cannot attach a video to a post that already contains images.
|
2021-07-20 10:40:04 +02:00
|
|
|
|
internal static let videoAttachWithPhoto = L10n.tr("Localizable", "Common.Alerts.PublishPostFailure.AttachmentsMessage.VideoAttachWithPhoto")
|
2021-05-31 10:42:49 +02:00
|
|
|
|
}
|
2021-03-29 11:44:52 +02:00
|
|
|
|
}
|
2021-05-06 09:05:24 +02:00
|
|
|
|
internal enum SavePhotoFailure {
|
2021-07-15 15:01:47 +02:00
|
|
|
|
/// Please enable the photo library access permission to save the photo.
|
2021-05-06 09:05:24 +02:00
|
|
|
|
internal static let message = L10n.tr("Localizable", "Common.Alerts.SavePhotoFailure.Message")
|
|
|
|
|
/// Save Photo Failure
|
|
|
|
|
internal static let title = L10n.tr("Localizable", "Common.Alerts.SavePhotoFailure.Title")
|
|
|
|
|
}
|
2021-02-24 12:08:30 +01:00
|
|
|
|
internal enum ServerError {
|
|
|
|
|
/// Server Error
|
|
|
|
|
internal static let title = L10n.tr("Localizable", "Common.Alerts.ServerError.Title")
|
|
|
|
|
}
|
2021-04-17 08:15:55 +02:00
|
|
|
|
internal enum SignOut {
|
|
|
|
|
/// Sign Out
|
|
|
|
|
internal static let confirm = L10n.tr("Localizable", "Common.Alerts.SignOut.Confirm")
|
|
|
|
|
/// Are you sure you want to sign out?
|
|
|
|
|
internal static let message = L10n.tr("Localizable", "Common.Alerts.SignOut.Message")
|
2021-07-15 15:01:47 +02:00
|
|
|
|
/// Sign Out
|
2021-04-17 08:15:55 +02:00
|
|
|
|
internal static let title = L10n.tr("Localizable", "Common.Alerts.SignOut.Title")
|
|
|
|
|
}
|
2021-02-24 12:08:30 +01:00
|
|
|
|
internal enum SignUpFailure {
|
|
|
|
|
/// Sign Up Failure
|
|
|
|
|
internal static let title = L10n.tr("Localizable", "Common.Alerts.SignUpFailure.Title")
|
|
|
|
|
}
|
2021-03-04 11:53:29 +01:00
|
|
|
|
internal enum VoteFailure {
|
2021-08-09 13:09:24 +02:00
|
|
|
|
/// The poll has ended
|
|
|
|
|
internal static let pollEnded = L10n.tr("Localizable", "Common.Alerts.VoteFailure.PollEnded")
|
2021-03-04 11:53:29 +01:00
|
|
|
|
/// Vote Failure
|
|
|
|
|
internal static let title = L10n.tr("Localizable", "Common.Alerts.VoteFailure.Title")
|
|
|
|
|
}
|
2021-02-24 12:08:30 +01:00
|
|
|
|
}
|
2021-02-03 06:01:50 +01:00
|
|
|
|
internal enum Controls {
|
2021-02-22 09:20:44 +01:00
|
|
|
|
internal enum Actions {
|
|
|
|
|
/// Add
|
|
|
|
|
internal static let add = L10n.tr("Localizable", "Common.Controls.Actions.Add")
|
2021-02-25 09:04:14 +01:00
|
|
|
|
/// Back
|
|
|
|
|
internal static let back = L10n.tr("Localizable", "Common.Controls.Actions.Back")
|
2021-04-29 09:51:52 +02:00
|
|
|
|
/// Block %@
|
|
|
|
|
internal static func blockDomain(_ p1: Any) -> String {
|
|
|
|
|
return L10n.tr("Localizable", "Common.Controls.Actions.BlockDomain", String(describing: p1))
|
|
|
|
|
}
|
2021-02-22 09:20:44 +01:00
|
|
|
|
/// Cancel
|
|
|
|
|
internal static let cancel = L10n.tr("Localizable", "Common.Controls.Actions.Cancel")
|
|
|
|
|
/// Confirm
|
|
|
|
|
internal static let confirm = L10n.tr("Localizable", "Common.Controls.Actions.Confirm")
|
|
|
|
|
/// Continue
|
|
|
|
|
internal static let `continue` = L10n.tr("Localizable", "Common.Controls.Actions.Continue")
|
2021-07-06 13:53:47 +02:00
|
|
|
|
/// Copy Photo
|
|
|
|
|
internal static let copyPhoto = L10n.tr("Localizable", "Common.Controls.Actions.CopyPhoto")
|
2021-05-07 10:08:07 +02:00
|
|
|
|
/// Delete
|
|
|
|
|
internal static let delete = L10n.tr("Localizable", "Common.Controls.Actions.Delete")
|
2021-03-12 08:57:58 +01:00
|
|
|
|
/// Discard
|
|
|
|
|
internal static let discard = L10n.tr("Localizable", "Common.Controls.Actions.Discard")
|
2021-04-01 08:39:15 +02:00
|
|
|
|
/// Done
|
|
|
|
|
internal static let done = L10n.tr("Localizable", "Common.Controls.Actions.Done")
|
2021-02-22 09:20:44 +01:00
|
|
|
|
/// Edit
|
|
|
|
|
internal static let edit = L10n.tr("Localizable", "Common.Controls.Actions.Edit")
|
2021-04-21 08:46:31 +02:00
|
|
|
|
/// Find people to follow
|
|
|
|
|
internal static let findPeople = L10n.tr("Localizable", "Common.Controls.Actions.FindPeople")
|
|
|
|
|
/// Manually search instead
|
|
|
|
|
internal static let manuallySearch = L10n.tr("Localizable", "Common.Controls.Actions.ManuallySearch")
|
2021-05-21 10:52:47 +02:00
|
|
|
|
/// Next
|
|
|
|
|
internal static let next = L10n.tr("Localizable", "Common.Controls.Actions.Next")
|
2021-02-22 09:20:44 +01:00
|
|
|
|
/// OK
|
|
|
|
|
internal static let ok = L10n.tr("Localizable", "Common.Controls.Actions.Ok")
|
2021-05-21 10:52:47 +02:00
|
|
|
|
/// Open
|
|
|
|
|
internal static let `open` = L10n.tr("Localizable", "Common.Controls.Actions.Open")
|
2021-02-22 09:20:44 +01:00
|
|
|
|
/// Open in Safari
|
|
|
|
|
internal static let openInSafari = L10n.tr("Localizable", "Common.Controls.Actions.OpenInSafari")
|
|
|
|
|
/// Preview
|
|
|
|
|
internal static let preview = L10n.tr("Localizable", "Common.Controls.Actions.Preview")
|
2021-05-21 10:52:47 +02:00
|
|
|
|
/// Previous
|
|
|
|
|
internal static let previous = L10n.tr("Localizable", "Common.Controls.Actions.Previous")
|
2021-02-22 09:20:44 +01:00
|
|
|
|
/// Remove
|
|
|
|
|
internal static let remove = L10n.tr("Localizable", "Common.Controls.Actions.Remove")
|
2021-05-21 09:23:02 +02:00
|
|
|
|
/// Reply
|
|
|
|
|
internal static let reply = L10n.tr("Localizable", "Common.Controls.Actions.Reply")
|
2021-04-26 09:58:49 +02:00
|
|
|
|
/// Report %@
|
|
|
|
|
internal static func reportUser(_ p1: Any) -> String {
|
|
|
|
|
return L10n.tr("Localizable", "Common.Controls.Actions.ReportUser", String(describing: p1))
|
|
|
|
|
}
|
2021-02-22 09:20:44 +01:00
|
|
|
|
/// Save
|
|
|
|
|
internal static let save = L10n.tr("Localizable", "Common.Controls.Actions.Save")
|
2021-07-06 13:53:47 +02:00
|
|
|
|
/// Save Photo
|
2021-02-22 09:20:44 +01:00
|
|
|
|
internal static let savePhoto = L10n.tr("Localizable", "Common.Controls.Actions.SavePhoto")
|
|
|
|
|
/// See More
|
|
|
|
|
internal static let seeMore = L10n.tr("Localizable", "Common.Controls.Actions.SeeMore")
|
2021-05-06 09:05:24 +02:00
|
|
|
|
/// Settings
|
|
|
|
|
internal static let settings = L10n.tr("Localizable", "Common.Controls.Actions.Settings")
|
2021-04-08 12:52:35 +02:00
|
|
|
|
/// Share
|
|
|
|
|
internal static let share = L10n.tr("Localizable", "Common.Controls.Actions.Share")
|
2021-07-06 13:53:47 +02:00
|
|
|
|
/// Share Post
|
2021-04-29 05:03:21 +02:00
|
|
|
|
internal static let sharePost = L10n.tr("Localizable", "Common.Controls.Actions.SharePost")
|
2021-04-08 12:52:35 +02:00
|
|
|
|
/// Share %@
|
|
|
|
|
internal static func shareUser(_ p1: Any) -> String {
|
|
|
|
|
return L10n.tr("Localizable", "Common.Controls.Actions.ShareUser", String(describing: p1))
|
|
|
|
|
}
|
2021-02-26 11:27:47 +01:00
|
|
|
|
/// Sign In
|
2021-02-22 09:20:44 +01:00
|
|
|
|
internal static let signIn = L10n.tr("Localizable", "Common.Controls.Actions.SignIn")
|
2021-02-26 11:27:47 +01:00
|
|
|
|
/// Sign Up
|
2021-02-22 09:20:44 +01:00
|
|
|
|
internal static let signUp = L10n.tr("Localizable", "Common.Controls.Actions.SignUp")
|
2021-04-19 14:34:08 +02:00
|
|
|
|
/// Skip
|
|
|
|
|
internal static let skip = L10n.tr("Localizable", "Common.Controls.Actions.Skip")
|
2021-07-06 13:53:47 +02:00
|
|
|
|
/// Take Photo
|
2021-02-22 09:20:44 +01:00
|
|
|
|
internal static let takePhoto = L10n.tr("Localizable", "Common.Controls.Actions.TakePhoto")
|
2021-03-29 11:44:52 +02:00
|
|
|
|
/// Try Again
|
|
|
|
|
internal static let tryAgain = L10n.tr("Localizable", "Common.Controls.Actions.TryAgain")
|
2021-04-30 06:53:25 +02:00
|
|
|
|
/// Unblock %@
|
|
|
|
|
internal static func unblockDomain(_ p1: Any) -> String {
|
|
|
|
|
return L10n.tr("Localizable", "Common.Controls.Actions.UnblockDomain", String(describing: p1))
|
|
|
|
|
}
|
2021-02-22 09:20:44 +01:00
|
|
|
|
}
|
2021-06-22 14:54:34 +02:00
|
|
|
|
internal enum Friendship {
|
2021-04-01 08:39:15 +02:00
|
|
|
|
/// Block
|
2021-06-22 14:54:34 +02:00
|
|
|
|
internal static let block = L10n.tr("Localizable", "Common.Controls.Friendship.Block")
|
2021-04-30 09:38:15 +02:00
|
|
|
|
/// Block %@
|
|
|
|
|
internal static func blockDomain(_ p1: Any) -> String {
|
2021-06-22 14:54:34 +02:00
|
|
|
|
return L10n.tr("Localizable", "Common.Controls.Friendship.BlockDomain", String(describing: p1))
|
2021-04-30 09:38:15 +02:00
|
|
|
|
}
|
2021-04-01 08:39:15 +02:00
|
|
|
|
/// Blocked
|
2021-06-22 14:54:34 +02:00
|
|
|
|
internal static let blocked = L10n.tr("Localizable", "Common.Controls.Friendship.Blocked")
|
2021-04-02 12:13:45 +02:00
|
|
|
|
/// Block %@
|
|
|
|
|
internal static func blockUser(_ p1: Any) -> String {
|
2021-06-22 14:54:34 +02:00
|
|
|
|
return L10n.tr("Localizable", "Common.Controls.Friendship.BlockUser", String(describing: p1))
|
2021-04-02 12:13:45 +02:00
|
|
|
|
}
|
2021-06-22 13:37:34 +02:00
|
|
|
|
/// Edit Info
|
2021-06-22 14:54:34 +02:00
|
|
|
|
internal static let editInfo = L10n.tr("Localizable", "Common.Controls.Friendship.EditInfo")
|
2021-04-01 08:39:15 +02:00
|
|
|
|
/// Follow
|
2021-06-22 14:54:34 +02:00
|
|
|
|
internal static let follow = L10n.tr("Localizable", "Common.Controls.Friendship.Follow")
|
2021-04-01 08:39:15 +02:00
|
|
|
|
/// Following
|
2021-06-22 14:54:34 +02:00
|
|
|
|
internal static let following = L10n.tr("Localizable", "Common.Controls.Friendship.Following")
|
2021-04-01 08:39:15 +02:00
|
|
|
|
/// Mute
|
2021-06-22 14:54:34 +02:00
|
|
|
|
internal static let mute = L10n.tr("Localizable", "Common.Controls.Friendship.Mute")
|
2021-04-01 08:39:15 +02:00
|
|
|
|
/// Muted
|
2021-06-22 14:54:34 +02:00
|
|
|
|
internal static let muted = L10n.tr("Localizable", "Common.Controls.Friendship.Muted")
|
2021-04-02 12:13:45 +02:00
|
|
|
|
/// Mute %@
|
|
|
|
|
internal static func muteUser(_ p1: Any) -> String {
|
2021-06-22 14:54:34 +02:00
|
|
|
|
return L10n.tr("Localizable", "Common.Controls.Friendship.MuteUser", String(describing: p1))
|
2021-04-02 12:13:45 +02:00
|
|
|
|
}
|
|
|
|
|
/// Pending
|
2021-06-22 14:54:34 +02:00
|
|
|
|
internal static let pending = L10n.tr("Localizable", "Common.Controls.Friendship.Pending")
|
2021-04-08 10:53:32 +02:00
|
|
|
|
/// Request
|
2021-06-22 14:54:34 +02:00
|
|
|
|
internal static let request = L10n.tr("Localizable", "Common.Controls.Friendship.Request")
|
2021-04-02 12:13:45 +02:00
|
|
|
|
/// Unblock
|
2021-06-22 14:54:34 +02:00
|
|
|
|
internal static let unblock = L10n.tr("Localizable", "Common.Controls.Friendship.Unblock")
|
2021-04-02 12:13:45 +02:00
|
|
|
|
/// Unblock %@
|
|
|
|
|
internal static func unblockUser(_ p1: Any) -> String {
|
2021-06-22 14:54:34 +02:00
|
|
|
|
return L10n.tr("Localizable", "Common.Controls.Friendship.UnblockUser", String(describing: p1))
|
2021-04-02 12:13:45 +02:00
|
|
|
|
}
|
|
|
|
|
/// Unmute
|
2021-06-22 14:54:34 +02:00
|
|
|
|
internal static let unmute = L10n.tr("Localizable", "Common.Controls.Friendship.Unmute")
|
2021-04-02 12:13:45 +02:00
|
|
|
|
/// Unmute %@
|
|
|
|
|
internal static func unmuteUser(_ p1: Any) -> String {
|
2021-06-22 14:54:34 +02:00
|
|
|
|
return L10n.tr("Localizable", "Common.Controls.Friendship.UnmuteUser", String(describing: p1))
|
2021-04-02 12:13:45 +02:00
|
|
|
|
}
|
2021-04-01 08:39:15 +02:00
|
|
|
|
}
|
2021-05-19 10:45:01 +02:00
|
|
|
|
internal enum Keyboard {
|
|
|
|
|
internal enum Common {
|
2021-05-21 13:12:01 +02:00
|
|
|
|
/// Compose New Post
|
|
|
|
|
internal static let composeNewPost = L10n.tr("Localizable", "Common.Controls.Keyboard.Common.ComposeNewPost")
|
2021-05-19 10:45:01 +02:00
|
|
|
|
/// Open Settings
|
|
|
|
|
internal static let openSettings = L10n.tr("Localizable", "Common.Controls.Keyboard.Common.OpenSettings")
|
|
|
|
|
/// Show Favorites
|
|
|
|
|
internal static let showFavorites = L10n.tr("Localizable", "Common.Controls.Keyboard.Common.ShowFavorites")
|
|
|
|
|
/// Switch to %@
|
|
|
|
|
internal static func switchToTab(_ p1: Any) -> String {
|
|
|
|
|
return L10n.tr("Localizable", "Common.Controls.Keyboard.Common.SwitchToTab", String(describing: p1))
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-05-21 13:12:01 +02:00
|
|
|
|
internal enum SegmentedControl {
|
|
|
|
|
/// Next Section
|
|
|
|
|
internal static let nextSection = L10n.tr("Localizable", "Common.Controls.Keyboard.SegmentedControl.NextSection")
|
|
|
|
|
/// Previous Section
|
|
|
|
|
internal static let previousSection = L10n.tr("Localizable", "Common.Controls.Keyboard.SegmentedControl.PreviousSection")
|
|
|
|
|
}
|
2021-05-21 09:23:02 +02:00
|
|
|
|
internal enum Timeline {
|
2021-07-15 15:01:47 +02:00
|
|
|
|
/// Next Post
|
2021-05-21 09:23:02 +02:00
|
|
|
|
internal static let nextStatus = L10n.tr("Localizable", "Common.Controls.Keyboard.Timeline.NextStatus")
|
2021-07-15 15:01:47 +02:00
|
|
|
|
/// Open Author's Profile
|
2021-05-21 09:23:02 +02:00
|
|
|
|
internal static let openAuthorProfile = L10n.tr("Localizable", "Common.Controls.Keyboard.Timeline.OpenAuthorProfile")
|
2021-07-15 15:01:47 +02:00
|
|
|
|
/// Open Reblogger's Profile
|
2021-05-21 09:23:02 +02:00
|
|
|
|
internal static let openRebloggerProfile = L10n.tr("Localizable", "Common.Controls.Keyboard.Timeline.OpenRebloggerProfile")
|
2021-07-15 15:01:47 +02:00
|
|
|
|
/// Open Post
|
2021-05-21 09:23:02 +02:00
|
|
|
|
internal static let openStatus = L10n.tr("Localizable", "Common.Controls.Keyboard.Timeline.OpenStatus")
|
|
|
|
|
/// Preview Image
|
|
|
|
|
internal static let previewImage = L10n.tr("Localizable", "Common.Controls.Keyboard.Timeline.PreviewImage")
|
2021-07-15 15:01:47 +02:00
|
|
|
|
/// Previous Post
|
2021-05-21 09:23:02 +02:00
|
|
|
|
internal static let previousStatus = L10n.tr("Localizable", "Common.Controls.Keyboard.Timeline.PreviousStatus")
|
2021-07-15 15:01:47 +02:00
|
|
|
|
/// Reply to Post
|
2021-05-21 09:23:02 +02:00
|
|
|
|
internal static let replyStatus = L10n.tr("Localizable", "Common.Controls.Keyboard.Timeline.ReplyStatus")
|
|
|
|
|
/// Toggle Content Warning
|
|
|
|
|
internal static let toggleContentWarning = L10n.tr("Localizable", "Common.Controls.Keyboard.Timeline.ToggleContentWarning")
|
2021-07-15 15:01:47 +02:00
|
|
|
|
/// Toggle Favorite on Post
|
2021-05-21 09:23:02 +02:00
|
|
|
|
internal static let toggleFavorite = L10n.tr("Localizable", "Common.Controls.Keyboard.Timeline.ToggleFavorite")
|
2021-07-15 15:01:47 +02:00
|
|
|
|
/// Toggle Reblog on Post
|
2021-05-21 09:23:02 +02:00
|
|
|
|
internal static let toggleReblog = L10n.tr("Localizable", "Common.Controls.Keyboard.Timeline.ToggleReblog")
|
|
|
|
|
}
|
2021-05-19 10:45:01 +02:00
|
|
|
|
}
|
2021-02-23 08:16:55 +01:00
|
|
|
|
internal enum Status {
|
2021-06-23 14:47:49 +02:00
|
|
|
|
/// Content Warning
|
2021-04-16 14:06:36 +02:00
|
|
|
|
internal static let contentWarning = L10n.tr("Localizable", "Common.Controls.Status.ContentWarning")
|
2021-06-23 14:47:49 +02:00
|
|
|
|
/// Tap anywhere to reveal
|
2021-02-25 06:47:30 +01:00
|
|
|
|
internal static let mediaContentWarning = L10n.tr("Localizable", "Common.Controls.Status.MediaContentWarning")
|
2021-02-24 08:29:16 +01:00
|
|
|
|
/// Show Post
|
|
|
|
|
internal static let showPost = L10n.tr("Localizable", "Common.Controls.Status.ShowPost")
|
2021-05-13 08:27:57 +02:00
|
|
|
|
/// Show user profile
|
|
|
|
|
internal static let showUserProfile = L10n.tr("Localizable", "Common.Controls.Status.ShowUserProfile")
|
2021-03-15 06:42:46 +01:00
|
|
|
|
/// %@ reblogged
|
|
|
|
|
internal static func userReblogged(_ p1: Any) -> String {
|
|
|
|
|
return L10n.tr("Localizable", "Common.Controls.Status.UserReblogged", String(describing: p1))
|
2021-02-23 08:16:55 +01:00
|
|
|
|
}
|
2021-03-10 12:12:53 +01:00
|
|
|
|
/// Replied to %@
|
|
|
|
|
internal static func userRepliedTo(_ p1: Any) -> String {
|
|
|
|
|
return L10n.tr("Localizable", "Common.Controls.Status.UserRepliedTo", String(describing: p1))
|
|
|
|
|
}
|
2021-05-12 12:26:53 +02:00
|
|
|
|
internal enum Actions {
|
|
|
|
|
/// Favorite
|
|
|
|
|
internal static let favorite = L10n.tr("Localizable", "Common.Controls.Status.Actions.Favorite")
|
|
|
|
|
/// Menu
|
|
|
|
|
internal static let menu = L10n.tr("Localizable", "Common.Controls.Status.Actions.Menu")
|
|
|
|
|
/// Reblog
|
|
|
|
|
internal static let reblog = L10n.tr("Localizable", "Common.Controls.Status.Actions.Reblog")
|
|
|
|
|
/// Reply
|
|
|
|
|
internal static let reply = L10n.tr("Localizable", "Common.Controls.Status.Actions.Reply")
|
|
|
|
|
/// Unfavorite
|
|
|
|
|
internal static let unfavorite = L10n.tr("Localizable", "Common.Controls.Status.Actions.Unfavorite")
|
2021-07-15 15:01:47 +02:00
|
|
|
|
/// Undo reblog
|
2021-05-12 12:26:53 +02:00
|
|
|
|
internal static let unreblog = L10n.tr("Localizable", "Common.Controls.Status.Actions.Unreblog")
|
|
|
|
|
}
|
2021-03-02 12:33:33 +01:00
|
|
|
|
internal enum Poll {
|
2021-03-03 12:34:29 +01:00
|
|
|
|
/// Closed
|
|
|
|
|
internal static let closed = L10n.tr("Localizable", "Common.Controls.Status.Poll.Closed")
|
2021-03-03 09:12:48 +01:00
|
|
|
|
/// Vote
|
|
|
|
|
internal static let vote = L10n.tr("Localizable", "Common.Controls.Status.Poll.Vote")
|
2021-03-02 12:33:33 +01:00
|
|
|
|
}
|
2021-05-12 12:26:53 +02:00
|
|
|
|
internal enum Tag {
|
|
|
|
|
/// Email
|
|
|
|
|
internal static let email = L10n.tr("Localizable", "Common.Controls.Status.Tag.Email")
|
|
|
|
|
/// Emoji
|
|
|
|
|
internal static let emoji = L10n.tr("Localizable", "Common.Controls.Status.Tag.Emoji")
|
|
|
|
|
/// Hashtag
|
|
|
|
|
internal static let hashtag = L10n.tr("Localizable", "Common.Controls.Status.Tag.Hashtag")
|
|
|
|
|
/// Link
|
|
|
|
|
internal static let link = L10n.tr("Localizable", "Common.Controls.Status.Tag.Link")
|
|
|
|
|
/// Mention
|
|
|
|
|
internal static let mention = L10n.tr("Localizable", "Common.Controls.Status.Tag.Mention")
|
|
|
|
|
/// URL
|
|
|
|
|
internal static let url = L10n.tr("Localizable", "Common.Controls.Status.Tag.Url")
|
|
|
|
|
}
|
2021-02-23 08:16:55 +01:00
|
|
|
|
}
|
2021-05-13 08:27:57 +02:00
|
|
|
|
internal enum Tabs {
|
|
|
|
|
/// Home
|
|
|
|
|
internal static let home = L10n.tr("Localizable", "Common.Controls.Tabs.Home")
|
|
|
|
|
/// Notification
|
|
|
|
|
internal static let notification = L10n.tr("Localizable", "Common.Controls.Tabs.Notification")
|
|
|
|
|
/// Profile
|
|
|
|
|
internal static let profile = L10n.tr("Localizable", "Common.Controls.Tabs.Profile")
|
|
|
|
|
/// Search
|
|
|
|
|
internal static let search = L10n.tr("Localizable", "Common.Controls.Tabs.Search")
|
|
|
|
|
}
|
2021-02-03 06:01:50 +01:00
|
|
|
|
internal enum Timeline {
|
2021-07-09 13:07:12 +02:00
|
|
|
|
/// Filtered
|
|
|
|
|
internal static let filtered = L10n.tr("Localizable", "Common.Controls.Timeline.Filtered")
|
2021-04-06 10:43:08 +02:00
|
|
|
|
internal enum Header {
|
2021-08-10 08:44:47 +02:00
|
|
|
|
/// You can’t view this user’s profile\nuntil they unblock you.
|
2021-04-06 10:43:08 +02:00
|
|
|
|
internal static let blockedWarning = L10n.tr("Localizable", "Common.Controls.Timeline.Header.BlockedWarning")
|
2021-08-10 08:44:47 +02:00
|
|
|
|
/// You can’t view this user's profile\nuntil you unblock them.\nYour profile looks like this to them.
|
2021-04-06 10:43:08 +02:00
|
|
|
|
internal static let blockingWarning = L10n.tr("Localizable", "Common.Controls.Timeline.Header.BlockingWarning")
|
2021-07-15 15:01:47 +02:00
|
|
|
|
/// No Post Found
|
2021-04-06 10:43:08 +02:00
|
|
|
|
internal static let noStatusFound = L10n.tr("Localizable", "Common.Controls.Timeline.Header.NoStatusFound")
|
2021-07-15 15:01:47 +02:00
|
|
|
|
/// This user has been suspended.
|
2021-04-06 10:43:08 +02:00
|
|
|
|
internal static let suspendedWarning = L10n.tr("Localizable", "Common.Controls.Timeline.Header.SuspendedWarning")
|
2021-08-10 08:44:47 +02:00
|
|
|
|
/// You can’t view %@’s profile\nuntil they unblock you.
|
2021-06-24 08:32:01 +02:00
|
|
|
|
internal static func userBlockedWarning(_ p1: Any) -> String {
|
|
|
|
|
return L10n.tr("Localizable", "Common.Controls.Timeline.Header.UserBlockedWarning", String(describing: p1))
|
|
|
|
|
}
|
2021-08-10 08:44:47 +02:00
|
|
|
|
/// You can’t view %@’s profile\nuntil you unblock them.\nYour profile looks like this to them.
|
2021-06-24 08:32:01 +02:00
|
|
|
|
internal static func userBlockingWarning(_ p1: Any) -> String {
|
|
|
|
|
return L10n.tr("Localizable", "Common.Controls.Timeline.Header.UserBlockingWarning", String(describing: p1))
|
|
|
|
|
}
|
2021-06-21 11:52:38 +02:00
|
|
|
|
/// %@’s account has been suspended.
|
2021-04-08 10:53:32 +02:00
|
|
|
|
internal static func userSuspendedWarning(_ p1: Any) -> String {
|
|
|
|
|
return L10n.tr("Localizable", "Common.Controls.Timeline.Header.UserSuspendedWarning", String(describing: p1))
|
|
|
|
|
}
|
2021-04-06 10:43:08 +02:00
|
|
|
|
}
|
2021-03-16 12:28:52 +01:00
|
|
|
|
internal enum Loader {
|
|
|
|
|
/// Loading missing posts...
|
|
|
|
|
internal static let loadingMissingPosts = L10n.tr("Localizable", "Common.Controls.Timeline.Loader.LoadingMissingPosts")
|
|
|
|
|
/// Load missing posts
|
|
|
|
|
internal static let loadMissingPosts = L10n.tr("Localizable", "Common.Controls.Timeline.Loader.LoadMissingPosts")
|
2021-04-13 13:46:42 +02:00
|
|
|
|
/// Show more replies
|
|
|
|
|
internal static let showMoreReplies = L10n.tr("Localizable", "Common.Controls.Timeline.Loader.ShowMoreReplies")
|
2021-03-16 12:28:52 +01:00
|
|
|
|
}
|
2021-06-01 08:31:31 +02:00
|
|
|
|
internal enum Timestamp {
|
|
|
|
|
/// Now
|
|
|
|
|
internal static let now = L10n.tr("Localizable", "Common.Controls.Timeline.Timestamp.Now")
|
|
|
|
|
}
|
2021-02-03 06:01:50 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
2021-02-22 09:20:44 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
internal enum Scene {
|
2021-03-11 08:41:27 +01:00
|
|
|
|
internal enum Compose {
|
2021-03-15 06:42:46 +01:00
|
|
|
|
/// Publish
|
2021-03-12 07:18:07 +01:00
|
|
|
|
internal static let composeAction = L10n.tr("Localizable", "Scene.Compose.ComposeAction")
|
2021-06-21 11:52:38 +02:00
|
|
|
|
/// Type or paste what’s on your mind
|
2021-03-12 07:18:07 +01:00
|
|
|
|
internal static let contentInputPlaceholder = L10n.tr("Localizable", "Scene.Compose.ContentInputPlaceholder")
|
2021-04-14 09:24:54 +02:00
|
|
|
|
/// replying to %@
|
|
|
|
|
internal static func replyingToUser(_ p1: Any) -> String {
|
|
|
|
|
return L10n.tr("Localizable", "Scene.Compose.ReplyingToUser", String(describing: p1))
|
|
|
|
|
}
|
2021-05-13 08:27:57 +02:00
|
|
|
|
internal enum Accessibility {
|
2021-07-15 15:01:47 +02:00
|
|
|
|
/// Add Attachment
|
2021-05-13 08:27:57 +02:00
|
|
|
|
internal static let appendAttachment = L10n.tr("Localizable", "Scene.Compose.Accessibility.AppendAttachment")
|
2021-07-15 15:01:47 +02:00
|
|
|
|
/// Add Poll
|
2021-05-13 08:27:57 +02:00
|
|
|
|
internal static let appendPoll = L10n.tr("Localizable", "Scene.Compose.Accessibility.AppendPoll")
|
2021-07-15 15:01:47 +02:00
|
|
|
|
/// Custom Emoji Picker
|
2021-05-13 08:27:57 +02:00
|
|
|
|
internal static let customEmojiPicker = L10n.tr("Localizable", "Scene.Compose.Accessibility.CustomEmojiPicker")
|
2021-07-15 15:01:47 +02:00
|
|
|
|
/// Disable Content Warning
|
2021-05-13 08:27:57 +02:00
|
|
|
|
internal static let disableContentWarning = L10n.tr("Localizable", "Scene.Compose.Accessibility.DisableContentWarning")
|
2021-07-15 15:01:47 +02:00
|
|
|
|
/// Enable Content Warning
|
2021-05-13 08:27:57 +02:00
|
|
|
|
internal static let enableContentWarning = L10n.tr("Localizable", "Scene.Compose.Accessibility.EnableContentWarning")
|
2021-07-15 15:01:47 +02:00
|
|
|
|
/// Post Visibility Menu
|
2021-05-13 08:27:57 +02:00
|
|
|
|
internal static let postVisibilityMenu = L10n.tr("Localizable", "Scene.Compose.Accessibility.PostVisibilityMenu")
|
2021-07-15 15:01:47 +02:00
|
|
|
|
/// Remove Poll
|
2021-05-13 08:27:57 +02:00
|
|
|
|
internal static let removePoll = L10n.tr("Localizable", "Scene.Compose.Accessibility.RemovePoll")
|
|
|
|
|
}
|
2021-03-18 08:16:35 +01:00
|
|
|
|
internal enum Attachment {
|
2021-06-21 11:52:38 +02:00
|
|
|
|
/// This %@ is broken and can’t be\nuploaded to Mastodon.
|
2021-03-18 08:16:35 +01:00
|
|
|
|
internal static func attachmentBroken(_ p1: Any) -> String {
|
|
|
|
|
return L10n.tr("Localizable", "Scene.Compose.Attachment.AttachmentBroken", String(describing: p1))
|
|
|
|
|
}
|
2021-07-15 15:01:47 +02:00
|
|
|
|
/// Describe the photo for the visually-impaired...
|
2021-03-18 10:33:07 +01:00
|
|
|
|
internal static let descriptionPhoto = L10n.tr("Localizable", "Scene.Compose.Attachment.DescriptionPhoto")
|
2021-07-15 15:01:47 +02:00
|
|
|
|
/// Describe the video for the visually-impaired...
|
2021-03-18 10:33:07 +01:00
|
|
|
|
internal static let descriptionVideo = L10n.tr("Localizable", "Scene.Compose.Attachment.DescriptionVideo")
|
2021-03-18 08:16:35 +01:00
|
|
|
|
/// photo
|
|
|
|
|
internal static let photo = L10n.tr("Localizable", "Scene.Compose.Attachment.Photo")
|
|
|
|
|
/// video
|
|
|
|
|
internal static let video = L10n.tr("Localizable", "Scene.Compose.Attachment.Video")
|
|
|
|
|
}
|
2021-05-18 08:25:32 +02:00
|
|
|
|
internal enum AutoComplete {
|
2021-06-21 12:30:24 +02:00
|
|
|
|
/// Space to add
|
|
|
|
|
internal static let spaceToAdd = L10n.tr("Localizable", "Scene.Compose.AutoComplete.SpaceToAdd")
|
2021-05-18 08:25:32 +02:00
|
|
|
|
}
|
2021-03-25 11:17:05 +01:00
|
|
|
|
internal enum ContentWarning {
|
|
|
|
|
/// Write an accurate warning here...
|
|
|
|
|
internal static let placeholder = L10n.tr("Localizable", "Scene.Compose.ContentWarning.Placeholder")
|
|
|
|
|
}
|
2021-05-21 13:12:01 +02:00
|
|
|
|
internal enum Keyboard {
|
2021-07-15 15:01:47 +02:00
|
|
|
|
/// Add Attachment - %@
|
2021-05-21 13:12:01 +02:00
|
|
|
|
internal static func appendAttachmentEntry(_ p1: Any) -> String {
|
|
|
|
|
return L10n.tr("Localizable", "Scene.Compose.Keyboard.AppendAttachmentEntry", String(describing: p1))
|
|
|
|
|
}
|
|
|
|
|
/// Discard Post
|
|
|
|
|
internal static let discardPost = L10n.tr("Localizable", "Scene.Compose.Keyboard.DiscardPost")
|
|
|
|
|
/// Publish Post
|
|
|
|
|
internal static let publishPost = L10n.tr("Localizable", "Scene.Compose.Keyboard.PublishPost")
|
|
|
|
|
/// Select Visibility - %@
|
|
|
|
|
internal static func selectVisibilityEntry(_ p1: Any) -> String {
|
|
|
|
|
return L10n.tr("Localizable", "Scene.Compose.Keyboard.SelectVisibilityEntry", String(describing: p1))
|
|
|
|
|
}
|
|
|
|
|
/// Toggle Content Warning
|
|
|
|
|
internal static let toggleContentWarning = L10n.tr("Localizable", "Scene.Compose.Keyboard.ToggleContentWarning")
|
|
|
|
|
/// Toggle Poll
|
|
|
|
|
internal static let togglePoll = L10n.tr("Localizable", "Scene.Compose.Keyboard.TogglePoll")
|
|
|
|
|
}
|
2021-03-19 12:49:48 +01:00
|
|
|
|
internal enum MediaSelection {
|
|
|
|
|
/// Browse
|
|
|
|
|
internal static let browse = L10n.tr("Localizable", "Scene.Compose.MediaSelection.Browse")
|
|
|
|
|
/// Take Photo
|
|
|
|
|
internal static let camera = L10n.tr("Localizable", "Scene.Compose.MediaSelection.Camera")
|
|
|
|
|
/// Photo Library
|
|
|
|
|
internal static let photoLibrary = L10n.tr("Localizable", "Scene.Compose.MediaSelection.PhotoLibrary")
|
|
|
|
|
}
|
2021-03-24 07:49:27 +01:00
|
|
|
|
internal enum Poll {
|
|
|
|
|
/// Duration: %@
|
|
|
|
|
internal static func durationTime(_ p1: Any) -> String {
|
|
|
|
|
return L10n.tr("Localizable", "Scene.Compose.Poll.DurationTime", String(describing: p1))
|
|
|
|
|
}
|
|
|
|
|
/// 1 Day
|
|
|
|
|
internal static let oneDay = L10n.tr("Localizable", "Scene.Compose.Poll.OneDay")
|
|
|
|
|
/// 1 Hour
|
|
|
|
|
internal static let oneHour = L10n.tr("Localizable", "Scene.Compose.Poll.OneHour")
|
2021-04-14 09:24:54 +02:00
|
|
|
|
/// Option %ld
|
|
|
|
|
internal static func optionNumber(_ p1: Int) -> String {
|
|
|
|
|
return L10n.tr("Localizable", "Scene.Compose.Poll.OptionNumber", p1)
|
|
|
|
|
}
|
2021-03-24 07:49:27 +01:00
|
|
|
|
/// 7 Days
|
|
|
|
|
internal static let sevenDays = L10n.tr("Localizable", "Scene.Compose.Poll.SevenDays")
|
|
|
|
|
/// 6 Hours
|
|
|
|
|
internal static let sixHours = L10n.tr("Localizable", "Scene.Compose.Poll.SixHours")
|
|
|
|
|
/// 30 minutes
|
|
|
|
|
internal static let thirtyMinutes = L10n.tr("Localizable", "Scene.Compose.Poll.ThirtyMinutes")
|
|
|
|
|
/// 3 Days
|
|
|
|
|
internal static let threeDays = L10n.tr("Localizable", "Scene.Compose.Poll.ThreeDays")
|
|
|
|
|
}
|
2021-03-11 08:41:27 +01:00
|
|
|
|
internal enum Title {
|
2021-03-15 06:42:46 +01:00
|
|
|
|
/// New Post
|
|
|
|
|
internal static let newPost = L10n.tr("Localizable", "Scene.Compose.Title.NewPost")
|
2021-03-11 08:41:27 +01:00
|
|
|
|
/// New Reply
|
|
|
|
|
internal static let newReply = L10n.tr("Localizable", "Scene.Compose.Title.NewReply")
|
|
|
|
|
}
|
2021-03-25 12:34:30 +01:00
|
|
|
|
internal enum Visibility {
|
|
|
|
|
/// Only people I mention
|
|
|
|
|
internal static let direct = L10n.tr("Localizable", "Scene.Compose.Visibility.Direct")
|
|
|
|
|
/// Followers only
|
|
|
|
|
internal static let `private` = L10n.tr("Localizable", "Scene.Compose.Visibility.Private")
|
|
|
|
|
/// Public
|
|
|
|
|
internal static let `public` = L10n.tr("Localizable", "Scene.Compose.Visibility.Public")
|
|
|
|
|
/// Unlisted
|
|
|
|
|
internal static let unlisted = L10n.tr("Localizable", "Scene.Compose.Visibility.Unlisted")
|
|
|
|
|
}
|
2021-03-11 08:41:27 +01:00
|
|
|
|
}
|
2021-02-23 08:38:05 +01:00
|
|
|
|
internal enum ConfirmEmail {
|
|
|
|
|
/// We just sent an email to %@,\ntap the link to confirm your account.
|
|
|
|
|
internal static func subtitle(_ p1: Any) -> String {
|
|
|
|
|
return L10n.tr("Localizable", "Scene.ConfirmEmail.Subtitle", String(describing: p1))
|
|
|
|
|
}
|
|
|
|
|
/// One last thing.
|
|
|
|
|
internal static let title = L10n.tr("Localizable", "Scene.ConfirmEmail.Title")
|
|
|
|
|
internal enum Button {
|
|
|
|
|
/// I never got an email
|
|
|
|
|
internal static let dontReceiveEmail = L10n.tr("Localizable", "Scene.ConfirmEmail.Button.DontReceiveEmail")
|
2021-02-25 08:44:14 +01:00
|
|
|
|
/// Open Email App
|
2021-02-23 08:38:05 +01:00
|
|
|
|
internal static let openEmailApp = L10n.tr("Localizable", "Scene.ConfirmEmail.Button.OpenEmailApp")
|
|
|
|
|
}
|
|
|
|
|
internal enum DontReceiveEmail {
|
2021-02-25 08:44:14 +01:00
|
|
|
|
/// Check if your email address is correct as well as your junk folder if you haven’t.
|
2021-02-25 08:39:48 +01:00
|
|
|
|
internal static let description = L10n.tr("Localizable", "Scene.ConfirmEmail.DontReceiveEmail.Description")
|
2021-02-26 11:27:47 +01:00
|
|
|
|
/// Resend Email
|
2021-02-25 08:39:48 +01:00
|
|
|
|
internal static let resendEmail = L10n.tr("Localizable", "Scene.ConfirmEmail.DontReceiveEmail.ResendEmail")
|
2021-02-25 08:44:14 +01:00
|
|
|
|
/// Check your email
|
2021-02-25 08:39:48 +01:00
|
|
|
|
internal static let title = L10n.tr("Localizable", "Scene.ConfirmEmail.DontReceiveEmail.Title")
|
2021-02-23 08:38:05 +01:00
|
|
|
|
}
|
|
|
|
|
internal enum OpenEmailApp {
|
2021-02-25 08:44:14 +01:00
|
|
|
|
/// We just sent you an email. Check your junk folder if you haven’t.
|
2021-02-25 08:39:48 +01:00
|
|
|
|
internal static let description = L10n.tr("Localizable", "Scene.ConfirmEmail.OpenEmailApp.Description")
|
2021-02-24 03:49:50 +01:00
|
|
|
|
/// Mail
|
|
|
|
|
internal static let mail = L10n.tr("Localizable", "Scene.ConfirmEmail.OpenEmailApp.Mail")
|
2021-02-25 08:39:48 +01:00
|
|
|
|
/// Open Email Client
|
|
|
|
|
internal static let openEmailClient = L10n.tr("Localizable", "Scene.ConfirmEmail.OpenEmailApp.OpenEmailClient")
|
|
|
|
|
/// Check your inbox.
|
|
|
|
|
internal static let title = L10n.tr("Localizable", "Scene.ConfirmEmail.OpenEmailApp.Title")
|
2021-02-23 08:38:05 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
2021-04-08 05:25:02 +02:00
|
|
|
|
internal enum Favorite {
|
|
|
|
|
/// Your Favorites
|
|
|
|
|
internal static let title = L10n.tr("Localizable", "Scene.Favorite.Title")
|
|
|
|
|
}
|
2021-02-22 09:20:44 +01:00
|
|
|
|
internal enum HomeTimeline {
|
|
|
|
|
/// Home
|
|
|
|
|
internal static let title = L10n.tr("Localizable", "Scene.HomeTimeline.Title")
|
2021-03-15 13:03:40 +01:00
|
|
|
|
internal enum NavigationBarState {
|
|
|
|
|
/// See new posts
|
|
|
|
|
internal static let newPosts = L10n.tr("Localizable", "Scene.HomeTimeline.NavigationBarState.NewPosts")
|
|
|
|
|
/// Offline
|
|
|
|
|
internal static let offline = L10n.tr("Localizable", "Scene.HomeTimeline.NavigationBarState.Offline")
|
|
|
|
|
/// Published!
|
|
|
|
|
internal static let published = L10n.tr("Localizable", "Scene.HomeTimeline.NavigationBarState.Published")
|
|
|
|
|
/// Publishing post...
|
|
|
|
|
internal static let publishing = L10n.tr("Localizable", "Scene.HomeTimeline.NavigationBarState.Publishing")
|
|
|
|
|
}
|
2021-02-22 09:20:44 +01:00
|
|
|
|
}
|
2021-04-12 10:31:53 +02:00
|
|
|
|
internal enum Notification {
|
2021-08-16 08:21:40 +02:00
|
|
|
|
/// %@ favorited your post
|
|
|
|
|
internal static func userFavoritedYourPost(_ p1: Any) -> String {
|
|
|
|
|
return L10n.tr("Localizable", "Scene.Notification.UserFavorited Your Post", String(describing: p1))
|
|
|
|
|
}
|
|
|
|
|
/// %@ followed you
|
|
|
|
|
internal static func userFollowedYou(_ p1: Any) -> String {
|
|
|
|
|
return L10n.tr("Localizable", "Scene.Notification.UserFollowedYou", String(describing: p1))
|
|
|
|
|
}
|
|
|
|
|
/// %@ mentioned you
|
|
|
|
|
internal static func userMentionedYou(_ p1: Any) -> String {
|
|
|
|
|
return L10n.tr("Localizable", "Scene.Notification.UserMentionedYou", String(describing: p1))
|
|
|
|
|
}
|
|
|
|
|
/// %@ reblogged your post
|
|
|
|
|
internal static func userRebloggedYourPost(_ p1: Any) -> String {
|
|
|
|
|
return L10n.tr("Localizable", "Scene.Notification.UserRebloggedYourPost", String(describing: p1))
|
|
|
|
|
}
|
|
|
|
|
/// %@ requested to follow you
|
|
|
|
|
internal static func userRequestedToFollowYou(_ p1: Any) -> String {
|
|
|
|
|
return L10n.tr("Localizable", "Scene.Notification.UserRequestedToFollowYou", String(describing: p1))
|
|
|
|
|
}
|
|
|
|
|
/// %@ Your poll has ended
|
|
|
|
|
internal static func userYourPollHasEnded(_ p1: Any) -> String {
|
|
|
|
|
return L10n.tr("Localizable", "Scene.Notification.UserYourPollHasEnded", String(describing: p1))
|
2021-04-12 10:31:53 +02:00
|
|
|
|
}
|
2021-05-21 11:18:03 +02:00
|
|
|
|
internal enum Keyobard {
|
|
|
|
|
/// Show Everything
|
|
|
|
|
internal static let showEverything = L10n.tr("Localizable", "Scene.Notification.Keyobard.ShowEverything")
|
|
|
|
|
/// Show Mentions
|
|
|
|
|
internal static let showMentions = L10n.tr("Localizable", "Scene.Notification.Keyobard.ShowMentions")
|
|
|
|
|
}
|
2021-04-12 10:31:53 +02:00
|
|
|
|
internal enum Title {
|
|
|
|
|
/// Everything
|
|
|
|
|
internal static let everything = L10n.tr("Localizable", "Scene.Notification.Title.Everything")
|
|
|
|
|
/// Mentions
|
|
|
|
|
internal static let mentions = L10n.tr("Localizable", "Scene.Notification.Title.Mentions")
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-05-21 09:23:02 +02:00
|
|
|
|
internal enum Preview {
|
|
|
|
|
internal enum Keyboard {
|
|
|
|
|
/// Close Preview
|
|
|
|
|
internal static let closePreview = L10n.tr("Localizable", "Scene.Preview.Keyboard.ClosePreview")
|
|
|
|
|
/// Show Next
|
|
|
|
|
internal static let showNext = L10n.tr("Localizable", "Scene.Preview.Keyboard.ShowNext")
|
|
|
|
|
/// Show Previous
|
|
|
|
|
internal static let showPrevious = L10n.tr("Localizable", "Scene.Preview.Keyboard.ShowPrevious")
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-04-01 08:39:15 +02:00
|
|
|
|
internal enum Profile {
|
|
|
|
|
internal enum Dashboard {
|
|
|
|
|
/// followers
|
|
|
|
|
internal static let followers = L10n.tr("Localizable", "Scene.Profile.Dashboard.Followers")
|
|
|
|
|
/// following
|
|
|
|
|
internal static let following = L10n.tr("Localizable", "Scene.Profile.Dashboard.Following")
|
|
|
|
|
/// posts
|
|
|
|
|
internal static let posts = L10n.tr("Localizable", "Scene.Profile.Dashboard.Posts")
|
|
|
|
|
}
|
2021-05-27 07:56:55 +02:00
|
|
|
|
internal enum Fields {
|
|
|
|
|
/// Add Row
|
|
|
|
|
internal static let addRow = L10n.tr("Localizable", "Scene.Profile.Fields.AddRow")
|
|
|
|
|
internal enum Placeholder {
|
|
|
|
|
/// Content
|
|
|
|
|
internal static let content = L10n.tr("Localizable", "Scene.Profile.Fields.Placeholder.Content")
|
|
|
|
|
/// Label
|
|
|
|
|
internal static let label = L10n.tr("Localizable", "Scene.Profile.Fields.Placeholder.Label")
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-04-02 12:13:45 +02:00
|
|
|
|
internal enum RelationshipActionAlert {
|
|
|
|
|
internal enum ConfirmUnblockUsre {
|
2021-07-15 15:01:47 +02:00
|
|
|
|
/// Confirm to unblock %@
|
2021-04-02 12:13:45 +02:00
|
|
|
|
internal static func message(_ p1: Any) -> String {
|
|
|
|
|
return L10n.tr("Localizable", "Scene.Profile.RelationshipActionAlert.ConfirmUnblockUsre.Message", String(describing: p1))
|
|
|
|
|
}
|
|
|
|
|
/// Unblock Account
|
|
|
|
|
internal static let title = L10n.tr("Localizable", "Scene.Profile.RelationshipActionAlert.ConfirmUnblockUsre.Title")
|
|
|
|
|
}
|
|
|
|
|
internal enum ConfirmUnmuteUser {
|
2021-07-15 15:01:47 +02:00
|
|
|
|
/// Confirm to unmute %@
|
2021-04-02 12:13:45 +02:00
|
|
|
|
internal static func message(_ p1: Any) -> String {
|
|
|
|
|
return L10n.tr("Localizable", "Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message", String(describing: p1))
|
|
|
|
|
}
|
|
|
|
|
/// Unmute Account
|
|
|
|
|
internal static let title = L10n.tr("Localizable", "Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Title")
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-04-01 08:39:15 +02:00
|
|
|
|
internal enum SegmentedControl {
|
|
|
|
|
/// Media
|
|
|
|
|
internal static let media = L10n.tr("Localizable", "Scene.Profile.SegmentedControl.Media")
|
|
|
|
|
/// Posts
|
|
|
|
|
internal static let posts = L10n.tr("Localizable", "Scene.Profile.SegmentedControl.Posts")
|
|
|
|
|
/// Replies
|
|
|
|
|
internal static let replies = L10n.tr("Localizable", "Scene.Profile.SegmentedControl.Replies")
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-02-22 09:20:44 +01:00
|
|
|
|
internal enum Register {
|
|
|
|
|
/// Tell us about you.
|
|
|
|
|
internal static let title = L10n.tr("Localizable", "Scene.Register.Title")
|
2021-03-04 08:29:46 +01:00
|
|
|
|
internal enum Error {
|
|
|
|
|
internal enum Item {
|
|
|
|
|
/// Agreement
|
|
|
|
|
internal static let agreement = L10n.tr("Localizable", "Scene.Register.Error.Item.Agreement")
|
|
|
|
|
/// Email
|
|
|
|
|
internal static let email = L10n.tr("Localizable", "Scene.Register.Error.Item.Email")
|
|
|
|
|
/// Locale
|
|
|
|
|
internal static let locale = L10n.tr("Localizable", "Scene.Register.Error.Item.Locale")
|
|
|
|
|
/// Password
|
|
|
|
|
internal static let password = L10n.tr("Localizable", "Scene.Register.Error.Item.Password")
|
|
|
|
|
/// Reason
|
|
|
|
|
internal static let reason = L10n.tr("Localizable", "Scene.Register.Error.Item.Reason")
|
|
|
|
|
/// Username
|
|
|
|
|
internal static let username = L10n.tr("Localizable", "Scene.Register.Error.Item.Username")
|
|
|
|
|
}
|
|
|
|
|
internal enum Reason {
|
2021-03-04 09:42:43 +01:00
|
|
|
|
/// %@ must be accepted
|
2021-03-04 08:29:46 +01:00
|
|
|
|
internal static func accepted(_ p1: Any) -> String {
|
|
|
|
|
return L10n.tr("Localizable", "Scene.Register.Error.Reason.Accepted", String(describing: p1))
|
|
|
|
|
}
|
2021-03-04 09:42:43 +01:00
|
|
|
|
/// %@ is required
|
2021-03-04 08:29:46 +01:00
|
|
|
|
internal static func blank(_ p1: Any) -> String {
|
|
|
|
|
return L10n.tr("Localizable", "Scene.Register.Error.Reason.Blank", String(describing: p1))
|
|
|
|
|
}
|
2021-07-15 15:01:47 +02:00
|
|
|
|
/// %@ contains a disallowed email provider
|
2021-03-04 08:29:46 +01:00
|
|
|
|
internal static func blocked(_ p1: Any) -> String {
|
|
|
|
|
return L10n.tr("Localizable", "Scene.Register.Error.Reason.Blocked", String(describing: p1))
|
|
|
|
|
}
|
2021-03-04 09:42:43 +01:00
|
|
|
|
/// %@ is not a supported value
|
2021-03-04 08:29:46 +01:00
|
|
|
|
internal static func inclusion(_ p1: Any) -> String {
|
|
|
|
|
return L10n.tr("Localizable", "Scene.Register.Error.Reason.Inclusion", String(describing: p1))
|
|
|
|
|
}
|
2021-03-04 09:42:43 +01:00
|
|
|
|
/// %@ is invalid
|
2021-03-04 08:29:46 +01:00
|
|
|
|
internal static func invalid(_ p1: Any) -> String {
|
|
|
|
|
return L10n.tr("Localizable", "Scene.Register.Error.Reason.Invalid", String(describing: p1))
|
|
|
|
|
}
|
2021-03-04 09:42:43 +01:00
|
|
|
|
/// %@ is a reserved keyword
|
2021-03-04 08:29:46 +01:00
|
|
|
|
internal static func reserved(_ p1: Any) -> String {
|
|
|
|
|
return L10n.tr("Localizable", "Scene.Register.Error.Reason.Reserved", String(describing: p1))
|
|
|
|
|
}
|
2021-03-04 09:42:43 +01:00
|
|
|
|
/// %@ is already in use
|
2021-03-04 08:29:46 +01:00
|
|
|
|
internal static func taken(_ p1: Any) -> String {
|
|
|
|
|
return L10n.tr("Localizable", "Scene.Register.Error.Reason.Taken", String(describing: p1))
|
|
|
|
|
}
|
2021-03-04 09:42:43 +01:00
|
|
|
|
/// %@ is too long
|
2021-03-04 08:29:46 +01:00
|
|
|
|
internal static func tooLong(_ p1: Any) -> String {
|
|
|
|
|
return L10n.tr("Localizable", "Scene.Register.Error.Reason.TooLong", String(describing: p1))
|
|
|
|
|
}
|
2021-03-04 09:42:43 +01:00
|
|
|
|
/// %@ is too short
|
2021-03-04 08:29:46 +01:00
|
|
|
|
internal static func tooShort(_ p1: Any) -> String {
|
|
|
|
|
return L10n.tr("Localizable", "Scene.Register.Error.Reason.TooShort", String(describing: p1))
|
|
|
|
|
}
|
2021-03-04 09:42:43 +01:00
|
|
|
|
/// %@ does not seem to exist
|
2021-03-04 08:29:46 +01:00
|
|
|
|
internal static func unreachable(_ p1: Any) -> String {
|
|
|
|
|
return L10n.tr("Localizable", "Scene.Register.Error.Reason.Unreachable", String(describing: p1))
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
internal enum Special {
|
2021-07-15 15:01:47 +02:00
|
|
|
|
/// This is not a valid email address
|
2021-03-04 08:29:46 +01:00
|
|
|
|
internal static let emailInvalid = L10n.tr("Localizable", "Scene.Register.Error.Special.EmailInvalid")
|
2021-03-04 09:42:43 +01:00
|
|
|
|
/// Password is too short (must be at least 8 characters)
|
|
|
|
|
internal static let passwordTooShort = L10n.tr("Localizable", "Scene.Register.Error.Special.PasswordTooShort")
|
|
|
|
|
/// Username must only contain alphanumeric characters and underscores
|
2021-03-04 08:29:46 +01:00
|
|
|
|
internal static let usernameInvalid = L10n.tr("Localizable", "Scene.Register.Error.Special.UsernameInvalid")
|
2021-06-21 11:52:38 +02:00
|
|
|
|
/// Username is too long (can’t be longer than 30 characters)
|
2021-03-04 08:29:46 +01:00
|
|
|
|
internal static let usernameTooLong = L10n.tr("Localizable", "Scene.Register.Error.Special.UsernameTooLong")
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-02-22 09:20:44 +01:00
|
|
|
|
internal enum Input {
|
2021-03-29 07:37:56 +02:00
|
|
|
|
internal enum Avatar {
|
2021-04-26 14:36:59 +02:00
|
|
|
|
/// Delete
|
2021-03-29 07:37:56 +02:00
|
|
|
|
internal static let delete = L10n.tr("Localizable", "Scene.Register.Input.Avatar.Delete")
|
|
|
|
|
}
|
2021-02-22 09:20:44 +01:00
|
|
|
|
internal enum DisplayName {
|
|
|
|
|
/// display name
|
|
|
|
|
internal static let placeholder = L10n.tr("Localizable", "Scene.Register.Input.DisplayName.Placeholder")
|
|
|
|
|
}
|
|
|
|
|
internal enum Email {
|
|
|
|
|
/// email
|
|
|
|
|
internal static let placeholder = L10n.tr("Localizable", "Scene.Register.Input.Email.Placeholder")
|
|
|
|
|
}
|
2021-02-26 05:52:37 +01:00
|
|
|
|
internal enum Invite {
|
|
|
|
|
/// Why do you want to join?
|
|
|
|
|
internal static let registrationUserInviteRequest = L10n.tr("Localizable", "Scene.Register.Input.Invite.RegistrationUserInviteRequest")
|
|
|
|
|
}
|
2021-02-22 09:20:44 +01:00
|
|
|
|
internal enum Password {
|
2021-03-04 08:29:46 +01:00
|
|
|
|
/// Your password needs at least eight characters
|
2021-03-02 10:24:04 +01:00
|
|
|
|
internal static let hint = L10n.tr("Localizable", "Scene.Register.Input.Password.Hint")
|
2021-02-22 09:20:44 +01:00
|
|
|
|
/// password
|
|
|
|
|
internal static let placeholder = L10n.tr("Localizable", "Scene.Register.Input.Password.Placeholder")
|
|
|
|
|
}
|
|
|
|
|
internal enum Username {
|
|
|
|
|
/// This username is taken.
|
|
|
|
|
internal static let duplicatePrompt = L10n.tr("Localizable", "Scene.Register.Input.Username.DuplicatePrompt")
|
|
|
|
|
/// username
|
|
|
|
|
internal static let placeholder = L10n.tr("Localizable", "Scene.Register.Input.Username.Placeholder")
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-04-19 14:34:08 +02:00
|
|
|
|
internal enum Report {
|
|
|
|
|
/// Are there any other posts you’d like to add to the report?
|
|
|
|
|
internal static let content1 = L10n.tr("Localizable", "Scene.Report.Content1")
|
|
|
|
|
/// Is there anything the moderators should know about this report?
|
|
|
|
|
internal static let content2 = L10n.tr("Localizable", "Scene.Report.Content2")
|
|
|
|
|
/// Send Report
|
|
|
|
|
internal static let send = L10n.tr("Localizable", "Scene.Report.Send")
|
|
|
|
|
/// Send without comment
|
2021-04-22 16:58:21 +02:00
|
|
|
|
internal static let skipToSend = L10n.tr("Localizable", "Scene.Report.SkipToSend")
|
2021-04-19 14:34:08 +02:00
|
|
|
|
/// Step 1 of 2
|
|
|
|
|
internal static let step1 = L10n.tr("Localizable", "Scene.Report.Step1")
|
|
|
|
|
/// Step 2 of 2
|
|
|
|
|
internal static let step2 = L10n.tr("Localizable", "Scene.Report.Step2")
|
2021-04-22 16:58:21 +02:00
|
|
|
|
/// Type or paste additional comments
|
|
|
|
|
internal static let textPlaceholder = L10n.tr("Localizable", "Scene.Report.TextPlaceholder")
|
2021-04-19 14:34:08 +02:00
|
|
|
|
/// Report %@
|
|
|
|
|
internal static func title(_ p1: Any) -> String {
|
|
|
|
|
return L10n.tr("Localizable", "Scene.Report.Title", String(describing: p1))
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-03-31 13:29:54 +02:00
|
|
|
|
internal enum Search {
|
2021-07-14 14:28:41 +02:00
|
|
|
|
/// Search
|
|
|
|
|
internal static let title = L10n.tr("Localizable", "Scene.Search.Title")
|
2021-04-01 14:54:57 +02:00
|
|
|
|
internal enum Recommend {
|
|
|
|
|
/// See All
|
2021-04-02 10:24:00 +02:00
|
|
|
|
internal static let buttonText = L10n.tr("Localizable", "Scene.Search.Recommend.ButtonText")
|
2021-04-01 14:54:57 +02:00
|
|
|
|
internal enum Accounts {
|
2021-05-13 10:06:28 +02:00
|
|
|
|
/// You may like to follow these accounts
|
2021-04-01 14:54:57 +02:00
|
|
|
|
internal static let description = L10n.tr("Localizable", "Scene.Search.Recommend.Accounts.Description")
|
|
|
|
|
/// Follow
|
|
|
|
|
internal static let follow = L10n.tr("Localizable", "Scene.Search.Recommend.Accounts.Follow")
|
|
|
|
|
/// Accounts you might like
|
|
|
|
|
internal static let title = L10n.tr("Localizable", "Scene.Search.Recommend.Accounts.Title")
|
|
|
|
|
}
|
|
|
|
|
internal enum HashTag {
|
2021-07-15 15:01:47 +02:00
|
|
|
|
/// Hashtags that are getting quite a bit of attention
|
2021-04-01 14:54:57 +02:00
|
|
|
|
internal static let description = L10n.tr("Localizable", "Scene.Search.Recommend.HashTag.Description")
|
|
|
|
|
/// %@ people are talking
|
|
|
|
|
internal static func peopleTalking(_ p1: Any) -> String {
|
|
|
|
|
return L10n.tr("Localizable", "Scene.Search.Recommend.HashTag.PeopleTalking", String(describing: p1))
|
|
|
|
|
}
|
2021-07-15 15:01:47 +02:00
|
|
|
|
/// Trending on Mastodon
|
2021-04-01 14:54:57 +02:00
|
|
|
|
internal static let title = L10n.tr("Localizable", "Scene.Search.Recommend.HashTag.Title")
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-07-14 14:28:41 +02:00
|
|
|
|
internal enum SearchBar {
|
2021-03-31 13:29:54 +02:00
|
|
|
|
/// Cancel
|
2021-07-14 14:28:41 +02:00
|
|
|
|
internal static let cancel = L10n.tr("Localizable", "Scene.Search.SearchBar.Cancel")
|
2021-03-31 13:29:54 +02:00
|
|
|
|
/// Search hashtags and users
|
2021-07-14 14:28:41 +02:00
|
|
|
|
internal static let placeholder = L10n.tr("Localizable", "Scene.Search.SearchBar.Placeholder")
|
2021-03-31 13:29:54 +02:00
|
|
|
|
}
|
2021-04-02 10:24:00 +02:00
|
|
|
|
internal enum Searching {
|
2021-06-22 11:47:21 +02:00
|
|
|
|
/// Clear
|
2021-04-02 10:24:00 +02:00
|
|
|
|
internal static let clear = L10n.tr("Localizable", "Scene.Search.Searching.Clear")
|
|
|
|
|
/// Recent searches
|
|
|
|
|
internal static let recentSearch = L10n.tr("Localizable", "Scene.Search.Searching.RecentSearch")
|
2021-07-15 11:26:04 +02:00
|
|
|
|
internal enum EmptyState {
|
|
|
|
|
/// No results
|
|
|
|
|
internal static let noResults = L10n.tr("Localizable", "Scene.Search.Searching.EmptyState.NoResults")
|
|
|
|
|
}
|
2021-04-02 10:24:00 +02:00
|
|
|
|
internal enum Segment {
|
|
|
|
|
/// All
|
|
|
|
|
internal static let all = L10n.tr("Localizable", "Scene.Search.Searching.Segment.All")
|
|
|
|
|
/// Hashtags
|
|
|
|
|
internal static let hashtags = L10n.tr("Localizable", "Scene.Search.Searching.Segment.Hashtags")
|
|
|
|
|
/// People
|
|
|
|
|
internal static let people = L10n.tr("Localizable", "Scene.Search.Searching.Segment.People")
|
2021-07-14 14:28:41 +02:00
|
|
|
|
/// Posts
|
|
|
|
|
internal static let posts = L10n.tr("Localizable", "Scene.Search.Searching.Segment.Posts")
|
2021-04-02 10:24:00 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
2021-03-31 13:29:54 +02:00
|
|
|
|
}
|
2021-02-22 09:20:44 +01:00
|
|
|
|
internal enum ServerPicker {
|
2021-07-07 14:16:37 +02:00
|
|
|
|
/// Pick a server,\nany server.
|
2021-02-22 09:20:44 +01:00
|
|
|
|
internal static let title = L10n.tr("Localizable", "Scene.ServerPicker.Title")
|
2021-02-23 15:14:10 +01:00
|
|
|
|
internal enum Button {
|
2021-02-25 09:38:24 +01:00
|
|
|
|
/// See Less
|
2021-03-15 06:42:46 +01:00
|
|
|
|
internal static let seeLess = L10n.tr("Localizable", "Scene.ServerPicker.Button.SeeLess")
|
2021-02-24 15:47:42 +01:00
|
|
|
|
/// See More
|
2021-03-15 06:42:46 +01:00
|
|
|
|
internal static let seeMore = L10n.tr("Localizable", "Scene.ServerPicker.Button.SeeMore")
|
2021-02-23 15:14:10 +01:00
|
|
|
|
internal enum Category {
|
2021-05-07 14:02:28 +02:00
|
|
|
|
/// academia
|
|
|
|
|
internal static let academia = L10n.tr("Localizable", "Scene.ServerPicker.Button.Category.Academia")
|
|
|
|
|
/// activism
|
|
|
|
|
internal static let activism = L10n.tr("Localizable", "Scene.ServerPicker.Button.Category.Activism")
|
2021-02-23 15:14:10 +01:00
|
|
|
|
/// All
|
|
|
|
|
internal static let all = L10n.tr("Localizable", "Scene.ServerPicker.Button.Category.All")
|
2021-05-07 14:02:28 +02:00
|
|
|
|
/// Category: All
|
|
|
|
|
internal static let allAccessiblityDescription = L10n.tr("Localizable", "Scene.ServerPicker.Button.Category.AllAccessiblityDescription")
|
|
|
|
|
/// art
|
|
|
|
|
internal static let art = L10n.tr("Localizable", "Scene.ServerPicker.Button.Category.Art")
|
|
|
|
|
/// food
|
|
|
|
|
internal static let food = L10n.tr("Localizable", "Scene.ServerPicker.Button.Category.Food")
|
|
|
|
|
/// furry
|
|
|
|
|
internal static let furry = L10n.tr("Localizable", "Scene.ServerPicker.Button.Category.Furry")
|
|
|
|
|
/// games
|
|
|
|
|
internal static let games = L10n.tr("Localizable", "Scene.ServerPicker.Button.Category.Games")
|
|
|
|
|
/// general
|
|
|
|
|
internal static let general = L10n.tr("Localizable", "Scene.ServerPicker.Button.Category.General")
|
|
|
|
|
/// journalism
|
|
|
|
|
internal static let journalism = L10n.tr("Localizable", "Scene.ServerPicker.Button.Category.Journalism")
|
|
|
|
|
/// lgbt
|
|
|
|
|
internal static let lgbt = L10n.tr("Localizable", "Scene.ServerPicker.Button.Category.Lgbt")
|
|
|
|
|
/// music
|
|
|
|
|
internal static let music = L10n.tr("Localizable", "Scene.ServerPicker.Button.Category.Music")
|
|
|
|
|
/// regional
|
|
|
|
|
internal static let regional = L10n.tr("Localizable", "Scene.ServerPicker.Button.Category.Regional")
|
|
|
|
|
/// tech
|
|
|
|
|
internal static let tech = L10n.tr("Localizable", "Scene.ServerPicker.Button.Category.Tech")
|
2021-02-23 15:14:10 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
2021-03-06 05:55:52 +01:00
|
|
|
|
internal enum EmptyState {
|
2021-07-15 15:01:47 +02:00
|
|
|
|
/// Something went wrong while loading the data. Check your internet connection.
|
2021-03-06 05:55:52 +01:00
|
|
|
|
internal static let badNetwork = L10n.tr("Localizable", "Scene.ServerPicker.EmptyState.BadNetwork")
|
|
|
|
|
/// Finding available servers...
|
|
|
|
|
internal static let findingServers = L10n.tr("Localizable", "Scene.ServerPicker.EmptyState.FindingServers")
|
2021-05-13 11:50:37 +02:00
|
|
|
|
/// No results
|
|
|
|
|
internal static let noResults = L10n.tr("Localizable", "Scene.ServerPicker.EmptyState.NoResults")
|
2021-03-06 05:55:52 +01:00
|
|
|
|
}
|
2021-02-22 09:20:44 +01:00
|
|
|
|
internal enum Input {
|
|
|
|
|
/// Find a server or join your own...
|
|
|
|
|
internal static let placeholder = L10n.tr("Localizable", "Scene.ServerPicker.Input.Placeholder")
|
|
|
|
|
}
|
2021-02-24 15:47:42 +01:00
|
|
|
|
internal enum Label {
|
|
|
|
|
/// CATEGORY
|
|
|
|
|
internal static let category = L10n.tr("Localizable", "Scene.ServerPicker.Label.Category")
|
|
|
|
|
/// LANGUAGE
|
|
|
|
|
internal static let language = L10n.tr("Localizable", "Scene.ServerPicker.Label.Language")
|
|
|
|
|
/// USERS
|
|
|
|
|
internal static let users = L10n.tr("Localizable", "Scene.ServerPicker.Label.Users")
|
|
|
|
|
}
|
2021-02-22 09:20:44 +01:00
|
|
|
|
}
|
|
|
|
|
internal enum ServerRules {
|
2021-03-30 08:31:52 +02:00
|
|
|
|
/// privacy policy
|
|
|
|
|
internal static let privacyPolicy = L10n.tr("Localizable", "Scene.ServerRules.PrivacyPolicy")
|
2021-06-21 11:52:38 +02:00
|
|
|
|
/// By continuing, you’re subject to the terms of service and privacy policy for %@.
|
2021-02-22 09:20:44 +01:00
|
|
|
|
internal static func prompt(_ p1: Any) -> String {
|
|
|
|
|
return L10n.tr("Localizable", "Scene.ServerRules.Prompt", String(describing: p1))
|
|
|
|
|
}
|
|
|
|
|
/// These rules are set by the admins of %@.
|
|
|
|
|
internal static func subtitle(_ p1: Any) -> String {
|
|
|
|
|
return L10n.tr("Localizable", "Scene.ServerRules.Subtitle", String(describing: p1))
|
|
|
|
|
}
|
2021-03-30 08:31:52 +02:00
|
|
|
|
/// terms of service
|
|
|
|
|
internal static let termsOfService = L10n.tr("Localizable", "Scene.ServerRules.TermsOfService")
|
2021-02-22 09:20:44 +01:00
|
|
|
|
/// Some ground rules.
|
|
|
|
|
internal static let title = L10n.tr("Localizable", "Scene.ServerRules.Title")
|
|
|
|
|
internal enum Button {
|
|
|
|
|
/// I Agree
|
|
|
|
|
internal static let confirm = L10n.tr("Localizable", "Scene.ServerRules.Button.Confirm")
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-04-17 08:15:55 +02:00
|
|
|
|
internal enum Settings {
|
|
|
|
|
/// Settings
|
|
|
|
|
internal static let title = L10n.tr("Localizable", "Scene.Settings.Title")
|
2021-07-06 09:20:32 +02:00
|
|
|
|
internal enum Footer {
|
2021-07-28 05:05:28 +02:00
|
|
|
|
/// Mastodon is open source software. You can report issues on GitHub at %@ (%@)
|
2021-07-06 09:20:32 +02:00
|
|
|
|
internal static func mastodonDescription(_ p1: Any, _ p2: Any) -> String {
|
|
|
|
|
return L10n.tr("Localizable", "Scene.Settings.Footer.MastodonDescription", String(describing: p1), String(describing: p2))
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-05-19 10:45:01 +02:00
|
|
|
|
internal enum Keyboard {
|
|
|
|
|
/// Close Settings Window
|
|
|
|
|
internal static let closeSettingsWindow = L10n.tr("Localizable", "Scene.Settings.Keyboard.CloseSettingsWindow")
|
|
|
|
|
}
|
2021-04-17 08:15:55 +02:00
|
|
|
|
internal enum Section {
|
|
|
|
|
internal enum Appearance {
|
|
|
|
|
/// Automatic
|
|
|
|
|
internal static let automatic = L10n.tr("Localizable", "Scene.Settings.Section.Appearance.Automatic")
|
|
|
|
|
/// Always Dark
|
|
|
|
|
internal static let dark = L10n.tr("Localizable", "Scene.Settings.Section.Appearance.Dark")
|
|
|
|
|
/// Always Light
|
|
|
|
|
internal static let light = L10n.tr("Localizable", "Scene.Settings.Section.Appearance.Light")
|
|
|
|
|
/// Appearance
|
|
|
|
|
internal static let title = L10n.tr("Localizable", "Scene.Settings.Section.Appearance.Title")
|
|
|
|
|
}
|
2021-07-15 15:04:31 +02:00
|
|
|
|
internal enum BoringZone {
|
2021-07-20 13:24:24 +02:00
|
|
|
|
/// Account Settings
|
2021-07-15 15:04:31 +02:00
|
|
|
|
internal static let accountSettings = L10n.tr("Localizable", "Scene.Settings.Section.BoringZone.AccountSettings")
|
2021-04-17 08:15:55 +02:00
|
|
|
|
/// Privacy Policy
|
2021-07-15 15:04:31 +02:00
|
|
|
|
internal static let privacy = L10n.tr("Localizable", "Scene.Settings.Section.BoringZone.Privacy")
|
2021-04-17 08:15:55 +02:00
|
|
|
|
/// Terms of Service
|
2021-07-15 15:04:31 +02:00
|
|
|
|
internal static let terms = L10n.tr("Localizable", "Scene.Settings.Section.BoringZone.Terms")
|
2021-07-14 14:28:41 +02:00
|
|
|
|
/// The Boring Zone
|
2021-07-15 15:04:31 +02:00
|
|
|
|
internal static let title = L10n.tr("Localizable", "Scene.Settings.Section.BoringZone.Title")
|
2021-04-17 08:15:55 +02:00
|
|
|
|
}
|
|
|
|
|
internal enum Notifications {
|
|
|
|
|
/// Reblogs my post
|
|
|
|
|
internal static let boosts = L10n.tr("Localizable", "Scene.Settings.Section.Notifications.Boosts")
|
|
|
|
|
/// Favorites my post
|
|
|
|
|
internal static let favorites = L10n.tr("Localizable", "Scene.Settings.Section.Notifications.Favorites")
|
|
|
|
|
/// Follows me
|
|
|
|
|
internal static let follows = L10n.tr("Localizable", "Scene.Settings.Section.Notifications.Follows")
|
|
|
|
|
/// Mentions me
|
|
|
|
|
internal static let mentions = L10n.tr("Localizable", "Scene.Settings.Section.Notifications.Mentions")
|
|
|
|
|
/// Notifications
|
|
|
|
|
internal static let title = L10n.tr("Localizable", "Scene.Settings.Section.Notifications.Title")
|
|
|
|
|
internal enum Trigger {
|
|
|
|
|
/// anyone
|
|
|
|
|
internal static let anyone = L10n.tr("Localizable", "Scene.Settings.Section.Notifications.Trigger.Anyone")
|
|
|
|
|
/// anyone I follow
|
|
|
|
|
internal static let follow = L10n.tr("Localizable", "Scene.Settings.Section.Notifications.Trigger.Follow")
|
|
|
|
|
/// a follower
|
|
|
|
|
internal static let follower = L10n.tr("Localizable", "Scene.Settings.Section.Notifications.Trigger.Follower")
|
|
|
|
|
/// no one
|
|
|
|
|
internal static let noone = L10n.tr("Localizable", "Scene.Settings.Section.Notifications.Trigger.Noone")
|
|
|
|
|
/// Notify me when
|
|
|
|
|
internal static let title = L10n.tr("Localizable", "Scene.Settings.Section.Notifications.Trigger.Title")
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-07-08 09:56:52 +02:00
|
|
|
|
internal enum Preference {
|
2021-07-23 13:33:05 +02:00
|
|
|
|
/// Disable animated avatars
|
|
|
|
|
internal static let disableAvatarAnimation = L10n.tr("Localizable", "Scene.Settings.Section.Preference.DisableAvatarAnimation")
|
|
|
|
|
/// Disable animated emojis
|
|
|
|
|
internal static let disableEmojiAnimation = L10n.tr("Localizable", "Scene.Settings.Section.Preference.DisableEmojiAnimation")
|
2021-07-15 15:01:47 +02:00
|
|
|
|
/// Preferences
|
2021-07-08 09:56:52 +02:00
|
|
|
|
internal static let title = L10n.tr("Localizable", "Scene.Settings.Section.Preference.Title")
|
2021-07-23 13:33:05 +02:00
|
|
|
|
/// True black dark mode
|
|
|
|
|
internal static let trueBlackDarkMode = L10n.tr("Localizable", "Scene.Settings.Section.Preference.TrueBlackDarkMode")
|
2021-07-15 15:01:47 +02:00
|
|
|
|
/// Use default browser to open links
|
2021-07-08 09:56:52 +02:00
|
|
|
|
internal static let usingDefaultBrowser = L10n.tr("Localizable", "Scene.Settings.Section.Preference.UsingDefaultBrowser")
|
|
|
|
|
}
|
2021-07-15 15:04:31 +02:00
|
|
|
|
internal enum SpicyZone {
|
2021-04-17 08:15:55 +02:00
|
|
|
|
/// Clear Media Cache
|
2021-07-15 15:04:31 +02:00
|
|
|
|
internal static let clear = L10n.tr("Localizable", "Scene.Settings.Section.SpicyZone.Clear")
|
2021-04-17 08:15:55 +02:00
|
|
|
|
/// Sign Out
|
2021-07-15 15:04:31 +02:00
|
|
|
|
internal static let signout = L10n.tr("Localizable", "Scene.Settings.Section.SpicyZone.Signout")
|
2021-07-14 14:28:41 +02:00
|
|
|
|
/// The Spicy Zone
|
2021-07-15 15:04:31 +02:00
|
|
|
|
internal static let title = L10n.tr("Localizable", "Scene.Settings.Section.SpicyZone.Title")
|
2021-04-17 08:15:55 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-04-21 08:46:31 +02:00
|
|
|
|
internal enum SuggestionAccount {
|
|
|
|
|
/// When you follow someone, you’ll see their posts in your home feed.
|
|
|
|
|
internal static let followExplain = L10n.tr("Localizable", "Scene.SuggestionAccount.FollowExplain")
|
|
|
|
|
/// Find People to Follow
|
|
|
|
|
internal static let title = L10n.tr("Localizable", "Scene.SuggestionAccount.Title")
|
|
|
|
|
}
|
2021-04-13 13:46:42 +02:00
|
|
|
|
internal enum Thread {
|
|
|
|
|
/// Post
|
|
|
|
|
internal static let backTitle = L10n.tr("Localizable", "Scene.Thread.BackTitle")
|
|
|
|
|
/// Post from %@
|
|
|
|
|
internal static func title(_ p1: Any) -> String {
|
|
|
|
|
return L10n.tr("Localizable", "Scene.Thread.Title", String(describing: p1))
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-02-22 09:20:44 +01:00
|
|
|
|
internal enum Welcome {
|
|
|
|
|
/// Social networking\nback in your hands.
|
|
|
|
|
internal static let slogan = L10n.tr("Localizable", "Scene.Welcome.Slogan")
|
|
|
|
|
}
|
2021-02-03 06:01:50 +01:00
|
|
|
|
}
|
2021-07-06 08:55:24 +02:00
|
|
|
|
|
2021-08-09 13:09:24 +02:00
|
|
|
|
internal enum A11y {
|
|
|
|
|
internal enum Plural {
|
|
|
|
|
internal enum Count {
|
|
|
|
|
/// Plural format key: "Input limit exceeds %#@character_count@"
|
|
|
|
|
internal static func inputLimitExceeds(_ p1: Int) -> String {
|
|
|
|
|
return L10n.tr("Localizable", "a11y.plural.count.input_limit_exceeds", p1)
|
|
|
|
|
}
|
|
|
|
|
/// Plural format key: "Input limit remains %#@character_count@"
|
|
|
|
|
internal static func inputLimitRemains(_ p1: Int) -> String {
|
|
|
|
|
return L10n.tr("Localizable", "a11y.plural.count.input_limit_remains", p1)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
internal enum Date {
|
|
|
|
|
internal enum Day {
|
|
|
|
|
/// Plural format key: "%#@count_day_left@"
|
|
|
|
|
internal static func `left`(_ p1: Int) -> String {
|
|
|
|
|
return L10n.tr("Localizable", "date.day.left", p1)
|
|
|
|
|
}
|
2021-08-10 08:44:47 +02:00
|
|
|
|
internal enum Ago {
|
|
|
|
|
/// Plural format key: "%#@count_day_ago_abbr@"
|
|
|
|
|
internal static func abbr(_ p1: Int) -> String {
|
|
|
|
|
return L10n.tr("Localizable", "date.day.ago.abbr", p1)
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-08-09 13:09:24 +02:00
|
|
|
|
}
|
|
|
|
|
internal enum Hour {
|
|
|
|
|
/// Plural format key: "%#@count_hour_left@"
|
|
|
|
|
internal static func `left`(_ p1: Int) -> String {
|
|
|
|
|
return L10n.tr("Localizable", "date.hour.left", p1)
|
|
|
|
|
}
|
2021-08-10 08:44:47 +02:00
|
|
|
|
internal enum Ago {
|
|
|
|
|
/// Plural format key: "%#@count_hour_ago_abbr@"
|
|
|
|
|
internal static func abbr(_ p1: Int) -> String {
|
|
|
|
|
return L10n.tr("Localizable", "date.hour.ago.abbr", p1)
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-08-09 13:09:24 +02:00
|
|
|
|
}
|
|
|
|
|
internal enum Minute {
|
|
|
|
|
/// Plural format key: "%#@count_minute_left@"
|
|
|
|
|
internal static func `left`(_ p1: Int) -> String {
|
|
|
|
|
return L10n.tr("Localizable", "date.minute.left", p1)
|
|
|
|
|
}
|
2021-08-10 08:44:47 +02:00
|
|
|
|
internal enum Ago {
|
|
|
|
|
/// Plural format key: "%#@count_minute_ago_abbr@"
|
|
|
|
|
internal static func abbr(_ p1: Int) -> String {
|
|
|
|
|
return L10n.tr("Localizable", "date.minute.ago.abbr", p1)
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-08-09 13:09:24 +02:00
|
|
|
|
}
|
|
|
|
|
internal enum Month {
|
|
|
|
|
/// Plural format key: "%#@count_month_left@"
|
|
|
|
|
internal static func `left`(_ p1: Int) -> String {
|
|
|
|
|
return L10n.tr("Localizable", "date.month.left", p1)
|
|
|
|
|
}
|
2021-08-10 08:44:47 +02:00
|
|
|
|
internal enum Ago {
|
|
|
|
|
/// Plural format key: "%#@count_month_ago_abbr@"
|
|
|
|
|
internal static func abbr(_ p1: Int) -> String {
|
|
|
|
|
return L10n.tr("Localizable", "date.month.ago.abbr", p1)
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-08-09 13:09:24 +02:00
|
|
|
|
}
|
|
|
|
|
internal enum Second {
|
|
|
|
|
/// Plural format key: "%#@count_second_left@"
|
|
|
|
|
internal static func `left`(_ p1: Int) -> String {
|
|
|
|
|
return L10n.tr("Localizable", "date.second.left", p1)
|
|
|
|
|
}
|
2021-08-10 08:44:47 +02:00
|
|
|
|
internal enum Ago {
|
|
|
|
|
/// Plural format key: "%#@count_second_ago_abbr@"
|
|
|
|
|
internal static func abbr(_ p1: Int) -> String {
|
|
|
|
|
return L10n.tr("Localizable", "date.second.ago.abbr", p1)
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-08-09 13:09:24 +02:00
|
|
|
|
}
|
|
|
|
|
internal enum Year {
|
|
|
|
|
/// Plural format key: "%#@count_year_left@"
|
|
|
|
|
internal static func `left`(_ p1: Int) -> String {
|
|
|
|
|
return L10n.tr("Localizable", "date.year.left", p1)
|
|
|
|
|
}
|
2021-08-10 08:44:47 +02:00
|
|
|
|
internal enum Ago {
|
|
|
|
|
/// Plural format key: "%#@count_year_ago_abbr@"
|
|
|
|
|
internal static func abbr(_ p1: Int) -> String {
|
|
|
|
|
return L10n.tr("Localizable", "date.year.ago.abbr", p1)
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-08-09 13:09:24 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-06 08:55:24 +02:00
|
|
|
|
internal enum Plural {
|
|
|
|
|
/// Plural format key: "%#@count_people_talking@"
|
|
|
|
|
internal static func peopleTalking(_ p1: Int) -> String {
|
|
|
|
|
return L10n.tr("Localizable", "plural.people_talking", p1)
|
|
|
|
|
}
|
|
|
|
|
internal enum Count {
|
|
|
|
|
/// Plural format key: "%#@favorite_count@"
|
|
|
|
|
internal static func favorite(_ p1: Int) -> String {
|
|
|
|
|
return L10n.tr("Localizable", "plural.count.favorite", p1)
|
|
|
|
|
}
|
2021-08-09 13:09:24 +02:00
|
|
|
|
/// Plural format key: "%#@count_follower@"
|
|
|
|
|
internal static func follower(_ p1: Int) -> String {
|
|
|
|
|
return L10n.tr("Localizable", "plural.count.follower", p1)
|
|
|
|
|
}
|
|
|
|
|
/// Plural format key: "%#@count_following@"
|
|
|
|
|
internal static func following(_ p1: Int) -> String {
|
|
|
|
|
return L10n.tr("Localizable", "plural.count.following", p1)
|
|
|
|
|
}
|
|
|
|
|
/// Plural format key: "%#@post_count@"
|
|
|
|
|
internal static func post(_ p1: Int) -> String {
|
|
|
|
|
return L10n.tr("Localizable", "plural.count.post", p1)
|
|
|
|
|
}
|
2021-07-06 08:55:24 +02:00
|
|
|
|
/// Plural format key: "%#@reblog_count@"
|
|
|
|
|
internal static func reblog(_ p1: Int) -> String {
|
|
|
|
|
return L10n.tr("Localizable", "plural.count.reblog", p1)
|
|
|
|
|
}
|
|
|
|
|
/// Plural format key: "%#@vote_count@"
|
|
|
|
|
internal static func vote(_ p1: Int) -> String {
|
|
|
|
|
return L10n.tr("Localizable", "plural.count.vote", p1)
|
|
|
|
|
}
|
|
|
|
|
/// Plural format key: "%#@voter_count@"
|
|
|
|
|
internal static func voter(_ p1: Int) -> String {
|
|
|
|
|
return L10n.tr("Localizable", "plural.count.voter", p1)
|
|
|
|
|
}
|
|
|
|
|
internal enum MetricFormatted {
|
|
|
|
|
/// Plural format key: "%@ %#@post_count@"
|
|
|
|
|
internal static func post(_ p1: Any, _ p2: Int) -> String {
|
|
|
|
|
return L10n.tr("Localizable", "plural.count.metric_formatted.post", String(describing: p1), p2)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-01-22 07:27:37 +01:00
|
|
|
|
}
|
|
|
|
|
// swiftlint:enable explicit_type_interface function_parameter_count identifier_name line_length
|
|
|
|
|
// swiftlint:enable nesting type_body_length type_name vertical_whitespace_opening_braces
|
|
|
|
|
|
|
|
|
|
// MARK: - Implementation Details
|
|
|
|
|
|
|
|
|
|
extension L10n {
|
|
|
|
|
private static func tr(_ table: String, _ key: String, _ args: CVarArg...) -> String {
|
|
|
|
|
let format = BundleToken.bundle.localizedString(forKey: key, value: nil, table: table)
|
|
|
|
|
return String(format: format, locale: Locale.current, arguments: args)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// swiftlint:disable convenience_type
|
|
|
|
|
private final class BundleToken {
|
2021-01-27 09:01:20 +01:00
|
|
|
|
static let bundle: Bundle = {
|
|
|
|
|
#if SWIFT_PACKAGE
|
|
|
|
|
return Bundle.module
|
|
|
|
|
#else
|
|
|
|
|
return Bundle(for: BundleToken.self)
|
|
|
|
|
#endif
|
|
|
|
|
}()
|
2021-01-22 07:27:37 +01:00
|
|
|
|
}
|
|
|
|
|
// swiftlint:enable convenience_type
|