@@ -193,7 +193,7 @@ fun SubsSheet(
193193 if (subscription.globalGroups.isNotEmpty() || subsItem.isLocal) {
194194 Row (
195195 modifier = Modifier
196- .clickable(onClickLabel = " 查看全局规则组列表 " , onClick = throttle {
196+ .clickable(onClickLabel = " 查看全局规则列表 " , onClick = throttle {
197197 setSubsId(null )
198198 sheetSubsIdFlow.value = null
199199 mainVm.navigatePage(SubsGlobalGroupListRoute (subsItem.id))
@@ -210,7 +210,7 @@ fun SubsSheet(
210210 style = MaterialTheme .typography.labelLarge,
211211 )
212212 Text (
213- text = if (subscription.globalGroups.isNotEmpty()) " 共 ${subscription.globalGroups.size} 全局规则组 " else " 暂无" ,
213+ text = if (subscription.globalGroups.isNotEmpty()) " 共 ${subscription.globalGroups.size} 全局规则 " else " 暂无" ,
214214 style = MaterialTheme .typography.labelMedium,
215215 color = MaterialTheme .colorScheme.onSurfaceVariant.let {
216216 if (subscription.globalGroups.isEmpty()) {
@@ -229,7 +229,7 @@ fun SubsSheet(
229229 if (subscription.appGroups.isNotEmpty() || subsItem.isLocal) {
230230 Row (
231231 modifier = Modifier
232- .clickable(onClickLabel = " 查看应用规则组列表 " , onClick = throttle {
232+ .clickable(onClickLabel = " 查看应用规则列表 " , onClick = throttle {
233233 setSubsId(null )
234234 sheetSubsIdFlow.value = null
235235 mainVm.navigatePage(SubsAppListRoute (subsItem.id))
@@ -246,7 +246,7 @@ fun SubsSheet(
246246 style = MaterialTheme .typography.labelLarge,
247247 )
248248 Text (
249- text = if (subscription.appGroups.isNotEmpty()) " 共 ${subscription.apps.size} 应用 ${subscription.appGroups.size} 规则组 " else " 暂无" ,
249+ text = if (subscription.appGroups.isNotEmpty()) " 共 ${subscription.apps.size} 应用 ${subscription.appGroups.size} 规则 " else " 暂无" ,
250250 style = MaterialTheme .typography.labelMedium,
251251 color = MaterialTheme .colorScheme.onSurfaceVariant.let {
252252 if (subscription.appGroups.isEmpty()) {
0 commit comments