diff options
| author | Fuwn <[email protected]> | 2025-02-25 19:59:31 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2025-02-25 19:59:31 -0800 |
| commit | b390d981d49cebf632c3db964914949c5aeac658 (patch) | |
| tree | ba4c68f63c49ec37ab08d496de65554e6059e043 /Sora/Views | |
| parent | feat: Development commit (diff) | |
| download | sora-testing-b390d981d49cebf632c3db964914949c5aeac658.tar.xz sora-testing-b390d981d49cebf632c3db964914949c5aeac658.zip | |
feat: Development commit
Diffstat (limited to 'Sora/Views')
| -rw-r--r-- | Sora/Views/Bookmarks/BookmarksView.swift | 2 | ||||
| -rw-r--r-- | Sora/Views/Post/Details/PostDetailsView.swift | 4 | ||||
| -rw-r--r-- | Sora/Views/Settings/Section/SettingsCreditsView.swift (renamed from Sora/Views/Settings/Section/SettingsAttributionsView.swift) | 2 | ||||
| -rw-r--r-- | Sora/Views/Settings/SettingsView.swift | 4 |
4 files changed, 6 insertions, 6 deletions
diff --git a/Sora/Views/Bookmarks/BookmarksView.swift b/Sora/Views/Bookmarks/BookmarksView.swift index b32b46b..5b33d03 100644 --- a/Sora/Views/Bookmarks/BookmarksView.swift +++ b/Sora/Views/Bookmarks/BookmarksView.swift @@ -24,7 +24,7 @@ struct BookmarksView: View { ContentUnavailableView( "No Bookmarks", systemImage: "bookmark", - description: Text("Add a bookmark by tapping the bookmark button on a search page.") + description: Text("Tap the bookmark button on a search page to add a bookmark.") ) } else { List { diff --git a/Sora/Views/Post/Details/PostDetailsView.swift b/Sora/Views/Post/Details/PostDetailsView.swift index d1099ea..79cbd62 100644 --- a/Sora/Views/Post/Details/PostDetailsView.swift +++ b/Sora/Views/Post/Details/PostDetailsView.swift @@ -55,10 +55,10 @@ struct PostDetailsView: View { Group { switch loadingStage { case .loadingPreview: - Text("Loading Preview …") + Text("Loading Preview…") case .loadingFile: - Text("Loading \(settings.detailViewType.rawValue) …") + Text("Loading \(settings.detailViewType.rawValue)…") case .loaded: EmptyView() diff --git a/Sora/Views/Settings/Section/SettingsAttributionsView.swift b/Sora/Views/Settings/Section/SettingsCreditsView.swift index 3c94c4e..741ce25 100644 --- a/Sora/Views/Settings/Section/SettingsAttributionsView.swift +++ b/Sora/Views/Settings/Section/SettingsCreditsView.swift @@ -1,6 +1,6 @@ import SwiftUI -struct SettingsAttributionsView: View { +struct SettingsCreditsView: View { var body: some View { Text("Rabbit SVG created by Kim Sun Young") .fontWeight(.light) diff --git a/Sora/Views/Settings/SettingsView.swift b/Sora/Views/Settings/SettingsView.swift index a0eba01..2d09168 100644 --- a/Sora/Views/Settings/SettingsView.swift +++ b/Sora/Views/Settings/SettingsView.swift @@ -28,8 +28,8 @@ struct SettingsView: View { } } - Section(header: Text("Attributions")) { - SettingsAttributionsView() + Section(header: Text("Credits")) { + SettingsCreditsView() } } #if os(macOS) |