Fixes showing the R.string.first id instead of text.

This commit is contained in:
Vitor Pamplona
2023-03-05 09:06:54 -05:00
parent b3d219b2de
commit 4085285f90

View File

@@ -206,7 +206,13 @@ fun TranslateableRichTextViewer(
Spacer(modifier = Modifier.size(10.dp))
Text("${stringResource(id = R.string.show_in)} ${Locale(target).displayName} ${R.string.first}")
Text(
"${stringResource(R.string.show_in)} ${Locale(target).displayName} ${
stringResource(
R.string.first
)
}"
)
}
Divider()