From 90f254b1d886b528fb4b6446c4f6d0d3a1ff5b37 Mon Sep 17 00:00:00 2001 From: xkeyC <3334969096@qq.com> Date: Sun, 5 May 2024 18:52:04 +0800 Subject: [PATCH] fix: string --- lib/ui/tools/tools_ui_model.dart | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/ui/tools/tools_ui_model.dart b/lib/ui/tools/tools_ui_model.dart index 7efd80d..c158321 100644 --- a/lib/ui/tools/tools_ui_model.dart +++ b/lib/ui/tools/tools_ui_model.dart @@ -114,8 +114,8 @@ class ToolsUIModel extends _$ToolsUIModel { ), ToolsItemData( "unp4kc", - "${S.current.tools_action_unp4k}", - "${S.current.tools_action_unp4k_info}", + S.current.tools_action_unp4k, + S.current.tools_action_unp4k_info, const Icon(FontAwesomeIcons.fileZipper, size: 24), onTap: () => _unp4kc(context), ), @@ -619,4 +619,4 @@ class ToolsUIModel extends _$ToolsUIModel { context: context, builder: (BuildContext context) => const RsiLauncherEnhanceDialogUI()); } -} \ No newline at end of file +}