Some string keys have been renamed, so rename them in the code.

This commit is contained in:
Benoit Marty 2024-03-13 10:02:06 +01:00
parent 471242bb99
commit 12f4fc2591
7 changed files with 15 additions and 9 deletions

View file

@ -445,7 +445,7 @@ class MessagesPresenter @AssistedInject constructor(
clipboardHelper.copyPlainText(content) clipboardHelper.copyPlainText(content)
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.TIRAMISU) { if (Build.VERSION.SDK_INT < Build.VERSION_CODES.TIRAMISU) {
snackbarDispatcher.post(SnackbarMessage(R.string.screen_room_message_copied)) snackbarDispatcher.post(SnackbarMessage(R.string.screen_room_timeline_message_copied))
} }
} }
} }

View file

@ -551,7 +551,7 @@ private fun CantSendMessageBanner() {
horizontalArrangement = Arrangement.Center horizontalArrangement = Arrangement.Center
) { ) {
Text( Text(
text = stringResource(id = R.string.screen_room_no_permission_to_post), text = stringResource(id = R.string.screen_room_timeline_no_permission_to_post),
color = MaterialTheme.colorScheme.onSecondary, color = MaterialTheme.colorScheme.onSecondary,
style = MaterialTheme.typography.bodyMedium, style = MaterialTheme.typography.bodyMedium,
textAlign = TextAlign.Center, textAlign = TextAlign.Center,

View file

@ -101,14 +101,14 @@ fun ReportMessageView(
OutlinedTextField( OutlinedTextField(
value = state.reason, value = state.reason,
onValueChange = { state.eventSink(ReportMessageEvents.UpdateReason(it)) }, onValueChange = { state.eventSink(ReportMessageEvents.UpdateReason(it)) },
placeholder = { Text(stringResource(R.string.report_content_hint)) }, placeholder = { Text(stringResource(R.string.screen_report_content_hint)) },
enabled = !isSending, enabled = !isSending,
modifier = Modifier modifier = Modifier
.fillMaxWidth() .fillMaxWidth()
.heightIn(min = 90.dp) .heightIn(min = 90.dp)
) )
Text( Text(
text = stringResource(R.string.report_content_explanation), text = stringResource(R.string.screen_report_content_explanation),
style = ElementTheme.typography.fontBodySmRegular, style = ElementTheme.typography.fontBodySmRegular,
color = MaterialTheme.colorScheme.secondary, color = MaterialTheme.colorScheme.secondary,
textAlign = TextAlign.Start, textAlign = TextAlign.Start,

View file

@ -113,7 +113,7 @@ private fun TimelineItemGroupedEventsRowContent(
Column(modifier = modifier.animateContentSize()) { Column(modifier = modifier.animateContentSize()) {
GroupHeaderView( GroupHeaderView(
text = pluralStringResource( text = pluralStringResource(
id = R.plurals.room_timeline_state_changes, id = R.plurals.screen_room_timeline_state_changes,
count = timelineItem.events.size, count = timelineItem.events.size,
timelineItem.events.size timelineItem.events.size
), ),

View file

@ -90,7 +90,13 @@ private fun TimelineItemReactionsView(
expandButton = { expandButton = {
MessagesReactionButton( MessagesReactionButton(
content = MessagesReactionsButtonContent.Text( content = MessagesReactionsButtonContent.Text(
text = stringResource(id = if (expanded) R.string.screen_room_reactions_show_less else R.string.screen_room_reactions_show_more) text = stringResource(
id = if (expanded) {
R.string.screen_room_timeline_reactions_show_less
} else {
R.string.screen_room_timeline_reactions_show_more
}
)
), ),
onClick = onToggleExpandClick, onClick = onToggleExpandClick,
onLongClick = {} onLongClick = {}

View file

@ -44,7 +44,7 @@ internal fun TimelineItemReadMarkerView(
verticalArrangement = spacedBy(4.dp), verticalArrangement = spacedBy(4.dp),
) { ) {
Text( Text(
text = stringResource(id = R.string.room_timeline_read_marker_title).uppercase(), text = stringResource(id = R.string.screen_room_timeline_read_marker_title).uppercase(),
style = ElementTheme.typography.fontBodySmMedium, style = ElementTheme.typography.fontBodySmMedium,
color = ElementTheme.colors.textSecondary, color = ElementTheme.colors.textSecondary,
) )

View file

@ -45,9 +45,9 @@ fun TimelineItemRoomBeginningView(
contentAlignment = Alignment.Center, contentAlignment = Alignment.Center,
) { ) {
val text = if (roomName == null) { val text = if (roomName == null) {
stringResource(id = R.string.room_timeline_beginning_of_room_no_name) stringResource(id = R.string.screen_room_timeline_beginning_of_room_no_name)
} else { } else {
stringResource(id = R.string.room_timeline_beginning_of_room, roomName) stringResource(id = R.string.screen_room_timeline_beginning_of_room, roomName)
} }
Text( Text(
color = MaterialTheme.colorScheme.secondary, color = MaterialTheme.colorScheme.secondary,