Adds remaining alternate app icons

This commit is contained in:
Riley Testut
2024-02-21 14:29:26 -06:00
committed by Magesh K
parent 1f83ea00d3
commit fd402f924f
67 changed files with 304 additions and 11 deletions

View File

@@ -42,14 +42,16 @@ extension AltAppIconsViewController
private enum Section: String, CaseIterable, Decodable, CodingKeyRepresentable
{
case modern
case inset
case gradient
case recessed
case classic
var localizedName: String {
switch self
{
case .modern: return NSLocalizedString("Modern", comment: "")
case .inset: return NSLocalizedString("Inset", comment: "")
case .gradient: return NSLocalizedString("Gradient", comment: "")
case .recessed: return NSLocalizedString("Recessed", comment: "")
case .classic: return NSLocalizedString("Classic", comment: "")
}
}