File tree Expand file tree Collapse file tree 4 files changed +10
-0
lines changed Expand file tree Collapse file tree 4 files changed +10
-0
lines changed Original file line number Diff line number Diff line change 1
1
"Notification" = "Notification";
2
2
"a11y_delete" = "Delete";
3
3
"a11y_hide_password" = "Hide password";
4
+ "a11y_join_call" = "Join call";
4
5
"a11y_jump_to_bottom" = "Jump to bottom";
5
6
"a11y_notifications_mentions_only" = "Mentions only";
6
7
"a11y_notifications_muted" = "Muted";
9
10
"a11y_pin_field" = "PIN field";
10
11
"a11y_play" = "Play";
11
12
"a11y_poll_end" = "Ended poll";
13
+ "a11y_profile_picture" = "Profile picture";
12
14
"a11y_react_with" = "React with %1$@";
13
15
"a11y_react_with_other_emojis" = "React with other emojis";
14
16
"a11y_read_receipts_multiple" = "Read by %1$@ and %2$@";
Original file line number Diff line number Diff line change 1
1
"Notification" = "Notification";
2
2
"a11y_delete" = "Delete";
3
3
"a11y_hide_password" = "Hide password";
4
+ "a11y_join_call" = "Join call";
4
5
"a11y_jump_to_bottom" = "Jump to bottom";
5
6
"a11y_notifications_mentions_only" = "Mentions only";
6
7
"a11y_notifications_muted" = "Muted";
9
10
"a11y_pin_field" = "PIN field";
10
11
"a11y_play" = "Play";
11
12
"a11y_poll_end" = "Ended poll";
13
+ "a11y_profile_picture" = "Profile picture";
12
14
"a11y_react_with" = "React with %1$@";
13
15
"a11y_react_with_other_emojis" = "React with other emojis";
14
16
"a11y_read_receipts_multiple" = "Read by %1$@ and %2$@";
Original file line number Diff line number Diff line change @@ -18,6 +18,8 @@ internal enum L10n {
18
18
}
19
19
/// Hide password
20
20
internal static var a11yHidePassword : String { return L10n . tr ( " Localizable " , " a11y_hide_password " ) }
21
+ /// Join call
22
+ internal static var a11yJoinCall : String { return L10n . tr ( " Localizable " , " a11y_join_call " ) }
21
23
/// Jump to bottom
22
24
internal static var a11yJumpToBottom : String { return L10n . tr ( " Localizable " , " a11y_jump_to_bottom " ) }
23
25
/// Mentions only
@@ -38,6 +40,8 @@ internal enum L10n {
38
40
internal static var a11yPoll : String { return L10n . tr ( " Localizable " , " a11y_poll " ) }
39
41
/// Ended poll
40
42
internal static var a11yPollEnd : String { return L10n . tr ( " Localizable " , " a11y_poll_end " ) }
43
+ /// Profile picture
44
+ internal static var a11yProfilePicture : String { return L10n . tr ( " Localizable " , " a11y_profile_picture " ) }
41
45
/// React with %1$@
42
46
internal static func a11yReactWith( _ p1: Any ) -> String {
43
47
return L10n . tr ( " Localizable " , " a11y_react_with " , String ( describing: p1) )
Original file line number Diff line number Diff line change @@ -233,13 +233,15 @@ struct RoomScreen: View {
233
233
. labelStyle ( . titleAndIcon)
234
234
}
235
235
. buttonStyle ( ElementCallButtonStyle ( ) )
236
+ . accessibilityLabel ( L10n . a11yJoinCall)
236
237
. accessibilityIdentifier ( A11yIdentifiers . roomScreen. joinCall)
237
238
} else {
238
239
Button {
239
240
roomContext. send ( viewAction: . displayCall)
240
241
} label: {
241
242
CompoundIcon ( \. videoCallSolid)
242
243
}
244
+ . accessibilityLabel ( L10n . a11yStartCall)
243
245
. accessibilityIdentifier ( A11yIdentifiers . roomScreen. joinCall)
244
246
}
245
247
}
You can’t perform that action at this time.
0 commit comments