summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFuwn <[email protected]>2025-09-25 15:28:46 -0700
committerFuwn <[email protected]>2025-09-25 15:28:46 -0700
commit17ab07cd8bd6456c6a9231866b449a0588b481aa (patch)
tree9b50fb666857bdc8aba2ad7167605b8bfd2f626f
parentfeat: Development commit (diff)
downloadsora-testing-17ab07cd8bd6456c6a9231866b449a0588b481aa.tar.xz
sora-testing-17ab07cd8bd6456c6a9231866b449a0588b481aa.zip
feat: Development commit
-rw-r--r--Localizable.xcstrings114
-rw-r--r--Sora/Data/CollectionPickerOption.swift2
-rw-r--r--Sora/Views/FavoritesView.swift2
-rw-r--r--Sora/Views/Generic/GenericListView.swift2
4 files changed, 104 insertions, 16 deletions
diff --git a/Localizable.xcstrings b/Localizable.xcstrings
index 617e335..8f39719 100644
--- a/Localizable.xcstrings
+++ b/Localizable.xcstrings
@@ -36,7 +36,15 @@
},
"Add to Favorites" : {
"comment" : "A menu item that adds a post to the user's favorites.",
- "isCommentAutoGenerated" : true
+ "isCommentAutoGenerated" : true,
+ "localizations" : {
+ "en-GB" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Add to Favourites"
+ }
+ }
+ }
},
"Add to Search" : {
@@ -65,7 +73,14 @@
},
"Are you sure you want to remove all favorites? This action cannot be undone." : {
-
+ "localizations" : {
+ "en-GB" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Are you sure you want to remove all favourites? This action cannot be undone."
+ }
+ }
+ }
},
"Are you sure you want to remove all searches? This action cannot be undone." : {
@@ -207,17 +222,47 @@
},
"Favorite" : {
"comment" : "A button label for adding an item to their favorites.",
- "isCommentAutoGenerated" : true
+ "isCommentAutoGenerated" : true,
+ "localizations" : {
+ "en-GB" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Favourite"
+ }
+ }
+ }
},
"Favorite Details" : {
-
+ "localizations" : {
+ "en-GB" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Favourite Details"
+ }
+ }
+ }
},
"Favorited" : {
"comment" : "A label indicating that an item is marked as \"favorited\".",
- "isCommentAutoGenerated" : true
+ "isCommentAutoGenerated" : true,
+ "localizations" : {
+ "en-GB" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Favourited"
+ }
+ }
+ }
},
"Favorites" : {
-
+ "localizations" : {
+ "en-GB" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Favourites"
+ }
+ }
+ }
},
"File Management" : {
"comment" : "A section header in the settings view that allows users to manage their downloaded files.",
@@ -286,13 +331,27 @@
}
},
"No Favorites" : {
-
+ "localizations" : {
+ "en-GB" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "No Favourites"
+ }
+ }
+ }
},
"No History" : {
},
"No matching favorites found" : {
-
+ "localizations" : {
+ "en-GB" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "No matching favourites found"
+ }
+ }
+ }
},
"No matching items found" : {
@@ -399,7 +458,14 @@
},
"Remove All Favorites" : {
-
+ "localizations" : {
+ "en-GB" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Remove All Favourites"
+ }
+ }
+ }
},
"Remove All Searches" : {
@@ -415,7 +481,15 @@
},
"Remove from Favorites" : {
"comment" : "A menu option to remove a favorited post from their list.",
- "isCommentAutoGenerated" : true
+ "isCommentAutoGenerated" : true,
+ "localizations" : {
+ "en-GB" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Remove from Favourites"
+ }
+ }
+ }
},
"Rename" : {
@@ -504,7 +578,14 @@
},
"Tap the heart button on a post to add it to favorites." : {
-
+ "localizations" : {
+ "en-GB" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Tap the heart button on a post to add it to favourites."
+ }
+ }
+ }
},
"Thumbnail Grid Columns" : {
"localizations" : {
@@ -546,8 +627,15 @@
"Try adjusting your search or collection filter." : {
},
- "Uncategorised" : {
-
+ "Uncategorized" : {
+ "localizations" : {
+ "en-GB" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Uncategorised"
+ }
+ }
+ }
},
"Uniform Thumbnail Size" : {
diff --git a/Sora/Data/CollectionPickerOption.swift b/Sora/Data/CollectionPickerOption.swift
index 930797a..a0bd9f9 100644
--- a/Sora/Data/CollectionPickerOption.swift
+++ b/Sora/Data/CollectionPickerOption.swift
@@ -35,7 +35,7 @@ enum CollectionPickerOption: Identifiable, Hashable {
return name
case .uncategorized:
- return "Uncategorised"
+ return "Uncategorized"
}
}
}
diff --git a/Sora/Views/FavoritesView.swift b/Sora/Views/FavoritesView.swift
index 0a82ea1..1deece3 100644
--- a/Sora/Views/FavoritesView.swift
+++ b/Sora/Views/FavoritesView.swift
@@ -222,7 +222,7 @@ struct FavoritesView: View { // swiftlint:disable:this type_body_length
Button(action: {
selectedCollectionOption = .uncategorized
}) {
- Label("Uncategorised", systemImage: "folder.badge.questionmark")
+ Label("Uncategorized", systemImage: "folder.badge.questionmark")
}
}
diff --git a/Sora/Views/Generic/GenericListView.swift b/Sora/Views/Generic/GenericListView.swift
index eb2c153..5ba1fb0 100644
--- a/Sora/Views/Generic/GenericListView.swift
+++ b/Sora/Views/Generic/GenericListView.swift
@@ -244,7 +244,7 @@ struct GenericListView<T: Identifiable & Hashable & GenericItem>: View {
Button(action: {
selectedCollectionOption = .uncategorized
}) {
- Label("Uncategorised", systemImage: "folder.badge.questionmark")
+ Label("Uncategorized", systemImage: "folder.badge.questionmark")
}
}