Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[pull] main from gkd-kit:main #37

Merged
merged 7 commits into from
Jun 10, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
chore: change add subs text
  • Loading branch information
lisonge committed Jun 10, 2024
commit 978552b4b218bc89aecb7b6fe7b99f9769e5f883
4 changes: 2 additions & 2 deletions app/src/main/kotlin/li/songe/gkd/ui/home/SubsManagePage.kt
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ fun useSubsManagePage(): ScaffoldExt {
}
}
if (showAddLinkDialog) {
AlertDialog(title = { Text(text = "请输入订阅链接") }, text = {
AlertDialog(title = { Text(text = "添加订阅") }, text = {
OutlinedTextField(
value = link,
onValueChange = { link = it.trim() },
Expand All @@ -140,7 +140,7 @@ fun useSubsManagePage(): ScaffoldExt {
modifier = Modifier.fillMaxWidth(),
placeholder = {
Text(
text = "https://example.com/gkd.json5",
text = "请输入订阅链接",
style = LocalTextStyle.current.copy(fontSize = 14.sp)
)
},
Expand Down