Browse Source

添加国际化文字

jsonwang 3 years ago
parent
commit
06e0202abb

+ 1 - 1
Introduce/Record/INIntroduceController.swift

@@ -160,7 +160,7 @@ class INIntroduceController: BFBaseViewController {
     
     @objc func addmaterial(){
         if recordScreenVC.itemModels.count >= 20{
-            cShowHUB(superView: nil, msg: "已经选择了20个素材了!!")
+            cShowHUB(superView: nil, msg: "option_tips_max20".BFLocale)
             return
         }
         if recordScreenVC.isNormalPlaying {

+ 1 - 1
Introduce/Record/INRecorderController.swift

@@ -357,7 +357,7 @@ class INRecorderController: BFBaseViewController {
         if  AVCaptureDevice.authorizationStatus(for: AVMediaType.video) != AVAuthorizationStatus.denied {
             return true
         }else {
-            cShowHUB(superView: nil, msg: "权限已被禁用,请到设置里开启摄像头权限")
+            cShowHUB(superView: nil, msg: "record_fail_camera".BFLocale)
             return false
         }
     }