diff options
Diffstat (limited to 'Sora/Views/Post/Grid/PostGridView.swift')
| -rw-r--r-- | Sora/Views/Post/Grid/PostGridView.swift | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Sora/Views/Post/Grid/PostGridView.swift b/Sora/Views/Post/Grid/PostGridView.swift index 37c207e..23f7c00 100644 --- a/Sora/Views/Post/Grid/PostGridView.swift +++ b/Sora/Views/Post/Grid/PostGridView.swift @@ -549,14 +549,14 @@ struct PostGridView: View { // swiftlint:disable:this type_body_length .joined(separator: ", ") if tagSummary.isEmpty { - return "Post \(post.id)" + return String(localized: "Post \(post.id)") } return tagSummary } private func postAccessibilityValue(for post: BooruPost) -> String { - "Rating \(post.rating.rawValue.uppercased()). Score \(post.score)." + String(localized: "Rating \(post.rating.rawValue). Score \(post.score).") } // MARK: - Local Search Methods |