diff --git a/GMERemittance/Module/SendMoney/SendMoneyParent/User Interface/View/SendMoneyParentViewController.swift b/GMERemittance/Module/SendMoney/SendMoneyParent/User Interface/View/SendMoneyParentViewController.swift index 621df3aa..55e16f76 100644 --- a/GMERemittance/Module/SendMoney/SendMoneyParent/User Interface/View/SendMoneyParentViewController.swift +++ b/GMERemittance/Module/SendMoney/SendMoneyParent/User Interface/View/SendMoneyParentViewController.swift @@ -51,6 +51,12 @@ class SendMoneyParentViewController: UIViewController { static let stateLabelGreyColor = UIColor.init(hex: "4a4a4a") } + struct StringConstants { + static let payoutModeText = "Payout Mode" + static let amountDetailText = "Amount Detail" + static let verificationDetailText = "Verification Detail" + } + // MARK: IBOutlets @IBOutlet weak var containerView: UIView! @@ -62,6 +68,7 @@ class SendMoneyParentViewController: UIViewController { @IBOutlet weak var verificationLabel: UILabel! + // MARK: Properties var paymentModeViewController: UIViewController? @@ -135,6 +142,13 @@ class SendMoneyParentViewController: UIViewController { self.state = StateButtons.paymentMode self.configureViews() self.requestModel = SendMoneyRequestModel() + configureLanguage() + } + + private func configureLanguage() { + self.paymentModeLabel.text = StringConstants.payoutModeText + self.exchangeRateLabel.text = StringConstants.amountDetailText + self.verificationLabel.text = StringConstants.verificationDetailText } private func setupNavigationBar() {