Add call link strings.

This commit is contained in:
Michelle Tang
2024-12-03 18:23:14 -05:00
committed by Greyson Parrelli
parent 548da6a09d
commit 0952afbba1
2 changed files with 6 additions and 2 deletions
@@ -219,7 +219,7 @@ private fun PendingParticipantsSheet(
onClick = onDenyAll
) {
Text(
text = "Deny all",
text = stringResource(id = R.string.PendingParticipantsBottomSheet__deny_all),
color = MaterialTheme.colorScheme.onSurface
)
}
@@ -228,7 +228,7 @@ private fun PendingParticipantsSheet(
Buttons.LargeTonal(onClick = onApproveAll) {
Text(
text = "Approve all"
text = stringResource(id = R.string.PendingParticipantsBottomSheet__approve_all)
)
}
}
+4
View File
@@ -7329,6 +7329,10 @@
<string name="PendingParticipantsBottomSheet__reject">Reject</string>
<!-- Content description for confirming a user -->
<string name="PendingParticipantsBottomSheet__approve">Approve</string>
<!-- Button text to allow all participants to join the call -->
<string name="PendingParticipantsBottomSheet__approve_all">Approve all</string>
<!-- Button text to deny all participants from joining the call -->
<string name="PendingParticipantsBottomSheet__deny_all">Deny all</string>
<!-- Title of a megaphone shown at the bottom of the chat list when a user has disable the system setting for showing full screen notifications used showing incoming calls -->
<string name="GrantFullScreenIntentPermission_megaphone_title">Turn on full screen notifications?</string>