2020-09-20 13:46:54 +02:00
|
|
|
//
|
|
|
|
|
// UILocalizedLabel.swift
|
|
|
|
|
// pass
|
|
|
|
|
//
|
|
|
|
|
// Created by Danny Moesch on 20.01.19.
|
|
|
|
|
// Copyright © 2019 Bob Sun. All rights reserved.
|
|
|
|
|
//
|
2019-01-20 11:24:57 +01:00
|
|
|
|
|
|
|
|
import passKit
|
2020-06-28 21:25:40 +02:00
|
|
|
import UIKit
|
2019-01-20 11:24:57 +01:00
|
|
|
|
|
|
|
|
class UILocalizedLabel: UILabel {
|
|
|
|
|
override func awakeFromNib() {
|
|
|
|
|
super.awakeFromNib()
|
|
|
|
|
text = text?.localize()
|
|
|
|
|
}
|
|
|
|
|
}
|