From a2f7fe9fc9e996bfb8e6562d8e3e7e36b81d4fd4 Mon Sep 17 00:00:00 2001 From: InKwon James Kim Date: Wed, 14 Aug 2019 12:00:23 +0900 Subject: [PATCH] edit redirect auto debit logic --- GME Remit/AppDelegate.swift | 1 - .../View/AutoDebitViewController.swift | 1 + .../Home/User Interface/View/Home.storyboard | 404 +++++++++--------- .../View/HomeViewController.swift | 144 ++++--- .../Service/KycServiceType.swift | 4 +- .../Service/PennyTestServiceType.swift | 127 ++++-- .../bn.lproj/Localizable.strings | 2 +- .../en.lproj/Localizable.strings | 2 +- .../id.lproj/Localizable.strings | 2 +- .../km.lproj/Localizable.strings | 2 +- .../ko.lproj/Localizable.strings | 2 +- .../mn.lproj/Localizable.strings | 2 +- .../my-MM.lproj/Localizable.strings | 2 +- .../my.lproj/Localizable.strings | 2 +- .../ne.lproj/Localizable.strings | 2 +- .../ru-RU.lproj/Localizable.strings | 2 +- .../si.lproj/Localizable.strings | 2 +- .../th.lproj/Localizable.strings | 2 +- .../uz.lproj/Localizable.strings | 2 +- .../vi-VN.lproj/Localizable.strings | 2 +- 20 files changed, 384 insertions(+), 325 deletions(-) diff --git a/GME Remit/AppDelegate.swift b/GME Remit/AppDelegate.swift index 3e2664b5..94166e50 100644 --- a/GME Remit/AppDelegate.swift +++ b/GME Remit/AppDelegate.swift @@ -17,7 +17,6 @@ import Fabric import Crashlytics import AlamofireNetworkActivityLogger import IQKeyboardManagerSwift -import LGSideMenuController import Localize_Swift import ChannelIO diff --git a/GME Remit/Modules/AutoDebitModules/AutoDebit/User Interface/View/AutoDebitViewController.swift b/GME Remit/Modules/AutoDebitModules/AutoDebit/User Interface/View/AutoDebitViewController.swift index f58d3752..d902dbd2 100644 --- a/GME Remit/Modules/AutoDebitModules/AutoDebit/User Interface/View/AutoDebitViewController.swift +++ b/GME Remit/Modules/AutoDebitModules/AutoDebit/User Interface/View/AutoDebitViewController.swift @@ -146,6 +146,7 @@ class AutoDebitViewController: UIViewController { } @IBAction func touchClose(_ sender: UIBarButtonItem) { +// GMEDB.shared.user.set("", .redirectTo) dismiss(animated: true, completion: nil) } diff --git a/GME Remit/Modules/Home/User Interface/View/Home.storyboard b/GME Remit/Modules/Home/User Interface/View/Home.storyboard index ed329adb..bb5aa436 100644 --- a/GME Remit/Modules/Home/User Interface/View/Home.storyboard +++ b/GME Remit/Modules/Home/User Interface/View/Home.storyboard @@ -1,6 +1,10 @@ + + + + @@ -25,11 +29,11 @@ - + - + @@ -39,7 +43,7 @@ - - + @@ -72,7 +68,7 @@ - + @@ -81,10 +77,8 @@ - - @@ -92,137 +86,149 @@ - + - + - + - - + + - - + + - - - + + - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + - - + + - - - - - - - - + + + + + + + + - - + + - - - - - - - - + + + + + + + + + + + + + + + + + + - + + + + + + + + - - - - - + + - + - - - - - + + + + + + + + - - - - + + + + @@ -237,93 +243,105 @@ - + - + - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - + + + + @@ -357,7 +375,6 @@ - @@ -396,7 +413,6 @@ - diff --git a/GME Remit/Modules/Home/User Interface/View/HomeViewController.swift b/GME Remit/Modules/Home/User Interface/View/HomeViewController.swift index 2c577faf..d000d667 100644 --- a/GME Remit/Modules/Home/User Interface/View/HomeViewController.swift +++ b/GME Remit/Modules/Home/User Interface/View/HomeViewController.swift @@ -41,7 +41,6 @@ class HomeViewController: UIViewController, UICollectionViewDelegateFlowLayout { @IBOutlet private weak var messageLabel: UILabel! @IBOutlet private weak var messageTitleLabel: UILabel! @IBOutlet private weak var messageLeftImageview: UIImageView! - @IBOutlet private weak var messageRightButton: UIButton! @IBOutlet private var tapMessageViewGestrueRecognizer: UITapGestureRecognizer! @@ -461,75 +460,6 @@ class HomeViewController: UIViewController, UICollectionViewDelegateFlowLayout { } - private func setMessageView() { - if didSubmitKycAndNotVerified() { - showWaitVerifyMessage() - setNavBar(isUseMenu: true) - } else { - let redirect = GMEDB.shared.user.string(.redirectTo) ?? "" - - switch redirect { - case "autodebit": - showAutoDebitMessage() - setNavBar(isUseMenu: false) - default: - removeAllMessage() - setNavBar(isUseMenu: true) - } - } - } - - private func showWaitVerifyMessage() { - self.messageViewHeightConstraint.constant = 100 - self.messageView.alpha = 0 - - messageTitleLabel.text = StringConstants().verificationInProcessTitleText - self.messageLabel.text = StringConstants().soonToUseGmeServicesTitle - self.messageLeftImageview.image = #imageLiteral(resourceName: "ic_home_verified") - self.messageRightButton.setImage(#imageLiteral(resourceName: "ic_home_payoutLocation"), for: .normal) - } - - private func showAutoDebitMessage() { - self.messageViewHeightConstraint.constant = 100 - self.messageView.alpha = 1 - messageTitleLabel.text = "add_auto_debit_account_text".localized() - self.messageLabel.text = "autodebit_account_required_message".localized() - self.messageLeftImageview.image = #imageLiteral(resourceName: "ic_home_verified") - self.messageRightButton.setImage(#imageLiteral(resourceName: "ic_home_payoutLocation"), for: .normal) - - blobView.removeFromSuperview() - - blobView = UIView( - frame: CGRect(x: 0, y: 164, width: view.frame.width, height: view.frame.height) - ) - blobView.backgroundColor = .init(white: 0, alpha: 0.5) - - tabBarController?.view.addSubview(blobView) - tapMessageViewGestrueRecognizer.addTarget(self, action: #selector(tapMessageView(_:))) - } - - @objc private func tapMessageView(_ sender: UITapGestureRecognizer) { - blobView.removeFromSuperview() - let navigationVC = UINavigationController(rootViewController: AutoDebitWireframe().getMainView()) - tabBarController?.present(navigationVC, animated: true, completion: nil) - } - - private func removeAllMessage() { - self.messageViewHeightConstraint.constant = 0 - self.messageView.alpha = 0 - blobView.removeFromSuperview() - } - - func setNavBar(isUseMenu: Bool) { - let selector = #selector(self.showSideMenu) - - isUseMenu ? setupPicturedNavBar(sideMenuAction: selector) : setupPicturedNavBar(sideMenuAction: nil) - } - - @objc func showSideMenu() { - sideMenuController?.showLeftViewAnimated() - } - @objc private func showSendMoney() { let kycSubmited = user?.kyc ?? false let pennyTestComplete = Utility.pennyTestVerified() @@ -632,6 +562,80 @@ class HomeViewController: UIViewController, UICollectionViewDelegateFlowLayout { } } +// MARK: - Manage Message View +extension HomeViewController { + private func setMessageView() { + let redirect = GMEDB.shared.user.string(.redirectTo) ?? "" + + switch redirect { + case "autodebit": + setNavBar(isUseMenu: false) + showAutoDebitMessage() + default: + setNavBar(isUseMenu: true) + didSubmitKycAndNotVerified() ? showWaitVerifyMessage() : removeAllMessage() + } + } + + private func showAutoDebitMessage() { + showMessageView(isHidden: false) + + messageTitleLabel.text = "add_auto_debit_account_text".localized() + messageLabel.text = "autodebit_account_required_message".localized() + messageLeftImageview.image = #imageLiteral(resourceName: "ic_home_verified") + + blobView = UIView( + frame: CGRect(x: 0, y: 164, width: view.frame.width, height: view.frame.height) + ) + blobView.backgroundColor = .init(white: 0, alpha: 0.5) + + tabBarController?.view.addSubview(blobView) + tapMessageViewGestrueRecognizer.addTarget(self, action: #selector(tapMessageView(_:))) + } + + @objc private func tapMessageView(_ sender: UITapGestureRecognizer) { + blobView.removeFromSuperview() + + let navigationVC = UINavigationController(rootViewController: AutoDebitWireframe().getMainView()) + tabBarController?.present(navigationVC, animated: true, completion: nil) + } + + private func showWaitVerifyMessage() { + blobView.removeFromSuperview() + tapMessageViewGestrueRecognizer.removeTarget(self, action: #selector(tapMessageView(_:))) + showMessageView(isHidden: false) + + messageTitleLabel.text = StringConstants().verificationInProcessTitleText + messageLabel.text = StringConstants().soonToUseGmeServicesTitle + messageLeftImageview.image = #imageLiteral(resourceName: "ic_home_verified") + } + + private func removeAllMessage() { + blobView.removeFromSuperview() + showMessageView(isHidden: true) + } + + private func showMessageView(isHidden: Bool) { + UIView.animate( + withDuration: 0.33, + animations: { + self.messageViewHeightConstraint.constant = isHidden ? 0 : 100 + self.messageView.alpha = isHidden ? 0 : 1 + } + ) + } + + func setNavBar(isUseMenu: Bool) { + let selector = #selector(self.showSideMenu) + + isUseMenu ? setupPicturedNavBar(sideMenuAction: selector) : setupPicturedNavBar(sideMenuAction: nil) + } + + @objc func showSideMenu() { + sideMenuController?.showLeftViewAnimated() + } +} + // MARK: - Other functions extension HomeViewController { private func isUserVerified() -> Bool { diff --git a/GME Remit/Modules/RegisterModules/KYC/Kyc/Application Logic/Service/KycServiceType.swift b/GME Remit/Modules/RegisterModules/KYC/Kyc/Application Logic/Service/KycServiceType.swift index 2c6bea63..8f2448bb 100644 --- a/GME Remit/Modules/RegisterModules/KYC/Kyc/Application Logic/Service/KycServiceType.swift +++ b/GME Remit/Modules/RegisterModules/KYC/Kyc/Application Logic/Service/KycServiceType.swift @@ -29,7 +29,9 @@ extension KYCSubmitApiService { success: @escaping (KYCResponseContainer?) -> Void, failure: @escaping (Error) -> Void ) { - let url = "https://mobileapi.gmeremit.com:8002/api/v3/mobile/RegisterKyc" +// let url = "https://mobileapi.gmeremit.com:8002/api/v3/mobile/RegisterKyc" + // FIXME: For Test staging + let url = "http://gmeuat.gmeremit.com:5022/api/v3/mobile/RegisterKyc" auth.requestMultipart( method: .post, url, parameters: param, diff --git a/GME Remit/Modules/RegisterModules/PennyTest/Application Logic/Service/PennyTestServiceType.swift b/GME Remit/Modules/RegisterModules/PennyTest/Application Logic/Service/PennyTestServiceType.swift index c557b50f..8a9766b3 100644 --- a/GME Remit/Modules/RegisterModules/PennyTest/Application Logic/Service/PennyTestServiceType.swift +++ b/GME Remit/Modules/RegisterModules/PennyTest/Application Logic/Service/PennyTestServiceType.swift @@ -10,65 +10,102 @@ import Foundation import Alamofire protocol PennyTestServiceType: class { - + } protocol InitiatePennyTestService: ApiServiceType { - func initiate(userId: String, isResendRequest: String?, success: @escaping (SuccessMessage) -> (), failure: @escaping (Error) -> ()) + func initiate( + userId: String, + isResendRequest: String?, + success: @escaping (SuccessMessage) -> Void, + failure: @escaping (Error) -> Void + ) } extension InitiatePennyTestService { - func initiate(userId: String, isResendRequest: String?, success: @escaping (SuccessMessage) -> (), failure: @escaping (Error) -> ()) { - let url = baseUrl + "/mobile/pennytest/start" + "/\(userId)?reSendCode=\(isResendRequest ?? "N")" - - auth.request( - method: .post, - url: url, - params: nil, - encoding: URLEncoding.default, - needsAuthorization: false, - success: { (response: SuccessMessageContainer) in - - if (response.errorCode ?? "") == "1" { - let error = NSError.init(domain: "Network", code: 0, userInfo: [NSLocalizedDescriptionKey : response.message ?? ""]) - failure(error) - }else { - if let model = response.data { - success(model) - }else { - let error = NSError.init(domain: "FetchAutoRefundInfo", code: 0, userInfo: [NSLocalizedDescriptionKey : "Could not parse json"]) - failure(error) - } - } - - }) { (error) in + func initiate( + userId: String, + isResendRequest: String?, + success: @escaping (SuccessMessage) -> Void, + failure: @escaping (Error) -> Void + ) { + let url = baseUrl + "/mobile/pennytest/start" + "/\(userId)?reSendCode=\(isResendRequest ?? "N")" + + auth.request( + method: .post, + url: url, + params: nil, + encoding: URLEncoding.default, + needsAuthorization: false, + success: { (response: SuccessMessageContainer) in + if (response.errorCode ?? "") == "1" { + let error = NSError( + domain: "Network", + code: 0, userInfo: [NSLocalizedDescriptionKey : response.message ?? ""] + ) + failure(error) + } else { + if let model = response.data { + success(model) + } else { + let error = NSError( + domain: "FetchAutoRefundInfo", + code: 0, + userInfo: [NSLocalizedDescriptionKey : "Could not parse json"] + ) failure(error) + } } + }, + failure: { (error) in + failure(error) } + ) + } } protocol SubmitPennyTestService: ApiServiceType { - func submit(params: [String: String], success: @escaping (SuccessMessage) -> (), failure: @escaping (Error) -> ()) + func submit( + params: [String: String], + success: @escaping (SuccessMessage) -> Void, + failure: @escaping (Error) -> Void + ) } extension SubmitPennyTestService { - func submit(params: [String: String], success: @escaping (SuccessMessage) -> (), failure: @escaping (Error) -> ()) { - let url = baseUrl + "/mobile/pennytest/getcertified" - auth.request(method: .post, url: url, params: params, success: { (response: SuccessMessageContainer) in - - if (response.errorCode ?? "") == "1" { - let error = NSError.init(domain: "Network", code: 0, userInfo: [NSLocalizedDescriptionKey : response.message ?? ""]) - failure(error) - }else { - if let model = response.data { - success(model) - }else { - let error = NSError.init(domain: "FetchAutoRefundInfo", code: 0, userInfo: [NSLocalizedDescriptionKey : "Could not parse json"]) - failure(error) - } - } - - }, failure: failure) - } + func submit( + params: [String: String], + success: @escaping (SuccessMessage) -> Void, + failure: @escaping (Error) -> Void + ) { + let url = baseUrl + "/mobile/pennytest/getcertified" + auth.request( + method: .post, + url: url, + params: params, + success: { (response: SuccessMessageContainer) in + if (response.errorCode ?? "") == "1" { + let error = NSError( + domain: "Network", + code: 0, + userInfo: [NSLocalizedDescriptionKey : response.message ?? ""] + ) + failure(error) + } else { + if let model = response.data { + success(model) + } else { + let error = NSError( + domain: "FetchAutoRefundInfo", + code: 0, + userInfo: [NSLocalizedDescriptionKey : "Could not parse json"] + ) + failure(error) + } + } + + }, + failure: failure) + } } diff --git a/GME Remit/MultiLanguages/bn.lproj/Localizable.strings b/GME Remit/MultiLanguages/bn.lproj/Localizable.strings index ad5f3934..84115755 100644 --- a/GME Remit/MultiLanguages/bn.lproj/Localizable.strings +++ b/GME Remit/MultiLanguages/bn.lproj/Localizable.strings @@ -355,7 +355,7 @@ "auto_debit_title_text" = " অটো ডেবিট একাউন্ট সম্পাদনা করুণ "; "are_you_sure_text" = " আপনি নিশ্চিত?"; "auto_debit_delete_confirm_description" = " অটো ডেবিট একাউন্ট বাদ দিতে চান ?"; -//"add_auto_debit_account_text" = " অটো ডেবিট একাউন্ট সংযোগ করুণ "; +"add_auto_debit_account_text" = " অটো ডেবিট একাউন্ট সংযোগ করুণ "; "delete_auto_debit_account_hint_text" = "একাউন্ট বাদ দিতে হোল্ড করুণ "; "no_languages_available_text" = "ভাষা সহজলভ্য নয়"; "swift_to_delete_account_text" = " একাউন্ট সম্পাদনা বা বাদ দিতে বামে স্যুইপ করুণ "; diff --git a/GME Remit/MultiLanguages/en.lproj/Localizable.strings b/GME Remit/MultiLanguages/en.lproj/Localizable.strings index 5b2ff05e..9c3c2785 100644 --- a/GME Remit/MultiLanguages/en.lproj/Localizable.strings +++ b/GME Remit/MultiLanguages/en.lproj/Localizable.strings @@ -365,7 +365,7 @@ "are_you_sure_text" = "Are you sure?"; "auto_debit_delete_confirm_description" = "You want to delete Auto-Debit Account?"; -//"add_auto_debit_account_text" = "Add Auto Debit Account"; +"add_auto_debit_account_text" = "Add Auto Debit Account"; //"add_auto_debit_account_text" = "Token Renewal"; "delete_auto_debit_account_hint_text" = "Hold to Delete the account"; diff --git a/GME Remit/MultiLanguages/id.lproj/Localizable.strings b/GME Remit/MultiLanguages/id.lproj/Localizable.strings index 1e3de8b4..0f47dc77 100644 --- a/GME Remit/MultiLanguages/id.lproj/Localizable.strings +++ b/GME Remit/MultiLanguages/id.lproj/Localizable.strings @@ -326,7 +326,7 @@ "auto_debit_title_text" = "Atur Akun Debit Automatis"; "are_you_sure_text" = "Apakah anda yakin?"; "auto_debit_delete_confirm_description" = "Anda ingin menghapus akun debit automatis?"; -//"add_auto_debit_account_text" = "Tambahkan Akun Debit Automatis"; +"add_auto_debit_account_text" = "Tambahkan Akun Debit Automatis"; "delete_auto_debit_account_hint_text" = "Tahan untuk Menghapus akun"; "no_lanugages_available_text" = "Tidak Ada Bahasa yang tersedia"; "swift_to_delete_account_text" = "Geser ke kiri untuk Edit atau Hapus akun."; diff --git a/GME Remit/MultiLanguages/km.lproj/Localizable.strings b/GME Remit/MultiLanguages/km.lproj/Localizable.strings index 9aebee08..11b1fdf5 100644 --- a/GME Remit/MultiLanguages/km.lproj/Localizable.strings +++ b/GME Remit/MultiLanguages/km.lproj/Localizable.strings @@ -363,7 +363,7 @@ "auto_debit_title_text" = "គ្រប់គ្រងគណនីកាត់លុយដោយស្វយ័ប្រវត្តិ"; "are_you_sure_text" = "តើអ្នកប្រកដឬទេ?"; "auto_debit_delete_confirm_description" = "លោកអ្នកចង់លុបគណនីកាត់លុយដោយស្វយ័ប្រវត្តិ?"; -//"add_auto_debit_account_text" = "បន្ថែមគណនីកាត់លុយដោយស្វយ័ប្រវត្តិ"; +"add_auto_debit_account_text" = "បន្ថែមគណនីកាត់លុយដោយស្វយ័ប្រវត្តិ"; "delete_auto_debit_account_hint_text" = "ចុចភ្ជាប់ដើម្បីលុបគណនីនេះ"; "no_languages_available_text" = "មិនមានភាសា"; "swift_to_delete_account_text" = "ទាញមកខាងឆ្វេងដើម្បីកែសម្រួល ឬ លុបគណនី"; diff --git a/GME Remit/MultiLanguages/ko.lproj/Localizable.strings b/GME Remit/MultiLanguages/ko.lproj/Localizable.strings index d5eb27b1..4a4381f4 100644 --- a/GME Remit/MultiLanguages/ko.lproj/Localizable.strings +++ b/GME Remit/MultiLanguages/ko.lproj/Localizable.strings @@ -372,7 +372,7 @@ "auto_debit_title_text" = "Auto debit 계좌 관리"; "are_you_sure_text" = "계속할까요?"; "auto_debit_delete_confirm_description" = "Auto debit 계좌 삭제하시겠습니까?"; -//"add_auto_debit_account_text" = "Auto debit 계좌 추가"; +"add_auto_debit_account_text" = "Auto debit 계좌 추가"; "delete_auto_debit_account_hint_text" = "삭제 시 꾹 누르세요. "; "no_languages_available_text" = "가능한 언어가 없습니다. "; "swift_to_delete_account_text" = "계좌 삭제 시 왼쪽으로 넘기세요."; diff --git a/GME Remit/MultiLanguages/mn.lproj/Localizable.strings b/GME Remit/MultiLanguages/mn.lproj/Localizable.strings index e56bf086..d2b59659 100644 --- a/GME Remit/MultiLanguages/mn.lproj/Localizable.strings +++ b/GME Remit/MultiLanguages/mn.lproj/Localizable.strings @@ -367,7 +367,7 @@ "auto_debit_title_text" = "Холбуулсан банкны дансыг харах"; "are_you_sure_text" = "Та итгэлтэй байна уу?"; "auto_debit_delete_confirm_description" = "Холбуулсан банкны дансыг устгах уу?"; -//"add_auto_debit_account_text" = "Шинээр банкны данс холбуулах"; +"add_auto_debit_account_text" = "Шинээр банкны данс холбуулах"; "delete_auto_debit_account_hint_text" = "Холбуулсан дансыг устгахын тулд удаан дарна уу"; "no_languages_available_text" = "Хэл олдсонгүй"; "swift_to_delete_account_text" = "Аккаунтыг засах болон устгах бол дэлгэцийн зүүн тийш гүйлгэнэ үү"; diff --git a/GME Remit/MultiLanguages/my-MM.lproj/Localizable.strings b/GME Remit/MultiLanguages/my-MM.lproj/Localizable.strings index fe80b574..3be9ee8b 100644 --- a/GME Remit/MultiLanguages/my-MM.lproj/Localizable.strings +++ b/GME Remit/MultiLanguages/my-MM.lproj/Localizable.strings @@ -360,7 +360,7 @@ "auto_debit_title_text"="Not Translated"; "are_you_sure_text"="Not Translated"; "auto_debit_delete_confirm_description"="Not Translated"; -//"add_auto_debit_account_text"="Not Translated"; +"add_auto_debit_account_text"="Not Translated"; "delete_auto_debit_account_hint_text"="Not Translated"; "no_languages_available_text"="Not Translated"; "swift_to_delete_account_text"="Not Translated"; diff --git a/GME Remit/MultiLanguages/my.lproj/Localizable.strings b/GME Remit/MultiLanguages/my.lproj/Localizable.strings index d4fa4351..0d04219a 100644 --- a/GME Remit/MultiLanguages/my.lproj/Localizable.strings +++ b/GME Remit/MultiLanguages/my.lproj/Localizable.strings @@ -370,7 +370,7 @@ "auto_debit_title_text" = "ေအာ္တိုေငြလႊဲအေကာင့္အား စီမံရန္"; "are_you_sure_text" = "ေသခ်ာပါသလား"; "auto_debit_delete_confirm_description" = "ေအာ္္တိုေငြလႊဲအေကာင့္အား ဖ်က္ပစ္ပါမည္လား"; -//"add_auto_debit_account_text" = "ေအာ္တိုေငြလႊဲအေကာင့္ ထပ္ထည့္ရန္"; +"add_auto_debit_account_text" = "ေအာ္တိုေငြလႊဲအေကာင့္ ထပ္ထည့္ရန္"; "delete_auto_debit_account_hint_text" = "အေကာင့္အားဖ်က္ပစ္ရန္ နွိပ္ထားပါ"; "no_languages_available_text" = "ဘာသာစကားမ်ား မရရွိပါ"; "swift_to_delete_account_text" = "ဘယ္ဘက္ကိုနွိပ္ကာ အေကာင့္ဖ်က္ျခင္း သို႔ ျပင္ဆင္ျခင္းမ်ား ျပဳလုပ္ပါ"; diff --git a/GME Remit/MultiLanguages/ne.lproj/Localizable.strings b/GME Remit/MultiLanguages/ne.lproj/Localizable.strings index 383bd72b..d7dc68bb 100644 --- a/GME Remit/MultiLanguages/ne.lproj/Localizable.strings +++ b/GME Remit/MultiLanguages/ne.lproj/Localizable.strings @@ -368,7 +368,7 @@ "auto_debit_title_text" = "स्वत: डेबिट खाता व्यवस्थापन गर्नुहोस"; "are_you_sure_text" = "साच्चै हो?"; "auto_debit_delete_confirm_description" = "तपाई स्वत: डेबिट खाता मेटाउन चाहानुहुन्छ ?"; -//"add_auto_debit_account_text" = "स्वत: डेबिट खाता थप्नुहोस ।"; +"add_auto_debit_account_text" = "स्वत: डेबिट खाता थप्नुहोस ।"; "delete_auto_debit_account_hint_text" = "खाता मेटाउनको लागि होल्ड गर्नुहोस"; "no_languages_available_text" = "कुनै भाषाहरू उपलब्ध छैन"; "swift_to_delete_account_text" = "खाता सम्पादन गर्न वा मेट्न बायाँ स्वाइप गर्नुहोस।"; diff --git a/GME Remit/MultiLanguages/ru-RU.lproj/Localizable.strings b/GME Remit/MultiLanguages/ru-RU.lproj/Localizable.strings index 38342f9b..8c3d91f4 100644 --- a/GME Remit/MultiLanguages/ru-RU.lproj/Localizable.strings +++ b/GME Remit/MultiLanguages/ru-RU.lproj/Localizable.strings @@ -369,7 +369,7 @@ "auto_debit_title_text" = "Управлять аккаунтом Auto Debit"; "are_you_sure_text" = "Вы уверены?"; "auto_debit_delete_confirm_description" = "Хотите удалить аккаунт Auto Debit?"; -//"add_auto_debit_account_text" = "Добавить аккаунт Auto Debit"; +"add_auto_debit_account_text" = "Добавить аккаунт Auto Debit"; "delete_auto_debit_account_hint_text" = "Удерживайте, чтобы удалить аккаунт Auto Debit"; "no_languages_available_text" = "Нет доступных языков "; "swift_to_delete_account_text" = "Сдвиньте влево, чтобы редактировать или удалить"; diff --git a/GME Remit/MultiLanguages/si.lproj/Localizable.strings b/GME Remit/MultiLanguages/si.lproj/Localizable.strings index 71671299..bdd9edb0 100644 --- a/GME Remit/MultiLanguages/si.lproj/Localizable.strings +++ b/GME Remit/MultiLanguages/si.lproj/Localizable.strings @@ -360,7 +360,7 @@ "auto_debit_title_text" = "Auto Debit ගිණුම කළමනාකරණය කරන්න"; "are_you_sure_text" = "Are you sure?"; "auto_debit_delete_confirm_description" = "Auto Debit ගිණුම මකා දැමීමට ඔබට අවශ්‍යද?"; -//"add_auto_debit_account_text" = "Auto Debit ගිණුමක් එකතු කරන්න"; +"add_auto_debit_account_text" = "Auto Debit ගිණුමක් එකතු කරන්න"; "delete_auto_debit_account_hint_text" = "Hold to Delete the account"; "no_languages_available_text" = "No Languages Available"; "swift_to_delete_account_text" = "ගිණුමේ සංස්කරණය කිරීමට හෝ මකා දැමීමට වමට Swipe කරන්න"; diff --git a/GME Remit/MultiLanguages/th.lproj/Localizable.strings b/GME Remit/MultiLanguages/th.lproj/Localizable.strings index faea215d..4fe1e83a 100644 --- a/GME Remit/MultiLanguages/th.lproj/Localizable.strings +++ b/GME Remit/MultiLanguages/th.lproj/Localizable.strings @@ -363,7 +363,7 @@ "auto_debit_title_text" = "จัดการบัญชีออโต้เดบิต"; "are_you_sure_text" = "คุณแน่ใจใช่หรือไม่ ?"; "auto_debit_delete_confirm_description" = "คุุณต้องการลบบัญชีออโต้เดบิตใช่หรือไม่?"; -//"add_auto_debit_account_text" = "เพิ่มออโต้เดบิต"; +"add_auto_debit_account_text" = "เพิ่มออโต้เดบิต"; "delete_auto_debit_account_hint_text" = "กดเพื่อลบบัญชี"; "no_languages_available_text" = "ไม่พบภาษาสนับสนุน"; "swift_to_delete_account_text" = "ปัดไปทางซ้ายเพื่อแก้ไข หรือ ลบบัญชี"; diff --git a/GME Remit/MultiLanguages/uz.lproj/Localizable.strings b/GME Remit/MultiLanguages/uz.lproj/Localizable.strings index da368d3d..06093690 100644 --- a/GME Remit/MultiLanguages/uz.lproj/Localizable.strings +++ b/GME Remit/MultiLanguages/uz.lproj/Localizable.strings @@ -367,7 +367,7 @@ "auto_debit_title_text" = "Auto Debit akkountni boshqarish"; "are_you_sure_text" = "Davom ettirasizmi?"; "auto_debit_delete_confirm_description" = "Auto Debit akkountingizni o'chirasizmi?"; -//"add_auto_debit_account_text" = "Auto Debit akkountni qo'shish"; +"add_auto_debit_account_text" = "Auto Debit akkountni qo'shish"; "delete_auto_debit_account_hint_text" = "Akkountni o'chirish uchun bosib turing"; "no_languages_available_text" = "Til mavjud emas"; "swift_to_delete_account_text" = "O'zgartirish yoki o'chirish uchun chap tomonni bosing"; diff --git a/GME Remit/MultiLanguages/vi-VN.lproj/Localizable.strings b/GME Remit/MultiLanguages/vi-VN.lproj/Localizable.strings index f3cd5513..3252a62d 100644 --- a/GME Remit/MultiLanguages/vi-VN.lproj/Localizable.strings +++ b/GME Remit/MultiLanguages/vi-VN.lproj/Localizable.strings @@ -367,7 +367,7 @@ "auto_debit_title_text" = "Quản lý tài khoản Auto Debit"; "are_you_sure_text" = "Tiếp tục?"; "auto_debit_delete_confirm_description" = "Bạn muốn hủy tài khoản Auto Debit?"; -//"add_auto_debit_account_text" = "Thêm tài khoản Auto Debit"; +"add_auto_debit_account_text" = "Thêm tài khoản Auto Debit"; "delete_auto_debit_account_hint_text" = "Giữ để hủy tài khoản Auto Debit"; "no_languages_available_text" = "Ngôn ngữ không khả dụng"; "swift_to_delete_account_text" = "Kéo sang trái để Sửa hoặc Hủy tài khoản";