From 5520be535c0283e3e93edda3547662af3b55007a Mon Sep 17 00:00:00 2001 From: Rifat Azad Date: Thu, 26 Dec 2024 21:26:53 +0600 Subject: [PATCH] manager: fixed global string --- .../java/com/rifsxd/ksunext/ui/screen/ExecuteModuleAction.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/manager/app/src/main/java/com/rifsxd/ksunext/ui/screen/ExecuteModuleAction.kt b/manager/app/src/main/java/com/rifsxd/ksunext/ui/screen/ExecuteModuleAction.kt index b3a51821..eb668c0d 100644 --- a/manager/app/src/main/java/com/rifsxd/ksunext/ui/screen/ExecuteModuleAction.kt +++ b/manager/app/src/main/java/com/rifsxd/ksunext/ui/screen/ExecuteModuleAction.kt @@ -118,8 +118,8 @@ fun ExecuteModuleActionScreen(navigator: DestinationsNavigator, moduleId: String floatingActionButton = { if (!isActionRunning) { ExtendedFloatingActionButton( - text = { Text("Go Back") }, - icon = { Icon(Icons.Filled.Close, contentDescription = "Back") }, + text = Text(text = stringResource(R.string.close)) }, + icon = { Icon(Icons.Filled.Close, contentDescription = null) }, onClick = { navigator.popBackStack() }