Fix build
Happened due to localization, we changed the workflow, but didn't consider another pr. so boom.
This commit is contained in:
parent
84ffa3ba56
commit
9e912be7c4
|
@ -448,6 +448,10 @@
|
|||
"placeholder": {
|
||||
"label": "Label",
|
||||
"content": "Content"
|
||||
},
|
||||
"verified": {
|
||||
"short": "Verified on %s",
|
||||
"long": "Ownership of this link was checked on %s"
|
||||
}
|
||||
},
|
||||
"segmented_control": {
|
||||
|
|
|
@ -742,13 +742,13 @@ public enum L10n {
|
|||
public static let label = L10n.tr("Localizable", "Scene.Profile.Fields.Placeholder.Label", fallback: "Label")
|
||||
}
|
||||
public enum Verified {
|
||||
/// Ownership of this link was checked on %s
|
||||
public static func long(_ p1: UnsafePointer<CChar>) -> String {
|
||||
return L10n.tr("Localizable", "Scene.Profile.Fields.Verified.Long", p1)
|
||||
/// Ownership of this link was checked on %@
|
||||
public static func long(_ p1: Any) -> String {
|
||||
return L10n.tr("Localizable", "Scene.Profile.Fields.Verified.Long", String(describing: p1), fallback: "Ownership of this link was checked on %@")
|
||||
}
|
||||
/// Verified at %s
|
||||
public static func short(_ p1: UnsafePointer<CChar>) -> String {
|
||||
return L10n.tr("Localizable", "Scene.Profile.Fields.Verified.Short", p1)
|
||||
/// Verified on %@
|
||||
public static func short(_ p1: Any) -> String {
|
||||
return L10n.tr("Localizable", "Scene.Profile.Fields.Verified.Short", String(describing: p1), fallback: "Verified on %@")
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -267,6 +267,8 @@ uploaded to Mastodon.";
|
|||
"Scene.Profile.Fields.AddRow" = "Add Row";
|
||||
"Scene.Profile.Fields.Placeholder.Content" = "Content";
|
||||
"Scene.Profile.Fields.Placeholder.Label" = "Label";
|
||||
"Scene.Profile.Fields.Verified.Long" = "Ownership of this link was checked on %@";
|
||||
"Scene.Profile.Fields.Verified.Short" = "Verified on %@";
|
||||
"Scene.Profile.Header.FollowsYou" = "Follows You";
|
||||
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Confirm to block %@";
|
||||
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Block Account";
|
||||
|
|
|
@ -263,8 +263,6 @@ uploaded to Mastodon.";
|
|||
"Scene.Profile.Fields.AddRow" = "Add Row";
|
||||
"Scene.Profile.Fields.Placeholder.Content" = "Content";
|
||||
"Scene.Profile.Fields.Placeholder.Label" = "Label";
|
||||
"Scene.Profile.Fields.Verified.Short" = "Verified at %s";
|
||||
"Scene.Profile.Fields.Verified.Long" = "Ownership of this link was checked on %s";
|
||||
"Scene.Profile.Header.FollowsYou" = "Follows You";
|
||||
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Confirm to block %@";
|
||||
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Block Account";
|
||||
|
@ -456,4 +454,4 @@ uploaded to Mastodon.";
|
|||
back in your hands.";
|
||||
"Scene.Wizard.AccessibilityHint" = "Double tap to dismiss this wizard";
|
||||
"Scene.Wizard.MultipleAccountSwitchIntroDescription" = "Switch between multiple accounts by holding the profile button.";
|
||||
"Scene.Wizard.NewInMastodon" = "New in Mastodon";
|
||||
"Scene.Wizard.NewInMastodon" = "New in Mastodon";
|
Loading…
Reference in New Issue