alqindiirsyam il y a 2 ans
Parent
commit
5cd60be1bf

BIN
appbuilder-ios/DigiXLite/DigiXLite.xcworkspace/xcuserdata/akhmadalqindiirsyam.xcuserdatad/UserInterfaceState.xcuserstate


+ 1 - 0
appbuilder-ios/DigiXLite/DigiXLite/Resource/id.lproj/Localizable.strings

@@ -85,6 +85,7 @@
 "Version" = "Versi";
 "Powered by Qmera" = "Dipersembahkan oleh Qmera";
 "Powered by Nexilis" = "Dipersembahkan oleh Nexilis";
+"Powered by Telkomsel" = "Dipersembahkan oleh Nexilis";
 "Sign-Up (Change profile)" = "Daftar (Ubah Profil)";
 "Change Profile" = "Ubah Profil";
 "Sign-In (Change Device)" = "Masuk (Ubah Perangkat)";

+ 1 - 1
appbuilder-ios/DigiXLite/DigiXLite/Source/View/Call/QmeraAudioViewController.swift

@@ -198,7 +198,7 @@ class QmeraAudioViewController: UIViewController {
     
     let poweredByLabel: UILabel = {
         let label = UILabel()
-        label.text = "Powered by Nexilis".localized()
+        label.text = "Powered by Telkomsel".localized()
         return label
     }()
     

+ 1 - 1
appbuilder-ios/DigiXLite/DigiXLite/Source/View/Call/QmeraVideoViewController.swift

@@ -80,7 +80,7 @@ class QmeraVideoViewController: UIViewController {
     
     let poweredByLabel: UILabel = {
         let label = UILabel()
-        label.text = "Powered by Nexilis".localized()
+        label.text = "Powered by Telkomsel".localized()
         return label
     }()
     

+ 1 - 1
appbuilder-ios/DigiXLite/DigiXLite/Source/View/Chat/EditorGroup.swift

@@ -2461,7 +2461,7 @@ extension EditorGroup: UIContextMenuInteractionDelegate {
                 let dataProfile = getDataProfile(f_pin: dataMessages[i]["f_pin"] as! String, message_id: dataMessages[i]["message_id"] as! String)
                 text = text + "\n\n*[\(formatterDate.string(from: date as Date)) \(formatterTime.string(from: date as Date))] \(dataProfile["name"]!):*\n\(dataMessages[i]["message_text"] as! String)"
             }
-            text = text + "\n\n\nchat " + "Powered by Nexilis".localized()
+            text = text + "\n\n\nchat " + "Powered by Telkomsel".localized()
             DispatchQueue.main.async {
                 UIPasteboard.general.string = text
                 self.showToast(message: "Text coppied to clipboard".localized(), font: UIFont.systemFont(ofSize: 12, weight: .medium), controller: self)

+ 1 - 1
appbuilder-ios/DigiXLite/DigiXLite/Source/View/Chat/EditorPersonal.swift

@@ -3622,7 +3622,7 @@ extension EditorPersonal: UIContextMenuInteractionDelegate {
                     text = text + "\n\n*[\(formatterDate.string(from: date as Date)) \(formatterTime.string(from: date as Date))] \(dataProfile["name"]!):*\n\(dataMessages[i]["message_text"] as! String)"
                 }
             }
-            text = text + "\n\n\nchat " + "Powered by Nexilis".localized()
+            text = text + "\n\n\nchat " + "Powered by Telkomsel".localized()
             DispatchQueue.main.async {
                 UIPasteboard.general.string = text
                 self.showToast(message: "Text coppied to clipboard".localized(), font: UIFont.systemFont(ofSize: 12, weight: .medium), controller: self)

+ 1 - 1
appbuilder-ios/DigiXLite/DigiXLite/Source/View/Chat/EditorStarMessages.swift

@@ -1061,7 +1061,7 @@ public class EditorStarMessages: UIViewController, UITableViewDataSource, UITabl
                     } else {
                         text = text + "\n\n*[\(formatterDate.string(from: date as Date)) \(formatterTime.string(from: date as Date))] \(dataProfile["name"]!):*\n\(dataMessages[indexPath!.row]["message_text"] as! String)"
                     }
-                    text = text + "\n\n\nchat " + "Powered by Nexilis".localized()
+                    text = text + "\n\n\nchat " + "Powered by Telkomsel".localized()
                     DispatchQueue.main.async {
                         UIPasteboard.general.string = text
                         self.showToast(message: "Text coppied to clipboard".localized(), font: UIFont.systemFont(ofSize: 12, weight: .medium), controller: self)

+ 1 - 1
appbuilder-ios/DigiXLite/DigiXLite/Source/View/Control/SettingTableViewController.swift

@@ -216,7 +216,7 @@ public class SettingTableViewController: UITableViewController, UIGestureRecogni
         ]
         Item.menus["Version"] = [
             Item(icon: UIImage(systemName: "gear"), title: "Version".localized()),
-            Item(icon: UIImage(named: "pb_powered_button", in: Bundle.resourceBundle(for: Nexilis.self), with: nil), title: "Powered by Nexilis".localized()),
+            Item(icon: UIImage(named: "pb_powered_button", in: Bundle.resourceBundle(for: Nexilis.self), with: nil), title: "Powered by Telkomsel".localized()),
         ]
     }