Localises IconImage descriptions

- Deletes UIKit Timeline customizer
This commit is contained in:
Stuart Breckenridge
2022-12-20 17:26:19 +08:00
parent 686d93f49e
commit 432aeea1b5
7 changed files with 9 additions and 214 deletions

View File

@@ -185,11 +185,11 @@ enum IconSize: Int, CaseIterable, CustomStringConvertible {
var description: String {
switch self {
case .small:
return "Small"
return Bundle.main.localizedString(forKey: "SMALL_ICON_SIZE", value: nil, table: "Settings")
case .medium:
return "Medium"
return Bundle.main.localizedString(forKey: "MEDIUM_ICON_SIZE", value: nil, table: "Settings")
case .large:
return "Large"
return Bundle.main.localizedString(forKey: "LARGE_ICON_SIZE", value: nil, table: "Settings")
}
}