Use generic common_people

This commit is contained in:
Benoit Marty
2023-09-28 16:40:44 +02:00
parent fbfd6826ae
commit 98fbc57aa0
2 changed files with 2 additions and 2 deletions

View File

@@ -343,7 +343,7 @@ internal fun MembersSection(
) {
PreferenceCategory(modifier = modifier) {
PreferenceText(
title = stringResource(R.string.screen_room_details_people_title),
title = stringResource(CommonStrings.common_people),
icon = Icons.Outlined.Person,
currentValue = memberCount.toString(),
onClick = openRoomMemberList,

View File

@@ -203,7 +203,7 @@ private fun RoomMemberListTopBar(
modifier = modifier,
title = {
Text(
text = stringResource(R.string.screen_room_details_people_title),
text = stringResource(CommonStrings.common_people),
style = ElementTheme.typography.aliasScreenTitle,
)
},