|
@@ -20,7 +20,7 @@ class INRecorderController: BFBaseViewController {
|
|
|
|
|
|
lazy var titleL : UILabel = {
|
|
|
let l = UILabel()
|
|
|
- l.text = "开始讲解"
|
|
|
+ l.text = "home_title".BFLocale
|
|
|
l.textAlignment = .center
|
|
|
l.textColor = .white
|
|
|
l.font = UIFont.systemFont(ofSize: 36)
|
|
@@ -33,7 +33,7 @@ class INRecorderController: BFBaseViewController {
|
|
|
lazy var camaraBtn: UIButton = {
|
|
|
let btn = UIButton(type: .custom)
|
|
|
btn.setImage(UIImage(named: "shot"), for: .normal)
|
|
|
- btn.setTitle("拍摄录制", for: .normal)
|
|
|
+ btn.setTitle("home_shoot".BFLocale, for: .normal)
|
|
|
btn.setTitleColor(UIColor.init(white: 1, alpha: 0.5), for: .normal)
|
|
|
btn.titleLabel?.font = UIFont.systemFont(ofSize: 17)
|
|
|
btn.addTarget(self, action: #selector(cameraBtnAction), for: .touchUpInside)
|
|
@@ -44,7 +44,7 @@ class INRecorderController: BFBaseViewController {
|
|
|
lazy var photoBtn: UIButton = {
|
|
|
let btn = UIButton(type: .custom)
|
|
|
btn.setImage(UIImage(named: "import"), for: .normal)
|
|
|
- btn.setTitle("从相册选择", for: .normal)
|
|
|
+ btn.setTitle("home_choose".BFLocale, for: .normal)
|
|
|
btn.setTitleColor(UIColor.init(white: 1, alpha: 0.5), for: .normal)
|
|
|
btn.titleLabel?.font = UIFont.systemFont(ofSize: 17)
|
|
|
btn.addTarget(self, action: #selector(addVideo), for: .touchUpInside)
|