Update setup wording

This commit is contained in:
Aleksandras Kostarevas 2024-07-01 14:53:11 +03:00
parent 1f99878e2b
commit 8374cb14f0

View File

@ -207,7 +207,7 @@ fun SetupEnableMic(onClick: () -> Unit = { }) {
Column { Column {
Step(fraction = 0.9f, text = "Setup - Step 3 of 3") Step(fraction = 0.9f, text = "Setup - Step 3 of 3")
Text( Text(
"Choose whether you want to use built-in voice input, or the system voice input.", "Choose which voice input you'd like to use",
textAlign = TextAlign.Center, textAlign = TextAlign.Center,
modifier = Modifier.fillMaxWidth() modifier = Modifier.fillMaxWidth()
) )
@ -218,7 +218,7 @@ fun SetupEnableMic(onClick: () -> Unit = { }) {
.fillMaxWidth() .fillMaxWidth()
.padding(16.dp) .padding(16.dp)
) { ) {
Text("Use built-in (mic permission needed)") Text("FUTO Keyboard (needs mic permission)")
} }
Button( Button(
@ -230,7 +230,7 @@ fun SetupEnableMic(onClick: () -> Unit = { }) {
.fillMaxWidth() .fillMaxWidth()
.padding(16.dp, 4.dp) .padding(16.dp, 4.dp)
) { ) {
Text("Use system") Text("Device Default")
} }
} }
} }