strings: Updates the string resources at the current execution location and modifies the associated text display

This commit is contained in:
ShirkNeko
2025-06-17 23:58:42 +08:00
parent f65f62360a
commit edf7685e9a
3 changed files with 3 additions and 1 deletions

View File

@@ -1178,7 +1178,7 @@ private fun BasicSettingsContent(
color = MaterialTheme.colorScheme.onSurfaceVariant
)
Text(
text = "当前执行位置: ${if (SuSFSManager.getExecuteInPostFsData(context)) "Post-FS-Data" else "Service"}",
text = stringResource(R.string.susfs_current_execution_location, if (SuSFSManager.getExecuteInPostFsData(context)) "Post-FS-Data" else "Service"),
style = MaterialTheme.typography.bodyMedium,
color = MaterialTheme.colorScheme.onSurfaceVariant
)