File tree Expand file tree Collapse file tree
app/src/main/kotlin/com/google/ai/sample/feature/multimodal Expand file tree Collapse file tree Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments