Use export_log to summarize save_log and send_log instead of send_log itself. (#21)

* Optimize Simplified Chinese translations

* Update `strings.xml` of `zh-rCN`

* Use `export_log` to summarize `save_log` and `send_log`.

Instead of `send_log` itself.

* Update `strings.xml` of Simplified Chinese

* Update `strings.xml` for commit `9aef82d`

* Update Indonesian `strings.xml` for commit `9aef82d`

* Update Korean `strings.xml` for commit `9aef82d`

* Update Brazilian Portuguese `strings.xml` for commit `9aef82d`
This commit is contained in:
kxob
2025-01-14 12:08:12 +08:00
committed by GitHub
parent 72b5ac716b
commit 132d523f32
6 changed files with 24 additions and 19 deletions
@@ -286,10 +286,10 @@ fun SettingScreen(navigator: DestinationsNavigator) {
leadingContent = {
Icon(
Icons.Filled.BugReport,
stringResource(id = R.string.send_log)
stringResource(id = R.string.export_log)
)
},
headlineContent = { Text(stringResource(id = R.string.send_log)) },
headlineContent = { Text(stringResource(id = R.string.export_log)) },
modifier = Modifier.clickable {
showBottomsheet = true
}
@@ -605,4 +605,4 @@ private fun TopBar(
@Composable
private fun SettingsPreview() {
SettingScreen(EmptyDestinationsNavigator)
}
}