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

pull/208/head
Vitor Pamplona 2023-03-05 09:06:54 -05:00
rodzic b3d219b2de
commit 4085285f90
1 zmienionych plików z 7 dodań i 1 usunięć

Wyświetl plik

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