diff --git a/feature/foryou/src/main/kotlin/com/google/samples/apps/nowinandroid/feature/foryou/ForYouScreen.kt b/feature/foryou/src/main/kotlin/com/google/samples/apps/nowinandroid/feature/foryou/ForYouScreen.kt index 016a74f9b..b27264124 100644 --- a/feature/foryou/src/main/kotlin/com/google/samples/apps/nowinandroid/feature/foryou/ForYouScreen.kt +++ b/feature/foryou/src/main/kotlin/com/google/samples/apps/nowinandroid/feature/foryou/ForYouScreen.kt @@ -419,13 +419,19 @@ private fun SingleTopicButton( icon = { Icon( imageVector = NiaIcons.Add, - contentDescription = name, + contentDescription = stringResource( + id = R.string.feature_foryou_topic_icon_add, + name, + ), ) }, checkedIcon = { Icon( imageVector = NiaIcons.Check, - contentDescription = name, + contentDescription = stringResource( + id = R.string.feature_foryou_topic_icon_checked, + name, + ), ) }, modifier = Modifier.clearAndSetSemantics { },