Mark the poll editor as a group
This commit is contained in:
parent
9f541957a7
commit
8217f5ce28
|
@ -444,6 +444,7 @@
|
|||
"server_processing_state": "Server Processing..."
|
||||
},
|
||||
"poll": {
|
||||
"title": "Poll",
|
||||
"duration_time": "Duration: %s",
|
||||
"thirty_minutes": "30 minutes",
|
||||
"one_hour": "1 Hour",
|
||||
|
|
|
@ -461,6 +461,7 @@
|
|||
"server_processing_state": "Server Processing..."
|
||||
},
|
||||
"poll": {
|
||||
"title": "Poll",
|
||||
"duration_time": "Duration: %s",
|
||||
"thirty_minutes": "30 minutes",
|
||||
"one_hour": "1 Hour",
|
||||
|
|
|
@ -625,6 +625,8 @@ public enum L10n {
|
|||
public static let thirtyMinutes = L10n.tr("Localizable", "Scene.Compose.Poll.ThirtyMinutes", fallback: "30 minutes")
|
||||
/// 3 Days
|
||||
public static let threeDays = L10n.tr("Localizable", "Scene.Compose.Poll.ThreeDays", fallback: "3 Days")
|
||||
/// Poll
|
||||
public static let title = L10n.tr("Localizable", "Scene.Compose.Poll.Title", fallback: "Poll")
|
||||
}
|
||||
public enum Title {
|
||||
/// New Post
|
||||
|
|
|
@ -225,6 +225,7 @@ uploaded to Mastodon.";
|
|||
"Scene.Compose.Poll.ThePollIsInvalid" = "The poll is invalid";
|
||||
"Scene.Compose.Poll.ThirtyMinutes" = "30 minutes";
|
||||
"Scene.Compose.Poll.ThreeDays" = "3 Days";
|
||||
"Scene.Compose.Poll.Title" = "Poll";
|
||||
"Scene.Compose.ReplyingToUser" = "replying to %@";
|
||||
"Scene.Compose.Title.NewPost" = "New Post";
|
||||
"Scene.Compose.Title.NewReply" = "New Reply";
|
||||
|
|
|
@ -224,6 +224,8 @@ extension ComposeContentView {
|
|||
}
|
||||
}
|
||||
} // end VStack
|
||||
.accessibilityElement(children: .contain)
|
||||
.accessibilityLabel(L10n.Scene.Compose.Poll.title)
|
||||
}
|
||||
|
||||
// MARK: - media
|
||||
|
|
Loading…
Reference in New Issue