From f31dd27e1a069dfd5a703d068589fe23f69ce4a9 Mon Sep 17 00:00:00 2001 From: Hwee-Boon Yar Date: Wed, 9 May 2018 22:14:01 +0800 Subject: [PATCH 1/2] Rename issuer to "Shankai" --- Trust/Localization/en.lproj/Localizable.strings | 2 +- Trust/Localization/es.lproj/Localizable.strings | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Trust/Localization/en.lproj/Localizable.strings b/Trust/Localization/en.lproj/Localizable.strings index 395716f15..bee37f574 100644 --- a/Trust/Localization/en.lproj/Localizable.strings +++ b/Trust/Localization/en.lproj/Localizable.strings @@ -268,7 +268,7 @@ "Balance" = "Balance"; "confirmSignMessage" = "Confirm signing this message:"; "blockchain.ethereum" = "Ethereum Blockchain"; -"ticket.issuer" = "Shengkai"; +"ticket.issuer" = "Shankai"; "touch.id" = "Touch ID"; "face.id" = "Face ID"; "undefined.error" = "Undefined error"; diff --git a/Trust/Localization/es.lproj/Localizable.strings b/Trust/Localization/es.lproj/Localizable.strings index 9fe576067..c4552d8dd 100644 --- a/Trust/Localization/es.lproj/Localizable.strings +++ b/Trust/Localization/es.lproj/Localizable.strings @@ -268,7 +268,7 @@ "Balance" = "Balance"; "confirmSignMessage" = "Confirm signing this message:"; "blockchain.ethereum" = "Ethereum Blockchain"; -"ticket.issuer" = "Shengkai"; +"ticket.issuer" = "Shankai"; "touch.id" = "Touch ID"; "face.id" = "Face ID"; "undefined.error" = "Undefined error"; From 80ae8ae34f9cddcca404934380930f60d1f5d6cb Mon Sep 17 00:00:00 2001 From: Hwee-Boon Yar Date: Wed, 9 May 2018 22:20:51 +0800 Subject: [PATCH 2/2] Fix: label "Issuer: " appears twice --- Trust/Tokens/Views/TicketsViewControllerHeader.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Trust/Tokens/Views/TicketsViewControllerHeader.swift b/Trust/Tokens/Views/TicketsViewControllerHeader.swift index c07bb08b4..75f538ddc 100644 --- a/Trust/Tokens/Views/TicketsViewControllerHeader.swift +++ b/Trust/Tokens/Views/TicketsViewControllerHeader.swift @@ -63,7 +63,7 @@ class TicketsViewControllerHeader: UIView { if issuer.isEmpty { issuerLabel.text = "" } else { - issuerLabel.text = "\(R.string.localizable.aWalletContentsIssuerTitle()): \(issuer)" + issuerLabel.text = issuer } separator.textColor = viewModel.subtitleColor