diff --git a/iOS/Settings/Appearance/DisplayAndBehaviorsView.swift b/iOS/Settings/Appearance/DisplayAndBehaviorsView.swift index 1fed884ea..c1502bd5c 100644 --- a/iOS/Settings/Appearance/DisplayAndBehaviorsView.swift +++ b/iOS/Settings/Appearance/DisplayAndBehaviorsView.swift @@ -22,14 +22,14 @@ struct DisplayAndBehaviorsView: View { Section(header: Text("Timeline", comment: "Display & Behaviours: Timeline section header")) { SettingsViewRows.sortOldestToNewest($appDefaults.timelineSortDirectionBool) SettingsViewRows.groupByFeed($appDefaults.timelineGroupByFeed) + SettingsViewRows.confirmMarkAllAsRead($appDefaults.confirmMarkAllAsRead) SettingsViewRows.markAsReadOnScroll($appDefaults.markArticlesAsReadOnScroll) SettingsViewRows.refreshToClearReadArticles($appDefaults.refreshClearsReadArticles) SettingsViewRows.timelineLayout } - Section(header: Text("Articles", comment: "Display & Behaviours: Articles section header")) { + Section(header: Text("Article", comment: "Display & Behaviours: Article section header")) { SettingsViewRows.themeSelection - SettingsViewRows.confirmMarkAllAsRead($appDefaults.confirmMarkAllAsRead) SettingsViewRows.openLinksInNetNewsWire(Binding( get: { !appDefaults.useSystemBrowser }, set: { appDefaults.useSystemBrowser = !$0 }