From fa0c536aa7039e8b7448907aab533d636c885bc0 Mon Sep 17 00:00:00 2001 From: Kylmakalle Date: Sun, 3 Nov 2019 18:32:08 +0300 Subject: [PATCH] Replaced hardcoded string with Localizable --- submodules/WalletUI/Sources/WalletTransactionInfoScreen.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/submodules/WalletUI/Sources/WalletTransactionInfoScreen.swift b/submodules/WalletUI/Sources/WalletTransactionInfoScreen.swift index 661463aa..63905454 100644 --- a/submodules/WalletUI/Sources/WalletTransactionInfoScreen.swift +++ b/submodules/WalletUI/Sources/WalletTransactionInfoScreen.swift @@ -428,13 +428,13 @@ private final class WalletTransactionInfoScreenNode: ViewControllerTracingNode, var feesString: String = "" if case let .completed(transaction) = walletTransaction { if transaction.otherFee != 0 { - feesString.append(formatBalanceText(transaction.otherFee, decimalSeparator: presentationData.dateTimeFormat.decimalSeparator) + " transaction fee") + feesString.append(formatBalanceText(transaction.otherFee, decimalSeparator: presentationData.dateTimeFormat.decimalSeparator) + " \(presentationData.strings.Wallet_TransactionInfo_OtherFeeHeader.lowercased())") } if transaction.storageFee != 0 { if !feesString.isEmpty { feesString.append("\n") } - feesString.append(formatBalanceText(transaction.storageFee, decimalSeparator: presentationData.dateTimeFormat.decimalSeparator) + " storage fee") + feesString.append(formatBalanceText(transaction.storageFee, decimalSeparator: presentationData.dateTimeFormat.decimalSeparator) + " \(presentationData.strings.Wallet_TransactionInfo_StorageFeeHeader.lowercased())") } self.feesInfoIconNode.isHidden = feesString.isEmpty