New languages (#256)

* Remove custom-onnxruntime-arm64.aar

* Refactor remaining, hardcoded UI strings into localizable resources and added French and Russian to language list

* Fix background auto-advance for Text-to-Speech (TTS)
This commit is contained in:
Aryan 2026-04-29 18:35:23 +05:30 committed by GitHub
parent 224d12d1fb
commit 4582b506f3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
33 changed files with 940 additions and 488 deletions

View file

@ -86,7 +86,7 @@ fun FeedbackScreen(
title = { Text(stringResource(R.string.drawer_help_feedback)) },
navigationIcon = {
IconButton(onClick = { navController.popBackStack() }) {
Icon(Icons.AutoMirrored.Filled.ArrowBack, contentDescription = "Back")
Icon(Icons.AutoMirrored.Filled.ArrowBack, contentDescription = stringResource(R.string.action_back))
}
}
)
@ -132,7 +132,7 @@ fun FeedbackScreen(
icon = {
Icon(
painter = painterResource(id = R.drawable.github),
contentDescription = "GitHub",
contentDescription = stringResource(R.string.github_issues),
modifier = Modifier.size(28.dp),
tint = MaterialTheme.colorScheme.primary
)
@ -150,7 +150,7 @@ fun FeedbackScreen(
icon = {
Icon(
imageVector = Icons.Outlined.Email,
contentDescription = "Email",
contentDescription = stringResource(R.string.email_support),
modifier = Modifier.size(28.dp),
tint = MaterialTheme.colorScheme.primary
)
@ -201,9 +201,9 @@ private fun FeedbackOptionCard(
Spacer(modifier = Modifier.width(8.dp))
Icon(
imageVector = Icons.AutoMirrored.Filled.ArrowForward,
contentDescription = "Open",
contentDescription = stringResource(R.string.action_open),
tint = MaterialTheme.colorScheme.onSurfaceVariant
)
}
}
}
}