Fix Stringium gneration when translation contains an =

This commit is contained in:
2022-07-22 17:38:33 +02:00
parent ea833fbae7
commit 0775be88b0
15 changed files with 229 additions and 45 deletions

View File

@ -0,0 +1,21 @@
// Generated from ColorToolCore at 2022-07-22 15:38:00 +0000
import UIKit
extension UIColor {
/// Color red is #FF0000 (light) or #FF0000 (dark)"
static var red: UIColor {
UIColor(named: "red")!
}
/// Color green_alpha_50 is #A000FF00 (light) or #A000FF00 (dark)"
static var green_alpha_50: UIColor {
UIColor(named: "green_alpha_50")!
}
/// Color blue_light_dark is #0000FF (light) or #0000AA (dark)"
static var blue_light_dark: UIColor {
UIColor(named: "blue_light_dark")!
}
}