diff --git a/GMERemittance/Module/ResendExchange/User Interface/View/ResendExchangeViewController.swift b/GMERemittance/Module/ResendExchange/User Interface/View/ResendExchangeViewController.swift index 30b68bda..917bc0ab 100644 --- a/GMERemittance/Module/ResendExchange/User Interface/View/ResendExchangeViewController.swift +++ b/GMERemittance/Module/ResendExchange/User Interface/View/ResendExchangeViewController.swift @@ -158,6 +158,13 @@ class ResendExchangeViewController: UIViewController { initialSetup() setupTargets() setupView() + configureLanguage() + } + + private func configureLanguage() { + self.recipientGetsTitleLabel.text = "recepient_gets_text".localized() + self.youSendTitleLabel.text = "you_send_text".localized() + } @@ -181,7 +188,7 @@ class ResendExchangeViewController: UIViewController { wireframe.openVerification(reciepient: reciepient, model: sendmoneyModel, source: navigation) } } - + func convertReciepient(model: ResendReceiver) -> Recipient { var reciepient = Recipient() reciepient.firstName = model.rFullName diff --git a/GMERemittance/Module/SendMoney/SendMoneyVerification/User Interface/View/SendMoneyVerificationViewController.swift b/GMERemittance/Module/SendMoney/SendMoneyVerification/User Interface/View/SendMoneyVerificationViewController.swift index aa567364..58c3e643 100644 --- a/GMERemittance/Module/SendMoney/SendMoneyVerification/User Interface/View/SendMoneyVerificationViewController.swift +++ b/GMERemittance/Module/SendMoney/SendMoneyVerification/User Interface/View/SendMoneyVerificationViewController.swift @@ -110,7 +110,7 @@ class SendMoneyVerificationViewController: UITableViewController { override func viewWillAppear(_ animated: Bool) { super.viewWillAppear(animated) - self.navigationItem.title = "Resend" + self.navigationItem.title = "resend_text".localized() populateRecieversInformations() populateTransactionDetails() mQwertyTransKeyView?.delegate = self