From cfaca120dd330653b8746e03ba701def4e3f5216 Mon Sep 17 00:00:00 2001 From: Fuwn Date: Tue, 24 Mar 2026 07:52:49 +0000 Subject: Refine settings language and structure --- Sora/Views/Settings/Section/SettingsSectionContentRatingsView.swift | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Sora/Views/Settings/Section/SettingsSectionContentRatingsView.swift') 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 -- cgit v1.2.3