summaryrefslogtreecommitdiff
path: root/Sora/Views/Settings/Section/SettingsSectionContentRatingsView.swift
diff options
context:
space:
mode:
authorFuwn <[email protected]>2026-03-24 07:52:49 +0000
committerFuwn <[email protected]>2026-03-24 07:52:49 +0000
commitcfaca120dd330653b8746e03ba701def4e3f5216 (patch)
tree4caba0da97cfbd62de57b1f8fb461283694e7c6d /Sora/Views/Settings/Section/SettingsSectionContentRatingsView.swift
parenttest: fix verify with Nimble and simulator boot (diff)
downloadsora-testing-cfaca120dd330653b8746e03ba701def4e3f5216.tar.xz
sora-testing-cfaca120dd330653b8746e03ba701def4e3f5216.zip
Refine settings language and structure
Diffstat (limited to 'Sora/Views/Settings/Section/SettingsSectionContentRatingsView.swift')
-rw-r--r--Sora/Views/Settings/Section/SettingsSectionContentRatingsView.swift6
1 files changed, 3 insertions, 3 deletions
diff --git a/Sora/Views/Settings/Section/SettingsSectionContentRatingsView.swift b/Sora/Views/Settings/Section/SettingsSectionContentRatingsView.swift
index 85b28af..40a8a7e 100644
--- a/Sora/Views/Settings/Section/SettingsSectionContentRatingsView.swift
+++ b/Sora/Views/Settings/Section/SettingsSectionContentRatingsView.swift
@@ -5,7 +5,7 @@ struct SettingsSectionContentRatingsView: View {
var body: some View {
List {
- Section(header: Text("Display Content Ratings")) {
+ Section("Show Ratings") {
ForEach(BooruRating.allCases, id: \.self) { rating in
Toggle(
rating.rawValue,
@@ -25,7 +25,7 @@ struct SettingsSectionContentRatingsView: View {
}
}
- Section(header: Text("Blur Content Ratings")) {
+ Section("Blur Ratings") {
ForEach(BooruRating.allCases, id: \.self) { rating in
Toggle(
rating.rawValue,
@@ -43,7 +43,7 @@ struct SettingsSectionContentRatingsView: View {
}
}
}
- .navigationTitle(Text("Content Filtering"))
+ .navigationTitle(Text("Sensitive Content"))
#if !os(macOS)
.navigationBarTitleDisplayMode(.inline)
#endif