diff --git a/DashWallet.xcodeproj/project.pbxproj b/DashWallet.xcodeproj/project.pbxproj index c2baf09ac..bfbbaa68e 100644 --- a/DashWallet.xcodeproj/project.pbxproj +++ b/DashWallet.xcodeproj/project.pbxproj @@ -34,7 +34,6 @@ 110C679A29227948006B580C /* UINavigationController+CrowdNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 110C679929227948006B580C /* UINavigationController+CrowdNode.swift */; }; 110D1781298BA9AF005BEB30 /* WKWebView+CrowdNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 110D1780298BA9AF005BEB30 /* WKWebView+CrowdNode.swift */; }; 110D1784298E68A8005BEB30 /* OnlineAccountInfoController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 110D1783298E68A8005BEB30 /* OnlineAccountInfoController.swift */; }; - 111B8C00299BD973004A4129 /* WithdrawalConfirmationController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 111B8BFF299BD973004A4129 /* WithdrawalConfirmationController.swift */; }; 111C3C4C296C51B500788E18 /* WithdrawalLimitsController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 111C3C4B296C51B500788E18 /* WithdrawalLimitsController.swift */; }; 111C3C4E296C52F800788E18 /* WithdrawalLimit.swift in Sources */ = {isa = PBXBuildFile; fileRef = 111C3C4D296C52F800788E18 /* WithdrawalLimit.swift */; }; 111C3C50296D5A4700788E18 /* TxWithinTimePeriod.swift in Sources */ = {isa = PBXBuildFile; fileRef = 111C3C4F296D5A4700788E18 /* TxWithinTimePeriod.swift */; }; @@ -1586,7 +1585,6 @@ 110C679929227948006B580C /* UINavigationController+CrowdNode.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UINavigationController+CrowdNode.swift"; sourceTree = ""; }; 110D1780298BA9AF005BEB30 /* WKWebView+CrowdNode.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "WKWebView+CrowdNode.swift"; sourceTree = ""; }; 110D1783298E68A8005BEB30 /* OnlineAccountInfoController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OnlineAccountInfoController.swift; sourceTree = ""; }; - 111B8BFF299BD973004A4129 /* WithdrawalConfirmationController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WithdrawalConfirmationController.swift; sourceTree = ""; }; 111C3C4B296C51B500788E18 /* WithdrawalLimitsController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WithdrawalLimitsController.swift; sourceTree = ""; }; 111C3C4D296C52F800788E18 /* WithdrawalLimit.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WithdrawalLimit.swift; sourceTree = ""; }; 111C3C4F296D5A4700788E18 /* TxWithinTimePeriod.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TxWithinTimePeriod.swift; sourceTree = ""; }; @@ -3208,7 +3206,6 @@ 1147687D294B789800FB1EEE /* CrowdNodePortalViewController.swift */, 111C3C4B296C51B500788E18 /* WithdrawalLimitsController.swift */, 11ED906A29681773003784F9 /* StakingInfoDialogController.swift */, - 111B8BFF299BD973004A4129 /* WithdrawalConfirmationController.swift */, ); path = Portal; sourceTree = ""; @@ -8447,7 +8444,7 @@ 47AE8C1128C5430300490F5E /* PointOfUseInfoViewController.swift in Sources */, 47C661B428FDCF7800028A8D /* ActionButtonViewController.swift in Sources */, 4774DCE528F4668B008CF87D /* PortalServiceItemCell.swift in Sources */, - 111B8C00299BD973004A4129 /* WithdrawalConfirmationController.swift in Sources */, + 2A7AF35624824F97001D74F9 /* DWDPImageStatusCell.m in Sources */, 2A7A7BC92347E0D700451078 /* DWBaseFormTableViewCell.m in Sources */, 4751CAC7296FAEBB00F63AC4 /* AccountCell.swift in Sources */, 2A913EA823A79AD2006A2A59 /* DWTransactionListDataProviderStub.m in Sources */, diff --git a/DashWallet/Sources/Models/CrowdNode/API/CrowdNodeEndpoint.swift b/DashWallet/Sources/Models/CrowdNode/API/CrowdNodeEndpoint.swift index fc1ce5012..6eb001742 100644 --- a/DashWallet/Sources/Models/CrowdNode/API/CrowdNodeEndpoint.swift +++ b/DashWallet/Sources/Models/CrowdNode/API/CrowdNodeEndpoint.swift @@ -17,6 +17,10 @@ import Moya +public enum MessageType: Int { + case registerEmail = 1 + case withdrawal = 4 +} // MARK: - CrowdNodeEndpoint @@ -27,7 +31,7 @@ public enum CrowdNodeEndpoint { case isAddressInUse(String) case addressStatus(String) case hasDefaultEmail(String) - case sendSignedMessage(address: String, message: String, signature: String) + case sendSignedMessage(address: String, message: String, signature: String, messagetype: MessageType) case getMessages(String) } @@ -47,8 +51,7 @@ extension CrowdNodeEndpoint: TargetType { case .isAddressInUse(let address): return "odata/apiaddresses/IsApiAddressInUse(address='\(address)')" case .addressStatus(let address): return "odata/apiaddresses/AddressStatus(address='\(address)')" case .hasDefaultEmail(let address): return "odata/apiaddresses/UsingDefaultApiEmail(address='\(address)')" - case .sendSignedMessage(let address, let message, - let signature): return "odata/apimessages/SendMessage(address='\(address)',message='\(message)',signature='\(signature)',messagetype=1)" + case .sendSignedMessage(let address, let message, let signature, let messagetype): return "odata/apimessages/SendMessage(address='\(address)',message='\(message)',signature='\(signature)',messagetype=\(messagetype.rawValue))" case .getMessages(let address): return "odata/apimessages/GetMessages(address='\(address)')" } } diff --git a/DashWallet/Sources/Models/CrowdNode/CrowdNode.swift b/DashWallet/Sources/Models/CrowdNode/CrowdNode.swift index 8a3e1172e..d17f2c8d5 100644 --- a/DashWallet/Sources/Models/CrowdNode/CrowdNode.swift +++ b/DashWallet/Sources/Models/CrowdNode/CrowdNode.swift @@ -418,41 +418,25 @@ extension CrowdNode { } } - func withdraw(amount: UInt64) async throws { + func withdraw(amount: UInt64, signature: String) async throws { guard !accountAddress.isEmpty else { return } guard amount <= balance else { return } try checkWithdrawalLimits(amount) - let requestPermil = calculateWithdrawalPermil(forAmount: amount) - let requestValue = CrowdNode.apiOffset + UInt64(requestPermil) - let requiredTopUp = requestValue + TX_FEE_PER_INPUT - let account = DWEnvironment.sharedInstance().currentAccount - let finalTopUp = min(account.maxOutputAmount, requiredTopUp) - - let topUpTx = try await topUpAccount(accountAddress, finalTopUp) - DSLogger.log("CrowdNode withdraw topup tx hash: \(topUpTx.txHashHexString)") - - let withdrawTx = try await sendCoinsService.sendCoins(address: CrowdNode.crowdNodeAddress, - amount: requestValue, - inputSelector: SingleInputAddressSelector(candidates: [topUpTx], - address: accountAddress)) - DSLogger.log("CrowdNode withdraw tx hash: \(withdrawTx.txHashHexString)") - - Task { - let receivedWithdrawalTx = CrowdNodeWithdrawalReceivedTx() - let errorResponse = CrowdNodeErrorResponse(errorValue: requestValue, - accountAddress: accountAddress) - let withdrawalDeniedResponse = CrowdNodeResponse(responseCode: ApiCode.withdrawalDenied, - accountAddress: accountAddress) - - let responseTx = await txObserver.first(filters: errorResponse, withdrawalDeniedResponse, receivedWithdrawalTx) - DSLogger.log("CrowdNode withdraw response tx hash: \(responseTx.txHashHexString)") + DSLogger.log("CrowdNode: request withdrawal") + let result = try await webService.requestWithdrawal(address: accountAddress, amount: amount, signature: signature) - if errorResponse.matches(tx: responseTx) || withdrawalDeniedResponse.matches(tx: responseTx) { - handleError(error: CrowdNode.Error.withdraw) + if result.messageStatus.lowercased() == kMessageReceivedStatus { + DSLogger.log("CrowdNode: withdrawal request sent successfully") + refreshBalance(afterWithdrawal: true) + } else { + DSLogger.log("CrowdNode: sendMessage not received, status: \(String(describing: result.messageStatus)). Result: \(String(describing: result.result))") + + if let msg = result.result { + handleError(error: CrowdNode.Error.messageStatus(error: msg)) } else { - refreshBalance(afterWithdrawal: true) + handleError(error: CrowdNode.Error.withdraw) } } } @@ -644,7 +628,7 @@ extension CrowdNode { guard !accountAddress.isEmpty else { return } DSLogger.log("CrowdNode: sending signed email message") - let result = try await webService.sendSignedMessage(address: accountAddress, message: email, signature: signature) + let result = try await webService.registerEmail(address: accountAddress, email: email, signature: signature) if result.messageStatus.lowercased() == kMessageReceivedStatus { DSLogger.log("CrowdNode: signed email sent successfully") diff --git a/DashWallet/Sources/Models/CrowdNode/Services/CrowdNodeWebService.swift b/DashWallet/Sources/Models/CrowdNode/Services/CrowdNodeWebService.swift index f2b6be567..d837d476e 100644 --- a/DashWallet/Sources/Models/CrowdNode/Services/CrowdNodeWebService.swift +++ b/DashWallet/Sources/Models/CrowdNode/Services/CrowdNodeWebService.swift @@ -67,9 +67,14 @@ extension CrowdNodeService { } } - func sendSignedMessage(address: String, message: String, signature: String) async throws -> MessageStatus { + func registerEmail(address: String, email: String, signature: String) async throws -> MessageStatus { let encodedSignature = signature.addingPercentEncoding(withAllowedCharacters: .urlHostAllowed) - return try await httpClient.request(.sendSignedMessage(address: address, message: message, signature: encodedSignature!)) + return try await httpClient.request(.sendSignedMessage(address: address, message: email, signature: encodedSignature!, messagetype: MessageType.registerEmail)) + } + + func requestWithdrawal(address: String, amount: UInt64, signature: String) async throws -> MessageStatus { + let encodedSignature = signature.addingPercentEncoding(withAllowedCharacters: .urlHostAllowed) + return try await httpClient.request(.sendSignedMessage(address: address, message: amount.value, signature: encodedSignature!, messagetype: MessageType.withdrawal)) } func isDefaultEmail(address: String) async -> Bool { diff --git a/DashWallet/Sources/UI/CrowdNode/CrowdNodeModel.swift b/DashWallet/Sources/UI/CrowdNode/CrowdNodeModel.swift index d8641e1f7..0c0a50e8c 100644 --- a/DashWallet/Sources/UI/CrowdNode/CrowdNodeModel.swift +++ b/DashWallet/Sources/UI/CrowdNode/CrowdNodeModel.swift @@ -284,8 +284,19 @@ extension CrowdNodeModel { func withdraw(amount: UInt64) async throws -> Bool { guard amount > 0 && walletBalance >= CrowdNode.minimumLeftoverBalance else { return false } - try await crowdNode.withdraw(amount: amount) - return true + + let wallet = DWEnvironment.sharedInstance().currentWallet + let result = await wallet.seed(withPrompt: NSLocalizedString("Sign the message", comment: "CrowdNode"), forAmount: 1) + + if !result.1 { + if let key = wallet.privateKey(forAddress: crowdNode.accountAddress, fromSeed: result.0!) { + let signature = DSKeyManager.signMesasageDigest(key, digest: amount.value.magicDigest()) + try await crowdNode.withdraw(amount: amount, signature: signature.base64EncodedString()) + return true + } + } + + return false } func adjustedWithdrawalAmount(requestedAmount: UInt64) -> UInt64 { diff --git a/DashWallet/Sources/UI/CrowdNode/Portal/CrowdNodeTransferViewController.swift b/DashWallet/Sources/UI/CrowdNode/Portal/CrowdNodeTransferViewController.swift index 584c5562a..771155ae7 100644 --- a/DashWallet/Sources/UI/CrowdNode/Portal/CrowdNodeTransferViewController.swift +++ b/DashWallet/Sources/UI/CrowdNode/Portal/CrowdNodeTransferViewController.swift @@ -128,27 +128,21 @@ final class CrowdNodeTransferController: SendAmountViewController, NetworkReacha } private func handleWithdraw(amount: UInt64) { - let vc = WithdrawalConfirmationController.controller(amount: amount, currency: model.localCurrencyCode) - vc.confirmedHandler = { [weak self] in - guard let wSelf = self else { return } - - Task { - wSelf.showActivityIndicator() - - do { - if try await wSelf.viewModel.withdraw(amount: amount) { - wSelf.showSuccessfulStatus() - } - } catch CrowdNode.Error.withdrawLimit(_, let period) { - wSelf.showWithdrawalLimitsError(period: period) - } catch { - wSelf.showErrorStatus(err: error) + showActivityIndicator() + + Task { + do { + if try await viewModel.withdraw(amount: amount) { + showSuccessfulStatus() } - - wSelf.hideActivityIndicator() + } catch CrowdNode.Error.withdrawLimit(_, let period) { + showWithdrawalLimitsError(period: period) + } catch { + showErrorStatus(err: error) } + + hideActivityIndicator() } - present(vc, animated: true, completion: nil) } deinit { diff --git a/DashWallet/Sources/UI/CrowdNode/Portal/WithdrawalConfirmationController.swift b/DashWallet/Sources/UI/CrowdNode/Portal/WithdrawalConfirmationController.swift deleted file mode 100644 index 113dbf7af..000000000 --- a/DashWallet/Sources/UI/CrowdNode/Portal/WithdrawalConfirmationController.swift +++ /dev/null @@ -1,222 +0,0 @@ -// -// Created by Andrei Ashikhmin -// Copyright © 2023 Dash Core Group. All rights reserved. -// -// Licensed under the MIT License (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// https://opensource.org/licenses/MIT -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// - -import Combine - -// MARK: - WithdrawalConfirmationController - -final class WithdrawalConfirmationController: UIViewController { - private var cancellableBag = Set() - private let viewModel = CrowdNodeModel.shared - - @IBOutlet var balanceView: BalanceView! - @IBOutlet var adjustedTopLabel: UILabel! - @IBOutlet var adjustedBottomLabel: UILabel! - @IBOutlet var titleLabel: UILabel! - - private static let smallSheetHeight: CGFloat = 230 - private static let fitSheetHeight: CGFloat = 310 - - @IBOutlet var moreInfoView: UIView! - @IBOutlet var moreInfoButton: UIButton! - @IBOutlet var moreInfoFirstRow: UILabel! - @IBOutlet var moreInfoSecondRow: UILabel! - @IBOutlet var moreInfoThirdRow: UILabel! - @IBOutlet var showMoreHeightConstraint: NSLayoutConstraint! - @IBOutlet var cancelButton: UIButton! - @IBOutlet var confirmButton: UIButton! - - private var requestedAmount: UInt64! - private var currencyCode: String! - private var adjustedAmount: UInt64! - - var confirmedHandler: (() -> ())? - - static func controller(amount: UInt64, currency: String) -> WithdrawalConfirmationController { - let vc = vc(WithdrawalConfirmationController.self, from: sb("CrowdNode")) - vc.modalPresentationStyle = .pageSheet - vc.requestedAmount = amount - vc.currencyCode = currency - - if #available(iOS 16.0, *) { - setSheetHeight(vc) - } - - return vc - } - - @available(iOS 16.0, *) - static func setSheetHeight(_ vc: WithdrawalConfirmationController) { - if let sheet = vc.sheetPresentationController { - vc.adjustedAmount = CrowdNodeModel.shared.adjustedWithdrawalAmount(requestedAmount: vc.requestedAmount) - let collapsedDetent: UISheetPresentationController.Detent - - if vc.adjustedAmount == vc.requestedAmount { - // If the adjusted amount the same as requested, - // we hide the additional info and only show confirm/cancel buttons - let smallId = UISheetPresentationController.Detent.Identifier("small") - collapsedDetent = UISheetPresentationController.Detent.custom(identifier: smallId) { _ in - smallSheetHeight - } - } else { - let fitId = UISheetPresentationController.Detent.Identifier("fit") - collapsedDetent = UISheetPresentationController.Detent.custom(identifier: fitId) { _ in - fitSheetHeight - } - } - - sheet.detents = [collapsedDetent] - } - } - - override func viewDidLoad() { - super.viewDidLoad() - configureHierarchy() - configureObservers() - } - - @IBAction - func onCancel() { - dismiss(animated: true) - } - - @IBAction - func onContinue() { - confirmedHandler?() - dismiss(animated: true) - } - - @IBAction - func onShowMore() { - expandMoreInfoView() - } -} - -extension WithdrawalConfirmationController { - private func expandMoreInfoView() { - let textHeight = calculateMoreInfoTextHeight() - let sheetHeight = WithdrawalConfirmationController.fitSheetHeight + textHeight - 20 - moreInfoView.alpha = 0 - - UIView.animate(withDuration: 0.3, delay: 0, options: .curveLinear) { - if #available(iOS 16.0, *) { - self.expandSheet(height: sheetHeight) - } - - self.moreInfoView.alpha = 1 - self.moreInfoButton.isHidden = true - self.showMoreHeightConstraint.constant = textHeight - self.view.layoutIfNeeded() - } - } - - private func calculateMoreInfoTextHeight() -> CGFloat { - moreInfoFirstRow.frame.height + moreInfoSecondRow.frame.height + - moreInfoThirdRow.frame.height + 15 - } - - @available(iOS 16.0, *) - private func adjustCollapsedSheet() { - if let sheet = sheetPresentationController { - sheet.animateChanges { - WithdrawalConfirmationController.setSheetHeight(self) - } - } - } - - @available(iOS 16.0, *) - private func expandSheet(height: CGFloat) { - if let sheet = sheetPresentationController { - let expandedId = UISheetPresentationController.Detent.Identifier("expanded") - let expandedDetent = UISheetPresentationController.Detent.custom(identifier: expandedId) { _ in - height - } - sheet.detents = [expandedDetent] - sheet.animateChanges { - sheet.selectedDetentIdentifier = expandedId - } - } - } - - private func configureHierarchy() { - titleLabel.text = NSLocalizedString("Confirm Withdrawal", comment: "CrowdNode") - moreInfoButton.setTitle(NSLocalizedString("See why it happened", comment: "CrowdNode"), for: .normal) - adjustedTopLabel.text = NSLocalizedString("The withdrawal amount has been adjusted by", comment: "CrowdNode") - confirmButton.setTitle(NSLocalizedString("Confirm", comment: ""), for: .normal) - cancelButton.setTitle(NSLocalizedString("Cancel", comment: ""), for: .normal) - moreInfoFirstRow.text = NSLocalizedString("Why does the entered amount differ from what I see on this screen?", comment: "CrowdNode") - moreInfoSecondRow.text = NSLocalizedString("The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain.", comment: "CrowdNode") - moreInfoThirdRow.text = NSLocalizedString("The amount that you entered will be adjusted to the closest level of precision that is possible.", comment: "CrowdNode") - - adjustedAmount = viewModel.adjustedWithdrawalAmount(requestedAmount: requestedAmount) - balanceView.dataSource = self - - let didAdjust = adjustedAmount != requestedAmount - moreInfoButton.isHidden = !didAdjust - adjustedTopLabel.isHidden = !didAdjust - adjustedBottomLabel.isHidden = !didAdjust - - if didAdjust { - let difference = UInt64(abs(Int64(requestedAmount) - Int64(adjustedAmount))) - var adjustedText = difference.formattedDashAmount - - if let fiatAmount = try? CurrencyExchanger.shared.convertDash(amount: difference.dashAmount, to: currencyCode) { - let fiat = NumberFormatter.fiatFormatter(currencyCode: currencyCode).string(from: fiatAmount as NSNumber)! - - if !fiat.isEmpty { - adjustedText += " ~ \(fiat)" - } - } - - adjustedBottomLabel.text = adjustedText - } - } - - private func configureObservers() { - viewModel.$crowdNodeBalance - .receive(on: DispatchQueue.main) - .removeDuplicates() - .sink(receiveValue: { [weak self] _ in - self?.configureHierarchy() - - if #available(iOS 16.0, *) { - self?.adjustCollapsedSheet() - } - }) - .store(in: &cancellableBag) - } -} - -// MARK: BalanceViewDataSource - -extension WithdrawalConfirmationController: BalanceViewDataSource { - var mainAmountString: String { - adjustedAmount.formattedDashAmount - } - - var supplementaryAmountString: String { - let fiat: String - - if let fiatAmount = try? CurrencyExchanger.shared.convertDash(amount: adjustedAmount.dashAmount, to: currencyCode) { - fiat = NumberFormatter.fiatFormatter(currencyCode: currencyCode).string(from: fiatAmount as NSNumber)! - } else { - fiat = NSLocalizedString("Syncing…", comment: "Balance") - } - - return fiat - } -} diff --git a/DashWallet/ar.lproj/Localizable.strings b/DashWallet/ar.lproj/Localizable.strings index d39ac37c2..c467d8df2 100644 --- a/DashWallet/ar.lproj/Localizable.strings +++ b/DashWallet/ar.lproj/Localizable.strings @@ -350,9 +350,6 @@ /* No comment provided by engineer. */ "Confirm PIN" = "تأكيد الرقم السري"; -/* CrowdNode */ -"Confirm Withdrawal" = "Confirm Withdrawal"; - /* No comment provided by engineer. */ "Confirming" = "يتم التأكيد"; @@ -1463,9 +1460,6 @@ /* No comment provided by engineer. */ "See on Uphold" = "مشاهدة في أفلود"; -/* CrowdNode */ -"See why it happened" = "See why it happened"; - /* Coinbase */ "Select a coin" = "اختر عملة "; @@ -1659,12 +1653,6 @@ /* No comment provided by engineer. */ "Tax Category" = "فئة الضريبة"; -/* CrowdNode */ -"The amount that you entered will be adjusted to the closest level of precision that is possible." = "The amount that you entered will be adjusted to the closest level of precision that is possible."; - -/* CrowdNode */ -"The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain." = "The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain."; - /* No comment provided by engineer. */ "The chain is syncing…" = "السلسلة قيد المزامنة ..."; @@ -1680,9 +1668,6 @@ /* Coinbase */ "The minimum amount you can send is %@" = "The minimum amount you can send is %@"; -/* CrowdNode */ -"The withdrawal amount has been adjusted by" = "The withdrawal amount has been adjusted by"; - /* No comment provided by engineer. */ "There are no new notifications" = "There are no new notifications"; @@ -1946,9 +1931,6 @@ /* CrowdNode */ "Why do you need an online account?" = "لماذا تحتاج إلى حساب على الإنترنت؟"; -/* CrowdNode */ -"Why does the entered amount differ from what I see on this screen?" = "Why does the entered amount differ from what I see on this screen?"; - /* No comment provided by engineer. */ "Why I should not take a screenshot?" = "لماذا لا يجب علي التقاط لقطة شاشة؟"; diff --git a/DashWallet/bg.lproj/Localizable.strings b/DashWallet/bg.lproj/Localizable.strings index c014cbadd..d522de856 100644 --- a/DashWallet/bg.lproj/Localizable.strings +++ b/DashWallet/bg.lproj/Localizable.strings @@ -350,9 +350,6 @@ /* No comment provided by engineer. */ "Confirm PIN" = "Потвърди ПИН"; -/* CrowdNode */ -"Confirm Withdrawal" = "Confirm Withdrawal"; - /* No comment provided by engineer. */ "Confirming" = "Потвърждаване"; @@ -1463,9 +1460,6 @@ /* No comment provided by engineer. */ "See on Uphold" = "Виж Uphold"; -/* CrowdNode */ -"See why it happened" = "See why it happened"; - /* Coinbase */ "Select a coin" = "Select a coin"; @@ -1659,12 +1653,6 @@ /* No comment provided by engineer. */ "Tax Category" = "Tax Category"; -/* CrowdNode */ -"The amount that you entered will be adjusted to the closest level of precision that is possible." = "The amount that you entered will be adjusted to the closest level of precision that is possible."; - -/* CrowdNode */ -"The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain." = "The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain."; - /* No comment provided by engineer. */ "The chain is syncing…" = "The chain is syncing…"; @@ -1680,9 +1668,6 @@ /* Coinbase */ "The minimum amount you can send is %@" = "The minimum amount you can send is %@"; -/* CrowdNode */ -"The withdrawal amount has been adjusted by" = "The withdrawal amount has been adjusted by"; - /* No comment provided by engineer. */ "There are no new notifications" = "There are no new notifications"; @@ -1946,9 +1931,6 @@ /* CrowdNode */ "Why do you need an online account?" = "Why do you need an online account?"; -/* CrowdNode */ -"Why does the entered amount differ from what I see on this screen?" = "Why does the entered amount differ from what I see on this screen?"; - /* No comment provided by engineer. */ "Why I should not take a screenshot?" = "Why I should not take a screenshot?"; diff --git a/DashWallet/ca.lproj/Localizable.strings b/DashWallet/ca.lproj/Localizable.strings index b28d80a43..245a29d97 100644 --- a/DashWallet/ca.lproj/Localizable.strings +++ b/DashWallet/ca.lproj/Localizable.strings @@ -350,9 +350,6 @@ /* No comment provided by engineer. */ "Confirm PIN" = "Confirm PIN"; -/* CrowdNode */ -"Confirm Withdrawal" = "Confirm Withdrawal"; - /* No comment provided by engineer. */ "Confirming" = "Confirming"; @@ -1463,9 +1460,6 @@ /* No comment provided by engineer. */ "See on Uphold" = "See on Uphold"; -/* CrowdNode */ -"See why it happened" = "See why it happened"; - /* Coinbase */ "Select a coin" = "Select a coin"; @@ -1659,12 +1653,6 @@ /* No comment provided by engineer. */ "Tax Category" = "Tax Category"; -/* CrowdNode */ -"The amount that you entered will be adjusted to the closest level of precision that is possible." = "The amount that you entered will be adjusted to the closest level of precision that is possible."; - -/* CrowdNode */ -"The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain." = "The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain."; - /* No comment provided by engineer. */ "The chain is syncing…" = "The chain is syncing…"; @@ -1680,9 +1668,6 @@ /* Coinbase */ "The minimum amount you can send is %@" = "The minimum amount you can send is %@"; -/* CrowdNode */ -"The withdrawal amount has been adjusted by" = "The withdrawal amount has been adjusted by"; - /* No comment provided by engineer. */ "There are no new notifications" = "There are no new notifications"; @@ -1946,9 +1931,6 @@ /* CrowdNode */ "Why do you need an online account?" = "Why do you need an online account?"; -/* CrowdNode */ -"Why does the entered amount differ from what I see on this screen?" = "Why does the entered amount differ from what I see on this screen?"; - /* No comment provided by engineer. */ "Why I should not take a screenshot?" = "Why I should not take a screenshot?"; diff --git a/DashWallet/cs.lproj/Localizable.strings b/DashWallet/cs.lproj/Localizable.strings index 5b2d1e326..6a96bd1f1 100644 --- a/DashWallet/cs.lproj/Localizable.strings +++ b/DashWallet/cs.lproj/Localizable.strings @@ -350,9 +350,6 @@ /* No comment provided by engineer. */ "Confirm PIN" = "Potvrdit PIN"; -/* CrowdNode */ -"Confirm Withdrawal" = "Confirm Withdrawal"; - /* No comment provided by engineer. */ "Confirming" = "Konfirmace"; @@ -1463,9 +1460,6 @@ /* No comment provided by engineer. */ "See on Uphold" = "Prohlédnout na Uphold"; -/* CrowdNode */ -"See why it happened" = "See why it happened"; - /* Coinbase */ "Select a coin" = "Select a coin"; @@ -1659,12 +1653,6 @@ /* No comment provided by engineer. */ "Tax Category" = "Tax Category"; -/* CrowdNode */ -"The amount that you entered will be adjusted to the closest level of precision that is possible." = "The amount that you entered will be adjusted to the closest level of precision that is possible."; - -/* CrowdNode */ -"The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain." = "The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain."; - /* No comment provided by engineer. */ "The chain is syncing…" = "The chain is syncing…"; @@ -1680,9 +1668,6 @@ /* Coinbase */ "The minimum amount you can send is %@" = "The minimum amount you can send is %@"; -/* CrowdNode */ -"The withdrawal amount has been adjusted by" = "The withdrawal amount has been adjusted by"; - /* No comment provided by engineer. */ "There are no new notifications" = "Žádná nová oznámení"; @@ -1946,9 +1931,6 @@ /* CrowdNode */ "Why do you need an online account?" = "Why do you need an online account?"; -/* CrowdNode */ -"Why does the entered amount differ from what I see on this screen?" = "Why does the entered amount differ from what I see on this screen?"; - /* No comment provided by engineer. */ "Why I should not take a screenshot?" = "Proč bych neměl pořizovat snímek obrazovky?"; diff --git a/DashWallet/da.lproj/Localizable.strings b/DashWallet/da.lproj/Localizable.strings index 0d7abb396..b74cf1926 100644 --- a/DashWallet/da.lproj/Localizable.strings +++ b/DashWallet/da.lproj/Localizable.strings @@ -350,9 +350,6 @@ /* No comment provided by engineer. */ "Confirm PIN" = "Confirm PIN"; -/* CrowdNode */ -"Confirm Withdrawal" = "Confirm Withdrawal"; - /* No comment provided by engineer. */ "Confirming" = "Confirming"; @@ -1463,9 +1460,6 @@ /* No comment provided by engineer. */ "See on Uphold" = "See on Uphold"; -/* CrowdNode */ -"See why it happened" = "See why it happened"; - /* Coinbase */ "Select a coin" = "Select a coin"; @@ -1659,12 +1653,6 @@ /* No comment provided by engineer. */ "Tax Category" = "Tax Category"; -/* CrowdNode */ -"The amount that you entered will be adjusted to the closest level of precision that is possible." = "The amount that you entered will be adjusted to the closest level of precision that is possible."; - -/* CrowdNode */ -"The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain." = "The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain."; - /* No comment provided by engineer. */ "The chain is syncing…" = "The chain is syncing…"; @@ -1680,9 +1668,6 @@ /* Coinbase */ "The minimum amount you can send is %@" = "The minimum amount you can send is %@"; -/* CrowdNode */ -"The withdrawal amount has been adjusted by" = "The withdrawal amount has been adjusted by"; - /* No comment provided by engineer. */ "There are no new notifications" = "There are no new notifications"; @@ -1946,9 +1931,6 @@ /* CrowdNode */ "Why do you need an online account?" = "Why do you need an online account?"; -/* CrowdNode */ -"Why does the entered amount differ from what I see on this screen?" = "Why does the entered amount differ from what I see on this screen?"; - /* No comment provided by engineer. */ "Why I should not take a screenshot?" = "Why I should not take a screenshot?"; diff --git a/DashWallet/de.lproj/Localizable.strings b/DashWallet/de.lproj/Localizable.strings index e34878657..4371820d4 100644 --- a/DashWallet/de.lproj/Localizable.strings +++ b/DashWallet/de.lproj/Localizable.strings @@ -350,9 +350,6 @@ /* No comment provided by engineer. */ "Confirm PIN" = "PIN bestätigen"; -/* CrowdNode */ -"Confirm Withdrawal" = "Confirm Withdrawal"; - /* No comment provided by engineer. */ "Confirming" = "Bestätige"; @@ -1463,9 +1460,6 @@ /* No comment provided by engineer. */ "See on Uphold" = "Auf Uphold ansehen"; -/* CrowdNode */ -"See why it happened" = "See why it happened"; - /* Coinbase */ "Select a coin" = "Wähle einen Coin aus"; @@ -1659,12 +1653,6 @@ /* No comment provided by engineer. */ "Tax Category" = "Steuerliche Kategorie"; -/* CrowdNode */ -"The amount that you entered will be adjusted to the closest level of precision that is possible." = "The amount that you entered will be adjusted to the closest level of precision that is possible."; - -/* CrowdNode */ -"The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain." = "The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain."; - /* No comment provided by engineer. */ "The chain is syncing…" = "Die Chain synchronisiert..."; @@ -1680,9 +1668,6 @@ /* Coinbase */ "The minimum amount you can send is %@" = "Der Mindestbetrag für eine Transaktion ist %@."; -/* CrowdNode */ -"The withdrawal amount has been adjusted by" = "The withdrawal amount has been adjusted by"; - /* No comment provided by engineer. */ "There are no new notifications" = "Es gibt keine neuen Benachrichtigungen"; @@ -1946,9 +1931,6 @@ /* CrowdNode */ "Why do you need an online account?" = "Warum benötigst du ein online Konto?"; -/* CrowdNode */ -"Why does the entered amount differ from what I see on this screen?" = "Why does the entered amount differ from what I see on this screen?"; - /* No comment provided by engineer. */ "Why I should not take a screenshot?" = "Warum sollte ich keinen Screenshot machen?"; diff --git a/DashWallet/el.lproj/Localizable.strings b/DashWallet/el.lproj/Localizable.strings index 231cd9798..3d1106b83 100644 --- a/DashWallet/el.lproj/Localizable.strings +++ b/DashWallet/el.lproj/Localizable.strings @@ -350,9 +350,6 @@ /* No comment provided by engineer. */ "Confirm PIN" = "Επιβεβαίωση PIN"; -/* CrowdNode */ -"Confirm Withdrawal" = "Confirm Withdrawal"; - /* No comment provided by engineer. */ "Confirming" = "Επιβεβαίωση"; @@ -1463,9 +1460,6 @@ /* No comment provided by engineer. */ "See on Uphold" = "Δείτε στο Uphold"; -/* CrowdNode */ -"See why it happened" = "See why it happened"; - /* Coinbase */ "Select a coin" = "Επιλέξτε ένα νόμισμα"; @@ -1659,12 +1653,6 @@ /* No comment provided by engineer. */ "Tax Category" = "Φορολογική κατηγορία"; -/* CrowdNode */ -"The amount that you entered will be adjusted to the closest level of precision that is possible." = "The amount that you entered will be adjusted to the closest level of precision that is possible."; - -/* CrowdNode */ -"The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain." = "The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain."; - /* No comment provided by engineer. */ "The chain is syncing…" = "Το blockchain συγχρονίζεται..."; @@ -1680,9 +1668,6 @@ /* Coinbase */ "The minimum amount you can send is %@" = "Το ελάχιστο ποσό που μπορείτε να στείλετε είναι %@"; -/* CrowdNode */ -"The withdrawal amount has been adjusted by" = "The withdrawal amount has been adjusted by"; - /* No comment provided by engineer. */ "There are no new notifications" = "Δεν υπάρχουν νέες ειδοποιήσεις"; @@ -1946,9 +1931,6 @@ /* CrowdNode */ "Why do you need an online account?" = "Γιατί χρειάζεστε online λογαριασμό;"; -/* CrowdNode */ -"Why does the entered amount differ from what I see on this screen?" = "Why does the entered amount differ from what I see on this screen?"; - /* No comment provided by engineer. */ "Why I should not take a screenshot?" = "Γιατί δεν πρέπει να τραβήξω στιγμιότυπο οθόνης;"; diff --git a/DashWallet/en.lproj/Localizable.strings b/DashWallet/en.lproj/Localizable.strings index 7dc6f6b0a..54be98217 100644 --- a/DashWallet/en.lproj/Localizable.strings +++ b/DashWallet/en.lproj/Localizable.strings @@ -350,9 +350,6 @@ /* No comment provided by engineer. */ "Confirm PIN" = "Confirm PIN"; -/* CrowdNode */ -"Confirm Withdrawal" = "Confirm Withdrawal"; - /* No comment provided by engineer. */ "Confirming" = "Confirming"; @@ -1463,9 +1460,6 @@ /* No comment provided by engineer. */ "See on Uphold" = "See on Uphold"; -/* CrowdNode */ -"See why it happened" = "See why it happened"; - /* Coinbase */ "Select a coin" = "Select a coin"; @@ -1659,12 +1653,6 @@ /* No comment provided by engineer. */ "Tax Category" = "Tax Category"; -/* CrowdNode */ -"The amount that you entered will be adjusted to the closest level of precision that is possible." = "The amount that you entered will be adjusted to the closest level of precision that is possible."; - -/* CrowdNode */ -"The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain." = "The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain."; - /* No comment provided by engineer. */ "The chain is syncing…" = "The chain is syncing…"; @@ -1680,9 +1668,6 @@ /* Coinbase */ "The minimum amount you can send is %@" = "The minimum amount you can send is %@"; -/* CrowdNode */ -"The withdrawal amount has been adjusted by" = "The withdrawal amount has been adjusted by"; - /* No comment provided by engineer. */ "There are no new notifications" = "There are no new notifications"; @@ -1946,9 +1931,6 @@ /* CrowdNode */ "Why do you need an online account?" = "Why do you need an online account?"; -/* CrowdNode */ -"Why does the entered amount differ from what I see on this screen?" = "Why does the entered amount differ from what I see on this screen?"; - /* No comment provided by engineer. */ "Why I should not take a screenshot?" = "Why I should not take a screenshot?"; diff --git a/DashWallet/eo.lproj/Localizable.strings b/DashWallet/eo.lproj/Localizable.strings index 746512b79..2d2c8a499 100644 --- a/DashWallet/eo.lproj/Localizable.strings +++ b/DashWallet/eo.lproj/Localizable.strings @@ -350,9 +350,6 @@ /* No comment provided by engineer. */ "Confirm PIN" = "Confirm PIN"; -/* CrowdNode */ -"Confirm Withdrawal" = "Confirm Withdrawal"; - /* No comment provided by engineer. */ "Confirming" = "Confirming"; @@ -1463,9 +1460,6 @@ /* No comment provided by engineer. */ "See on Uphold" = "See on Uphold"; -/* CrowdNode */ -"See why it happened" = "See why it happened"; - /* Coinbase */ "Select a coin" = "Select a coin"; @@ -1659,12 +1653,6 @@ /* No comment provided by engineer. */ "Tax Category" = "Tax Category"; -/* CrowdNode */ -"The amount that you entered will be adjusted to the closest level of precision that is possible." = "The amount that you entered will be adjusted to the closest level of precision that is possible."; - -/* CrowdNode */ -"The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain." = "The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain."; - /* No comment provided by engineer. */ "The chain is syncing…" = "The chain is syncing…"; @@ -1680,9 +1668,6 @@ /* Coinbase */ "The minimum amount you can send is %@" = "The minimum amount you can send is %@"; -/* CrowdNode */ -"The withdrawal amount has been adjusted by" = "The withdrawal amount has been adjusted by"; - /* No comment provided by engineer. */ "There are no new notifications" = "There are no new notifications"; @@ -1946,9 +1931,6 @@ /* CrowdNode */ "Why do you need an online account?" = "Why do you need an online account?"; -/* CrowdNode */ -"Why does the entered amount differ from what I see on this screen?" = "Why does the entered amount differ from what I see on this screen?"; - /* No comment provided by engineer. */ "Why I should not take a screenshot?" = "Why I should not take a screenshot?"; diff --git a/DashWallet/es.lproj/Localizable.strings b/DashWallet/es.lproj/Localizable.strings index aafbe5032..d5165554c 100644 --- a/DashWallet/es.lproj/Localizable.strings +++ b/DashWallet/es.lproj/Localizable.strings @@ -350,9 +350,6 @@ /* No comment provided by engineer. */ "Confirm PIN" = "Confirmar PIN"; -/* CrowdNode */ -"Confirm Withdrawal" = "Confirm Withdrawal"; - /* No comment provided by engineer. */ "Confirming" = "Confirmando"; @@ -1463,9 +1460,6 @@ /* No comment provided by engineer. */ "See on Uphold" = "Ver en Uphold"; -/* CrowdNode */ -"See why it happened" = "See why it happened"; - /* Coinbase */ "Select a coin" = "Selecciona una moneda"; @@ -1659,12 +1653,6 @@ /* No comment provided by engineer. */ "Tax Category" = "Categoría de impuestos"; -/* CrowdNode */ -"The amount that you entered will be adjusted to the closest level of precision that is possible." = "The amount that you entered will be adjusted to the closest level of precision that is possible."; - -/* CrowdNode */ -"The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain." = "The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain."; - /* No comment provided by engineer. */ "The chain is syncing…" = "La cadena esta sincronizando..."; @@ -1680,9 +1668,6 @@ /* Coinbase */ "The minimum amount you can send is %@" = "El monto mínimo que puedes enviar es %@"; -/* CrowdNode */ -"The withdrawal amount has been adjusted by" = "The withdrawal amount has been adjusted by"; - /* No comment provided by engineer. */ "There are no new notifications" = "No hay notificaciones nuevas"; @@ -1946,9 +1931,6 @@ /* CrowdNode */ "Why do you need an online account?" = "¿Por qué necesitas una cuenta en línea?"; -/* CrowdNode */ -"Why does the entered amount differ from what I see on this screen?" = "Why does the entered amount differ from what I see on this screen?"; - /* No comment provided by engineer. */ "Why I should not take a screenshot?" = "¿Por que no debo tomar una captura de pantalla?"; diff --git a/DashWallet/et.lproj/Localizable.strings b/DashWallet/et.lproj/Localizable.strings index 237336715..62951a41a 100644 --- a/DashWallet/et.lproj/Localizable.strings +++ b/DashWallet/et.lproj/Localizable.strings @@ -350,9 +350,6 @@ /* No comment provided by engineer. */ "Confirm PIN" = "Confirm PIN"; -/* CrowdNode */ -"Confirm Withdrawal" = "Confirm Withdrawal"; - /* No comment provided by engineer. */ "Confirming" = "Confirming"; @@ -1463,9 +1460,6 @@ /* No comment provided by engineer. */ "See on Uphold" = "See on Uphold"; -/* CrowdNode */ -"See why it happened" = "See why it happened"; - /* Coinbase */ "Select a coin" = "Select a coin"; @@ -1659,12 +1653,6 @@ /* No comment provided by engineer. */ "Tax Category" = "Tax Category"; -/* CrowdNode */ -"The amount that you entered will be adjusted to the closest level of precision that is possible." = "The amount that you entered will be adjusted to the closest level of precision that is possible."; - -/* CrowdNode */ -"The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain." = "The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain."; - /* No comment provided by engineer. */ "The chain is syncing…" = "The chain is syncing…"; @@ -1680,9 +1668,6 @@ /* Coinbase */ "The minimum amount you can send is %@" = "The minimum amount you can send is %@"; -/* CrowdNode */ -"The withdrawal amount has been adjusted by" = "The withdrawal amount has been adjusted by"; - /* No comment provided by engineer. */ "There are no new notifications" = "There are no new notifications"; @@ -1946,9 +1931,6 @@ /* CrowdNode */ "Why do you need an online account?" = "Why do you need an online account?"; -/* CrowdNode */ -"Why does the entered amount differ from what I see on this screen?" = "Why does the entered amount differ from what I see on this screen?"; - /* No comment provided by engineer. */ "Why I should not take a screenshot?" = "Why I should not take a screenshot?"; diff --git a/DashWallet/fa.lproj/Localizable.strings b/DashWallet/fa.lproj/Localizable.strings index 7061730e5..e18ae924f 100644 --- a/DashWallet/fa.lproj/Localizable.strings +++ b/DashWallet/fa.lproj/Localizable.strings @@ -350,9 +350,6 @@ /* No comment provided by engineer. */ "Confirm PIN" = "پین کد را تائید کنید"; -/* CrowdNode */ -"Confirm Withdrawal" = "Confirm Withdrawal"; - /* No comment provided by engineer. */ "Confirming" = "در حال تائید"; @@ -1463,9 +1460,6 @@ /* No comment provided by engineer. */ "See on Uphold" = "مشاهده در آپهلد"; -/* CrowdNode */ -"See why it happened" = "See why it happened"; - /* Coinbase */ "Select a coin" = "یک رمزارز را انتخاب کنید"; @@ -1659,12 +1653,6 @@ /* No comment provided by engineer. */ "Tax Category" = "دسته‌بندی مالیاتی"; -/* CrowdNode */ -"The amount that you entered will be adjusted to the closest level of precision that is possible." = "The amount that you entered will be adjusted to the closest level of precision that is possible."; - -/* CrowdNode */ -"The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain." = "The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain."; - /* No comment provided by engineer. */ "The chain is syncing…" = "بلاکچین در حال به‌روزرسانی..."; @@ -1680,9 +1668,6 @@ /* Coinbase */ "The minimum amount you can send is %@" = "The minimum amount you can send is %@"; -/* CrowdNode */ -"The withdrawal amount has been adjusted by" = "The withdrawal amount has been adjusted by"; - /* No comment provided by engineer. */ "There are no new notifications" = "There are no new notifications"; @@ -1946,9 +1931,6 @@ /* CrowdNode */ "Why do you need an online account?" = "چرا نیاز به یک حساب آنلاین دارید؟ "; -/* CrowdNode */ -"Why does the entered amount differ from what I see on this screen?" = "Why does the entered amount differ from what I see on this screen?"; - /* No comment provided by engineer. */ "Why I should not take a screenshot?" = "چرا نباید اسکرین‌شات بگیریم؟ "; diff --git a/DashWallet/fi.lproj/Localizable.strings b/DashWallet/fi.lproj/Localizable.strings index f92a8418e..9e47acde1 100644 --- a/DashWallet/fi.lproj/Localizable.strings +++ b/DashWallet/fi.lproj/Localizable.strings @@ -350,9 +350,6 @@ /* No comment provided by engineer. */ "Confirm PIN" = "Confirm PIN"; -/* CrowdNode */ -"Confirm Withdrawal" = "Confirm Withdrawal"; - /* No comment provided by engineer. */ "Confirming" = "Confirming"; @@ -1463,9 +1460,6 @@ /* No comment provided by engineer. */ "See on Uphold" = "See on Uphold"; -/* CrowdNode */ -"See why it happened" = "See why it happened"; - /* Coinbase */ "Select a coin" = "Select a coin"; @@ -1659,12 +1653,6 @@ /* No comment provided by engineer. */ "Tax Category" = "Tax Category"; -/* CrowdNode */ -"The amount that you entered will be adjusted to the closest level of precision that is possible." = "The amount that you entered will be adjusted to the closest level of precision that is possible."; - -/* CrowdNode */ -"The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain." = "The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain."; - /* No comment provided by engineer. */ "The chain is syncing…" = "The chain is syncing…"; @@ -1680,9 +1668,6 @@ /* Coinbase */ "The minimum amount you can send is %@" = "The minimum amount you can send is %@"; -/* CrowdNode */ -"The withdrawal amount has been adjusted by" = "The withdrawal amount has been adjusted by"; - /* No comment provided by engineer. */ "There are no new notifications" = "There are no new notifications"; @@ -1946,9 +1931,6 @@ /* CrowdNode */ "Why do you need an online account?" = "Why do you need an online account?"; -/* CrowdNode */ -"Why does the entered amount differ from what I see on this screen?" = "Why does the entered amount differ from what I see on this screen?"; - /* No comment provided by engineer. */ "Why I should not take a screenshot?" = "Why I should not take a screenshot?"; diff --git a/DashWallet/fil.lproj/Localizable.strings b/DashWallet/fil.lproj/Localizable.strings index 020c536f5..d919ba0c8 100644 --- a/DashWallet/fil.lproj/Localizable.strings +++ b/DashWallet/fil.lproj/Localizable.strings @@ -350,9 +350,6 @@ /* No comment provided by engineer. */ "Confirm PIN" = "Kumpirmahin ang PIN"; -/* CrowdNode */ -"Confirm Withdrawal" = "Confirm Withdrawal"; - /* No comment provided by engineer. */ "Confirming" = "Kinukumpirma"; @@ -1463,9 +1460,6 @@ /* No comment provided by engineer. */ "See on Uphold" = "Tingnan sa Uphold"; -/* CrowdNode */ -"See why it happened" = "See why it happened"; - /* Coinbase */ "Select a coin" = "Pumili ng barya"; @@ -1659,12 +1653,6 @@ /* No comment provided by engineer. */ "Tax Category" = "Kategorya ng Buwis"; -/* CrowdNode */ -"The amount that you entered will be adjusted to the closest level of precision that is possible." = "The amount that you entered will be adjusted to the closest level of precision that is possible."; - -/* CrowdNode */ -"The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain." = "The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain."; - /* No comment provided by engineer. */ "The chain is syncing…" = "Nagsi-sync ang chain…"; @@ -1680,9 +1668,6 @@ /* Coinbase */ "The minimum amount you can send is %@" = "Ang pinakamababang halaga na maaari mong ipadala ay %@"; -/* CrowdNode */ -"The withdrawal amount has been adjusted by" = "The withdrawal amount has been adjusted by"; - /* No comment provided by engineer. */ "There are no new notifications" = "Walang mga bagong notipikasyon"; @@ -1946,9 +1931,6 @@ /* CrowdNode */ "Why do you need an online account?" = "Bakit kailangan mo ng online na account?"; -/* CrowdNode */ -"Why does the entered amount differ from what I see on this screen?" = "Why does the entered amount differ from what I see on this screen?"; - /* No comment provided by engineer. */ "Why I should not take a screenshot?" = "Bakit hindi ako dapat kumuha ng screenshot?"; diff --git a/DashWallet/fr.lproj/Localizable.strings b/DashWallet/fr.lproj/Localizable.strings index 3270fa8d7..b9f1cc12f 100644 --- a/DashWallet/fr.lproj/Localizable.strings +++ b/DashWallet/fr.lproj/Localizable.strings @@ -350,9 +350,6 @@ /* No comment provided by engineer. */ "Confirm PIN" = "Confirmer le code PIN"; -/* CrowdNode */ -"Confirm Withdrawal" = "Confirm Withdrawal"; - /* No comment provided by engineer. */ "Confirming" = "Confirmation…"; @@ -1463,9 +1460,6 @@ /* No comment provided by engineer. */ "See on Uphold" = "Voir sur Uphold"; -/* CrowdNode */ -"See why it happened" = "See why it happened"; - /* Coinbase */ "Select a coin" = "Choisir des pièces"; @@ -1659,12 +1653,6 @@ /* No comment provided by engineer. */ "Tax Category" = "Catégorie de taxe"; -/* CrowdNode */ -"The amount that you entered will be adjusted to the closest level of precision that is possible." = "The amount that you entered will be adjusted to the closest level of precision that is possible."; - -/* CrowdNode */ -"The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain." = "The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain."; - /* No comment provided by engineer. */ "The chain is syncing…" = "Synchronisation de la chaîne..."; @@ -1680,9 +1668,6 @@ /* Coinbase */ "The minimum amount you can send is %@" = "Le montant minimal que vous pouvez envoyer est %@"; -/* CrowdNode */ -"The withdrawal amount has been adjusted by" = "The withdrawal amount has been adjusted by"; - /* No comment provided by engineer. */ "There are no new notifications" = "Aucune nouvelle notification"; @@ -1946,9 +1931,6 @@ /* CrowdNode */ "Why do you need an online account?" = "Pourquoi avez-vous besoin d'un compte en ligne ?"; -/* CrowdNode */ -"Why does the entered amount differ from what I see on this screen?" = "Why does the entered amount differ from what I see on this screen?"; - /* No comment provided by engineer. */ "Why I should not take a screenshot?" = "Pourquoi ne dois-je pas prendre de capture d'écran ?"; diff --git a/DashWallet/hr.lproj/Localizable.strings b/DashWallet/hr.lproj/Localizable.strings index e3d80c2c7..5049f42cc 100644 --- a/DashWallet/hr.lproj/Localizable.strings +++ b/DashWallet/hr.lproj/Localizable.strings @@ -350,9 +350,6 @@ /* No comment provided by engineer. */ "Confirm PIN" = "Confirm PIN"; -/* CrowdNode */ -"Confirm Withdrawal" = "Confirm Withdrawal"; - /* No comment provided by engineer. */ "Confirming" = "Confirming"; @@ -1463,9 +1460,6 @@ /* No comment provided by engineer. */ "See on Uphold" = "See on Uphold"; -/* CrowdNode */ -"See why it happened" = "See why it happened"; - /* Coinbase */ "Select a coin" = "Select a coin"; @@ -1659,12 +1653,6 @@ /* No comment provided by engineer. */ "Tax Category" = "Tax Category"; -/* CrowdNode */ -"The amount that you entered will be adjusted to the closest level of precision that is possible." = "The amount that you entered will be adjusted to the closest level of precision that is possible."; - -/* CrowdNode */ -"The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain." = "The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain."; - /* No comment provided by engineer. */ "The chain is syncing…" = "The chain is syncing…"; @@ -1680,9 +1668,6 @@ /* Coinbase */ "The minimum amount you can send is %@" = "The minimum amount you can send is %@"; -/* CrowdNode */ -"The withdrawal amount has been adjusted by" = "The withdrawal amount has been adjusted by"; - /* No comment provided by engineer. */ "There are no new notifications" = "There are no new notifications"; @@ -1946,9 +1931,6 @@ /* CrowdNode */ "Why do you need an online account?" = "Why do you need an online account?"; -/* CrowdNode */ -"Why does the entered amount differ from what I see on this screen?" = "Why does the entered amount differ from what I see on this screen?"; - /* No comment provided by engineer. */ "Why I should not take a screenshot?" = "Why I should not take a screenshot?"; diff --git a/DashWallet/hu.lproj/Localizable.strings b/DashWallet/hu.lproj/Localizable.strings index b0de51e0c..6f9e305c4 100644 --- a/DashWallet/hu.lproj/Localizable.strings +++ b/DashWallet/hu.lproj/Localizable.strings @@ -350,9 +350,6 @@ /* No comment provided by engineer. */ "Confirm PIN" = "Confirm PIN"; -/* CrowdNode */ -"Confirm Withdrawal" = "Confirm Withdrawal"; - /* No comment provided by engineer. */ "Confirming" = "Confirming"; @@ -1463,9 +1460,6 @@ /* No comment provided by engineer. */ "See on Uphold" = "Megtekintés Uphold-on"; -/* CrowdNode */ -"See why it happened" = "See why it happened"; - /* Coinbase */ "Select a coin" = "Select a coin"; @@ -1659,12 +1653,6 @@ /* No comment provided by engineer. */ "Tax Category" = "Tax Category"; -/* CrowdNode */ -"The amount that you entered will be adjusted to the closest level of precision that is possible." = "The amount that you entered will be adjusted to the closest level of precision that is possible."; - -/* CrowdNode */ -"The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain." = "The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain."; - /* No comment provided by engineer. */ "The chain is syncing…" = "The chain is syncing…"; @@ -1680,9 +1668,6 @@ /* Coinbase */ "The minimum amount you can send is %@" = "The minimum amount you can send is %@"; -/* CrowdNode */ -"The withdrawal amount has been adjusted by" = "The withdrawal amount has been adjusted by"; - /* No comment provided by engineer. */ "There are no new notifications" = "There are no new notifications"; @@ -1946,9 +1931,6 @@ /* CrowdNode */ "Why do you need an online account?" = "Why do you need an online account?"; -/* CrowdNode */ -"Why does the entered amount differ from what I see on this screen?" = "Why does the entered amount differ from what I see on this screen?"; - /* No comment provided by engineer. */ "Why I should not take a screenshot?" = "Why I should not take a screenshot?"; diff --git a/DashWallet/id.lproj/Localizable.strings b/DashWallet/id.lproj/Localizable.strings index e7be21eb8..be1c9c9e5 100644 --- a/DashWallet/id.lproj/Localizable.strings +++ b/DashWallet/id.lproj/Localizable.strings @@ -350,9 +350,6 @@ /* No comment provided by engineer. */ "Confirm PIN" = "Pastikan PIN"; -/* CrowdNode */ -"Confirm Withdrawal" = "Confirm Withdrawal"; - /* No comment provided by engineer. */ "Confirming" = "Mengkonfirmasikan"; @@ -1463,9 +1460,6 @@ /* No comment provided by engineer. */ "See on Uphold" = "Lihat di Uphold"; -/* CrowdNode */ -"See why it happened" = "See why it happened"; - /* Coinbase */ "Select a coin" = "Pilih koin"; @@ -1659,12 +1653,6 @@ /* No comment provided by engineer. */ "Tax Category" = "Kategori Pajak"; -/* CrowdNode */ -"The amount that you entered will be adjusted to the closest level of precision that is possible." = "The amount that you entered will be adjusted to the closest level of precision that is possible."; - -/* CrowdNode */ -"The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain." = "The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain."; - /* No comment provided by engineer. */ "The chain is syncing…" = "Rantai sedang menyinkronkan…"; @@ -1680,9 +1668,6 @@ /* Coinbase */ "The minimum amount you can send is %@" = "Jumlah minimum yang dapat Anda kirim adalah %@"; -/* CrowdNode */ -"The withdrawal amount has been adjusted by" = "The withdrawal amount has been adjusted by"; - /* No comment provided by engineer. */ "There are no new notifications" = "Tidak ada pemberitahuan baru"; @@ -1946,9 +1931,6 @@ /* CrowdNode */ "Why do you need an online account?" = "Mengapa Anda membutuhkan akun online?"; -/* CrowdNode */ -"Why does the entered amount differ from what I see on this screen?" = "Why does the entered amount differ from what I see on this screen?"; - /* No comment provided by engineer. */ "Why I should not take a screenshot?" = "Mengapa saya harus tidak mengambil tangkapan layar?"; diff --git a/DashWallet/it.lproj/Localizable.strings b/DashWallet/it.lproj/Localizable.strings index 29ff9a0bf..63e453d2d 100644 --- a/DashWallet/it.lproj/Localizable.strings +++ b/DashWallet/it.lproj/Localizable.strings @@ -350,9 +350,6 @@ /* No comment provided by engineer. */ "Confirm PIN" = "Conferma PIN"; -/* CrowdNode */ -"Confirm Withdrawal" = "Confirm Withdrawal"; - /* No comment provided by engineer. */ "Confirming" = "In Conferma"; @@ -1463,9 +1460,6 @@ /* No comment provided by engineer. */ "See on Uphold" = "Vedi su Uphold"; -/* CrowdNode */ -"See why it happened" = "See why it happened"; - /* Coinbase */ "Select a coin" = "Seleziona una coin"; @@ -1659,12 +1653,6 @@ /* No comment provided by engineer. */ "Tax Category" = "Categoria fiscale"; -/* CrowdNode */ -"The amount that you entered will be adjusted to the closest level of precision that is possible." = "The amount that you entered will be adjusted to the closest level of precision that is possible."; - -/* CrowdNode */ -"The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain." = "The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain."; - /* No comment provided by engineer. */ "The chain is syncing…" = "La catena si sta sincronizzando..."; @@ -1680,9 +1668,6 @@ /* Coinbase */ "The minimum amount you can send is %@" = "L'importo minimo che puoi inviare è%@"; -/* CrowdNode */ -"The withdrawal amount has been adjusted by" = "The withdrawal amount has been adjusted by"; - /* No comment provided by engineer. */ "There are no new notifications" = "Non ci sono nuove notifiche"; @@ -1946,9 +1931,6 @@ /* CrowdNode */ "Why do you need an online account?" = "Perché hai bisogno di un account online?"; -/* CrowdNode */ -"Why does the entered amount differ from what I see on this screen?" = "Why does the entered amount differ from what I see on this screen?"; - /* No comment provided by engineer. */ "Why I should not take a screenshot?" = "Perché non devo scattare screenshot?"; diff --git a/DashWallet/ja.lproj/Localizable.strings b/DashWallet/ja.lproj/Localizable.strings index 8326f3924..fcfbb78cb 100644 --- a/DashWallet/ja.lproj/Localizable.strings +++ b/DashWallet/ja.lproj/Localizable.strings @@ -350,9 +350,6 @@ /* No comment provided by engineer. */ "Confirm PIN" = "PINを確認する"; -/* CrowdNode */ -"Confirm Withdrawal" = "Confirm Withdrawal"; - /* No comment provided by engineer. */ "Confirming" = "確認中"; @@ -1463,9 +1460,6 @@ /* No comment provided by engineer. */ "See on Uphold" = "Upholdで確認する"; -/* CrowdNode */ -"See why it happened" = "See why it happened"; - /* Coinbase */ "Select a coin" = "通貨を選ぶ"; @@ -1659,12 +1653,6 @@ /* No comment provided by engineer. */ "Tax Category" = "税金の区分"; -/* CrowdNode */ -"The amount that you entered will be adjusted to the closest level of precision that is possible." = "The amount that you entered will be adjusted to the closest level of precision that is possible."; - -/* CrowdNode */ -"The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain." = "The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain."; - /* No comment provided by engineer. */ "The chain is syncing…" = "チェーンを同期中"; @@ -1680,9 +1668,6 @@ /* Coinbase */ "The minimum amount you can send is %@" = "送金可能な最小金額は、%@です"; -/* CrowdNode */ -"The withdrawal amount has been adjusted by" = "The withdrawal amount has been adjusted by"; - /* No comment provided by engineer. */ "There are no new notifications" = "新しい通知はありません。"; @@ -1946,9 +1931,6 @@ /* CrowdNode */ "Why do you need an online account?" = "なぜオンラインアカウントが必要なのですか。"; -/* CrowdNode */ -"Why does the entered amount differ from what I see on this screen?" = "Why does the entered amount differ from what I see on this screen?"; - /* No comment provided by engineer. */ "Why I should not take a screenshot?" = "なぜスクリーンショットを撮ってはいけませんか。"; diff --git a/DashWallet/ko.lproj/Localizable.strings b/DashWallet/ko.lproj/Localizable.strings index f8c65d2af..e928234b1 100644 --- a/DashWallet/ko.lproj/Localizable.strings +++ b/DashWallet/ko.lproj/Localizable.strings @@ -350,9 +350,6 @@ /* No comment provided by engineer. */ "Confirm PIN" = "PIN 확인"; -/* CrowdNode */ -"Confirm Withdrawal" = "Confirm Withdrawal"; - /* No comment provided by engineer. */ "Confirming" = "확인 중"; @@ -1463,9 +1460,6 @@ /* No comment provided by engineer. */ "See on Uphold" = "업홀드에서 확인"; -/* CrowdNode */ -"See why it happened" = "See why it happened"; - /* Coinbase */ "Select a coin" = "코인 선택"; @@ -1659,12 +1653,6 @@ /* No comment provided by engineer. */ "Tax Category" = "세금 카테고리"; -/* CrowdNode */ -"The amount that you entered will be adjusted to the closest level of precision that is possible." = "The amount that you entered will be adjusted to the closest level of precision that is possible."; - -/* CrowdNode */ -"The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain." = "The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain."; - /* No comment provided by engineer. */ "The chain is syncing…" = "체인 동기화 중..."; @@ -1680,9 +1668,6 @@ /* Coinbase */ "The minimum amount you can send is %@" = "송금 가능한 최소 금액은 %@ 입니다"; -/* CrowdNode */ -"The withdrawal amount has been adjusted by" = "The withdrawal amount has been adjusted by"; - /* No comment provided by engineer. */ "There are no new notifications" = "새로운 알림이 없습니다"; @@ -1946,9 +1931,6 @@ /* CrowdNode */ "Why do you need an online account?" = "왜 온라인 계정이 필요한가요?"; -/* CrowdNode */ -"Why does the entered amount differ from what I see on this screen?" = "Why does the entered amount differ from what I see on this screen?"; - /* No comment provided by engineer. */ "Why I should not take a screenshot?" = "왜 스크린샷을 찍으면 안되나요?"; diff --git a/DashWallet/mk.lproj/Localizable.strings b/DashWallet/mk.lproj/Localizable.strings index 01afcd44f..4723ab976 100644 --- a/DashWallet/mk.lproj/Localizable.strings +++ b/DashWallet/mk.lproj/Localizable.strings @@ -350,9 +350,6 @@ /* No comment provided by engineer. */ "Confirm PIN" = "Confirm PIN"; -/* CrowdNode */ -"Confirm Withdrawal" = "Confirm Withdrawal"; - /* No comment provided by engineer. */ "Confirming" = "Confirming"; @@ -1463,9 +1460,6 @@ /* No comment provided by engineer. */ "See on Uphold" = "See on Uphold"; -/* CrowdNode */ -"See why it happened" = "See why it happened"; - /* Coinbase */ "Select a coin" = "Select a coin"; @@ -1659,12 +1653,6 @@ /* No comment provided by engineer. */ "Tax Category" = "Tax Category"; -/* CrowdNode */ -"The amount that you entered will be adjusted to the closest level of precision that is possible." = "The amount that you entered will be adjusted to the closest level of precision that is possible."; - -/* CrowdNode */ -"The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain." = "The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain."; - /* No comment provided by engineer. */ "The chain is syncing…" = "The chain is syncing…"; @@ -1680,9 +1668,6 @@ /* Coinbase */ "The minimum amount you can send is %@" = "The minimum amount you can send is %@"; -/* CrowdNode */ -"The withdrawal amount has been adjusted by" = "The withdrawal amount has been adjusted by"; - /* No comment provided by engineer. */ "There are no new notifications" = "There are no new notifications"; @@ -1946,9 +1931,6 @@ /* CrowdNode */ "Why do you need an online account?" = "Why do you need an online account?"; -/* CrowdNode */ -"Why does the entered amount differ from what I see on this screen?" = "Why does the entered amount differ from what I see on this screen?"; - /* No comment provided by engineer. */ "Why I should not take a screenshot?" = "Why I should not take a screenshot?"; diff --git a/DashWallet/ms.lproj/Localizable.strings b/DashWallet/ms.lproj/Localizable.strings index c4217dfd8..065a1f2bc 100644 --- a/DashWallet/ms.lproj/Localizable.strings +++ b/DashWallet/ms.lproj/Localizable.strings @@ -350,9 +350,6 @@ /* No comment provided by engineer. */ "Confirm PIN" = "Confirm PIN"; -/* CrowdNode */ -"Confirm Withdrawal" = "Confirm Withdrawal"; - /* No comment provided by engineer. */ "Confirming" = "Confirming"; @@ -1463,9 +1460,6 @@ /* No comment provided by engineer. */ "See on Uphold" = "See on Uphold"; -/* CrowdNode */ -"See why it happened" = "See why it happened"; - /* Coinbase */ "Select a coin" = "Select a coin"; @@ -1659,12 +1653,6 @@ /* No comment provided by engineer. */ "Tax Category" = "Tax Category"; -/* CrowdNode */ -"The amount that you entered will be adjusted to the closest level of precision that is possible." = "The amount that you entered will be adjusted to the closest level of precision that is possible."; - -/* CrowdNode */ -"The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain." = "The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain."; - /* No comment provided by engineer. */ "The chain is syncing…" = "The chain is syncing…"; @@ -1680,9 +1668,6 @@ /* Coinbase */ "The minimum amount you can send is %@" = "The minimum amount you can send is %@"; -/* CrowdNode */ -"The withdrawal amount has been adjusted by" = "The withdrawal amount has been adjusted by"; - /* No comment provided by engineer. */ "There are no new notifications" = "There are no new notifications"; @@ -1946,9 +1931,6 @@ /* CrowdNode */ "Why do you need an online account?" = "Why do you need an online account?"; -/* CrowdNode */ -"Why does the entered amount differ from what I see on this screen?" = "Why does the entered amount differ from what I see on this screen?"; - /* No comment provided by engineer. */ "Why I should not take a screenshot?" = "Why I should not take a screenshot?"; diff --git a/DashWallet/nb.lproj/Localizable.strings b/DashWallet/nb.lproj/Localizable.strings index c4a0baa0a..73f3a74b2 100644 --- a/DashWallet/nb.lproj/Localizable.strings +++ b/DashWallet/nb.lproj/Localizable.strings @@ -350,9 +350,6 @@ /* No comment provided by engineer. */ "Confirm PIN" = "Confirm PIN"; -/* CrowdNode */ -"Confirm Withdrawal" = "Confirm Withdrawal"; - /* No comment provided by engineer. */ "Confirming" = "Confirming"; @@ -1463,9 +1460,6 @@ /* No comment provided by engineer. */ "See on Uphold" = "See on Uphold"; -/* CrowdNode */ -"See why it happened" = "See why it happened"; - /* Coinbase */ "Select a coin" = "Select a coin"; @@ -1659,12 +1653,6 @@ /* No comment provided by engineer. */ "Tax Category" = "Tax Category"; -/* CrowdNode */ -"The amount that you entered will be adjusted to the closest level of precision that is possible." = "The amount that you entered will be adjusted to the closest level of precision that is possible."; - -/* CrowdNode */ -"The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain." = "The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain."; - /* No comment provided by engineer. */ "The chain is syncing…" = "The chain is syncing…"; @@ -1680,9 +1668,6 @@ /* Coinbase */ "The minimum amount you can send is %@" = "The minimum amount you can send is %@"; -/* CrowdNode */ -"The withdrawal amount has been adjusted by" = "The withdrawal amount has been adjusted by"; - /* No comment provided by engineer. */ "There are no new notifications" = "There are no new notifications"; @@ -1946,9 +1931,6 @@ /* CrowdNode */ "Why do you need an online account?" = "Why do you need an online account?"; -/* CrowdNode */ -"Why does the entered amount differ from what I see on this screen?" = "Why does the entered amount differ from what I see on this screen?"; - /* No comment provided by engineer. */ "Why I should not take a screenshot?" = "Why I should not take a screenshot?"; diff --git a/DashWallet/nl.lproj/Localizable.strings b/DashWallet/nl.lproj/Localizable.strings index d3127985a..09916b286 100644 --- a/DashWallet/nl.lproj/Localizable.strings +++ b/DashWallet/nl.lproj/Localizable.strings @@ -350,9 +350,6 @@ /* No comment provided by engineer. */ "Confirm PIN" = "Bevestig pin"; -/* CrowdNode */ -"Confirm Withdrawal" = "Confirm Withdrawal"; - /* No comment provided by engineer. */ "Confirming" = "Aan het bevestigen"; @@ -1463,9 +1460,6 @@ /* No comment provided by engineer. */ "See on Uphold" = "Bekijk op Uphold"; -/* CrowdNode */ -"See why it happened" = "See why it happened"; - /* Coinbase */ "Select a coin" = "Selecteer een munt"; @@ -1659,12 +1653,6 @@ /* No comment provided by engineer. */ "Tax Category" = "Belastingcategorie"; -/* CrowdNode */ -"The amount that you entered will be adjusted to the closest level of precision that is possible." = "The amount that you entered will be adjusted to the closest level of precision that is possible."; - -/* CrowdNode */ -"The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain." = "The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain."; - /* No comment provided by engineer. */ "The chain is syncing…" = "De blockchain wordt gesynchroniseerd..."; @@ -1680,9 +1668,6 @@ /* Coinbase */ "The minimum amount you can send is %@" = "Het minimumbedrag dat je kan verzenden is %@"; -/* CrowdNode */ -"The withdrawal amount has been adjusted by" = "The withdrawal amount has been adjusted by"; - /* No comment provided by engineer. */ "There are no new notifications" = "Er zijn geen nieuwe meldingen"; @@ -1946,9 +1931,6 @@ /* CrowdNode */ "Why do you need an online account?" = "Waarom heb je een online account nodig?"; -/* CrowdNode */ -"Why does the entered amount differ from what I see on this screen?" = "Why does the entered amount differ from what I see on this screen?"; - /* No comment provided by engineer. */ "Why I should not take a screenshot?" = "Waarom moet ik geen screenshot maken?"; diff --git a/DashWallet/pl.lproj/Localizable.strings b/DashWallet/pl.lproj/Localizable.strings index 4ec156440..38fd78809 100644 --- a/DashWallet/pl.lproj/Localizable.strings +++ b/DashWallet/pl.lproj/Localizable.strings @@ -350,9 +350,6 @@ /* No comment provided by engineer. */ "Confirm PIN" = "Potwierdź kod PIN"; -/* CrowdNode */ -"Confirm Withdrawal" = "Confirm Withdrawal"; - /* No comment provided by engineer. */ "Confirming" = "Potwierdzam"; @@ -1463,9 +1460,6 @@ /* No comment provided by engineer. */ "See on Uphold" = "Sprawdź na Uphold"; -/* CrowdNode */ -"See why it happened" = "See why it happened"; - /* Coinbase */ "Select a coin" = "Wybierz monetę"; @@ -1659,12 +1653,6 @@ /* No comment provided by engineer. */ "Tax Category" = "Kategoria Podatkowa"; -/* CrowdNode */ -"The amount that you entered will be adjusted to the closest level of precision that is possible." = "The amount that you entered will be adjusted to the closest level of precision that is possible."; - -/* CrowdNode */ -"The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain." = "The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain."; - /* No comment provided by engineer. */ "The chain is syncing…" = "Łańcuch synchronizuje się…"; @@ -1680,9 +1668,6 @@ /* Coinbase */ "The minimum amount you can send is %@" = "Minimalna kwota jaką możesz wysłać to %@"; -/* CrowdNode */ -"The withdrawal amount has been adjusted by" = "The withdrawal amount has been adjusted by"; - /* No comment provided by engineer. */ "There are no new notifications" = "Nie ma nowych powiadomień"; @@ -1946,9 +1931,6 @@ /* CrowdNode */ "Why do you need an online account?" = "Dlaczego potrzebujesz konto online?"; -/* CrowdNode */ -"Why does the entered amount differ from what I see on this screen?" = "Why does the entered amount differ from what I see on this screen?"; - /* No comment provided by engineer. */ "Why I should not take a screenshot?" = "Dlaczego mam nie robić zrzutu ekranu?"; diff --git a/DashWallet/pt.lproj/Localizable.strings b/DashWallet/pt.lproj/Localizable.strings index 1cb4fca5e..1c51f3191 100644 --- a/DashWallet/pt.lproj/Localizable.strings +++ b/DashWallet/pt.lproj/Localizable.strings @@ -350,9 +350,6 @@ /* No comment provided by engineer. */ "Confirm PIN" = "Confirmar PIN"; -/* CrowdNode */ -"Confirm Withdrawal" = "Confirm Withdrawal"; - /* No comment provided by engineer. */ "Confirming" = "Confirmando"; @@ -1463,9 +1460,6 @@ /* No comment provided by engineer. */ "See on Uphold" = "Veja no Uphold"; -/* CrowdNode */ -"See why it happened" = "See why it happened"; - /* Coinbase */ "Select a coin" = "Selecionar uma moeda"; @@ -1659,12 +1653,6 @@ /* No comment provided by engineer. */ "Tax Category" = "Categoria fiscal"; -/* CrowdNode */ -"The amount that you entered will be adjusted to the closest level of precision that is possible." = "The amount that you entered will be adjusted to the closest level of precision that is possible."; - -/* CrowdNode */ -"The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain." = "The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain."; - /* No comment provided by engineer. */ "The chain is syncing…" = "A cadeia está sendo sincronizada…"; @@ -1680,9 +1668,6 @@ /* Coinbase */ "The minimum amount you can send is %@" = "A quantidade mínima que você pode enviar é %@"; -/* CrowdNode */ -"The withdrawal amount has been adjusted by" = "The withdrawal amount has been adjusted by"; - /* No comment provided by engineer. */ "There are no new notifications" = "Não há novas notificações"; @@ -1946,9 +1931,6 @@ /* CrowdNode */ "Why do you need an online account?" = "Por que você precisa de uma conta online?"; -/* CrowdNode */ -"Why does the entered amount differ from what I see on this screen?" = "Why does the entered amount differ from what I see on this screen?"; - /* No comment provided by engineer. */ "Why I should not take a screenshot?" = "Por que não devo fazer uma captura de tela?"; diff --git a/DashWallet/ro.lproj/Localizable.strings b/DashWallet/ro.lproj/Localizable.strings index b1cfaea72..52cc60f7f 100644 --- a/DashWallet/ro.lproj/Localizable.strings +++ b/DashWallet/ro.lproj/Localizable.strings @@ -350,9 +350,6 @@ /* No comment provided by engineer. */ "Confirm PIN" = "Confirm PIN"; -/* CrowdNode */ -"Confirm Withdrawal" = "Confirm Withdrawal"; - /* No comment provided by engineer. */ "Confirming" = "Confirming"; @@ -1463,9 +1460,6 @@ /* No comment provided by engineer. */ "See on Uphold" = "Vezi pe Uphold"; -/* CrowdNode */ -"See why it happened" = "See why it happened"; - /* Coinbase */ "Select a coin" = "Select a coin"; @@ -1659,12 +1653,6 @@ /* No comment provided by engineer. */ "Tax Category" = "Tax Category"; -/* CrowdNode */ -"The amount that you entered will be adjusted to the closest level of precision that is possible." = "The amount that you entered will be adjusted to the closest level of precision that is possible."; - -/* CrowdNode */ -"The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain." = "The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain."; - /* No comment provided by engineer. */ "The chain is syncing…" = "The chain is syncing…"; @@ -1680,9 +1668,6 @@ /* Coinbase */ "The minimum amount you can send is %@" = "The minimum amount you can send is %@"; -/* CrowdNode */ -"The withdrawal amount has been adjusted by" = "The withdrawal amount has been adjusted by"; - /* No comment provided by engineer. */ "There are no new notifications" = "There are no new notifications"; @@ -1946,9 +1931,6 @@ /* CrowdNode */ "Why do you need an online account?" = "Why do you need an online account?"; -/* CrowdNode */ -"Why does the entered amount differ from what I see on this screen?" = "Why does the entered amount differ from what I see on this screen?"; - /* No comment provided by engineer. */ "Why I should not take a screenshot?" = "Why I should not take a screenshot?"; diff --git a/DashWallet/ru.lproj/Localizable.strings b/DashWallet/ru.lproj/Localizable.strings index 954dbc784..fa4de330e 100644 --- a/DashWallet/ru.lproj/Localizable.strings +++ b/DashWallet/ru.lproj/Localizable.strings @@ -350,9 +350,6 @@ /* No comment provided by engineer. */ "Confirm PIN" = "Подтвердите PIN"; -/* CrowdNode */ -"Confirm Withdrawal" = "Подтвердите вывод"; - /* No comment provided by engineer. */ "Confirming" = "Подтверждается"; @@ -1463,9 +1460,6 @@ /* No comment provided by engineer. */ "See on Uphold" = "Посмотреть на Uphold"; -/* CrowdNode */ -"See why it happened" = "Почему это произошло?"; - /* Coinbase */ "Select a coin" = "Выбрать монету"; @@ -1659,12 +1653,6 @@ /* No comment provided by engineer. */ "Tax Category" = "Категория"; -/* CrowdNode */ -"The amount that you entered will be adjusted to the closest level of precision that is possible." = "Введенная вами сумма будет скорректирована с максимально возможной точностью."; - -/* CrowdNode */ -"The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain." = "API-интерфейс обрабатывает снятие средств на основе процента от вашего баланса чтобы все транзакции были прозрачно записаны в блокчейне."; - /* No comment provided by engineer. */ "The chain is syncing…" = "Блокчейн синхронизируется..."; @@ -1680,9 +1668,6 @@ /* Coinbase */ "The minimum amount you can send is %@" = "Минимальная сумма для отправки составляет %@"; -/* CrowdNode */ -"The withdrawal amount has been adjusted by" = "Сумма вывода была скорректирована на"; - /* No comment provided by engineer. */ "There are no new notifications" = "У вас нет новых уведомлений"; @@ -1946,9 +1931,6 @@ /* CrowdNode */ "Why do you need an online account?" = "Зачем нужен онлайн аккаунт?"; -/* CrowdNode */ -"Why does the entered amount differ from what I see on this screen?" = "Почему введенная сумма отличается от той, что я вижу здесь?"; - /* No comment provided by engineer. */ "Why I should not take a screenshot?" = "Почему я не могу сделать скриншот?"; diff --git a/DashWallet/sk.lproj/Localizable.strings b/DashWallet/sk.lproj/Localizable.strings index 996e5397b..1cb5d7be5 100644 --- a/DashWallet/sk.lproj/Localizable.strings +++ b/DashWallet/sk.lproj/Localizable.strings @@ -350,9 +350,6 @@ /* No comment provided by engineer. */ "Confirm PIN" = "Potvrdiť PIN"; -/* CrowdNode */ -"Confirm Withdrawal" = "Confirm Withdrawal"; - /* No comment provided by engineer. */ "Confirming" = "Potvrdzuje sa"; @@ -1463,9 +1460,6 @@ /* No comment provided by engineer. */ "See on Uphold" = "Ukázať na Upholde"; -/* CrowdNode */ -"See why it happened" = "See why it happened"; - /* Coinbase */ "Select a coin" = "Vyberte mincu"; @@ -1659,12 +1653,6 @@ /* No comment provided by engineer. */ "Tax Category" = "Daňová kategória"; -/* CrowdNode */ -"The amount that you entered will be adjusted to the closest level of precision that is possible." = "The amount that you entered will be adjusted to the closest level of precision that is possible."; - -/* CrowdNode */ -"The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain." = "The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain."; - /* No comment provided by engineer. */ "The chain is syncing…" = "Reťazec sa synchronizuje..."; @@ -1680,9 +1668,6 @@ /* Coinbase */ "The minimum amount you can send is %@" = "Minimálna suma, ktorú môžete poslať, je %@"; -/* CrowdNode */ -"The withdrawal amount has been adjusted by" = "The withdrawal amount has been adjusted by"; - /* No comment provided by engineer. */ "There are no new notifications" = "Nie sú k dispozícii žiadne nové upozornenia"; @@ -1946,9 +1931,6 @@ /* CrowdNode */ "Why do you need an online account?" = "Prečo potrebujete online účet?"; -/* CrowdNode */ -"Why does the entered amount differ from what I see on this screen?" = "Why does the entered amount differ from what I see on this screen?"; - /* No comment provided by engineer. */ "Why I should not take a screenshot?" = "Prečo by som nemal robiť snímku obrazovky?"; diff --git a/DashWallet/sl.lproj/Localizable.strings b/DashWallet/sl.lproj/Localizable.strings index f4d96fd16..1f1c50a2b 100644 --- a/DashWallet/sl.lproj/Localizable.strings +++ b/DashWallet/sl.lproj/Localizable.strings @@ -350,9 +350,6 @@ /* No comment provided by engineer. */ "Confirm PIN" = "Confirm PIN"; -/* CrowdNode */ -"Confirm Withdrawal" = "Confirm Withdrawal"; - /* No comment provided by engineer. */ "Confirming" = "Confirming"; @@ -1463,9 +1460,6 @@ /* No comment provided by engineer. */ "See on Uphold" = "Preveri v Upholdu"; -/* CrowdNode */ -"See why it happened" = "See why it happened"; - /* Coinbase */ "Select a coin" = "Select a coin"; @@ -1659,12 +1653,6 @@ /* No comment provided by engineer. */ "Tax Category" = "Tax Category"; -/* CrowdNode */ -"The amount that you entered will be adjusted to the closest level of precision that is possible." = "The amount that you entered will be adjusted to the closest level of precision that is possible."; - -/* CrowdNode */ -"The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain." = "The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain."; - /* No comment provided by engineer. */ "The chain is syncing…" = "The chain is syncing…"; @@ -1680,9 +1668,6 @@ /* Coinbase */ "The minimum amount you can send is %@" = "The minimum amount you can send is %@"; -/* CrowdNode */ -"The withdrawal amount has been adjusted by" = "The withdrawal amount has been adjusted by"; - /* No comment provided by engineer. */ "There are no new notifications" = "There are no new notifications"; @@ -1946,9 +1931,6 @@ /* CrowdNode */ "Why do you need an online account?" = "Why do you need an online account?"; -/* CrowdNode */ -"Why does the entered amount differ from what I see on this screen?" = "Why does the entered amount differ from what I see on this screen?"; - /* No comment provided by engineer. */ "Why I should not take a screenshot?" = "Why I should not take a screenshot?"; diff --git a/DashWallet/sl_SI.lproj/Localizable.strings b/DashWallet/sl_SI.lproj/Localizable.strings index 177afb878..25914a4e9 100644 --- a/DashWallet/sl_SI.lproj/Localizable.strings +++ b/DashWallet/sl_SI.lproj/Localizable.strings @@ -350,9 +350,6 @@ /* No comment provided by engineer. */ "Confirm PIN" = "Confirm PIN"; -/* CrowdNode */ -"Confirm Withdrawal" = "Confirm Withdrawal"; - /* No comment provided by engineer. */ "Confirming" = "Confirming"; @@ -1463,9 +1460,6 @@ /* No comment provided by engineer. */ "See on Uphold" = "See on Uphold"; -/* CrowdNode */ -"See why it happened" = "See why it happened"; - /* Coinbase */ "Select a coin" = "Select a coin"; @@ -1659,12 +1653,6 @@ /* No comment provided by engineer. */ "Tax Category" = "Tax Category"; -/* CrowdNode */ -"The amount that you entered will be adjusted to the closest level of precision that is possible." = "The amount that you entered will be adjusted to the closest level of precision that is possible."; - -/* CrowdNode */ -"The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain." = "The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain."; - /* No comment provided by engineer. */ "The chain is syncing…" = "The chain is syncing…"; @@ -1680,9 +1668,6 @@ /* Coinbase */ "The minimum amount you can send is %@" = "The minimum amount you can send is %@"; -/* CrowdNode */ -"The withdrawal amount has been adjusted by" = "The withdrawal amount has been adjusted by"; - /* No comment provided by engineer. */ "There are no new notifications" = "There are no new notifications"; @@ -1946,9 +1931,6 @@ /* CrowdNode */ "Why do you need an online account?" = "Why do you need an online account?"; -/* CrowdNode */ -"Why does the entered amount differ from what I see on this screen?" = "Why does the entered amount differ from what I see on this screen?"; - /* No comment provided by engineer. */ "Why I should not take a screenshot?" = "Why I should not take a screenshot?"; diff --git a/DashWallet/sq.lproj/Localizable.strings b/DashWallet/sq.lproj/Localizable.strings index adfacdc9d..cd0577ff0 100644 --- a/DashWallet/sq.lproj/Localizable.strings +++ b/DashWallet/sq.lproj/Localizable.strings @@ -350,9 +350,6 @@ /* No comment provided by engineer. */ "Confirm PIN" = "Confirm PIN"; -/* CrowdNode */ -"Confirm Withdrawal" = "Confirm Withdrawal"; - /* No comment provided by engineer. */ "Confirming" = "Confirming"; @@ -1463,9 +1460,6 @@ /* No comment provided by engineer. */ "See on Uphold" = "See on Uphold"; -/* CrowdNode */ -"See why it happened" = "See why it happened"; - /* Coinbase */ "Select a coin" = "Select a coin"; @@ -1659,12 +1653,6 @@ /* No comment provided by engineer. */ "Tax Category" = "Tax Category"; -/* CrowdNode */ -"The amount that you entered will be adjusted to the closest level of precision that is possible." = "The amount that you entered will be adjusted to the closest level of precision that is possible."; - -/* CrowdNode */ -"The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain." = "The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain."; - /* No comment provided by engineer. */ "The chain is syncing…" = "The chain is syncing…"; @@ -1680,9 +1668,6 @@ /* Coinbase */ "The minimum amount you can send is %@" = "The minimum amount you can send is %@"; -/* CrowdNode */ -"The withdrawal amount has been adjusted by" = "The withdrawal amount has been adjusted by"; - /* No comment provided by engineer. */ "There are no new notifications" = "There are no new notifications"; @@ -1946,9 +1931,6 @@ /* CrowdNode */ "Why do you need an online account?" = "Why do you need an online account?"; -/* CrowdNode */ -"Why does the entered amount differ from what I see on this screen?" = "Why does the entered amount differ from what I see on this screen?"; - /* No comment provided by engineer. */ "Why I should not take a screenshot?" = "Why I should not take a screenshot?"; diff --git a/DashWallet/sr.lproj/Localizable.strings b/DashWallet/sr.lproj/Localizable.strings index 159bcf162..b72d7ea0f 100644 --- a/DashWallet/sr.lproj/Localizable.strings +++ b/DashWallet/sr.lproj/Localizable.strings @@ -350,9 +350,6 @@ /* No comment provided by engineer. */ "Confirm PIN" = "Confirm PIN"; -/* CrowdNode */ -"Confirm Withdrawal" = "Confirm Withdrawal"; - /* No comment provided by engineer. */ "Confirming" = "Confirming"; @@ -1463,9 +1460,6 @@ /* No comment provided by engineer. */ "See on Uphold" = "Vidi na Uphold"; -/* CrowdNode */ -"See why it happened" = "See why it happened"; - /* Coinbase */ "Select a coin" = "Select a coin"; @@ -1659,12 +1653,6 @@ /* No comment provided by engineer. */ "Tax Category" = "Tax Category"; -/* CrowdNode */ -"The amount that you entered will be adjusted to the closest level of precision that is possible." = "The amount that you entered will be adjusted to the closest level of precision that is possible."; - -/* CrowdNode */ -"The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain." = "The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain."; - /* No comment provided by engineer. */ "The chain is syncing…" = "The chain is syncing…"; @@ -1680,9 +1668,6 @@ /* Coinbase */ "The minimum amount you can send is %@" = "The minimum amount you can send is %@"; -/* CrowdNode */ -"The withdrawal amount has been adjusted by" = "The withdrawal amount has been adjusted by"; - /* No comment provided by engineer. */ "There are no new notifications" = "There are no new notifications"; @@ -1946,9 +1931,6 @@ /* CrowdNode */ "Why do you need an online account?" = "Why do you need an online account?"; -/* CrowdNode */ -"Why does the entered amount differ from what I see on this screen?" = "Why does the entered amount differ from what I see on this screen?"; - /* No comment provided by engineer. */ "Why I should not take a screenshot?" = "Why I should not take a screenshot?"; diff --git a/DashWallet/sv.lproj/Localizable.strings b/DashWallet/sv.lproj/Localizable.strings index b906f1496..3589609bb 100644 --- a/DashWallet/sv.lproj/Localizable.strings +++ b/DashWallet/sv.lproj/Localizable.strings @@ -350,9 +350,6 @@ /* No comment provided by engineer. */ "Confirm PIN" = "Bekräfta PIN"; -/* CrowdNode */ -"Confirm Withdrawal" = "Confirm Withdrawal"; - /* No comment provided by engineer. */ "Confirming" = "Confirming"; @@ -1463,9 +1460,6 @@ /* No comment provided by engineer. */ "See on Uphold" = "See on Uphold"; -/* CrowdNode */ -"See why it happened" = "See why it happened"; - /* Coinbase */ "Select a coin" = "Select a coin"; @@ -1659,12 +1653,6 @@ /* No comment provided by engineer. */ "Tax Category" = "Tax Category"; -/* CrowdNode */ -"The amount that you entered will be adjusted to the closest level of precision that is possible." = "The amount that you entered will be adjusted to the closest level of precision that is possible."; - -/* CrowdNode */ -"The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain." = "The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain."; - /* No comment provided by engineer. */ "The chain is syncing…" = "The chain is syncing…"; @@ -1680,9 +1668,6 @@ /* Coinbase */ "The minimum amount you can send is %@" = "The minimum amount you can send is %@"; -/* CrowdNode */ -"The withdrawal amount has been adjusted by" = "The withdrawal amount has been adjusted by"; - /* No comment provided by engineer. */ "There are no new notifications" = "There are no new notifications"; @@ -1946,9 +1931,6 @@ /* CrowdNode */ "Why do you need an online account?" = "Why do you need an online account?"; -/* CrowdNode */ -"Why does the entered amount differ from what I see on this screen?" = "Why does the entered amount differ from what I see on this screen?"; - /* No comment provided by engineer. */ "Why I should not take a screenshot?" = "Why I should not take a screenshot?"; diff --git a/DashWallet/th.lproj/Localizable.strings b/DashWallet/th.lproj/Localizable.strings index f8847d992..1cd7dc947 100644 --- a/DashWallet/th.lproj/Localizable.strings +++ b/DashWallet/th.lproj/Localizable.strings @@ -350,9 +350,6 @@ /* No comment provided by engineer. */ "Confirm PIN" = "ยืนยัน PIN"; -/* CrowdNode */ -"Confirm Withdrawal" = "Confirm Withdrawal"; - /* No comment provided by engineer. */ "Confirming" = "กำลังยืนยัน"; @@ -1463,9 +1460,6 @@ /* No comment provided by engineer. */ "See on Uphold" = "เปิดดูที่ Uphold"; -/* CrowdNode */ -"See why it happened" = "See why it happened"; - /* Coinbase */ "Select a coin" = "เลือกเหรียญ"; @@ -1659,12 +1653,6 @@ /* No comment provided by engineer. */ "Tax Category" = "หมวดภาษี"; -/* CrowdNode */ -"The amount that you entered will be adjusted to the closest level of precision that is possible." = "The amount that you entered will be adjusted to the closest level of precision that is possible."; - -/* CrowdNode */ -"The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain." = "The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain."; - /* No comment provided by engineer. */ "The chain is syncing…" = "โซ่กำลังซิงค์..."; @@ -1680,9 +1668,6 @@ /* Coinbase */ "The minimum amount you can send is %@" = "จำนวนเงินขั้นต่ำที่คุณสามารถส่งได้คือ %@"; -/* CrowdNode */ -"The withdrawal amount has been adjusted by" = "The withdrawal amount has been adjusted by"; - /* No comment provided by engineer. */ "There are no new notifications" = "ไม่มีการแจ้งเตือนใหม่"; @@ -1946,9 +1931,6 @@ /* CrowdNode */ "Why do you need an online account?" = "ทำไมคุณถึงต้องการบัญชีออนไลน์?"; -/* CrowdNode */ -"Why does the entered amount differ from what I see on this screen?" = "Why does the entered amount differ from what I see on this screen?"; - /* No comment provided by engineer. */ "Why I should not take a screenshot?" = "ทำไมฉันจึงไม่ควรใช้การบันทึกภาพหน้าจอ"; diff --git a/DashWallet/tr.lproj/Localizable.strings b/DashWallet/tr.lproj/Localizable.strings index 9fd8566ab..f79cb19aa 100644 --- a/DashWallet/tr.lproj/Localizable.strings +++ b/DashWallet/tr.lproj/Localizable.strings @@ -350,9 +350,6 @@ /* No comment provided by engineer. */ "Confirm PIN" = "PİN'i Onayla"; -/* CrowdNode */ -"Confirm Withdrawal" = "Confirm Withdrawal"; - /* No comment provided by engineer. */ "Confirming" = "Onaylanıyor"; @@ -1463,9 +1460,6 @@ /* No comment provided by engineer. */ "See on Uphold" = "Uphold'da Gör"; -/* CrowdNode */ -"See why it happened" = "See why it happened"; - /* Coinbase */ "Select a coin" = "Bir koin seçin"; @@ -1659,12 +1653,6 @@ /* No comment provided by engineer. */ "Tax Category" = "Vergi Kategorisi"; -/* CrowdNode */ -"The amount that you entered will be adjusted to the closest level of precision that is possible." = "The amount that you entered will be adjusted to the closest level of precision that is possible."; - -/* CrowdNode */ -"The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain." = "The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain."; - /* No comment provided by engineer. */ "The chain is syncing…" = "Zincir senkronize ediliyor…"; @@ -1680,9 +1668,6 @@ /* Coinbase */ "The minimum amount you can send is %@" = "Gönderebileceğiniz minimum miktar %@"; -/* CrowdNode */ -"The withdrawal amount has been adjusted by" = "The withdrawal amount has been adjusted by"; - /* No comment provided by engineer. */ "There are no new notifications" = "Yeni bildirim yok"; @@ -1946,9 +1931,6 @@ /* CrowdNode */ "Why do you need an online account?" = "Neden çevrimiçi bir hesaba ihtiyacınız var?"; -/* CrowdNode */ -"Why does the entered amount differ from what I see on this screen?" = "Why does the entered amount differ from what I see on this screen?"; - /* No comment provided by engineer. */ "Why I should not take a screenshot?" = "Neden ekran görüntüsü almamalıyım?"; diff --git a/DashWallet/uk.lproj/Localizable.strings b/DashWallet/uk.lproj/Localizable.strings index 50d0110a3..7e5651283 100644 --- a/DashWallet/uk.lproj/Localizable.strings +++ b/DashWallet/uk.lproj/Localizable.strings @@ -350,9 +350,6 @@ /* No comment provided by engineer. */ "Confirm PIN" = "Підтвердіть PIN"; -/* CrowdNode */ -"Confirm Withdrawal" = "Confirm Withdrawal"; - /* No comment provided by engineer. */ "Confirming" = "Підтвердження"; @@ -1463,9 +1460,6 @@ /* No comment provided by engineer. */ "See on Uphold" = "Переглянути на Uphold"; -/* CrowdNode */ -"See why it happened" = "See why it happened"; - /* Coinbase */ "Select a coin" = "Виберіть монету"; @@ -1659,12 +1653,6 @@ /* No comment provided by engineer. */ "Tax Category" = "Податкова категорія"; -/* CrowdNode */ -"The amount that you entered will be adjusted to the closest level of precision that is possible." = "The amount that you entered will be adjusted to the closest level of precision that is possible."; - -/* CrowdNode */ -"The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain." = "The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain."; - /* No comment provided by engineer. */ "The chain is syncing…" = "Блокчейн синхронізується..."; @@ -1680,9 +1668,6 @@ /* Coinbase */ "The minimum amount you can send is %@" = "Мінімальна сума, яку ви можете надіслати, становить %@"; -/* CrowdNode */ -"The withdrawal amount has been adjusted by" = "The withdrawal amount has been adjusted by"; - /* No comment provided by engineer. */ "There are no new notifications" = "Немає нових сповіщень"; @@ -1946,9 +1931,6 @@ /* CrowdNode */ "Why do you need an online account?" = "Для чого потрібен онлайн акаунт?"; -/* CrowdNode */ -"Why does the entered amount differ from what I see on this screen?" = "Why does the entered amount differ from what I see on this screen?"; - /* No comment provided by engineer. */ "Why I should not take a screenshot?" = "Чому я не можу зробити скріншот?"; diff --git a/DashWallet/vi.lproj/Localizable.strings b/DashWallet/vi.lproj/Localizable.strings index 6c8cf3ade..252365a89 100644 --- a/DashWallet/vi.lproj/Localizable.strings +++ b/DashWallet/vi.lproj/Localizable.strings @@ -350,9 +350,6 @@ /* No comment provided by engineer. */ "Confirm PIN" = "Xác nhận mã PIN"; -/* CrowdNode */ -"Confirm Withdrawal" = "Confirm Withdrawal"; - /* No comment provided by engineer. */ "Confirming" = "Đang xác nhận"; @@ -1463,9 +1460,6 @@ /* No comment provided by engineer. */ "See on Uphold" = "Xem trên Uphold"; -/* CrowdNode */ -"See why it happened" = "See why it happened"; - /* Coinbase */ "Select a coin" = "Select a coin"; @@ -1659,12 +1653,6 @@ /* No comment provided by engineer. */ "Tax Category" = "Tax Category"; -/* CrowdNode */ -"The amount that you entered will be adjusted to the closest level of precision that is possible." = "The amount that you entered will be adjusted to the closest level of precision that is possible."; - -/* CrowdNode */ -"The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain." = "The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain."; - /* No comment provided by engineer. */ "The chain is syncing…" = "The chain is syncing…"; @@ -1680,9 +1668,6 @@ /* Coinbase */ "The minimum amount you can send is %@" = "The minimum amount you can send is %@"; -/* CrowdNode */ -"The withdrawal amount has been adjusted by" = "The withdrawal amount has been adjusted by"; - /* No comment provided by engineer. */ "There are no new notifications" = "Không có thông báo mới"; @@ -1946,9 +1931,6 @@ /* CrowdNode */ "Why do you need an online account?" = "Why do you need an online account?"; -/* CrowdNode */ -"Why does the entered amount differ from what I see on this screen?" = "Why does the entered amount differ from what I see on this screen?"; - /* No comment provided by engineer. */ "Why I should not take a screenshot?" = "Tại sao tôi không nên chụp ảnh màn hình?"; diff --git a/DashWallet/zh-Hans.lproj/Localizable.strings b/DashWallet/zh-Hans.lproj/Localizable.strings index 48f7f3c18..f3d1c71cf 100644 --- a/DashWallet/zh-Hans.lproj/Localizable.strings +++ b/DashWallet/zh-Hans.lproj/Localizable.strings @@ -371,9 +371,6 @@ /* No comment provided by engineer. */ "Confirm PIN" = "Confirm PIN"; -/* CrowdNode */ -"Confirm Withdrawal" = "Confirm Withdrawal"; - /* No comment provided by engineer. */ "Confirming" = "Confirming"; @@ -1884,12 +1881,6 @@ /* No comment provided by engineer. */ "Tax Category" = "Tax Category"; -/* CrowdNode */ -"The amount that you entered will be adjusted to the closest level of precision that is possible." = "The amount that you entered will be adjusted to the closest level of precision that is possible."; - -/* CrowdNode */ -"The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain." = "The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain."; - /* No comment provided by engineer. */ "Test Dash doesn’t have any value in the real world but you can send and receive it with other DashPay Alpha users." = "Test Dash doesn’t have any value in the real world but you can send and receive it with other DashPay Alpha users."; @@ -1914,9 +1905,6 @@ /* Coinbase */ "The minimum amount you can send is %@" = "The minimum amount you can send is %@"; -/* CrowdNode */ -"The withdrawal amount has been adjusted by" = "The withdrawal amount has been adjusted by"; - /* No comment provided by engineer. */ "them (Fetching Info)" = "them (Fetching Info)"; @@ -2234,9 +2222,6 @@ /* CrowdNode */ "Why do you need an online account?" = "Why do you need an online account?"; -/* CrowdNode */ -"Why does the entered amount differ from what I see on this screen?" = "Why does the entered amount differ from what I see on this screen?"; - /* No comment provided by engineer. */ "Why I should not take a screenshot?" = "Why I should not take a screenshot?"; diff --git a/DashWallet/zh-Hant-TW.lproj/Localizable.strings b/DashWallet/zh-Hant-TW.lproj/Localizable.strings index a34efc944..f5efc4d55 100644 --- a/DashWallet/zh-Hant-TW.lproj/Localizable.strings +++ b/DashWallet/zh-Hant-TW.lproj/Localizable.strings @@ -371,9 +371,6 @@ /* No comment provided by engineer. */ "Confirm PIN" = "Confirm PIN"; -/* CrowdNode */ -"Confirm Withdrawal" = "Confirm Withdrawal"; - /* No comment provided by engineer. */ "Confirming" = "Confirming"; @@ -1884,12 +1881,6 @@ /* No comment provided by engineer. */ "Tax Category" = "Tax Category"; -/* CrowdNode */ -"The amount that you entered will be adjusted to the closest level of precision that is possible." = "The amount that you entered will be adjusted to the closest level of precision that is possible."; - -/* CrowdNode */ -"The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain." = "The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain."; - /* No comment provided by engineer. */ "Test Dash doesn’t have any value in the real world but you can send and receive it with other DashPay Alpha users." = "Test Dash doesn’t have any value in the real world but you can send and receive it with other DashPay Alpha users."; @@ -1914,9 +1905,6 @@ /* Coinbase */ "The minimum amount you can send is %@" = "The minimum amount you can send is %@"; -/* CrowdNode */ -"The withdrawal amount has been adjusted by" = "The withdrawal amount has been adjusted by"; - /* No comment provided by engineer. */ "them (Fetching Info)" = "them (Fetching Info)"; @@ -2234,9 +2222,6 @@ /* CrowdNode */ "Why do you need an online account?" = "Why do you need an online account?"; -/* CrowdNode */ -"Why does the entered amount differ from what I see on this screen?" = "Why does the entered amount differ from what I see on this screen?"; - /* No comment provided by engineer. */ "Why I should not take a screenshot?" = "Why I should not take a screenshot?"; diff --git a/DashWallet/zh.lproj/Localizable.strings b/DashWallet/zh.lproj/Localizable.strings index 5cbfd7e08..88a2b0c6c 100644 --- a/DashWallet/zh.lproj/Localizable.strings +++ b/DashWallet/zh.lproj/Localizable.strings @@ -350,9 +350,6 @@ /* No comment provided by engineer. */ "Confirm PIN" = "确认PIN"; -/* CrowdNode */ -"Confirm Withdrawal" = "Confirm Withdrawal"; - /* No comment provided by engineer. */ "Confirming" = "确认中"; @@ -1463,9 +1460,6 @@ /* No comment provided by engineer. */ "See on Uphold" = "查看Uphold"; -/* CrowdNode */ -"See why it happened" = "See why it happened"; - /* Coinbase */ "Select a coin" = "选择一个币种"; @@ -1659,12 +1653,6 @@ /* No comment provided by engineer. */ "Tax Category" = "税务种类"; -/* CrowdNode */ -"The amount that you entered will be adjusted to the closest level of precision that is possible." = "The amount that you entered will be adjusted to the closest level of precision that is possible."; - -/* CrowdNode */ -"The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain." = "The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain."; - /* No comment provided by engineer. */ "The chain is syncing…" = "区块链正在同步..."; @@ -1680,9 +1668,6 @@ /* Coinbase */ "The minimum amount you can send is %@" = "您可以发送的最小额度是%@"; -/* CrowdNode */ -"The withdrawal amount has been adjusted by" = "The withdrawal amount has been adjusted by"; - /* No comment provided by engineer. */ "There are no new notifications" = "没有新的通知"; @@ -1946,9 +1931,6 @@ /* CrowdNode */ "Why do you need an online account?" = "为什么您需要线上账户?"; -/* CrowdNode */ -"Why does the entered amount differ from what I see on this screen?" = "Why does the entered amount differ from what I see on this screen?"; - /* No comment provided by engineer. */ "Why I should not take a screenshot?" = "为什么我不应该截屏?"; diff --git a/DashWallet/zh_TW.lproj/Localizable.strings b/DashWallet/zh_TW.lproj/Localizable.strings index df8d27579..eb4d44334 100644 --- a/DashWallet/zh_TW.lproj/Localizable.strings +++ b/DashWallet/zh_TW.lproj/Localizable.strings @@ -350,9 +350,6 @@ /* No comment provided by engineer. */ "Confirm PIN" = "確認密碼"; -/* CrowdNode */ -"Confirm Withdrawal" = "Confirm Withdrawal"; - /* No comment provided by engineer. */ "Confirming" = "確認中"; @@ -1463,9 +1460,6 @@ /* No comment provided by engineer. */ "See on Uphold" = "參見 Uphold"; -/* CrowdNode */ -"See why it happened" = "See why it happened"; - /* Coinbase */ "Select a coin" = "選擇一個幣"; @@ -1659,12 +1653,6 @@ /* No comment provided by engineer. */ "Tax Category" = "稅種"; -/* CrowdNode */ -"The amount that you entered will be adjusted to the closest level of precision that is possible." = "The amount that you entered will be adjusted to the closest level of precision that is possible."; - -/* CrowdNode */ -"The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain." = "The blockchain API for mobile processes withdrawals based on a % of your balance so that all transaction activity can be transparently recorded on the blockchain."; - /* No comment provided by engineer. */ "The chain is syncing…" = "區塊鏈正在同步…"; @@ -1680,9 +1668,6 @@ /* Coinbase */ "The minimum amount you can send is %@" = "您可以發送的最小金額是 %@"; -/* CrowdNode */ -"The withdrawal amount has been adjusted by" = "The withdrawal amount has been adjusted by"; - /* No comment provided by engineer. */ "There are no new notifications" = "沒有新的通知"; @@ -1946,9 +1931,6 @@ /* CrowdNode */ "Why do you need an online account?" = "為什麼需要在線帳戶?"; -/* CrowdNode */ -"Why does the entered amount differ from what I see on this screen?" = "Why does the entered amount differ from what I see on this screen?"; - /* No comment provided by engineer. */ "Why I should not take a screenshot?" = "為什麼我不應該截圖?";