Skip to content

Commit b6266ba

Browse files
Update PhotoReasoningScreen.kt
1 parent 28ad715 commit b6266ba

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

app/src/main/kotlin/com/google/ai/sample/feature/multimodal/PhotoReasoningScreen.kt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -249,24 +249,24 @@ fun PhotoReasoningScreen(
249249
modifier = Modifier.padding(16.dp)
250250
) {
251251
Text(
252-
text = "Accessibility Service ist nicht aktiviert",
252+
text = "Accessibility Service is not enabled",
253253
color = MaterialTheme.colorScheme.error,
254254
style = MaterialTheme.typography.titleMedium
255255
)
256256
Spacer(modifier = Modifier.height(8.dp))
257257
Text(
258-
text = "Die Klick-Funktionalität benötigt den Accessibility Service. Bitte aktivieren Sie ihn in den Einstellungen.",
258+
text = "The click functionality requires the Accessibility Service. Please enable it in the settings.",
259259
color = MaterialTheme.colorScheme.error
260260
)
261261
Spacer(modifier = Modifier.height(8.dp))
262262
TextButton(
263263
onClick = {
264264
onEnableAccessibilityService()
265265
// Optionally, show a toast here as well if the user clicks this specific button
266-
Toast.makeText(context, "Öffne Bedienungshilfen-Einstellungen...", Toast.LENGTH_SHORT).show()
266+
Toast.makeText(context, "Open Accessibility Settings...", Toast.LENGTH_SHORT).show()
267267
}
268268
) {
269-
Text("Accessibility Service aktivieren")
269+
Text("Activate Accessibility Service")
270270
}
271271
}
272272
}

0 commit comments

Comments
 (0)