From 9aef82df0b933e3dc95e8ce8dbddd604143044f0 Mon Sep 17 00:00:00 2001 From: kxob <58348680+kxob@users.noreply.github.com> Date: Tue, 14 Jan 2025 01:29:54 +0800 Subject: [PATCH] Use `export_log` to summarize `save_log` and `send_log`. Instead of `send_log` itself. --- .../src/main/java/com/rifsxd/ksunext/ui/screen/Settings.kt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/manager/app/src/main/java/com/rifsxd/ksunext/ui/screen/Settings.kt b/manager/app/src/main/java/com/rifsxd/ksunext/ui/screen/Settings.kt index 13c66dea..0a4dab4e 100644 --- a/manager/app/src/main/java/com/rifsxd/ksunext/ui/screen/Settings.kt +++ b/manager/app/src/main/java/com/rifsxd/ksunext/ui/screen/Settings.kt @@ -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) -} \ No newline at end of file +}