Use export_log to summarize save_log and send_log.

Instead of `send_log` itself.
This commit is contained in:
kxob
2025-01-14 01:29:54 +08:00
committed by GitHub
parent 1aebc7b78f
commit 9aef82df0b

View File

@@ -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)
}
}