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

View File

@@ -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)
)
}
}