Browse Source

SendMoneyParentViewController string managed

pull/1/head
gme_2 6 years ago
parent
commit
84a6fff183
  1. 14
      GMERemittance/Module/SendMoney/SendMoneyParent/User Interface/View/SendMoneyParentViewController.swift

14
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() {

Loading…
Cancel
Save